#BiocManager::install("ETHZ-INS/epiwraps")
#BiocManager::install("rGREAT")
suppressPackageStartupMessages({
library(GenomicRanges)
library(epiwraps)
library(ggplot2)
library(rGREAT)
})
# Download and decompress the following archive
options(timeout = 6000)
download.file("https://ethz-ins.org/content/w10.assignment.zip", "w10.assignment.zip")
unzip("w10.assignment.zip")
list.files()
set.seed(123) # to ensure that it gives the same results everytime
# prepare regions and tracks
tracks <- list.files(pattern="bw$")
region_files <- list.files(pattern="bed$")
peaks <- lapply(region_files, FUN=rtracklayer::import.bed)
peaks <- lapply(peaks, FUN=function(x) x[x$score>800])
regions <- reduce(unlist(GRangesList(peaks)))
# plot
ml <- signal2Matrix(tracks, regions, extend=2000)
## Reading Creb1.bw
## Reading Creb3.bw
## Reading Creb3L1.bw
# Choosing a meaningful number of clusters
multi_cl <- clusterSignalMatrices(ml, k=2:10)
ggplot(multi_cl$varExplained, aes(k, varExplained)) + geom_line()
plotEnrichedHeatmaps(ml)
# Clustering
cl <- clusterSignalMatrices(ml, k=4) # choose k according to previous plot
## ~70% of the variance explained by clusters
table(cl)
## cl
## 1 2 3 4
## 165 878 493 733
head(cl)
## [1] 3 4 2 2 4 4
## Levels: 1 2 3 4
length(cl)
## [1] 2269
length(regions)
## [1] 2269
regions$cluster <- cl
# Plot clusters with colors
mycolors <- c("1"="red", "2"="blue", "3"="darkgreen", "4"="darkviolet")
plotEnrichedHeatmaps(ml, row_split=cl, mean_color=mycolors)
# Plotting averages
d <- meltSignals(ml, splitBy=cl)
ggplot(d, aes(position, mean, colour=sample)) + geom_line(size=1.2) + facet_wrap(~split)
## Warning: Using `size` aesthetic for lines was deprecated in ggplot2 3.4.0.
## ℹ Please use `linewidth` instead.
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
## generated.
Plot with the 4 Clusters. Cluster 1: shows narrow peaks for Creb1 and
Creb3L1 with lower signal for Creb3. Cluster 2: displays broad peaks,
particularly for Creb3L1, indicating extended regions of signal
enrichment. Cluster 3: has well-defined peaks for Creb1, Creb3, and a
stronger signal for Creb3L1. Cluster 4: shows sharp peaks with strong
signals for Creb3L1 and notable peaks for Creb1 and Creb3.
# we first split the regions by cluster:
split_regions <- split(regions, cl)
# we send the data to the GREAT server to run an enrichment analysis
#We focus on cluster 3
job <- submitGreatJob(gr=split_regions[["3"]], bg=regions, species="hg38")
res <- getEnrichmentTables(job)
## The default enrichment table does not contain informatin of associated
## genes for each input region. You can set `download_by = 'tsv'` to
## download the complete table, but note only the top 500 regions can be
## retreived. See the following link:
##
## https://great-help.atlassian.net/wiki/spaces/GREAT/pages/655401/Export#Export-GlobalExport
##
## Except the additional gene-region association column if taking 'tsv' as
## the source of result, all other columns are the same if you choose
## 'json' (the default) as the source. Or you can try the local GREAT
## analysis with the function `great()`.
res
## $`GO Molecular Function`
## ID
## 1 GO:0032182
## 2 GO:0043130
## 3 GO:0016538
## 4 GO:0005087
## 5 GO:0003729
## 6 GO:0031490
## 7 GO:0043566
## 8 GO:0003697
## 9 GO:0003725
## 10 GO:0003723
## 11 GO:0003873
## 12 GO:0004331
## 13 GO:0008443
## 14 GO:0050308
## 15 GO:0061578
## 16 GO:1904265
## 17 GO:1904455
## 18 GO:0017069
## 19 GO:0070530
## 20 GO:0031593
## 21 GO:0003730
## 22 GO:0008143
## 23 GO:0045503
## 24 GO:0070717
## 25 GO:0019211
## 26 GO:0072542
## 27 GO:0008157
## 28 GO:0005385
## 29 GO:0008187
## 30 GO:0046915
## 31 GO:0003727
## 32 GO:0031492
## 33 GO:0001097
## 34 GO:0003899
## 35 GO:0017130
## 36 GO:0019237
## 37 GO:0034046
## 38 GO:0034062
## 39 GO:0051010
## 40 GO:0099122
## 41 GO:0016853
## 42 GO:0043199
## 43 GO:0008200
## 44 GO:0016248
## 45 GO:0008094
## 46 GO:0004351
## 47 GO:0004356
## 48 GO:0001888
## 49 GO:0003836
## 50 GO:0004127
## 51 GO:0005068
## 52 GO:0005158
## 53 GO:0005165
## 54 GO:0005167
## 55 GO:0005168
## 56 GO:0008118
## 57 GO:0008373
## 58 GO:0008569
## 59 GO:0009041
## 60 GO:0015278
## 61 GO:0030295
## 62 GO:0035248
## 63 GO:0043539
## 64 GO:0047237
## 65 GO:0052856
## 66 GO:0052857
## 67 GO:0061575
## 68 GO:0072345
## 69 GO:0097153
## 70 GO:0097200
## 71 GO:0099604
## 72 GO:0019208
## 73 GO:0003676
## 74 GO:0019887
## 75 GO:0019888
## 76 GO:0048408
## 77 GO:0005085
## 78 GO:0001091
## 79 GO:0003678
## 80 GO:0004003
## 81 GO:0004523
## 82 GO:0008297
## 83 GO:0008309
## 84 GO:0016891
## 85 GO:0016893
## 86 GO:0045145
## 87 GO:0048256
## 88 GO:0051908
## 89 GO:0098821
## 90 GO:1990459
## 91 GO:0019855
## 92 GO:0051920
## 93 GO:1990825
## 94 GO:0045502
## 95 GO:0035591
## 96 GO:0060090
## 97 GO:0042393
## 98 GO:0004197
## 99 GO:0008536
## 100 GO:0016595
## 101 GO:0016796
## 102 GO:1990841
## 103 GO:0001078
## 104 GO:0004849
## 105 GO:0005246
## 106 GO:0033300
## 107 GO:0042910
## 108 GO:0050145
## 109 GO:0055056
## 110 GO:0004520
## 111 GO:0036002
## 112 GO:1990380
## 113 GO:0001069
## 114 GO:0003688
## 115 GO:0004577
## 116 GO:0005217
## 117 GO:0016530
## 118 GO:0016531
## 119 GO:0016532
## 120 GO:0017056
## 121 GO:0017116
## 122 GO:0033677
## 123 GO:0033680
## 124 GO:0033681
## 125 GO:0034458
## 126 GO:0034459
## 127 GO:0035197
## 128 GO:0036310
## 129 GO:0036470
## 130 GO:0036478
## 131 GO:0036524
## 132 GO:0043138
## 133 GO:0043140
## 134 GO:0043142
## 135 GO:0044388
## 136 GO:0045142
## 137 GO:0045340
## 138 GO:0045505
## 139 GO:0047429
## 140 GO:0051959
## 141 GO:0061676
## 142 GO:0071208
## 143 GO:0071209
## 144 GO:0097617
## 145 GO:1903136
## 146 GO:1905172
## 147 GO:1990381
## 148 GO:1990518
## 149 GO:0031625
## 150 GO:0044389
## 151 GO:0030145
## 152 GO:0030674
## 153 GO:0031491
## 154 GO:0004527
## 155 GO:0005031
## 156 GO:0008649
## 157 GO:0008173
## 158 GO:0008266
## 159 GO:0016835
## 160 GO:0016836
## 161 GO:0019206
## 162 GO:0000982
## 163 GO:0099106
## 164 GO:0005070
## 165 GO:1901363
## 166 GO:0098772
## 167 GO:0001228
## 168 GO:0015144
## 169 GO:0008613
## 170 GO:0017112
## 171 GO:0035613
## 172 GO:0036122
## 173 GO:1901618
## 174 GO:0003755
## 175 GO:0016859
## 176 GO:0097159
## 177 GO:0072509
## 178 GO:0003682
## 179 GO:0008375
## 180 GO:0019200
## 181 GO:0051183
## 182 GO:0000175
## 183 GO:0000179
## 184 GO:0004861
## 185 GO:0005154
## 186 GO:0005159
## 187 GO:0005283
## 188 GO:0005294
## 189 GO:0005343
## 190 GO:0005416
## 191 GO:0008408
## 192 GO:0015187
## 193 GO:0015296
## 194 GO:0015375
## 195 GO:0016433
## 196 GO:0016670
## 197 GO:0016854
## 198 GO:0016896
## 199 GO:0016971
## 200 GO:0016972
## 201 GO:0017160
## 202 GO:0019870
## 203 GO:0030971
## 204 GO:0031419
## 205 GO:0038021
## 206 GO:1903135
## 207 GO:0003690
## 208 GO:0016831
## 209 GO:0016247
## 210 GO:0004386
## 211 GO:0016779
## 212 GO:0001205
## 213 GO:0002094
## 214 GO:0003876
## 215 GO:0003909
## 216 GO:0003910
## 217 GO:0003950
## 218 GO:0003977
## 219 GO:0004333
## 220 GO:0004535
## 221 GO:0004729
## 222 GO:0004818
## 223 GO:0004829
## 224 GO:0004830
## 225 GO:0005047
## 226 GO:0005119
## 227 GO:0005372
## 228 GO:0008158
## 229 GO:0008169
## 230 GO:0008235
## 231 GO:0008312
## 232 GO:0008379
## 233 GO:0009383
## 234 GO:0009982
## 235 GO:0015166
## 236 GO:0015168
## 237 GO:0015204
## 238 GO:0015250
## 239 GO:0015254
## 240 GO:0015265
## 241 GO:0016004
## 242 GO:0016434
## 243 GO:0016504
## 244 GO:0016634
## 245 GO:0016722
## 246 GO:0016723
## 247 GO:0016866
## 248 GO:0019961
## 249 GO:0019964
## 250 GO:0030331
## 251 GO:0033787
## 252 GO:0034236
## 253 GO:0034511
## 254 GO:0042887
## 255 GO:0042947
## 256 GO:0043047
## 257 GO:0050733
## 258 GO:0055131
## 259 GO:0060229
## 260 GO:0070181
## 261 GO:0071568
## 262 GO:0097108
## 263 GO:0098505
## 264 GO:0098847
## 265 GO:1990404
## 266 GO:1990583
## 267 GO:0016874
## 268 GO:0008409
## 269 GO:0016895
## 270 GO:0019842
## 271 GO:0035258
## 272 GO:0035312
## 273 GO:0070034
## 274 GO:0003779
## 275 GO:0043021
## 276 GO:0003756
## 277 GO:0004550
## 278 GO:0004812
## 279 GO:0019843
## 280 GO:0032947
## 281 GO:0005088
## 282 GO:0008134
## 283 GO:0016829
## 284 GO:0019207
## 285 GO:0004402
## 286 GO:0005227
## 287 GO:0005326
## 288 GO:0005328
## 289 GO:0008080
## 290 GO:0008179
## 291 GO:0016671
## 292 GO:0019209
## 293 GO:0030291
## 294 GO:0034212
## 295 GO:0034237
## 296 GO:0035033
## 297 GO:0042800
## 298 GO:0044183
## 299 GO:0046811
## 300 GO:0061733
## 301 GO:1905538
## 302 GO:0051119
## 303 GO:0005355
## 304 GO:0015145
## 305 GO:0015149
## 306 GO:0016860
## 307 GO:0004521
## 308 GO:0004659
## 309 GO:0005507
## 310 GO:0019212
## 311 GO:0051428
## 312 GO:0004857
## 313 GO:0001227
## 314 GO:0001085
## 315 GO:0019900
## 316 GO:0030234
## 317 GO:0000981
## 318 GO:0004540
## 319 GO:0016597
## 320 GO:0016830
## 321 GO:0008175
## 322 GO:0016684
## 323 GO:0051018
## 324 GO:0004536
## 325 GO:0004559
## 326 GO:0004571
## 327 GO:0005262
## 328 GO:0008026
## 329 GO:0015923
## 330 GO:0015924
## 331 GO:0060590
## 332 GO:1990782
## 333 GO:0019901
## 334 GO:0003777
## 335 GO:0019903
## 336 GO:0004532
## 337 GO:0004864
## 338 GO:0008097
## 339 GO:0015129
## 340 GO:0015130
## 341 GO:0016407
## 342 GO:0016410
## 343 GO:0043274
## 344 GO:0043425
## 345 GO:0043560
## 346 GO:0046875
## 347 GO:1990948
## 348 GO:0000700
## 349 GO:0000701
## 350 GO:0002161
## 351 GO:0003954
## 352 GO:0004616
## 353 GO:0004661
## 354 GO:0004663
## 355 GO:0004815
## 356 GO:0005243
## 357 GO:0005520
## 358 GO:0008137
## 359 GO:0008318
## 360 GO:0008420
## 361 GO:0016018
## 362 GO:0016655
## 363 GO:0016763
## 364 GO:0016799
## 365 GO:0016886
## 366 GO:0019104
## 367 GO:0019119
## 368 GO:0019239
## 369 GO:0019797
## 370 GO:0019798
## 371 GO:0022829
## 372 GO:0030372
## 373 GO:0031543
## 374 GO:0031544
## 375 GO:0032404
## 376 GO:0032407
## 377 GO:0036042
## 378 GO:0046961
## 379 GO:0047276
## 380 GO:0050560
## 381 GO:0060703
## 382 GO:0070569
## 383 GO:0071949
## 384 GO:0090560
## 385 GO:1903763
## 386 GO:0035198
## 387 GO:0035257
## 388 GO:0008234
## 389 GO:0019902
## 390 GO:0019899
## 391 GO:0017124
## 392 GO:0008047
## 393 GO:0015459
## 394 GO:0016627
## 395 GO:0004175
## 396 GO:0051020
## 397 GO:0005521
## 398 GO:0000978
## 399 GO:0000987
## 400 GO:0001159
## 401 GO:0017016
## 402 GO:0047485
## 403 GO:0016879
## 404 GO:0051117
## 405 GO:0001077
## 406 GO:0016491
## 407 GO:0008233
## 408 GO:0048037
## 409 GO:0051427
## 410 GO:0016887
## 411 GO:0001223
## 412 GO:0001671
## 413 GO:0004601
## 414 GO:0015370
## 415 GO:0022839
## 416 GO:0035064
## 417 GO:0044390
## 418 GO:0046899
## 419 GO:0050681
## 420 GO:0055105
## 421 GO:1990837
## 422 GO:0000062
## 423 GO:0008106
## 424 GO:0008376
## 425 GO:0003677
## 426 GO:0050662
## 427 GO:0008194
## 428 GO:0016667
## 429 GO:0002020
## 430 GO:0015035
## 431 GO:0016435
## 432 GO:0046906
## 433 GO:0061134
## 434 GO:0070039
## 435 GO:0000104
## 436 GO:0000246
## 437 GO:0004012
## 438 GO:0004032
## 439 GO:0004301
## 440 GO:0004439
## 441 GO:0004679
## 442 GO:0004827
## 443 GO:0005149
## 444 GO:0005487
## 445 GO:0005548
## 446 GO:0008172
## 447 GO:0008238
## 448 GO:0008705
## 449 GO:0008843
## 450 GO:0015174
## 451 GO:0015181
## 452 GO:0015189
## 453 GO:0016801
## 454 GO:0016803
## 455 GO:0019215
## 456 GO:0031418
## 457 GO:0034593
## 458 GO:0034595
## 459 GO:0035035
## 460 GO:0042030
## 461 GO:0042284
## 462 GO:0042605
## 463 GO:0042954
## 464 GO:0043295
## 465 GO:0043532
## 466 GO:0044769
## 467 GO:0046030
## 468 GO:0048027
## 469 GO:0050614
## 470 GO:0052658
## 471 GO:0052659
## 472 GO:0052743
## 473 GO:0052745
## 474 GO:0052866
## 475 GO:0061631
## 476 GO:0061650
## 477 GO:0071253
## 478 GO:0086040
## 479 GO:0098641
## 480 GO:1900750
## 481 GO:0004712
## 482 GO:0016209
## 483 GO:0070851
## 484 GO:0000049
## 485 GO:0003724
## 486 GO:0004004
## 487 GO:0004697
## 488 GO:0004722
## 489 GO:0008186
## 490 GO:0015297
## 491 GO:0055106
## 492 GO:0071889
## 493 GO:0003735
## 494 GO:0003774
## 495 GO:0031267
## 496 GO:0004745
## 497 GO:0015036
## 498 GO:0016423
## 499 GO:0017017
## 500 GO:0033549
## 501 GO:0048273
## 502 GO:0048306
## 503 GO:0052650
## 504 GO:0099094
## 505 GO:0004843
## 506 GO:0019838
## 507 GO:0051082
## 508 GO:1901681
## 509 GO:0004518
## 510 GO:0004033
## 511 GO:0008138
## 512 GO:0019201
## 513 GO:0050660
## 514 GO:0070491
## 515 GO:0004222
## 516 GO:0046982
## 517 GO:0019205
## 518 GO:0042562
## 519 GO:0001618
## 520 GO:0005488
## 521 GO:0004727
## 522 GO:0004860
## 523 GO:0005225
## 524 GO:0005245
## 525 GO:0008028
## 526 GO:0016628
## 527 GO:0019210
## 528 GO:0051213
## 529 GO:1990939
## 530 GO:0004675
## 531 GO:0015026
## 532 GO:0017137
## 533 GO:0016757
## 534 GO:0070011
## 535 GO:0051059
## 536 GO:0000988
## 537 GO:0000989
## 538 GO:0002039
## 539 GO:0008237
## 540 GO:0004035
## 541 GO:0004040
## 542 GO:0004161
## 543 GO:0004337
## 544 GO:0004668
## 545 GO:0005057
## 546 GO:0005451
## 547 GO:0005518
## 548 GO:0005540
## 549 GO:0008020
## 550 GO:0009881
## 551 GO:0010997
## 552 GO:0015298
## 553 GO:0015299
## 554 GO:0015385
## 555 GO:0015386
## 556 GO:0015491
## 557 GO:0016651
## 558 GO:0017064
## 559 GO:0022821
## 560 GO:0030544
## 561 GO:0030620
## 562 GO:0030742
## 563 GO:0031435
## 564 GO:0032266
## 565 GO:0032427
## 566 GO:0034191
## 567 GO:0034647
## 568 GO:0042974
## 569 GO:0043422
## 570 GO:0047372
## 571 GO:0047499
## 572 GO:0048029
## 573 GO:0050613
## 574 GO:0051021
## 575 GO:0051022
## 576 GO:0051287
## 577 GO:0051539
## 578 GO:0070087
## 579 GO:0102077
## 580 GO:0103073
## 581 GO:1901707
## 582 GO:0000993
## 583 GO:0043175
## 584 GO:0008168
## 585 GO:0016741
## 586 GO:0009055
## 587 GO:0019783
## 588 GO:0031406
## 589 GO:0036459
## 590 GO:0043177
## 591 GO:0101005
## 592 GO:0042802
## 593 GO:0000287
## 594 GO:0003705
## 595 GO:0001099
## 596 GO:0016614
## 597 GO:0015179
## 598 GO:0008757
## 599 GO:0001221
## 600 GO:0015294
## 601 GO:0051721
## 602 GO:0019787
## 603 GO:0003700
## 604 GO:0000977
## 605 GO:0001012
## 606 GO:0070063
## 607 GO:0005524
## 608 GO:0004725
## 609 GO:0005342
## 610 GO:0016765
## 611 GO:0016798
## 612 GO:0046943
## 613 GO:0004519
## 614 GO:0005179
## 615 GO:0005319
## 616 GO:0015450
## 617 GO:0019894
## 618 GO:0052689
## 619 GO:0003883
## 620 GO:0003951
## 621 GO:0004016
## 622 GO:0004019
## 623 GO:0004489
## 624 GO:0004623
## 625 GO:0016706
## 626 GO:0016813
## 627 GO:0016814
## 628 GO:0016849
## 629 GO:0017025
## 630 GO:0022840
## 631 GO:0022841
## 632 GO:0030515
## 633 GO:0031996
## 634 GO:0034190
## 635 GO:0036442
## 636 GO:0036505
## 637 GO:0042500
## 638 GO:0042834
## 639 GO:0042988
## 640 GO:0044548
## 641 GO:0050750
## 642 GO:0070325
## 643 GO:0070628
## 644 GO:0071890
## 645 GO:0099516
## 646 GO:0008171
## 647 GO:0008432
## 648 GO:0015085
## 649 GO:0015171
## 650 GO:0015276
## 651 GO:0003712
## 652 GO:0004721
## 653 GO:0019955
## 654 GO:0004653
## 655 GO:0004866
## 656 GO:0015175
## 657 GO:0030414
## 658 GO:0032451
## 659 GO:0035497
## 660 GO:0061135
## 661 GO:0097110
## 662 GO:0046983
## 663 GO:0016616
## 664 GO:0043621
## 665 GO:0016791
## 666 GO:0045296
## 667 GO:0046914
## 668 GO:0005198
## 669 GO:0000975
## 670 GO:0001067
## 671 GO:0016776
## 672 GO:0030554
## 673 GO:0032559
## 674 GO:0061630
## 675 GO:0061659
## 676 GO:0043565
## 677 GO:0004842
## 678 GO:0008170
## 679 GO:0035091
## 680 GO:0000979
## 681 GO:0001882
## 682 GO:0001883
## 683 GO:0032549
## 684 GO:0032550
## 685 GO:0035639
## 686 GO:0001076
## 687 GO:0044212
## 688 GO:0001047
## 689 GO:0005525
## 690 GO:0019001
## 691 GO:0032561
## 692 GO:0004553
## 693 GO:0008320
## 694 GO:0015266
## 695 GO:0022884
## 696 GO:0003684
## 697 GO:0003823
## 698 GO:0003962
## 699 GO:0004123
## 700 GO:0004568
## 701 GO:0004602
## 702 GO:0004634
## 703 GO:0004869
## 704 GO:0005242
## 705 GO:0005247
## 706 GO:0005504
## 707 GO:0008061
## 708 GO:0009975
## 709 GO:0017154
## 710 GO:0019003
## 711 GO:0042809
## 712 GO:0043027
## 713 GO:0043028
## 714 GO:0043121
## 715 GO:0044540
## 716 GO:0047982
## 717 GO:0048406
## 718 GO:0080146
## 719 GO:0004198
## 720 GO:0016298
## 721 GO:0031072
## 722 GO:0042301
## 723 GO:0070412
## 724 GO:0035326
## 725 GO:0042623
## 726 GO:0017076
## 727 GO:0032553
## 728 GO:0032555
## 729 GO:0042826
## 730 GO:0001784
## 731 GO:0001848
## 732 GO:0004017
## 733 GO:0016705
## 734 GO:0016922
## 735 GO:0045309
## 736 GO:0072341
## 737 GO:0000980
## 738 GO:0008514
## 739 GO:0015078
## 740 GO:0000983
## 741 GO:0004190
## 742 GO:0004984
## 743 GO:0005545
## 744 GO:0005546
## 745 GO:0008144
## 746 GO:0016290
## 747 GO:0030170
## 748 GO:0033293
## 749 GO:0043023
## 750 GO:0050661
## 751 GO:0051536
## 752 GO:0070001
## 753 GO:1901505
## 754 GO:0000976
## 755 GO:0000166
## 756 GO:1901265
## 757 GO:0051219
## 758 GO:0015291
## 759 GO:0050839
## 760 GO:0001102
## 761 GO:0015248
## 762 GO:1901981
## 763 GO:0030943
## 764 GO:0043167
## 765 GO:0097367
## 766 GO:0008565
## 767 GO:0016278
## 768 GO:0016279
## 769 GO:0018024
## 770 GO:0004620
## 771 GO:0010857
## 772 GO:0016645
## 773 GO:0016646
## 774 GO:0019150
## 775 GO:0020037
## 776 GO:0030346
## 777 GO:0032453
## 778 GO:0034648
## 779 GO:0035250
## 780 GO:0046966
## 781 GO:0071837
## 782 GO:0098631
## 783 GO:0098632
## 784 GO:0017111
## 785 GO:0019904
## 786 GO:0042578
## 787 GO:0042054
## 788 GO:0042803
## 789 GO:0005515
## 790 GO:0001104
## 791 GO:0016758
## 792 GO:0003824
## 793 GO:0003714
## 794 GO:0003713
## 795 GO:0005539
## 796 GO:0043168
## 797 GO:0051019
## 798 GO:0015293
## 799 GO:0019199
## 800 GO:0046332
## 801 GO:0016462
## 802 GO:0016817
## 803 GO:0016818
## 804 GO:0003841
## 805 GO:0004252
## 806 GO:0005178
## 807 GO:0005506
## 808 GO:0008121
## 809 GO:0008308
## 810 GO:0016289
## 811 GO:0016307
## 812 GO:0016411
## 813 GO:0016679
## 814 GO:0016846
## 815 GO:0035005
## 816 GO:0042162
## 817 GO:0042171
## 818 GO:0046934
## 819 GO:0047144
## 820 GO:0047617
## 821 GO:0048365
## 822 GO:0052813
## 823 GO:1902936
## 824 GO:0004674
## 825 GO:0046872
## 826 GO:0016788
## 827 GO:0022853
## 828 GO:0005048
## 829 GO:0033613
## 830 GO:0030246
## 831 GO:0004896
## 832 GO:0005201
## 833 GO:0005200
## 834 GO:0030507
## 835 GO:0031432
## 836 GO:0032452
## 837 GO:0016772
## 838 GO:0046873
## 839 GO:0005253
## 840 GO:0008276
## 841 GO:0043492
## 842 GO:0043169
## 843 GO:0015081
## 844 GO:0015405
## 845 GO:0016787
## 846 GO:0003924
## 847 GO:0016740
## 848 GO:0005254
## 849 GO:0015108
## 850 GO:0008270
## 851 GO:0001046
## 852 GO:0003743
## 853 GO:0008135
## 854 GO:0008236
## 855 GO:0008307
## 856 GO:0008378
## 857 GO:0017171
## 858 GO:0019864
## 859 GO:0019865
## 860 GO:0001105
## 861 GO:0005543
## 862 GO:0001191
## 863 GO:0008017
## 864 GO:0016747
## 865 GO:0016810
## 866 GO:0022804
## 867 GO:0022890
## 868 GO:0001653
## 869 GO:0005003
## 870 GO:0005272
## 871 GO:0008528
## 872 GO:0017048
## 873 GO:1990239
## 874 GO:0001158
## 875 GO:0036094
## 876 GO:0001190
## 877 GO:0030165
## 878 GO:0016746
## 879 GO:0016820
## 880 GO:0042626
## 881 GO:0044877
## 882 GO:0008509
## 883 GO:0005391
## 884 GO:0005484
## 885 GO:0008556
## 886 GO:0016303
## 887 GO:0016790
## 888 GO:0030374
## 889 GO:0030955
## 890 GO:0031402
## 891 GO:0031420
## 892 GO:0044325
## 893 GO:0005509
## 894 GO:0030506
## 895 GO:0016301
## 896 GO:0004714
## 897 GO:0048487
## 898 GO:0050840
## 899 GO:0004713
## 900 GO:0016773
## 901 GO:0005089
## 902 GO:0008022
## 903 GO:0015103
## 904 GO:0008374
## 905 GO:0016811
## 906 GO:0035004
## 907 GO:0043548
## 908 GO:0052742
## 909 GO:0008201
## 910 GO:0008013
## 911 GO:0033218
## 912 GO:0042277
## 913 GO:0019829
## 914 GO:0042625
## 915 GO:0008092
## 916 GO:0015267
## 917 GO:0022803
## 918 GO:0043531
## 919 GO:0051087
## 920 GO:0008289
## 921 GO:0004672
## 922 GO:0032403
## 923 GO:0019905
## 924 GO:0005496
## 925 GO:0022838
## 926 GO:0022843
## 927 GO:0005261
## 928 GO:0060589
## 929 GO:0005096
## 930 GO:0008324
## 931 GO:0000149
## 932 GO:0015662
## 933 GO:0005216
## 934 GO:0001540
## 935 GO:0051015
## 936 GO:0015631
## 937 GO:0022891
## 938 GO:0008083
## 939 GO:0005516
## 940 GO:0015077
## 941 GO:0022857
## 942 GO:0005244
## 943 GO:0022892
## 944 GO:0004888
## 945 GO:0030695
## 946 GO:0005215
## 947 GO:0005249
## 948 GO:0015075
## 949 GO:0099600
## 950 GO:0015079
## 951 GO:0038023
## 952 GO:0022836
## 953 GO:0005267
## 954 GO:0004872
## 955 GO:0005102
## 956 GO:0005125
## 957 GO:0004871
## 958 GO:0004930
## 959 GO:0005126
## 960 GO:0000010
## 961 GO:0000014
## 962 GO:0000016
## 963 GO:0000026
## 964 GO:0000030
## 965 GO:0000033
## 966 GO:0000035
## 967 GO:0000036
## 968 GO:0000048
## 969 GO:0000064
## 970 GO:0000095
## 971 GO:0000099
## 972 GO:0000121
## 973 GO:0000146
## 974 GO:0000150
## 975 GO:0000155
## 976 GO:0000170
## 977 GO:0000171
## 978 GO:0000182
## 979 GO:0000210
## 980 GO:0000213
## 981 GO:0000215
## 982 GO:0000217
## 983 GO:0000224
## 984 GO:0000225
## 985 GO:0000247
## 986 GO:0000248
## 987 GO:0000250
## 988 GO:0000252
## 989 GO:0000253
## 990 GO:0000254
## 991 GO:0000257
## 992 GO:0000268
## 993 GO:0000285
## 994 GO:0000293
## 995 GO:0000295
## 996 GO:0000298
## 997 GO:0000309
## 998 GO:0000334
## 999 GO:0000339
## 1000 GO:0000340
## 1001 GO:0000384
## 1002 GO:0000386
## 1003 GO:0000400
## 1004 GO:0000403
## 1005 GO:0000404
## 1006 GO:0000405
## 1007 GO:0000406
## 1008 GO:0000702
## 1009 GO:0000703
## 1010 GO:0000773
## 1011 GO:0000774
## 1012 GO:0000822
## 1013 GO:0000823
## 1014 GO:0000824
## 1015 GO:0000825
## 1016 GO:0000827
## 1017 GO:0000829
## 1018 GO:0000831
## 1019 GO:0000832
## 1020 GO:0000900
## 1021 GO:0000990
## 1022 GO:0000991
## 1023 GO:0000994
## 1024 GO:0000995
## 1025 GO:0000997
## 1026 GO:0001002
## 1027 GO:0001003
## 1028 GO:0001005
## 1029 GO:0001007
## 1030 GO:0001010
## 1031 GO:0001011
## 1032 GO:0001016
## 1033 GO:0001025
## 1034 GO:0001026
## 1035 GO:0001030
## 1036 GO:0001031
## 1037 GO:0001032
## 1038 GO:0001034
## 1039 GO:0001042
## 1040 GO:0001054
## 1041 GO:0001055
## 1042 GO:0001056
## 1043 GO:0001075
## 1044 GO:0001083
## 1045 GO:0001087
## 1046 GO:0001093
## 1047 GO:0001094
## 1048 GO:0001096
## 1049 GO:0001103
## 1050 GO:0001106
## 1051 GO:0001128
## 1052 GO:0001129
## 1053 GO:0001133
## 1054 GO:0001134
## 1055 GO:0001135
## 1056 GO:0001147
## 1057 GO:0001156
## 1058 GO:0001161
## 1059 GO:0001162
## 1060 GO:0001164
## 1061 GO:0001165
## 1062 GO:0001179
## 1063 GO:0001181
## 1064 GO:0001187
## 1065 GO:0001206
## 1066 GO:0001222
## 1067 GO:0001224
## 1068 GO:0001225
## 1069 GO:0001226
## 1070 GO:0001512
## 1071 GO:0001515
## 1072 GO:0001517
## 1073 GO:0001530
## 1074 GO:0001532
## 1075 GO:0001537
## 1076 GO:0001567
## 1077 GO:0001587
## 1078 GO:0001588
## 1079 GO:0001591
## 1080 GO:0001594
## 1081 GO:0001596
## 1082 GO:0001601
## 1083 GO:0001602
## 1084 GO:0001604
## 1085 GO:0001605
## 1086 GO:0001607
## 1087 GO:0001609
## 1088 GO:0001614
## 1089 GO:0001616
## 1090 GO:0001621
## 1091 GO:0001626
## 1092 GO:0001631
## 1093 GO:0001632
## 1094 GO:0001635
## 1095 GO:0001640
## 1096 GO:0001641
## 1097 GO:0001642
## 1098 GO:0001664
## 1099 GO:0001665
## 1100 GO:0001681
## 1101 GO:0001716
## 1102 GO:0001727
## 1103 GO:0001729
## 1104 GO:0001730
## 1105 GO:0001733
## 1106 GO:0001735
## 1107 GO:0001758
## 1108 GO:0001760
## 1109 GO:0001785
## 1110 GO:0001786
## 1111 GO:0001791
## 1112 GO:0001792
## 1113 GO:0001846
## 1114 GO:0001847
## 1115 GO:0001849
## 1116 GO:0001850
## 1117 GO:0001851
## 1118 GO:0001855
## 1119 GO:0001856
## 1120 GO:0001861
## 1121 GO:0001872
## 1122 GO:0001875
## 1123 GO:0001918
## 1124 GO:0001948
## 1125 GO:0001965
## 1126 GO:0001968
## 1127 GO:0001972
## 1128 GO:0002046
## 1129 GO:0002054
## 1130 GO:0002055
## 1131 GO:0002058
## 1132 GO:0002059
## 1133 GO:0002060
## 1134 GO:0002083
## 1135 GO:0002113
## 1136 GO:0002114
## 1137 GO:0002134
## 1138 GO:0002135
## 1139 GO:0002151
## 1140 GO:0002153
## 1141 GO:0002162
## 1142 GO:0002196
## 1143 GO:0002950
## 1144 GO:0003680
## 1145 GO:0003689
## 1146 GO:0003691
## 1147 GO:0003692
## 1148 GO:0003696
## 1149 GO:0003707
## 1150 GO:0003708
## 1151 GO:0003720
## 1152 GO:0003721
## 1153 GO:0003726
## 1154 GO:0003746
## 1155 GO:0003747
## 1156 GO:0003785
## 1157 GO:0003796
## 1158 GO:0003810
## 1159 GO:0003826
## 1160 GO:0003827
## 1161 GO:0003828
## 1162 GO:0003829
## 1163 GO:0003830
## 1164 GO:0003831
## 1165 GO:0003834
## 1166 GO:0003835
## 1167 GO:0003837
## 1168 GO:0003839
## 1169 GO:0003842
## 1170 GO:0003844
## 1171 GO:0003845
## 1172 GO:0003846
## 1173 GO:0003847
## 1174 GO:0003854
## 1175 GO:0003857
## 1176 GO:0003858
## 1177 GO:0003860
## 1178 GO:0003863
## 1179 GO:0003865
## 1180 GO:0003868
## 1181 GO:0003870
## 1182 GO:0003872
## 1183 GO:0003874
## 1184 GO:0003875
## 1185 GO:0003877
## 1186 GO:0003878
## 1187 GO:0003880
## 1188 GO:0003881
## 1189 GO:0003882
## 1190 GO:0003884
## 1191 GO:0003886
## 1192 GO:0003887
## 1193 GO:0003896
## 1194 GO:0003906
## 1195 GO:0003908
## 1196 GO:0003912
## 1197 GO:0003916
## 1198 GO:0003917
## 1199 GO:0003918
## 1200 GO:0003919
## 1201 GO:0003920
## 1202 GO:0003921
## 1203 GO:0003922
## 1204 GO:0003923
## 1205 GO:0003934
## 1206 GO:0003937
## 1207 GO:0003938
## 1208 GO:0003939
## 1209 GO:0003940
## 1210 GO:0003941
## 1211 GO:0003943
## 1212 GO:0003944
## 1213 GO:0003945
## 1214 GO:0003947
## 1215 GO:0003948
## 1216 GO:0003952
## 1217 GO:0003953
## 1218 GO:0003955
## 1219 GO:0003956
## 1220 GO:0003957
## 1221 GO:0003958
## 1222 GO:0003960
## 1223 GO:0003963
## 1224 GO:0003968
## 1225 GO:0003972
## 1226 GO:0003974
## 1227 GO:0003975
## 1228 GO:0003976
## 1229 GO:0003978
## 1230 GO:0003979
## 1231 GO:0003980
## 1232 GO:0003983
## 1233 GO:0003985
## 1234 GO:0003986
## 1235 GO:0003987
## 1236 GO:0003988
## 1237 GO:0003989
## 1238 GO:0003990
## 1239 GO:0003993
## 1240 GO:0003994
## 1241 GO:0003995
## 1242 GO:0003996
## 1243 GO:0003997
## 1244 GO:0003998
## 1245 GO:0003999
## 1246 GO:0004000
## 1247 GO:0004001
## 1248 GO:0004008
## 1249 GO:0004013
## 1250 GO:0004014
## 1251 GO:0004018
## 1252 GO:0004020
## 1253 GO:0004021
## 1254 GO:0004022
## 1255 GO:0004024
## 1256 GO:0004027
## 1257 GO:0004028
## 1258 GO:0004029
## 1259 GO:0004030
## 1260 GO:0004031
## 1261 GO:0004034
## 1262 GO:0004037
## 1263 GO:0004042
## 1264 GO:0004043
## 1265 GO:0004044
## 1266 GO:0004045
## 1267 GO:0004046
## 1268 GO:0004047
## 1269 GO:0004051
## 1270 GO:0004052
## 1271 GO:0004053
## 1272 GO:0004055
## 1273 GO:0004056
## 1274 GO:0004057
## 1275 GO:0004059
## 1276 GO:0004060
## 1277 GO:0004061
## 1278 GO:0004062
## 1279 GO:0004063
## 1280 GO:0004064
## 1281 GO:0004065
## 1282 GO:0004066
## 1283 GO:0004067
## 1284 GO:0004068
## 1285 GO:0004069
## 1286 GO:0004070
## 1287 GO:0004074
## 1288 GO:0004075
## 1289 GO:0004077
## 1290 GO:0004078
## 1291 GO:0004079
## 1292 GO:0004080
## 1293 GO:0004081
## 1294 GO:0004082
## 1295 GO:0004083
## 1296 GO:0004085
## 1297 GO:0004087
## 1298 GO:0004088
## 1299 GO:0004089
## 1300 GO:0004090
## 1301 GO:0004092
## 1302 GO:0004095
## 1303 GO:0004096
## 1304 GO:0004098
## 1305 GO:0004102
## 1306 GO:0004103
## 1307 GO:0004104
## 1308 GO:0004105
## 1309 GO:0004108
## 1310 GO:0004109
## 1311 GO:0004111
## 1312 GO:0004112
## 1313 GO:0004113
## 1314 GO:0004114
## 1315 GO:0004115
## 1316 GO:0004117
## 1317 GO:0004118
## 1318 GO:0004119
## 1319 GO:0004122
## 1320 GO:0004126
## 1321 GO:0004128
## 1322 GO:0004129
## 1323 GO:0004131
## 1324 GO:0004132
## 1325 GO:0004134
## 1326 GO:0004135
## 1327 GO:0004137
## 1328 GO:0004138
## 1329 GO:0004139
## 1330 GO:0004140
## 1331 GO:0004142
## 1332 GO:0004143
## 1333 GO:0004144
## 1334 GO:0004145
## 1335 GO:0004146
## 1336 GO:0004148
## 1337 GO:0004149
## 1338 GO:0004151
## 1339 GO:0004152
## 1340 GO:0004155
## 1341 GO:0004157
## 1342 GO:0004163
## 1343 GO:0004164
## 1344 GO:0004165
## 1345 GO:0004167
## 1346 GO:0004168
## 1347 GO:0004169
## 1348 GO:0004170
## 1349 GO:0004174
## 1350 GO:0004176
## 1351 GO:0004177
## 1352 GO:0004180
## 1353 GO:0004181
## 1354 GO:0004185
## 1355 GO:0004298
## 1356 GO:0004300
## 1357 GO:0004303
## 1358 GO:0004304
## 1359 GO:0004305
## 1360 GO:0004306
## 1361 GO:0004307
## 1362 GO:0004308
## 1363 GO:0004310
## 1364 GO:0004311
## 1365 GO:0004312
## 1366 GO:0004313
## 1367 GO:0004314
## 1368 GO:0004315
## 1369 GO:0004316
## 1370 GO:0004317
## 1371 GO:0004319
## 1372 GO:0004320
## 1373 GO:0004321
## 1374 GO:0004322
## 1375 GO:0004324
## 1376 GO:0004325
## 1377 GO:0004326
## 1378 GO:0004329
## 1379 GO:0004332
## 1380 GO:0004334
## 1381 GO:0004335
## 1382 GO:0004336
## 1383 GO:0004339
## 1384 GO:0004340
## 1385 GO:0004341
## 1386 GO:0004342
## 1387 GO:0004343
## 1388 GO:0004345
## 1389 GO:0004346
## 1390 GO:0004347
## 1391 GO:0004348
## 1392 GO:0004349
## 1393 GO:0004350
## 1394 GO:0004352
## 1395 GO:0004353
## 1396 GO:0004357
## 1397 GO:0004359
## 1398 GO:0004360
## 1399 GO:0004361
## 1400 GO:0004362
## 1401 GO:0004363
## 1402 GO:0004364
## 1403 GO:0004365
## 1404 GO:0004366
## 1405 GO:0004367
## 1406 GO:0004368
## 1407 GO:0004370
## 1408 GO:0004371
## 1409 GO:0004372
## 1410 GO:0004373
## 1411 GO:0004375
## 1412 GO:0004376
## 1413 GO:0004377
## 1414 GO:0004378
## 1415 GO:0004379
## 1416 GO:0004380
## 1417 GO:0004381
## 1418 GO:0004382
## 1419 GO:0004383
## 1420 GO:0004385
## 1421 GO:0004392
## 1422 GO:0004394
## 1423 GO:0004395
## 1424 GO:0004397
## 1425 GO:0004398
## 1426 GO:0004407
## 1427 GO:0004408
## 1428 GO:0004411
## 1429 GO:0004415
## 1430 GO:0004416
## 1431 GO:0004418
## 1432 GO:0004419
## 1433 GO:0004420
## 1434 GO:0004421
## 1435 GO:0004422
## 1436 GO:0004423
## 1437 GO:0004427
## 1438 GO:0004430
## 1439 GO:0004435
## 1440 GO:0004438
## 1441 GO:0004441
## 1442 GO:0004445
## 1443 GO:0004447
## 1444 GO:0004448
## 1445 GO:0004449
## 1446 GO:0004450
## 1447 GO:0004452
## 1448 GO:0004454
## 1449 GO:0004457
## 1450 GO:0004458
## 1451 GO:0004459
## 1452 GO:0004461
## 1453 GO:0004462
## 1454 GO:0004463
## 1455 GO:0004464
## 1456 GO:0004465
## 1457 GO:0004466
## 1458 GO:0004467
## 1459 GO:0004468
## 1460 GO:0004470
## 1461 GO:0004471
## 1462 GO:0004473
## 1463 GO:0004474
## 1464 GO:0004475
## 1465 GO:0004476
## 1466 GO:0004477
## 1467 GO:0004478
## 1468 GO:0004479
## 1469 GO:0004482
## 1470 GO:0004483
## 1471 GO:0004484
## 1472 GO:0004485
## 1473 GO:0004486
## 1474 GO:0004487
## 1475 GO:0004488
## 1476 GO:0004490
## 1477 GO:0004491
## 1478 GO:0004492
## 1479 GO:0004493
## 1480 GO:0004494
## 1481 GO:0004496
## 1482 GO:0004497
## 1483 GO:0004498
## 1484 GO:0004499
## 1485 GO:0004500
## 1486 GO:0004502
## 1487 GO:0004503
## 1488 GO:0004504
## 1489 GO:0004505
## 1490 GO:0004506
## 1491 GO:0004507
## 1492 GO:0004508
## 1493 GO:0004509
## 1494 GO:0004510
## 1495 GO:0004511
## 1496 GO:0004512
## 1497 GO:0004513
## 1498 GO:0004514
## 1499 GO:0004515
## 1500 GO:0004516
## 1501 GO:0004517
## 1502 GO:0004522
## 1503 GO:0004525
## 1504 GO:0004526
## 1505 GO:0004528
## 1506 GO:0004530
## 1507 GO:0004531
## 1508 GO:0004534
## 1509 GO:0004549
## 1510 GO:0004551
## 1511 GO:0004555
## 1512 GO:0004556
## 1513 GO:0004557
## 1514 GO:0004558
## 1515 GO:0004560
## 1516 GO:0004561
## 1517 GO:0004563
## 1518 GO:0004565
## 1519 GO:0004566
## 1520 GO:0004567
## 1521 GO:0004569
## 1522 GO:0004572
## 1523 GO:0004573
## 1524 GO:0004574
## 1525 GO:0004575
## 1526 GO:0004576
## 1527 GO:0004578
## 1528 GO:0004579
## 1529 GO:0004581
## 1530 GO:0004582
## 1531 GO:0004583
## 1532 GO:0004584
## 1533 GO:0004585
## 1534 GO:0004586
## 1535 GO:0004587
## 1536 GO:0004588
## 1537 GO:0004590
## 1538 GO:0004591
## 1539 GO:0004594
## 1540 GO:0004595
## 1541 GO:0004596
## 1542 GO:0004597
## 1543 GO:0004598
## 1544 GO:0004603
## 1545 GO:0004605
## 1546 GO:0004607
## 1547 GO:0004608
## 1548 GO:0004609
## 1549 GO:0004610
## 1550 GO:0004613
## 1551 GO:0004614
## 1552 GO:0004615
## 1553 GO:0004617
## 1554 GO:0004618
## 1555 GO:0004621
## 1556 GO:0004622
## 1557 GO:0004629
## 1558 GO:0004630
## 1559 GO:0004631
## 1560 GO:0004632
## 1561 GO:0004633
## 1562 GO:0004637
## 1563 GO:0004638
## 1564 GO:0004639
## 1565 GO:0004641
## 1566 GO:0004642
## 1567 GO:0004643
## 1568 GO:0004644
## 1569 GO:0004645
## 1570 GO:0004647
## 1571 GO:0004648
## 1572 GO:0004649
## 1573 GO:0004651
## 1574 GO:0004652
## 1575 GO:0004654
## 1576 GO:0004655
## 1577 GO:0004656
## 1578 GO:0004657
## 1579 GO:0004658
## 1580 GO:0004660
## 1581 GO:0004662
## 1582 GO:0004666
## 1583 GO:0004667
## 1584 GO:0004671
## 1585 GO:0004673
## 1586 GO:0004676
## 1587 GO:0004677
## 1588 GO:0004683
## 1589 GO:0004686
## 1590 GO:0004687
## 1591 GO:0004689
## 1592 GO:0004690
## 1593 GO:0004691
## 1594 GO:0004692
## 1595 GO:0004693
## 1596 GO:0004694
## 1597 GO:0004698
## 1598 GO:0004699
## 1599 GO:0004702
## 1600 GO:0004703
## 1601 GO:0004704
## 1602 GO:0004705
## 1603 GO:0004706
## 1604 GO:0004707
## 1605 GO:0004708
## 1606 GO:0004709
## 1607 GO:0004711
## 1608 GO:0004715
## 1609 GO:0004716
## 1610 GO:0004719
## 1611 GO:0004720
## 1612 GO:0004723
## 1613 GO:0004726
## 1614 GO:0004728
## 1615 GO:0004730
## 1616 GO:0004731
## 1617 GO:0004733
## 1618 GO:0004735
## 1619 GO:0004736
## 1620 GO:0004738
## 1621 GO:0004739
## 1622 GO:0004740
## 1623 GO:0004741
## 1624 GO:0004742
## 1625 GO:0004743
## 1626 GO:0004744
## 1627 GO:0004747
## 1628 GO:0004748
## 1629 GO:0004749
## 1630 GO:0004750
## 1631 GO:0004751
## 1632 GO:0004756
## 1633 GO:0004757
## 1634 GO:0004758
## 1635 GO:0004760
## 1636 GO:0004766
## 1637 GO:0004767
## 1638 GO:0004768
## 1639 GO:0004769
## 1640 GO:0004771
## 1641 GO:0004773
## 1642 GO:0004774
## 1643 GO:0004775
## 1644 GO:0004776
## 1645 GO:0004777
## 1646 GO:0004778
## 1647 GO:0004781
## 1648 GO:0004782
## 1649 GO:0004784
## 1650 GO:0004788
## 1651 GO:0004790
## 1652 GO:0004791
## 1653 GO:0004792
## 1654 GO:0004794
## 1655 GO:0004796
## 1656 GO:0004797
## 1657 GO:0004798
## 1658 GO:0004799
## 1659 GO:0004800
## 1660 GO:0004801
## 1661 GO:0004802
## 1662 GO:0004803
## 1663 GO:0004806
## 1664 GO:0004807
## 1665 GO:0004809
## 1666 GO:0004813
## 1667 GO:0004814
## 1668 GO:0004816
## 1669 GO:0004817
## 1670 GO:0004819
## 1671 GO:0004820
## 1672 GO:0004821
## 1673 GO:0004822
## 1674 GO:0004823
## 1675 GO:0004824
## 1676 GO:0004825
## 1677 GO:0004826
## 1678 GO:0004828
## 1679 GO:0004831
## 1680 GO:0004832
## 1681 GO:0004833
## 1682 GO:0004835
## 1683 GO:0004838
## 1684 GO:0004839
## 1685 GO:0004844
## 1686 GO:0004850
## 1687 GO:0004852
## 1688 GO:0004853
## 1689 GO:0004854
## 1690 GO:0004855
## 1691 GO:0004856
## 1692 GO:0004859
## 1693 GO:0004862
## 1694 GO:0004865
## 1695 GO:0004867
## 1696 GO:0004873
## 1697 GO:0004874
## 1698 GO:0004875
## 1699 GO:0004876
## 1700 GO:0004877
## 1701 GO:0004878
## 1702 GO:0004879
## 1703 GO:0004882
## 1704 GO:0004886
## 1705 GO:0004887
## 1706 GO:0004890
## 1707 GO:0004897
## 1708 GO:0004900
## 1709 GO:0004904
## 1710 GO:0004905
## 1711 GO:0004906
## 1712 GO:0004908
## 1713 GO:0004909
## 1714 GO:0004910
## 1715 GO:0004911
## 1716 GO:0004912
## 1717 GO:0004913
## 1718 GO:0004914
## 1719 GO:0004915
## 1720 GO:0004917
## 1721 GO:0004918
## 1722 GO:0004919
## 1723 GO:0004920
## 1724 GO:0004921
## 1725 GO:0004923
## 1726 GO:0004924
## 1727 GO:0004925
## 1728 GO:0004931
## 1729 GO:0004935
## 1730 GO:0004936
## 1731 GO:0004937
## 1732 GO:0004938
## 1733 GO:0004939
## 1734 GO:0004940
## 1735 GO:0004941
## 1736 GO:0004945
## 1737 GO:0004946
## 1738 GO:0004947
## 1739 GO:0004948
## 1740 GO:0004949
## 1741 GO:0004950
## 1742 GO:0004951
## 1743 GO:0004952
## 1744 GO:0004953
## 1745 GO:0004954
## 1746 GO:0004955
## 1747 GO:0004956
## 1748 GO:0004957
## 1749 GO:0004958
## 1750 GO:0004961
## 1751 GO:0004962
## 1752 GO:0004963
## 1753 GO:0004964
## 1754 GO:0004965
## 1755 GO:0004966
## 1756 GO:0004967
## 1757 GO:0004968
## 1758 GO:0004969
## 1759 GO:0004970
## 1760 GO:0004971
## 1761 GO:0004972
## 1762 GO:0004974
## 1763 GO:0004977
## 1764 GO:0004978
## 1765 GO:0004979
## 1766 GO:0004980
## 1767 GO:0004982
## 1768 GO:0004983
## 1769 GO:0004985
## 1770 GO:0004990
## 1771 GO:0004991
## 1772 GO:0004992
## 1773 GO:0004993
## 1774 GO:0004994
## 1775 GO:0004995
## 1776 GO:0004996
## 1777 GO:0004997
## 1778 GO:0004998
## 1779 GO:0004999
## 1780 GO:0005000
## 1781 GO:0005001
## 1782 GO:0005004
## 1783 GO:0005005
## 1784 GO:0005006
## 1785 GO:0005007
## 1786 GO:0005008
## 1787 GO:0005009
## 1788 GO:0005010
## 1789 GO:0005011
## 1790 GO:0005017
## 1791 GO:0005018
## 1792 GO:0005019
## 1793 GO:0005020
## 1794 GO:0005021
## 1795 GO:0005024
## 1796 GO:0005025
## 1797 GO:0005026
## 1798 GO:0005030
## 1799 GO:0005034
## 1800 GO:0005041
## 1801 GO:0005042
## 1802 GO:0005044
## 1803 GO:0005046
## 1804 GO:0005049
## 1805 GO:0005052
## 1806 GO:0005053
## 1807 GO:0005055
## 1808 GO:0005072
## 1809 GO:0005078
## 1810 GO:0005080
## 1811 GO:0005086
## 1812 GO:0005090
## 1813 GO:0005092
## 1814 GO:0005093
## 1815 GO:0005094
## 1816 GO:0005095
## 1817 GO:0005104
## 1818 GO:0005105
## 1819 GO:0005109
## 1820 GO:0005110
## 1821 GO:0005111
## 1822 GO:0005112
## 1823 GO:0005113
## 1824 GO:0005114
## 1825 GO:0005115
## 1826 GO:0005123
## 1827 GO:0005124
## 1828 GO:0005127
## 1829 GO:0005128
## 1830 GO:0005129
## 1831 GO:0005130
## 1832 GO:0005131
## 1833 GO:0005132
## 1834 GO:0005133
## 1835 GO:0005134
## 1836 GO:0005135
## 1837 GO:0005136
## 1838 GO:0005137
## 1839 GO:0005138
## 1840 GO:0005139
## 1841 GO:0005140
## 1842 GO:0005141
## 1843 GO:0005142
## 1844 GO:0005143
## 1845 GO:0005144
## 1846 GO:0005146
## 1847 GO:0005147
## 1848 GO:0005148
## 1849 GO:0005150
## 1850 GO:0005151
## 1851 GO:0005152
## 1852 GO:0005153
## 1853 GO:0005157
## 1854 GO:0005160
## 1855 GO:0005161
## 1856 GO:0005163
## 1857 GO:0005164
## 1858 GO:0005166
## 1859 GO:0005169
## 1860 GO:0005170
## 1861 GO:0005171
## 1862 GO:0005172
## 1863 GO:0005173
## 1864 GO:0005174
## 1865 GO:0005175
## 1866 GO:0005176
## 1867 GO:0005183
## 1868 GO:0005184
## 1869 GO:0005185
## 1870 GO:0005199
## 1871 GO:0005212
## 1872 GO:0005219
## 1873 GO:0005220
## 1874 GO:0005221
## 1875 GO:0005222
## 1876 GO:0005223
## 1877 GO:0005229
## 1878 GO:0005230
## 1879 GO:0005231
## 1880 GO:0005234
## 1881 GO:0005237
## 1882 GO:0005248
## 1883 GO:0005250
## 1884 GO:0005251
## 1885 GO:0005252
## 1886 GO:0005260
## 1887 GO:0005275
## 1888 GO:0005276
## 1889 GO:0005277
## 1890 GO:0005280
## 1891 GO:0005289
## 1892 GO:0005290
## 1893 GO:0005292
## 1894 GO:0005298
## 1895 GO:0005302
## 1896 GO:0005307
## 1897 GO:0005308
## 1898 GO:0005309
## 1899 GO:0005310
## 1900 GO:0005313
## 1901 GO:0005314
## 1902 GO:0005315
## 1903 GO:0005316
## 1904 GO:0005324
## 1905 GO:0005325
## 1906 GO:0005329
## 1907 GO:0005330
## 1908 GO:0005332
## 1909 GO:0005333
## 1910 GO:0005334
## 1911 GO:0005335
## 1912 GO:0005337
## 1913 GO:0005338
## 1914 GO:0005344
## 1915 GO:0005345
## 1916 GO:0005346
## 1917 GO:0005347
## 1918 GO:0005350
## 1919 GO:0005351
## 1920 GO:0005353
## 1921 GO:0005362
## 1922 GO:0005365
## 1923 GO:0005366
## 1924 GO:0005367
## 1925 GO:0005369
## 1926 GO:0005375
## 1927 GO:0005381
## 1928 GO:0005384
## 1929 GO:0005388
## 1930 GO:0005395
## 1931 GO:0005412
## 1932 GO:0005415
## 1933 GO:0005427
## 1934 GO:0005432
## 1935 GO:0005436
## 1936 GO:0005452
## 1937 GO:0005456
## 1938 GO:0005457
## 1939 GO:0005459
## 1940 GO:0005461
## 1941 GO:0005462
## 1942 GO:0005464
## 1943 GO:0005471
## 1944 GO:0005476
## 1945 GO:0005477
## 1946 GO:0005483
## 1947 GO:0005497
## 1948 GO:0005499
## 1949 GO:0005501
## 1950 GO:0005502
## 1951 GO:0005503
## 1952 GO:0005519
## 1953 GO:0005522
## 1954 GO:0005523
## 1955 GO:0005528
## 1956 GO:0005534
## 1957 GO:0005536
## 1958 GO:0005537
## 1959 GO:0005542
## 1960 GO:0005544
## 1961 GO:0005547
## 1962 GO:0005549
## 1963 GO:0005550
## 1964 GO:0008009
## 1965 GO:0008035
## 1966 GO:0008046
## 1967 GO:0008048
## 1968 GO:0008066
## 1969 GO:0008068
## 1970 GO:0008073
## 1971 GO:0008081
## 1972 GO:0008093
## 1973 GO:0008107
## 1974 GO:0008108
## 1975 GO:0008109
## 1976 GO:0008111
## 1977 GO:0008112
## 1978 GO:0008113
## 1979 GO:0008115
## 1980 GO:0008116
## 1981 GO:0008117
## 1982 GO:0008119
## 1983 GO:0008120
## 1984 GO:0008123
## 1985 GO:0008124
## 1986 GO:0008127
## 1987 GO:0008131
## 1988 GO:0008139
## 1989 GO:0008140
## 1990 GO:0008142
## 1991 GO:0008146
## 1992 GO:0008147
## 1993 GO:0008160
## 1994 GO:0008174
## 1995 GO:0008176
## 1996 GO:0008177
## 1997 GO:0008184
## 1998 GO:0008188
## 1999 GO:0008190
## 2000 GO:0008191
## 2001 GO:0008192
## 2002 GO:0008193
## 2003 GO:0008195
## 2004 GO:0008198
## 2005 GO:0008199
## 2006 GO:0008227
## 2007 GO:0008239
## 2008 GO:0008240
## 2009 GO:0008241
## 2010 GO:0008242
## 2011 GO:0008251
## 2012 GO:0008252
## 2013 GO:0008253
## 2014 GO:0008254
## 2015 GO:0008260
## 2016 GO:0008263
## 2017 GO:0008265
## 2018 GO:0008267
## 2019 GO:0008269
## 2020 GO:0008271
## 2021 GO:0008273
## 2022 GO:0008281
## 2023 GO:0008294
## 2024 GO:0008296
## 2025 GO:0008301
## 2026 GO:0008310
## 2027 GO:0008311
## 2028 GO:0008321
## 2029 GO:0008327
## 2030 GO:0008329
## 2031 GO:0008330
## 2032 GO:0008331
## 2033 GO:0008332
## 2034 GO:0008336
## 2035 GO:0008349
## 2036 GO:0008353
## 2037 GO:0008381
## 2038 GO:0008384
## 2039 GO:0008386
## 2040 GO:0008387
## 2041 GO:0008389
## 2042 GO:0008392
## 2043 GO:0008395
## 2044 GO:0008396
## 2045 GO:0008397
## 2046 GO:0008398
## 2047 GO:0008401
## 2048 GO:0008403
## 2049 GO:0008404
## 2050 GO:0008405
## 2051 GO:0008410
## 2052 GO:0008413
## 2053 GO:0008417
## 2054 GO:0008418
## 2055 GO:0008419
## 2056 GO:0008422
## 2057 GO:0008424
## 2058 GO:0008425
## 2059 GO:0008426
## 2060 GO:0008427
## 2061 GO:0008428
## 2062 GO:0008429
## 2063 GO:0008430
## 2064 GO:0008431
## 2065 GO:0008434
## 2066 GO:0008437
## 2067 GO:0008440
## 2068 GO:0008441
## 2069 GO:0008442
## 2070 GO:0008444
## 2071 GO:0008445
## 2072 GO:0008446
## 2073 GO:0008448
## 2074 GO:0008449
## 2075 GO:0008453
## 2076 GO:0008454
## 2077 GO:0008455
## 2078 GO:0008456
## 2079 GO:0008457
## 2080 GO:0008458
## 2081 GO:0008459
## 2082 GO:0008460
## 2083 GO:0008465
## 2084 GO:0008466
## 2085 GO:0008467
## 2086 GO:0008469
## 2087 GO:0008470
## 2088 GO:0008474
## 2089 GO:0008475
## 2090 GO:0008476
## 2091 GO:0008478
## 2092 GO:0008479
## 2093 GO:0008480
## 2094 GO:0008481
## 2095 GO:0008482
## 2096 GO:0008483
## 2097 GO:0008484
## 2098 GO:0008486
## 2099 GO:0008488
## 2100 GO:0008489
## 2101 GO:0008493
## 2102 GO:0008494
## 2103 GO:0008495
## 2104 GO:0008496
## 2105 GO:0008499
## 2106 GO:0008502
## 2107 GO:0008503
## 2108 GO:0008504
## 2109 GO:0008506
## 2110 GO:0008507
## 2111 GO:0008508
## 2112 GO:0008510
## 2113 GO:0008511
## 2114 GO:0008513
## 2115 GO:0008517
## 2116 GO:0008518
## 2117 GO:0008519
## 2118 GO:0008520
## 2119 GO:0008521
## 2120 GO:0008523
## 2121 GO:0008525
## 2122 GO:0008526
## 2123 GO:0008527
## 2124 GO:0008531
## 2125 GO:0008532
## 2126 GO:0008534
## 2127 GO:0008545
## 2128 GO:0008553
## 2129 GO:0008554
## 2130 GO:0008555
## 2131 GO:0008559
## 2132 GO:0008568
## 2133 GO:0008574
## 2134 GO:0008579
## 2135 GO:0008597
## 2136 GO:0008603
## 2137 GO:0008607
## 2138 GO:0008609
## 2139 GO:0008641
## 2140 GO:0008650
## 2141 GO:0008656
## 2142 GO:0008670
## 2143 GO:0008689
## 2144 GO:0008700
## 2145 GO:0008709
## 2146 GO:0008721
## 2147 GO:0008725
## 2148 GO:0008732
## 2149 GO:0008745
## 2150 GO:0008746
## 2151 GO:0008747
## 2152 GO:0008750
## 2153 GO:0008753
## 2154 GO:0008761
## 2155 GO:0008768
## 2156 GO:0008775
## 2157 GO:0008781
## 2158 GO:0008783
## 2159 GO:0008785
## 2160 GO:0008792
## 2161 GO:0008794
## 2162 GO:0008798
## 2163 GO:0008802
## 2164 GO:0008803
## 2165 GO:0008808
## 2166 GO:0008811
## 2167 GO:0008812
## 2168 GO:0008817
## 2169 GO:0008821
## 2170 GO:0008823
## 2171 GO:0008829
## 2172 GO:0008832
## 2173 GO:0008852
## 2174 GO:0008853
## 2175 GO:0008859
## 2176 GO:0008865
## 2177 GO:0008887
## 2178 GO:0008889
## 2179 GO:0008890
## 2180 GO:0008891
## 2181 GO:0008892
## 2182 GO:0008893
## 2183 GO:0008894
## 2184 GO:0008897
## 2185 GO:0008900
## 2186 GO:0008903
## 2187 GO:0008934
## 2188 GO:0008940
## 2189 GO:0008941
## 2190 GO:0008948
## 2191 GO:0008955
## 2192 GO:0008962
## 2193 GO:0008963
## 2194 GO:0008967
## 2195 GO:0008970
## 2196 GO:0008973
## 2197 GO:0008988
## 2198 GO:0008995
## 2199 GO:0009000
## 2200 GO:0009007
## 2201 GO:0009008
## 2202 GO:0009013
## 2203 GO:0009019
## 2204 GO:0009020
## 2205 GO:0009032
## 2206 GO:0009374
## 2207 GO:0009378
## 2208 GO:0009384
## 2209 GO:0009400
## 2210 GO:0009673
## 2211 GO:0009882
## 2212 GO:0009917
## 2213 GO:0009918
## 2214 GO:0009922
## 2215 GO:0009931
## 2216 GO:0010181
## 2217 GO:0010309
## 2218 GO:0010314
## 2219 GO:0010348
## 2220 GO:0010385
## 2221 GO:0010428
## 2222 GO:0010465
## 2223 GO:0010484
## 2224 GO:0010485
## 2225 GO:0010521
## 2226 GO:0010698
## 2227 GO:0010736
## 2228 GO:0010851
## 2229 GO:0010855
## 2230 GO:0010858
## 2231 GO:0010859
## 2232 GO:0015016
## 2233 GO:0015018
## 2234 GO:0015019
## 2235 GO:0015020
## 2236 GO:0015037
## 2237 GO:0015038
## 2238 GO:0015039
## 2239 GO:0015052
## 2240 GO:0015054
## 2241 GO:0015055
## 2242 GO:0015056
## 2243 GO:0015057
## 2244 GO:0015065
## 2245 GO:0015068
## 2246 GO:0015086
## 2247 GO:0015087
## 2248 GO:0015088
## 2249 GO:0015091
## 2250 GO:0015093
## 2251 GO:0015094
## 2252 GO:0015095
## 2253 GO:0015098
## 2254 GO:0015101
## 2255 GO:0015105
## 2256 GO:0015106
## 2257 GO:0015111
## 2258 GO:0015112
## 2259 GO:0015114
## 2260 GO:0015116
## 2261 GO:0015117
## 2262 GO:0015125
## 2263 GO:0015126
## 2264 GO:0015127
## 2265 GO:0015131
## 2266 GO:0015132
## 2267 GO:0015137
## 2268 GO:0015139
## 2269 GO:0015140
## 2270 GO:0015141
## 2271 GO:0015143
## 2272 GO:0015165
## 2273 GO:0015173
## 2274 GO:0015180
## 2275 GO:0015182
## 2276 GO:0015183
## 2277 GO:0015184
## 2278 GO:0015185
## 2279 GO:0015186
## 2280 GO:0015190
## 2281 GO:0015191
## 2282 GO:0015193
## 2283 GO:0015194
## 2284 GO:0015195
## 2285 GO:0015196
## 2286 GO:0015197
## 2287 GO:0015198
## 2288 GO:0015205
## 2289 GO:0015207
## 2290 GO:0015211
## 2291 GO:0015215
## 2292 GO:0015216
## 2293 GO:0015217
## 2294 GO:0015218
## 2295 GO:0015220
## 2296 GO:0015222
## 2297 GO:0015226
## 2298 GO:0015227
## 2299 GO:0015228
## 2300 GO:0015230
## 2301 GO:0015232
## 2302 GO:0015234
## 2303 GO:0015235
## 2304 GO:0015238
## 2305 GO:0015245
## 2306 GO:0015247
## 2307 GO:0015252
## 2308 GO:0015269
## 2309 GO:0015271
## 2310 GO:0015272
## 2311 GO:0015275
## 2312 GO:0015277
## 2313 GO:0015279
## 2314 GO:0015280
## 2315 GO:0015288
## 2316 GO:0015292
## 2317 GO:0015295
## 2318 GO:0015301
## 2319 GO:0015307
## 2320 GO:0015319
## 2321 GO:0015320
## 2322 GO:0015321
## 2323 GO:0015327
## 2324 GO:0015333
## 2325 GO:0015347
## 2326 GO:0015349
## 2327 GO:0015350
## 2328 GO:0015361
## 2329 GO:0015362
## 2330 GO:0015367
## 2331 GO:0015368
## 2332 GO:0015369
## 2333 GO:0015377
## 2334 GO:0015378
## 2335 GO:0015379
## 2336 GO:0015382
## 2337 GO:0015389
## 2338 GO:0015390
## 2339 GO:0015403
## 2340 GO:0015410
## 2341 GO:0015420
## 2342 GO:0015421
## 2343 GO:0015431
## 2344 GO:0015432
## 2345 GO:0015433
## 2346 GO:0015439
## 2347 GO:0015440
## 2348 GO:0015464
## 2349 GO:0015467
## 2350 GO:0015485
## 2351 GO:0015489
## 2352 GO:0015495
## 2353 GO:0015501
## 2354 GO:0015538
## 2355 GO:0015556
## 2356 GO:0015562
## 2357 GO:0015563
## 2358 GO:0015578
## 2359 GO:0015605
## 2360 GO:0015616
## 2361 GO:0015633
## 2362 GO:0015636
## 2363 GO:0015639
## 2364 GO:0015643
## 2365 GO:0015645
## 2366 GO:0015651
## 2367 GO:0015659
## 2368 GO:0015660
## 2369 GO:0015925
## 2370 GO:0015926
## 2371 GO:0015929
## 2372 GO:0015932
## 2373 GO:0016005
## 2374 GO:0016015
## 2375 GO:0016019
## 2376 GO:0016034
## 2377 GO:0016150
## 2378 GO:0016151
## 2379 GO:0016153
## 2380 GO:0016154
## 2381 GO:0016155
## 2382 GO:0016160
## 2383 GO:0016165
## 2384 GO:0016167
## 2385 GO:0016174
## 2386 GO:0016175
## 2387 GO:0016176
## 2388 GO:0016206
## 2389 GO:0016208
## 2390 GO:0016212
## 2391 GO:0016213
## 2392 GO:0016229
## 2393 GO:0016230
## 2394 GO:0016231
## 2395 GO:0016232
## 2396 GO:0016250
## 2397 GO:0016262
## 2398 GO:0016263
## 2399 GO:0016274
## 2400 GO:0016277
## 2401 GO:0016286
## 2402 GO:0016287
## 2403 GO:0016295
## 2404 GO:0016296
## 2405 GO:0016300
## 2406 GO:0016308
## 2407 GO:0016309
## 2408 GO:0016312
## 2409 GO:0016314
## 2410 GO:0016316
## 2411 GO:0016361
## 2412 GO:0016362
## 2413 GO:0016401
## 2414 GO:0016402
## 2415 GO:0016403
## 2416 GO:0016404
## 2417 GO:0016405
## 2418 GO:0016406
## 2419 GO:0016408
## 2420 GO:0016409
## 2421 GO:0016412
## 2422 GO:0016413
## 2423 GO:0016416
## 2424 GO:0016417
## 2425 GO:0016418
## 2426 GO:0016421
## 2427 GO:0016422
## 2428 GO:0016426
## 2429 GO:0016427
## 2430 GO:0016428
## 2431 GO:0016429
## 2432 GO:0016430
## 2433 GO:0016453
## 2434 GO:0016492
## 2435 GO:0016493
## 2436 GO:0016494
## 2437 GO:0016495
## 2438 GO:0016496
## 2439 GO:0016497
## 2440 GO:0016499
## 2441 GO:0016500
## 2442 GO:0016501
## 2443 GO:0016503
## 2444 GO:0016505
## 2445 GO:0016508
## 2446 GO:0016509
## 2447 GO:0016517
## 2448 GO:0016519
## 2449 GO:0016520
## 2450 GO:0016521
## 2451 GO:0016524
## 2452 GO:0016534
## 2453 GO:0016594
## 2454 GO:0016596
## 2455 GO:0016603
## 2456 GO:0016608
## 2457 GO:0016615
## 2458 GO:0016618
## 2459 GO:0016620
## 2460 GO:0016623
## 2461 GO:0016624
## 2462 GO:0016635
## 2463 GO:0016638
## 2464 GO:0016639
## 2465 GO:0016641
## 2466 GO:0016647
## 2467 GO:0016653
## 2468 GO:0016661
## 2469 GO:0016668
## 2470 GO:0016672
## 2471 GO:0016675
## 2472 GO:0016701
## 2473 GO:0016702
## 2474 GO:0016709
## 2475 GO:0016711
## 2476 GO:0016712
## 2477 GO:0016713
## 2478 GO:0016714
## 2479 GO:0016715
## 2480 GO:0016717
## 2481 GO:0016725
## 2482 GO:0016742
## 2483 GO:0016743
## 2484 GO:0016744
## 2485 GO:0016748
## 2486 GO:0016755
## 2487 GO:0016768
## 2488 GO:0016769
## 2489 GO:0016774
## 2490 GO:0016775
## 2491 GO:0016778
## 2492 GO:0016780
## 2493 GO:0016782
## 2494 GO:0016783
## 2495 GO:0016784
## 2496 GO:0016805
## 2497 GO:0016807
## 2498 GO:0016812
## 2499 GO:0016823
## 2500 GO:0016832
## 2501 GO:0016833
## 2502 GO:0016838
## 2503 GO:0016840
## 2504 GO:0016841
## 2505 GO:0016842
## 2506 GO:0016844
## 2507 GO:0016857
## 2508 GO:0016861
## 2509 GO:0016863
## 2510 GO:0016868
## 2511 GO:0016877
## 2512 GO:0016878
## 2513 GO:0016881
## 2514 GO:0016882
## 2515 GO:0016884
## 2516 GO:0016885
## 2517 GO:0016888
## 2518 GO:0016889
## 2519 GO:0016890
## 2520 GO:0016892
## 2521 GO:0016894
## 2522 GO:0016899
## 2523 GO:0016903
## 2524 GO:0016907
## 2525 GO:0016913
## 2526 GO:0016917
## 2527 GO:0016918
## 2528 GO:0016920
## 2529 GO:0016929
## 2530 GO:0016934
## 2531 GO:0016936
## 2532 GO:0016941
## 2533 GO:0016964
## 2534 GO:0016979
## 2535 GO:0016990
## 2536 GO:0016992
## 2537 GO:0017002
## 2538 GO:0017005
## 2539 GO:0017018
## 2540 GO:0017020
## 2541 GO:0017022
## 2542 GO:0017024
## 2543 GO:0017034
## 2544 GO:0017040
## 2545 GO:0017042
## 2546 GO:0017045
## 2547 GO:0017046
## 2548 GO:0017049
## 2549 GO:0017050
## 2550 GO:0017057
## 2551 GO:0017060
## 2552 GO:0017061
## 2553 GO:0017065
## 2554 GO:0017070
## 2555 GO:0017075
## 2556 GO:0017077
## 2557 GO:0017080
## 2558 GO:0017081
## 2559 GO:0017082
## 2560 GO:0017084
## 2561 GO:0017089
## 2562 GO:0017091
## 2563 GO:0017095
## 2564 GO:0017096
## 2565 GO:0017098
## 2566 GO:0017099
## 2567 GO:0017108
## 2568 GO:0017110
## 2569 GO:0017113
## 2570 GO:0017125
## 2571 GO:0017127
## 2572 GO:0017128
## 2573 GO:0017129
## 2574 GO:0017134
## 2575 GO:0017136
## 2576 GO:0017147
## 2577 GO:0017150
## 2578 GO:0017151
## 2579 GO:0017153
## 2580 GO:0017159
## 2581 GO:0017161
## 2582 GO:0017162
## 2583 GO:0017166
## 2584 GO:0017168
## 2585 GO:0017169
## 2586 GO:0017172
## 2587 GO:0017174
## 2588 GO:0017176
## 2589 GO:0017178
## 2590 GO:0017188
## 2591 GO:0018025
## 2592 GO:0018114
## 2593 GO:0018169
## 2594 GO:0018423
## 2595 GO:0018455
## 2596 GO:0018467
## 2597 GO:0018478
## 2598 GO:0018479
## 2599 GO:0018585
## 2600 GO:0018636
## 2601 GO:0018685
## 2602 GO:0018733
## 2603 GO:0018738
## 2604 GO:0018773
## 2605 GO:0018812
## 2606 GO:0019002
## 2607 GO:0019103
## 2608 GO:0019115
## 2609 GO:0019135
## 2610 GO:0019136
## 2611 GO:0019144
## 2612 GO:0019145
## 2613 GO:0019153
## 2614 GO:0019158
## 2615 GO:0019166
## 2616 GO:0019213
## 2617 GO:0019238
## 2618 GO:0019531
## 2619 GO:0019534
## 2620 GO:0019706
## 2621 GO:0019763
## 2622 GO:0019767
## 2623 GO:0019770
## 2624 GO:0019772
## 2625 GO:0019776
## 2626 GO:0019777
## 2627 GO:0019778
## 2628 GO:0019779
## 2629 GO:0019780
## 2630 GO:0019781
## 2631 GO:0019782
## 2632 GO:0019784
## 2633 GO:0019785
## 2634 GO:0019788
## 2635 GO:0019789
## 2636 GO:0019799
## 2637 GO:0019807
## 2638 GO:0019808
## 2639 GO:0019809
## 2640 GO:0019810
## 2641 GO:0019811
## 2642 GO:0019825
## 2643 GO:0019826
## 2644 GO:0019828
## 2645 GO:0019834
## 2646 GO:0019840
## 2647 GO:0019841
## 2648 GO:0019862
## 2649 GO:0019863
## 2650 GO:0019869
## 2651 GO:0019871
## 2652 GO:0019911
## 2653 GO:0019912
## 2654 GO:0019948
## 2655 GO:0019956
## 2656 GO:0019957
## 2657 GO:0019958
## 2658 GO:0019959
## 2659 GO:0019960
## 2660 GO:0019962
## 2661 GO:0019966
## 2662 GO:0019969
## 2663 GO:0019970
## 2664 GO:0019972
## 2665 GO:0019976
## 2666 GO:0019981
## 2667 GO:0019983
## 2668 GO:0019992
## 2669 GO:0022820
## 2670 GO:0022824
## 2671 GO:0022848
## 2672 GO:0022849
## 2673 GO:0022850
## 2674 GO:0022851
## 2675 GO:0022852
## 2676 GO:0023023
## 2677 GO:0023024
## 2678 GO:0023026
## 2679 GO:0023029
## 2680 GO:0023030
## 2681 GO:0030020
## 2682 GO:0030023
## 2683 GO:0030060
## 2684 GO:0030108
## 2685 GO:0030109
## 2686 GO:0030144
## 2687 GO:0030151
## 2688 GO:0030156
## 2689 GO:0030158
## 2690 GO:0030159
## 2691 GO:0030160
## 2692 GO:0030169
## 2693 GO:0030171
## 2694 GO:0030172
## 2695 GO:0030184
## 2696 GO:0030197
## 2697 GO:0030215
## 2698 GO:0030226
## 2699 GO:0030228
## 2700 GO:0030229
## 2701 GO:0030233
## 2702 GO:0030235
## 2703 GO:0030247
## 2704 GO:0030249
## 2705 GO:0030250
## 2706 GO:0030251
## 2707 GO:0030267
## 2708 GO:0030272
## 2709 GO:0030273
## 2710 GO:0030274
## 2711 GO:0030275
## 2712 GO:0030276
## 2713 GO:0030280
## 2714 GO:0030283
## 2715 GO:0030284
## 2716 GO:0030290
## 2717 GO:0030292
## 2718 GO:0030294
## 2719 GO:0030296
## 2720 GO:0030297
## 2721 GO:0030298
## 2722 GO:0030305
## 2723 GO:0030306
## 2724 GO:0030332
## 2725 GO:0030337
## 2726 GO:0030342
## 2727 GO:0030343
## 2728 GO:0030345
## 2729 GO:0030348
## 2730 GO:0030350
## 2731 GO:0030351
## 2732 GO:0030354
## 2733 GO:0030366
## 2734 GO:0030368
## 2735 GO:0030369
## 2736 GO:0030371
## 2737 GO:0030375
## 2738 GO:0030377
## 2739 GO:0030378
## 2740 GO:0030379
## 2741 GO:0030380
## 2742 GO:0030387
## 2743 GO:0030395
## 2744 GO:0030409
## 2745 GO:0030412
## 2746 GO:0030429
## 2747 GO:0030492
## 2748 GO:0030504
## 2749 GO:0030545
## 2750 GO:0030546
## 2751 GO:0030547
## 2752 GO:0030548
## 2753 GO:0030549
## 2754 GO:0030550
## 2755 GO:0030551
## 2756 GO:0030552
## 2757 GO:0030553
## 2758 GO:0030586
## 2759 GO:0030594
## 2760 GO:0030614
## 2761 GO:0030616
## 2762 GO:0030617
## 2763 GO:0030618
## 2764 GO:0030619
## 2765 GO:0030621
## 2766 GO:0030622
## 2767 GO:0030623
## 2768 GO:0030624
## 2769 GO:0030626
## 2770 GO:0030627
## 2771 GO:0030628
## 2772 GO:0030629
## 2773 GO:0030676
## 2774 GO:0030697
## 2775 GO:0030729
## 2776 GO:0030731
## 2777 GO:0030735
## 2778 GO:0030748
## 2779 GO:0030760
## 2780 GO:0030791
## 2781 GO:0030792
## 2782 GO:0030881
## 2783 GO:0030883
## 2784 GO:0030884
## 2785 GO:0030898
## 2786 GO:0030899
## 2787 GO:0030911
## 2788 GO:0030942
## 2789 GO:0030957
## 2790 GO:0030975
## 2791 GO:0030976
## 2792 GO:0030977
## 2793 GO:0030983
## 2794 GO:0030984
## 2795 GO:0031005
## 2796 GO:0031013
## 2797 GO:0031014
## 2798 GO:0031071
## 2799 GO:0031151
## 2800 GO:0031177
## 2801 GO:0031208
## 2802 GO:0031210
## 2803 GO:0031249
## 2804 GO:0031369
## 2805 GO:0031370
## 2806 GO:0031386
## 2807 GO:0031403
## 2808 GO:0031404
## 2809 GO:0031433
## 2810 GO:0031434
## 2811 GO:0031489
## 2812 GO:0031493
## 2813 GO:0031531
## 2814 GO:0031545
## 2815 GO:0031624
## 2816 GO:0031626
## 2817 GO:0031628
## 2818 GO:0031681
## 2819 GO:0031682
## 2820 GO:0031683
## 2821 GO:0031685
## 2822 GO:0031686
## 2823 GO:0031687
## 2824 GO:0031690
## 2825 GO:0031691
## 2826 GO:0031692
## 2827 GO:0031694
## 2828 GO:0031695
## 2829 GO:0031696
## 2830 GO:0031697
## 2831 GO:0031698
## 2832 GO:0031699
## 2833 GO:0031700
## 2834 GO:0031701
## 2835 GO:0031702
## 2836 GO:0031703
## 2837 GO:0031704
## 2838 GO:0031705
## 2839 GO:0031707
## 2840 GO:0031708
## 2841 GO:0031710
## 2842 GO:0031711
## 2843 GO:0031715
## 2844 GO:0031716
## 2845 GO:0031720
## 2846 GO:0031721
## 2847 GO:0031724
## 2848 GO:0031726
## 2849 GO:0031727
## 2850 GO:0031728
## 2851 GO:0031729
## 2852 GO:0031730
## 2853 GO:0031731
## 2854 GO:0031732
## 2855 GO:0031735
## 2856 GO:0031737
## 2857 GO:0031741
## 2858 GO:0031748
## 2859 GO:0031749
## 2860 GO:0031750
## 2861 GO:0031751
## 2862 GO:0031752
## 2863 GO:0031755
## 2864 GO:0031762
## 2865 GO:0031764
## 2866 GO:0031765
## 2867 GO:0031766
## 2868 GO:0031768
## 2869 GO:0031769
## 2870 GO:0031770
## 2871 GO:0031771
## 2872 GO:0031772
## 2873 GO:0031773
## 2874 GO:0031775
## 2875 GO:0031780
## 2876 GO:0031781
## 2877 GO:0031782
## 2878 GO:0031783
## 2879 GO:0031798
## 2880 GO:0031802
## 2881 GO:0031812
## 2882 GO:0031821
## 2883 GO:0031826
## 2884 GO:0031835
## 2885 GO:0031837
## 2886 GO:0031849
## 2887 GO:0031851
## 2888 GO:0031852
## 2889 GO:0031854
## 2890 GO:0031855
## 2891 GO:0031857
## 2892 GO:0031858
## 2893 GO:0031859
## 2894 GO:0031861
## 2895 GO:0031862
## 2896 GO:0031867
## 2897 GO:0031870
## 2898 GO:0031871
## 2899 GO:0031877
## 2900 GO:0031883
## 2901 GO:0031893
## 2902 GO:0031894
## 2903 GO:0031895
## 2904 GO:0031896
## 2905 GO:0031957
## 2906 GO:0031962
## 2907 GO:0031994
## 2908 GO:0031995
## 2909 GO:0032003
## 2910 GO:0032027
## 2911 GO:0032028
## 2912 GO:0032029
## 2913 GO:0032036
## 2914 GO:0032038
## 2915 GO:0032041
## 2916 GO:0032050
## 2917 GO:0032051
## 2918 GO:0032052
## 2919 GO:0032089
## 2920 GO:0032090
## 2921 GO:0032093
## 2922 GO:0032135
## 2923 GO:0032137
## 2924 GO:0032138
## 2925 GO:0032139
## 2926 GO:0032142
## 2927 GO:0032143
## 2928 GO:0032145
## 2929 GO:0032181
## 2930 GO:0032183
## 2931 GO:0032184
## 2932 GO:0032190
## 2933 GO:0032217
## 2934 GO:0032356
## 2935 GO:0032357
## 2936 GO:0032358
## 2937 GO:0032393
## 2938 GO:0032394
## 2939 GO:0032395
## 2940 GO:0032396
## 2941 GO:0032399
## 2942 GO:0032405
## 2943 GO:0032422
## 2944 GO:0032428
## 2945 GO:0032440
## 2946 GO:0032448
## 2947 GO:0032450
## 2948 GO:0032454
## 2949 GO:0032500
## 2950 GO:0032542
## 2951 GO:0032552
## 2952 GO:0032554
## 2953 GO:0032556
## 2954 GO:0032557
## 2955 GO:0032564
## 2956 GO:0032567
## 2957 GO:0032575
## 2958 GO:0032767
## 2959 GO:0032794
## 2960 GO:0032795
## 2961 GO:0032810
## 2962 GO:0032813
## 2963 GO:0032841
## 2964 GO:0032934
## 2965 GO:0033038
## 2966 GO:0033040
## 2967 GO:0033041
## 2968 GO:0033130
## 2969 GO:0033142
## 2970 GO:0033149
## 2971 GO:0033188
## 2972 GO:0033192
## 2973 GO:0033204
## 2974 GO:0033229
## 2975 GO:0033265
## 2976 GO:0033558
## 2977 GO:0033560
## 2978 GO:0033570
## 2979 GO:0033592
## 2980 GO:0033608
## 2981 GO:0033612
## 2982 GO:0033676
## 2983 GO:0033682
## 2984 GO:0033691
## 2985 GO:0033699
## 2986 GO:0033735
## 2987 GO:0033737
## 2988 GO:0033743
## 2989 GO:0033745
## 2990 GO:0033746
## 2991 GO:0033749
## 2992 GO:0033754
## 2993 GO:0033764
## 2994 GO:0033778
## 2995 GO:0033780
## 2996 GO:0033781
## 2997 GO:0033791
## 2998 GO:0033798
## 2999 GO:0033814
## 3000 GO:0033819
## 3001 GO:0033823
## 3002 GO:0033829
## 3003 GO:0033842
## 3004 GO:0033857
## 3005 GO:0033858
## 3006 GO:0033862
## 3007 GO:0033867
## 3008 GO:0033871
## 3009 GO:0033872
## 3010 GO:0033878
## 3011 GO:0033882
## 3012 GO:0033883
## 3013 GO:0033885
## 3014 GO:0033897
## 3015 GO:0033906
## 3016 GO:0033919
## 3017 GO:0033925
## 3018 GO:0033961
## 3019 GO:0033981
## 3020 GO:0033989
## 3021 GO:0034012
## 3022 GO:0034038
## 3023 GO:0034039
## 3024 GO:0034040
## 3025 GO:0034041
## 3026 GO:0034056
## 3027 GO:0034057
## 3028 GO:0034061
## 3029 GO:0034185
## 3030 GO:0034186
## 3031 GO:0034188
## 3032 GO:0034189
## 3033 GO:0034211
## 3034 GO:0034235
## 3035 GO:0034353
## 3036 GO:0034386
## 3037 GO:0034416
## 3038 GO:0034417
## 3039 GO:0034431
## 3040 GO:0034432
## 3041 GO:0034437
## 3042 GO:0034450
## 3043 GO:0034452
## 3044 GO:0034481
## 3045 GO:0034483
## 3046 GO:0034485
## 3047 GO:0034512
## 3048 GO:0034513
## 3049 GO:0034545
## 3050 GO:0034584
## 3051 GO:0034590
## 3052 GO:0034594
## 3053 GO:0034596
## 3054 GO:0034597
## 3055 GO:0034602
## 3056 GO:0034604
## 3057 GO:0034617
## 3058 GO:0034618
## 3059 GO:0034632
## 3060 GO:0034634
## 3061 GO:0034649
## 3062 GO:0034711
## 3063 GO:0034713
## 3064 GO:0034714
## 3065 GO:0034722
## 3066 GO:0034736
## 3067 GO:0034739
## 3068 GO:0034875
## 3069 GO:0034899
## 3070 GO:0034979
## 3071 GO:0034986
## 3072 GO:0034987
## 3073 GO:0034988
## 3074 GO:0035014
## 3075 GO:0035034
## 3076 GO:0035173
## 3077 GO:0035174
## 3078 GO:0035175
## 3079 GO:0035184
## 3080 GO:0035226
## 3081 GO:0035240
## 3082 GO:0035241
## 3083 GO:0035242
## 3084 GO:0035243
## 3085 GO:0035251
## 3086 GO:0035252
## 3087 GO:0035254
## 3088 GO:0035255
## 3089 GO:0035256
## 3090 GO:0035259
## 3091 GO:0035276
## 3092 GO:0035299
## 3093 GO:0035325
## 3094 GO:0035368
## 3095 GO:0035373
## 3096 GO:0035374
## 3097 GO:0035375
## 3098 GO:0035379
## 3099 GO:0035401
## 3100 GO:0035402
## 3101 GO:0035403
## 3102 GO:0035410
## 3103 GO:0035438
## 3104 GO:0035472
## 3105 GO:0035473
## 3106 GO:0035478
## 3107 GO:0035500
## 3108 GO:0035501
## 3109 GO:0035514
## 3110 GO:0035515
## 3111 GO:0035516
## 3112 GO:0035529
## 3113 GO:0035538
## 3114 GO:0035539
## 3115 GO:0035575
## 3116 GO:0035586
## 3117 GO:0035594
## 3118 GO:0035596
## 3119 GO:0035597
## 3120 GO:0035598
## 3121 GO:0035605
## 3122 GO:0035612
## 3123 GO:0035614
## 3124 GO:0035615
## 3125 GO:0035620
## 3126 GO:0035642
## 3127 GO:0035643
## 3128 GO:0035650
## 3129 GO:0035651
## 3130 GO:0035662
## 3131 GO:0035663
## 3132 GO:0035671
## 3133 GO:0035673
## 3134 GO:0035717
## 3135 GO:0035718
## 3136 GO:0035727
## 3137 GO:0035730
## 3138 GO:0035731
## 3139 GO:0035755
## 3140 GO:0035757
## 3141 GO:0035758
## 3142 GO:0035800
## 3143 GO:0035851
## 3144 GO:0035870
## 3145 GO:0035877
## 3146 GO:0035925
## 3147 GO:0035939
## 3148 GO:0036004
## 3149 GO:0036033
## 3150 GO:0036041
## 3151 GO:0036054
## 3152 GO:0036055
## 3153 GO:0036105
## 3154 GO:0036130
## 3155 GO:0036131
## 3156 GO:0036132
## 3157 GO:0036134
## 3158 GO:0036139
## 3159 GO:0036140
## 3160 GO:0036143
## 3161 GO:0036219
## 3162 GO:0036220
## 3163 GO:0036222
## 3164 GO:0036312
## 3165 GO:0036313
## 3166 GO:0036317
## 3167 GO:0036326
## 3168 GO:0036327
## 3169 GO:0036328
## 3170 GO:0036332
## 3171 GO:0036374
## 3172 GO:0036393
## 3173 GO:0036402
## 3174 GO:0036403
## 3175 GO:0036435
## 3176 GO:0036455
## 3177 GO:0036458
## 3178 GO:0036461
## 3179 GO:0036468
## 3180 GO:0036479
## 3181 GO:0036487
## 3182 GO:0038024
## 3183 GO:0038025
## 3184 GO:0038036
## 3185 GO:0038046
## 3186 GO:0038047
## 3187 GO:0038048
## 3188 GO:0038049
## 3189 GO:0038051
## 3190 GO:0038052
## 3191 GO:0038062
## 3192 GO:0038064
## 3193 GO:0038085
## 3194 GO:0038100
## 3195 GO:0038106
## 3196 GO:0038117
## 3197 GO:0038121
## 3198 GO:0038131
## 3199 GO:0038132
## 3200 GO:0038164
## 3201 GO:0038181
## 3202 GO:0038182
## 3203 GO:0038186
## 3204 GO:0038191
## 3205 GO:0039552
## 3206 GO:0039706
## 3207 GO:0042007
## 3208 GO:0042008
## 3209 GO:0042011
## 3210 GO:0042012
## 3211 GO:0042015
## 3212 GO:0042017
## 3213 GO:0042018
## 3214 GO:0042019
## 3215 GO:0042020
## 3216 GO:0042043
## 3217 GO:0042056
## 3218 GO:0042131
## 3219 GO:0042132
## 3220 GO:0042134
## 3221 GO:0042163
## 3222 GO:0042164
## 3223 GO:0042165
## 3224 GO:0042166
## 3225 GO:0042169
## 3226 GO:0042281
## 3227 GO:0042282
## 3228 GO:0042287
## 3229 GO:0042288
## 3230 GO:0042289
## 3231 GO:0042292
## 3232 GO:0042296
## 3233 GO:0042328
## 3234 GO:0042356
## 3235 GO:0042379
## 3236 GO:0042392
## 3237 GO:0042497
## 3238 GO:0042577
## 3239 GO:0042586
## 3240 GO:0042602
## 3241 GO:0042608
## 3242 GO:0042609
## 3243 GO:0042610
## 3244 GO:0042624
## 3245 GO:0042658
## 3246 GO:0042731
## 3247 GO:0042781
## 3248 GO:0042799
## 3249 GO:0042805
## 3250 GO:0042806
## 3251 GO:0042813
## 3252 GO:0042835
## 3253 GO:0042903
## 3254 GO:0042922
## 3255 GO:0042923
## 3256 GO:0042924
## 3257 GO:0042931
## 3258 GO:0042975
## 3259 GO:0042978
## 3260 GO:0042979
## 3261 GO:0043008
## 3262 GO:0043014
## 3263 GO:0043015
## 3264 GO:0043022
## 3265 GO:0043024
## 3266 GO:0043035
## 3267 GO:0043120
## 3268 GO:0043125
## 3269 GO:0043136
## 3270 GO:0043139
## 3271 GO:0043141
## 3272 GO:0043178
## 3273 GO:0043183
## 3274 GO:0043184
## 3275 GO:0043185
## 3276 GO:0043208
## 3277 GO:0043221
## 3278 GO:0043225
## 3279 GO:0043236
## 3280 GO:0043237
## 3281 GO:0043250
## 3282 GO:0043262
## 3283 GO:0043273
## 3284 GO:0043325
## 3285 GO:0043337
## 3286 GO:0043394
## 3287 GO:0043395
## 3288 GO:0043398
## 3289 GO:0043423
## 3290 GO:0043426
## 3291 GO:0043495
## 3292 GO:0043515
## 3293 GO:0043522
## 3294 GO:0043533
## 3295 GO:0043544
## 3296 GO:0043546
## 3297 GO:0043559
## 3298 GO:0043734
## 3299 GO:0043739
## 3300 GO:0043754
## 3301 GO:0043783
## 3302 GO:0043795
## 3303 GO:0043812
## 3304 GO:0043813
## 3305 GO:0043843
## 3306 GO:0043849
## 3307 GO:0043874
## 3308 GO:0043890
## 3309 GO:0043914
## 3310 GO:0043916
## 3311 GO:0043924
## 3312 GO:0043994
## 3313 GO:0043995
## 3314 GO:0043996
## 3315 GO:0043997
## 3316 GO:0043998
## 3317 GO:0044020
## 3318 GO:0044323
## 3319 GO:0044377
## 3320 GO:0044378
## 3321 GO:0044508
## 3322 GO:0044547
## 3323 GO:0044549
## 3324 GO:0044594
## 3325 GO:0044595
## 3326 GO:0044596
## 3327 GO:0044610
## 3328 GO:0044713
## 3329 GO:0044714
## 3330 GO:0044715
## 3331 GO:0044716
## 3332 GO:0044717
## 3333 GO:0044729
## 3334 GO:0044730
## 3335 GO:0044736
## 3336 GO:0045027
## 3337 GO:0045028
## 3338 GO:0045029
## 3339 GO:0045030
## 3340 GO:0045031
## 3341 GO:0045032
## 3342 GO:0045118
## 3343 GO:0045125
## 3344 GO:0045127
## 3345 GO:0045130
## 3346 GO:0045131
## 3347 GO:0045134
## 3348 GO:0045153
## 3349 GO:0045155
## 3350 GO:0045159
## 3351 GO:0045174
## 3352 GO:0045182
## 3353 GO:0045183
## 3354 GO:0045236
## 3355 GO:0045294
## 3356 GO:0045295
## 3357 GO:0045322
## 3358 GO:0045352
## 3359 GO:0045353
## 3360 GO:0045485
## 3361 GO:0045499
## 3362 GO:0045504
## 3363 GO:0045509
## 3364 GO:0045513
## 3365 GO:0045517
## 3366 GO:0045518
## 3367 GO:0045519
## 3368 GO:0045523
## 3369 GO:0045545
## 3370 GO:0045550
## 3371 GO:0045569
## 3372 GO:0045703
## 3373 GO:0046316
## 3374 GO:0046403
## 3375 GO:0046404
## 3376 GO:0046523
## 3377 GO:0046525
## 3378 GO:0046526
## 3379 GO:0046527
## 3380 GO:0046538
## 3381 GO:0046539
## 3382 GO:0046554
## 3383 GO:0046556
## 3384 GO:0046570
## 3385 GO:0046577
## 3386 GO:0046592
## 3387 GO:0046623
## 3388 GO:0046624
## 3389 GO:0046625
## 3390 GO:0046703
## 3391 GO:0046715
## 3392 GO:0046789
## 3393 GO:0046790
## 3394 GO:0046817
## 3395 GO:0046848
## 3396 GO:0046870
## 3397 GO:0046904
## 3398 GO:0046911
## 3399 GO:0046912
## 3400 GO:0046920
## 3401 GO:0046922
## 3402 GO:0046923
## 3403 GO:0046933
## 3404 GO:0046935
## 3405 GO:0046964
## 3406 GO:0046965
## 3407 GO:0046969
## 3408 GO:0046970
## 3409 GO:0046972
## 3410 GO:0046974
## 3411 GO:0046975
## 3412 GO:0046976
## 3413 GO:0046978
## 3414 GO:0046979
## 3415 GO:0046980
## 3416 GO:0046997
## 3417 GO:0047006
## 3418 GO:0047012
## 3419 GO:0047015
## 3420 GO:0047016
## 3421 GO:0047017
## 3422 GO:0047020
## 3423 GO:0047021
## 3424 GO:0047023
## 3425 GO:0047025
## 3426 GO:0047035
## 3427 GO:0047042
## 3428 GO:0047045
## 3429 GO:0047057
## 3430 GO:0047058
## 3431 GO:0047066
## 3432 GO:0047086
## 3433 GO:0047105
## 3434 GO:0047115
## 3435 GO:0047117
## 3436 GO:0047127
## 3437 GO:0047130
## 3438 GO:0047131
## 3439 GO:0047134
## 3440 GO:0047150
## 3441 GO:0047159
## 3442 GO:0047166
## 3443 GO:0047173
## 3444 GO:0047179
## 3445 GO:0047184
## 3446 GO:0047186
## 3447 GO:0047191
## 3448 GO:0047192
## 3449 GO:0047196
## 3450 GO:0047198
## 3451 GO:0047220
## 3452 GO:0047223
## 3453 GO:0047224
## 3454 GO:0047225
## 3455 GO:0047238
## 3456 GO:0047256
## 3457 GO:0047263
## 3458 GO:0047273
## 3459 GO:0047275
## 3460 GO:0047277
## 3461 GO:0047280
## 3462 GO:0047288
## 3463 GO:0047290
## 3464 GO:0047291
## 3465 GO:0047293
## 3466 GO:0047298
## 3467 GO:0047305
## 3468 GO:0047312
## 3469 GO:0047315
## 3470 GO:0047316
## 3471 GO:0047322
## 3472 GO:0047323
## 3473 GO:0047325
## 3474 GO:0047326
## 3475 GO:0047341
## 3476 GO:0047349
## 3477 GO:0047369
## 3478 GO:0047374
## 3479 GO:0047389
## 3480 GO:0047390
## 3481 GO:0047391
## 3482 GO:0047394
## 3483 GO:0047395
## 3484 GO:0047402
## 3485 GO:0047408
## 3486 GO:0047409
## 3487 GO:0047442
## 3488 GO:0047444
## 3489 GO:0047451
## 3490 GO:0047453
## 3491 GO:0047464
## 3492 GO:0047493
## 3493 GO:0047498
## 3494 GO:0047522
## 3495 GO:0047536
## 3496 GO:0047545
## 3497 GO:0047547
## 3498 GO:0047555
## 3499 GO:0047560
## 3500 GO:0047578
## 3501 GO:0047598
## 3502 GO:0047613
## 3503 GO:0047620
## 3504 GO:0047621
## 3505 GO:0047631
## 3506 GO:0047638
## 3507 GO:0047658
## 3508 GO:0047676
## 3509 GO:0047685
## 3510 GO:0047693
## 3511 GO:0047696
## 3512 GO:0047704
## 3513 GO:0047708
## 3514 GO:0047710
## 3515 GO:0047718
## 3516 GO:0047726
## 3517 GO:0047730
## 3518 GO:0047734
## 3519 GO:0047743
## 3520 GO:0047747
## 3521 GO:0047750
## 3522 GO:0047751
## 3523 GO:0047756
## 3524 GO:0047757
## 3525 GO:0047760
## 3526 GO:0047783
## 3527 GO:0047787
## 3528 GO:0047800
## 3529 GO:0047801
## 3530 GO:0047804
## 3531 GO:0047820
## 3532 GO:0047837
## 3533 GO:0047840
## 3534 GO:0047844
## 3535 GO:0047856
## 3536 GO:0047860
## 3537 GO:0047865
## 3538 GO:0047874
## 3539 GO:0047888
## 3540 GO:0047894
## 3541 GO:0047915
## 3542 GO:0047933
## 3543 GO:0047936
## 3544 GO:0047939
## 3545 GO:0047945
## 3546 GO:0047946
## 3547 GO:0047961
## 3548 GO:0047962
## 3549 GO:0047963
## 3550 GO:0047969
## 3551 GO:0047977
## 3552 GO:0047988
## 3553 GO:0047992
## 3554 GO:0048018
## 3555 GO:0048019
## 3556 GO:0048020
## 3557 GO:0048030
## 3558 GO:0048038
## 3559 GO:0048039
## 3560 GO:0048040
## 3561 GO:0048101
## 3562 GO:0048156
## 3563 GO:0048185
## 3564 GO:0048244
## 3565 GO:0048248
## 3566 GO:0048257
## 3567 GO:0048270
## 3568 GO:0048403
## 3569 GO:0048407
## 3570 GO:0048495
## 3571 GO:0048531
## 3572 GO:0048763
## 3573 GO:0050023
## 3574 GO:0050031
## 3575 GO:0050038
## 3576 GO:0050046
## 3577 GO:0050051
## 3578 GO:0050072
## 3579 GO:0050080
## 3580 GO:0050104
## 3581 GO:0050113
## 3582 GO:0050115
## 3583 GO:0050119
## 3584 GO:0050121
## 3585 GO:0050124
## 3586 GO:0050129
## 3587 GO:0050135
## 3588 GO:0050144
## 3589 GO:0050146
## 3590 GO:0050152
## 3591 GO:0050178
## 3592 GO:0050197
## 3593 GO:0050201
## 3594 GO:0050211
## 3595 GO:0050220
## 3596 GO:0050221
## 3597 GO:0050252
## 3598 GO:0050253
## 3599 GO:0050254
## 3600 GO:0050262
## 3601 GO:0050265
## 3602 GO:0050277
## 3603 GO:0050290
## 3604 GO:0050291
## 3605 GO:0050294
## 3606 GO:0050313
## 3607 GO:0050321
## 3608 GO:0050333
## 3609 GO:0050337
## 3610 GO:0050346
## 3611 GO:0050347
## 3612 GO:0050353
## 3613 GO:0050354
## 3614 GO:0050355
## 3615 GO:0050379
## 3616 GO:0050405
## 3617 GO:0050421
## 3618 GO:0050429
## 3619 GO:0050431
## 3620 GO:0050436
## 3621 GO:0050444
## 3622 GO:0050459
## 3623 GO:0050462
## 3624 GO:0050473
## 3625 GO:0050479
## 3626 GO:0050480
## 3627 GO:0050501
## 3628 GO:0050508
## 3629 GO:0050509
## 3630 GO:0050510
## 3631 GO:0050512
## 3632 GO:0050528
## 3633 GO:0050542
## 3634 GO:0050543
## 3635 GO:0050544
## 3636 GO:0050561
## 3637 GO:0050567
## 3638 GO:0050571
## 3639 GO:0050577
## 3640 GO:0050591
## 3641 GO:0050610
## 3642 GO:0050632
## 3643 GO:0050646
## 3644 GO:0050647
## 3645 GO:0050648
## 3646 GO:0050649
## 3647 GO:0050656
## 3648 GO:0050659
## 3649 GO:0050664
## 3650 GO:0050682
## 3651 GO:0050683
## 3652 GO:0050692
## 3653 GO:0050693
## 3654 GO:0050698
## 3655 GO:0050699
## 3656 GO:0050700
## 3657 GO:0050780
## 3658 GO:0050785
## 3659 GO:0050786
## 3660 GO:0050811
## 3661 GO:0050815
## 3662 GO:0050816
## 3663 GO:0050833
## 3664 GO:0050897
## 3665 GO:0050998
## 3666 GO:0051011
## 3667 GO:0051033
## 3668 GO:0051120
## 3669 GO:0051139
## 3670 GO:0051184
## 3671 GO:0051185
## 3672 GO:0051264
## 3673 GO:0051265
## 3674 GO:0051267
## 3675 GO:0051371
## 3676 GO:0051373
## 3677 GO:0051377
## 3678 GO:0051378
## 3679 GO:0051379
## 3680 GO:0051380
## 3681 GO:0051392
## 3682 GO:0051393
## 3683 GO:0051400
## 3684 GO:0051424
## 3685 GO:0051425
## 3686 GO:0051429
## 3687 GO:0051430
## 3688 GO:0051431
## 3689 GO:0051433
## 3690 GO:0051434
## 3691 GO:0051500
## 3692 GO:0051525
## 3693 GO:0051537
## 3694 GO:0051538
## 3695 GO:0051575
## 3696 GO:0051717
## 3697 GO:0051722
## 3698 GO:0051724
## 3699 GO:0051731
## 3700 GO:0051736
## 3701 GO:0051747
## 3702 GO:0051765
## 3703 GO:0051766
## 3704 GO:0051786
## 3705 GO:0051787
## 3706 GO:0051800
## 3707 GO:0051861
## 3708 GO:0051864
## 3709 GO:0051870
## 3710 GO:0051879
## 3711 GO:0051880
## 3712 GO:0051903
## 3713 GO:0051916
## 3714 GO:0051978
## 3715 GO:0051990
## 3716 GO:0051996
## 3717 GO:0051998
## 3718 GO:0052381
## 3719 GO:0052591
## 3720 GO:0052593
## 3721 GO:0052594
## 3722 GO:0052595
## 3723 GO:0052596
## 3724 GO:0052597
## 3725 GO:0052598
## 3726 GO:0052599
## 3727 GO:0052600
## 3728 GO:0052629
## 3729 GO:0052642
## 3730 GO:0052654
## 3731 GO:0052655
## 3732 GO:0052656
## 3733 GO:0052657
## 3734 GO:0052666
## 3735 GO:0052692
## 3736 GO:0052717
## 3737 GO:0052723
## 3738 GO:0052724
## 3739 GO:0052725
## 3740 GO:0052726
## 3741 GO:0052731
## 3742 GO:0052732
## 3743 GO:0052739
## 3744 GO:0052740
## 3745 GO:0052794
## 3746 GO:0052795
## 3747 GO:0052796
## 3748 GO:0052798
## 3749 GO:0052810
## 3750 GO:0052811
## 3751 GO:0052812
## 3752 GO:0052815
## 3753 GO:0052817
## 3754 GO:0052821
## 3755 GO:0052822
## 3756 GO:0052825
## 3757 GO:0052826
## 3758 GO:0052827
## 3759 GO:0052828
## 3760 GO:0052829
## 3761 GO:0052830
## 3762 GO:0052831
## 3763 GO:0052832
## 3764 GO:0052833
## 3765 GO:0052835
## 3766 GO:0052836
## 3767 GO:0052839
## 3768 GO:0052840
## 3769 GO:0052843
## 3770 GO:0052844
## 3771 GO:0052845
## 3772 GO:0052846
## 3773 GO:0052847
## 3774 GO:0052848
## 3775 GO:0052851
## 3776 GO:0052852
## 3777 GO:0052853
## 3778 GO:0052854
## 3779 GO:0052855
## 3780 GO:0052858
## 3781 GO:0052869
## 3782 GO:0052871
## 3783 GO:0052872
## 3784 GO:0052884
## 3785 GO:0052885
## 3786 GO:0052894
## 3787 GO:0052895
## 3788 GO:0052899
## 3789 GO:0052901
## 3790 GO:0052902
## 3791 GO:0052903
## 3792 GO:0052904
## 3793 GO:0052906
## 3794 GO:0052907
## 3795 GO:0052909
## 3796 GO:0052917
## 3797 GO:0052918
## 3798 GO:0052925
## 3799 GO:0052926
## 3800 GO:0052927
## 3801 GO:0052928
## 3802 GO:0052929
## 3803 GO:0055077
## 3804 GO:0055100
## 3805 GO:0055102
## 3806 GO:0055103
## 3807 GO:0060001
## 3808 GO:0060002
## 3809 GO:0060072
## 3810 GO:0060175
## 3811 GO:0060228
## 3812 GO:0060230
## 3813 GO:0060422
## 3814 GO:0060698
## 3815 GO:0061133
## 3816 GO:0061501
## 3817 GO:0061507
## 3818 GO:0061513
## 3819 GO:0061547
## 3820 GO:0061598
## 3821 GO:0061599
## 3822 GO:0061604
## 3823 GO:0061605
## 3824 GO:0061609
## 3825 GO:0061627
## 3826 GO:0061628
## 3827 GO:0061629
## 3828 GO:0061649
## 3829 GO:0061656
## 3830 GO:0061663
## 3831 GO:0061665
## 3832 GO:0061685
## 3833 GO:0061690
## 3834 GO:0061697
## 3835 GO:0061711
## 3836 GO:0061712
## 3837 GO:0061714
## 3838 GO:0061749
## 3839 GO:0061750
## 3840 GO:0061752
## 3841 GO:0061768
## 3842 GO:0061769
## 3843 GO:0061770
## 3844 GO:0061783
## 3845 GO:0061798
## 3846 GO:0061799
## 3847 GO:0061809
## 3848 GO:0061811
## 3849 GO:0061812
## 3850 GO:0061821
## 3851 GO:0070002
## 3852 GO:0070006
## 3853 GO:0070008
## 3854 GO:0070009
## 3855 GO:0070012
## 3856 GO:0070016
## 3857 GO:0070025
## 3858 GO:0070026
## 3859 GO:0070037
## 3860 GO:0070051
## 3861 GO:0070052
## 3862 GO:0070053
## 3863 GO:0070061
## 3864 GO:0070064
## 3865 GO:0070080
## 3866 GO:0070095
## 3867 GO:0070097
## 3868 GO:0070119
## 3869 GO:0070123
## 3870 GO:0070139
## 3871 GO:0070140
## 3872 GO:0070180
## 3873 GO:0070182
## 3874 GO:0070191
## 3875 GO:0070224
## 3876 GO:0070251
## 3877 GO:0070259
## 3878 GO:0070260
## 3879 GO:0070273
## 3880 GO:0070280
## 3881 GO:0070287
## 3882 GO:0070290
## 3883 GO:0070300
## 3884 GO:0070320
## 3885 GO:0070324
## 3886 GO:0070326
## 3887 GO:0070330
## 3888 GO:0070335
## 3889 GO:0070336
## 3890 GO:0070337
## 3891 GO:0070361
## 3892 GO:0070362
## 3893 GO:0070363
## 3894 GO:0070401
## 3895 GO:0070402
## 3896 GO:0070403
## 3897 GO:0070404
## 3898 GO:0070405
## 3899 GO:0070410
## 3900 GO:0070411
## 3901 GO:0070463
## 3902 GO:0070492
## 3903 GO:0070506
## 3904 GO:0070513
## 3905 GO:0070524
## 3906 GO:0070538
## 3907 GO:0070539
## 3908 GO:0070546
## 3909 GO:0070548
## 3910 GO:0070551
## 3911 GO:0070553
## 3912 GO:0070566
## 3913 GO:0070567
## 3914 GO:0070568
## 3915 GO:0070573
## 3916 GO:0070576
## 3917 GO:0070577
## 3918 GO:0070579
## 3919 GO:0070611
## 3920 GO:0070612
## 3921 GO:0070615
## 3922 GO:0070626
## 3923 GO:0070644
## 3924 GO:0070653
## 3925 GO:0070679
## 3926 GO:0070694
## 3927 GO:0070696
## 3928 GO:0070697
## 3929 GO:0070698
## 3930 GO:0070699
## 3931 GO:0070700
## 3932 GO:0070728
## 3933 GO:0070733
## 3934 GO:0070735
## 3935 GO:0070736
## 3936 GO:0070739
## 3937 GO:0070740
## 3938 GO:0070742
## 3939 GO:0070773
## 3940 GO:0070774
## 3941 GO:0070780
## 3942 GO:0070815
## 3943 GO:0070840
## 3944 GO:0070853
## 3945 GO:0070856
## 3946 GO:0070878
## 3947 GO:0070883
## 3948 GO:0070888
## 3949 GO:0070890
## 3950 GO:0070891
## 3951 GO:0070892
## 3952 GO:0070905
## 3953 GO:0070915
## 3954 GO:0070974
## 3955 GO:0070975
## 3956 GO:0070976
## 3957 GO:0070984
## 3958 GO:0070990
## 3959 GO:0070991
## 3960 GO:0070996
## 3961 GO:0071074
## 3962 GO:0071164
## 3963 GO:0071207
## 3964 GO:0071424
## 3965 GO:0071532
## 3966 GO:0071535
## 3967 GO:0071558
## 3968 GO:0071566
## 3969 GO:0071567
## 3970 GO:0071614
## 3971 GO:0071633
## 3972 GO:0071723
## 3973 GO:0071791
## 3974 GO:0071795
## 3975 GO:0071796
## 3976 GO:0071813
## 3977 GO:0071820
## 3978 GO:0071855
## 3979 GO:0071885
## 3980 GO:0071886
## 3981 GO:0071933
## 3982 GO:0071936
## 3983 GO:0071987
## 3984 GO:0072320
## 3985 GO:0072349
## 3986 GO:0072354
## 3987 GO:0072518
## 3988 GO:0072544
## 3989 GO:0072545
## 3990 GO:0072555
## 3991 GO:0072570
## 3992 GO:0072572
## 3993 GO:0072582
## 3994 GO:0072587
## 3995 GO:0072590
## 3996 GO:0072591
## 3997 GO:0080019
## 3998 GO:0080023
## 3999 GO:0080025
## 4000 GO:0080048
## 4001 GO:0080101
## 4002 GO:0080122
## 4003 GO:0080130
## 4004 GO:0080132
## 4005 GO:0086006
## 4006 GO:0086007
## 4007 GO:0086008
## 4008 GO:0086020
## 4009 GO:0086037
## 4010 GO:0086038
## 4011 GO:0086039
## 4012 GO:0086041
## 4013 GO:0086056
## 4014 GO:0086057
## 4015 GO:0086059
## 4016 GO:0086060
## 4017 GO:0086061
## 4018 GO:0086062
## 4019 GO:0086063
## 4020 GO:0086075
## 4021 GO:0086076
## 4022 GO:0086077
## 4023 GO:0086078
## 4024 GO:0086079
## 4025 GO:0086080
## 4026 GO:0086082
## 4027 GO:0086083
## 4028 GO:0086087
## 4029 GO:0086089
## 4030 GO:0086090
## 4031 GO:0089720
## 4032 GO:0090079
## 4033 GO:0090409
## 4034 GO:0090416
## 4035 GO:0090422
## 4036 GO:0090482
## 4037 GO:0090484
## 4038 GO:0090541
## 4039 GO:0090554
## 4040 GO:0090555
## 4041 GO:0090556
## 4042 GO:0090599
## 4043 GO:0090624
## 4044 GO:0090631
## 4045 GO:0090722
## 4046 GO:0097001
## 4047 GO:0097003
## 4048 GO:0097016
## 4049 GO:0097020
## 4050 GO:0097027
## 4051 GO:0097100
## 4052 GO:0097109
## 4053 GO:0097157
## 4054 GO:0097158
## 4055 GO:0097160
## 4056 GO:0097161
## 4057 GO:0097162
## 4058 GO:0097177
## 4059 GO:0097199
## 4060 GO:0097258
## 4061 GO:0097259
## 4062 GO:0097260
## 4063 GO:0097322
## 4064 GO:0097363
## 4065 GO:0097371
## 4066 GO:0097372
## 4067 GO:0097383
## 4068 GO:0097472
## 4069 GO:0097493
## 4070 GO:0097573
## 4071 GO:0097602
## 4072 GO:0097603
## 4073 GO:0097604
## 4074 GO:0097621
## 4075 GO:0097626
## 4076 GO:0097627
## 4077 GO:0097642
## 4078 GO:0097643
## 4079 GO:0097655
## 4080 GO:0097677
## 4081 GO:0097689
## 4082 GO:0097718
## 4083 GO:0097726
## 4084 GO:0098518
## 4085 GO:0098519
## 4086 GO:0098601
## 4087 GO:0098619
## 4088 GO:0098621
## 4089 GO:0098625
## 4090 GO:0098626
## 4091 GO:0098633
## 4092 GO:0098634
## 4093 GO:0098639
## 4094 GO:0098640
## 4095 GO:0098770
## 4096 GO:0098782
## 4097 GO:0098808
## 4098 GO:0098960
## 4099 GO:0098973
## 4100 GO:0099038
## 4101 GO:0099095
## 4102 GO:0099104
## 4103 GO:0099530
## 4104 GO:0099580
## 4105 GO:0099583
## 4106 GO:0099589
## 4107 GO:0099609
## 4108 GO:0101006
## 4109 GO:0101020
## 4110 GO:0102005
## 4111 GO:0102007
## 4112 GO:0102008
## 4113 GO:0102009
## 4114 GO:0102132
## 4115 GO:0102279
## 4116 GO:0102320
## 4117 GO:0102336
## 4118 GO:0102337
## 4119 GO:0102338
## 4120 GO:0102339
## 4121 GO:0102340
## 4122 GO:0102341
## 4123 GO:0102342
## 4124 GO:0102344
## 4125 GO:0102345
## 4126 GO:0102390
## 4127 GO:0102391
## 4128 GO:0102483
## 4129 GO:0102490
## 4130 GO:0102522
## 4131 GO:0102704
## 4132 GO:0103053
## 4133 GO:0103095
## 4134 GO:1901338
## 4135 GO:1901474
## 4136 GO:1901611
## 4137 GO:1901612
## 4138 GO:1901640
## 4139 GO:1901641
## 4140 GO:1901677
## 4141 GO:1901682
## 4142 GO:1902098
## 4143 GO:1902118
## 4144 GO:1902121
## 4145 GO:1902122
## 4146 GO:1902271
## 4147 GO:1902282
## 4148 GO:1902379
## 4149 GO:1902387
## 4150 GO:1902388
## 4151 GO:1902444
## 4152 GO:1903924
## 4153 GO:1904012
## 4154 GO:1904013
## 4155 GO:1904047
## 4156 GO:1904121
## 4157 GO:1904264
## 4158 GO:1904288
## 4159 GO:1904315
## 4160 GO:1904399
## 4161 GO:1904408
## 4162 GO:1904454
## 4163 GO:1904492
## 4164 GO:1904493
## 4165 GO:1904599
## 4166 GO:1904680
## 4167 GO:1904713
## 4168 GO:1904768
## 4169 GO:1904854
## 4170 GO:1904928
## 4171 GO:1904929
## 4172 GO:1905394
## 4173 GO:1905573
## 4174 GO:1905574
## 4175 GO:1905575
## 4176 GO:1905576
## 4177 GO:1905577
## 4178 GO:1905594
## 4179 GO:1905773
## 4180 GO:1990003
## 4181 GO:1990050
## 4182 GO:1990081
## 4183 GO:1990136
## 4184 GO:1990174
## 4185 GO:1990175
## 4186 GO:1990188
## 4187 GO:1990189
## 4188 GO:1990190
## 4189 GO:1990226
## 4190 GO:1990244
## 4191 GO:1990247
## 4192 GO:1990254
## 4193 GO:1990259
## 4194 GO:1990269
## 4195 GO:1990272
## 4196 GO:1990275
## 4197 GO:1990405
## 4198 GO:1990430
## 4199 GO:1990439
## 4200 GO:1990444
## 4201 GO:1990446
## 4202 GO:1990450
## 4203 GO:1990460
## 4204 GO:1990595
## 4205 GO:1990599
## 4206 GO:1990698
## 4207 GO:1990699
## 4208 GO:1990715
## 4209 GO:1990738
## 4210 GO:1990756
## 4211 GO:1990763
## 4212 GO:1990829
## 4213 GO:1990883
## 4214 GO:1990889
## 4215 GO:1990930
## 4216 GO:1990931
## 4217 GO:1990932
## 4218 GO:1990955
## 4219 GO:1990984
## 4220 GO:2001065
## 4221 GO:2001069
## 4222 GO:2001070
## name
## 1 ubiquitin-like protein binding
## 2 ubiquitin binding
## 3 cyclin-dependent protein serine/threonine kinase regulator activity
## 4 Ran guanyl-nucleotide exchange factor activity
## 5 mRNA binding
## 6 chromatin DNA binding
## 7 structure-specific DNA binding
## 8 single-stranded DNA binding
## 9 double-stranded RNA binding
## 10 RNA binding
## 11 6-phosphofructo-2-kinase activity
## 12 fructose-2,6-bisphosphate 2-phosphatase activity
## 13 phosphofructokinase activity
## 14 sugar-phosphatase activity
## 15 Lys63-specific deubiquitinase activity
## 16 ubiquitin-specific protease activity involved in negative regulation of retrograde protein transport, ER to cytosol
## 17 ubiquitin-specific protease activity involved in negative regulation of ERAD pathway
## 18 snRNA binding
## 19 K63-linked polyubiquitin binding
## 20 polyubiquitin binding
## 21 mRNA 3'-UTR binding
## 22 poly(A) binding
## 23 dynein light chain binding
## 24 poly-purine tract binding
## 25 phosphatase activator activity
## 26 protein phosphatase activator activity
## 27 protein phosphatase 1 binding
## 28 zinc ion transmembrane transporter activity
## 29 poly-pyrimidine tract binding
## 30 transition metal ion transmembrane transporter activity
## 31 single-stranded RNA binding
## 32 nucleosomal DNA binding
## 33 TFIIH-class transcription factor binding
## 34 DNA-directed 5'-3' RNA polymerase activity
## 35 poly(C) RNA binding
## 36 centromeric DNA binding
## 37 poly(G) binding
## 38 5'-3' RNA polymerase activity
## 39 microtubule plus-end binding
## 40 RNA polymerase II C-terminal domain binding
## 41 isomerase activity
## 42 sulfate binding
## 43 ion channel inhibitor activity
## 44 channel inhibitor activity
## 45 DNA-dependent ATPase activity
## 46 glutamate decarboxylase activity
## 47 glutamate-ammonia ligase activity
## 48 glucuronyl-galactosyl-proteoglycan 4-alpha-N-acetylglucosaminyltransferase activity
## 49 beta-galactoside (CMP) alpha-2,3-sialyltransferase activity
## 50 cytidylate kinase activity
## 51 transmembrane receptor protein tyrosine kinase adaptor activity
## 52 insulin receptor binding
## 53 neurotrophin receptor binding
## 54 neurotrophin TRK receptor binding
## 55 neurotrophin TRKA receptor binding
## 56 N-acetyllactosaminide alpha-2,3-sialyltransferase activity
## 57 sialyltransferase activity
## 58 ATP-dependent microtubule motor activity, minus-end-directed
## 59 uridylate kinase activity
## 60 calcium-release channel activity
## 61 protein kinase activator activity
## 62 alpha-1,4-N-acetylgalactosaminyltransferase activity
## 63 protein serine/threonine kinase activator activity
## 64 glucuronylgalactosylproteoglycan 4-beta-N-acetylgalactosaminyltransferase activity
## 65 NADHX epimerase activity
## 66 NADPHX epimerase activity
## 67 cyclin-dependent protein serine/threonine kinase activator activity
## 68 NAADP-sensitive calcium-release channel activity
## 69 cysteine-type endopeptidase activity involved in apoptotic process
## 70 cysteine-type endopeptidase activity involved in execution phase of apoptosis
## 71 ligand-gated calcium channel activity
## 72 phosphatase regulator activity
## 73 nucleic acid binding
## 74 protein kinase regulator activity
## 75 protein phosphatase regulator activity
## 76 epidermal growth factor binding
## 77 guanyl-nucleotide exchange factor activity
## 78 RNA polymerase II basal transcription factor binding
## 79 DNA helicase activity
## 80 ATP-dependent DNA helicase activity
## 81 RNA-DNA hybrid ribonuclease activity
## 82 single-stranded DNA exodeoxyribonuclease activity
## 83 double-stranded DNA exodeoxyribonuclease activity
## 84 endoribonuclease activity, producing 5'-phosphomonoesters
## 85 endonuclease activity, active with either ribo- or deoxyribonucleic acids and producing 5'-phosphomonoesters
## 86 single-stranded DNA 5'-3' exodeoxyribonuclease activity
## 87 flap endonuclease activity
## 88 double-stranded DNA 5'-3' exodeoxyribonuclease activity
## 89 BMP receptor activity
## 90 transferrin receptor binding
## 91 calcium channel inhibitor activity
## 92 peroxiredoxin activity
## 93 sequence-specific mRNA binding
## 94 dynein binding
## 95 signaling adaptor activity
## 96 binding, bridging
## 97 histone binding
## 98 cysteine-type endopeptidase activity
## 99 Ran GTPase binding
## 100 glutamate binding
## 101 exonuclease activity, active with either ribo- or deoxyribonucleic acids and producing 5'-phosphomonoesters
## 102 promoter-specific chromatin binding
## 103 transcriptional repressor activity, RNA polymerase II core promoter proximal region sequence-specific binding
## 104 uridine kinase activity
## 105 calcium channel regulator activity
## 106 dehydroascorbic acid transporter activity
## 107 xenobiotic transporter activity
## 108 nucleoside phosphate kinase activity
## 109 D-glucose transmembrane transporter activity
## 110 endodeoxyribonuclease activity
## 111 pre-mRNA binding
## 112 Lys48-specific deubiquitinase activity
## 113 regulatory region RNA binding
## 114 DNA replication origin binding
## 115 N-acetylglucosaminyldiphosphodolichol N-acetylglucosaminyltransferase activity
## 116 intracellular ligand-gated ion channel activity
## 117 metallochaperone activity
## 118 copper chaperone activity
## 119 superoxide dismutase copper chaperone activity
## 120 structural constituent of nuclear pore
## 121 single-stranded DNA-dependent ATP-dependent DNA helicase activity
## 122 DNA/RNA helicase activity
## 123 ATP-dependent DNA/RNA helicase activity
## 124 ATP-dependent 3'-5' DNA/RNA helicase activity
## 125 3'-5' RNA helicase activity
## 126 ATP-dependent 3'-5' RNA helicase activity
## 127 siRNA binding
## 128 annealing helicase activity
## 129 tyrosine 3-monooxygenase activator activity
## 130 L-dopa decarboxylase activator activity
## 131 protein deglycase activity
## 132 3'-5' DNA helicase activity
## 133 ATP-dependent 3'-5' DNA helicase activity
## 134 single-stranded DNA-dependent ATPase activity
## 135 small protein activating enzyme binding
## 136 triplex DNA binding
## 137 mercury ion binding
## 138 dynein intermediate chain binding
## 139 nucleoside-triphosphate diphosphatase activity
## 140 dynein light intermediate chain binding
## 141 importin-alpha family protein binding
## 142 histone pre-mRNA DCP binding
## 143 U7 snRNA binding
## 144 annealing activity
## 145 cuprous ion binding
## 146 RISC complex binding
## 147 ubiquitin-specific protease binding
## 148 single-stranded DNA-dependent ATP-dependent 3'-5' DNA helicase activity
## 149 ubiquitin protein ligase binding
## 150 ubiquitin-like protein ligase binding
## 151 manganese ion binding
## 152 protein binding, bridging
## 153 nucleosome binding
## 154 exonuclease activity
## 155 tumor necrosis factor-activated receptor activity
## 156 rRNA methyltransferase activity
## 157 RNA methyltransferase activity
## 158 poly(U) RNA binding
## 159 carbon-oxygen lyase activity
## 160 hydro-lyase activity
## 161 nucleoside kinase activity
## 162 transcription factor activity, RNA polymerase II core promoter proximal region sequence-specific binding
## 163 ion channel regulator activity
## 164 SH3/SH2 adaptor activity
## 165 heterocyclic compound binding
## 166 molecular function regulator
## 167 transcriptional activator activity, RNA polymerase II transcription regulatory region sequence-specific binding
## 168 carbohydrate transmembrane transporter activity
## 169 diuretic hormone activity
## 170 Rab guanyl-nucleotide exchange factor activity
## 171 RNA stem-loop binding
## 172 BMP binding
## 173 organic hydroxy compound transmembrane transporter activity
## 174 peptidyl-prolyl cis-trans isomerase activity
## 175 cis-trans isomerase activity
## 176 organic cyclic compound binding
## 177 divalent inorganic cation transmembrane transporter activity
## 178 chromatin binding
## 179 acetylglucosaminyltransferase activity
## 180 carbohydrate kinase activity
## 181 vitamin transporter activity
## 182 3'-5'-exoribonuclease activity
## 183 rRNA (adenine-N6,N6-)-dimethyltransferase activity
## 184 cyclin-dependent protein serine/threonine kinase inhibitor activity
## 185 epidermal growth factor receptor binding
## 186 insulin-like growth factor receptor binding
## 187 sodium:amino acid symporter activity
## 188 neutral L-amino acid secondary active transmembrane transporter activity
## 189 organic acid:sodium symporter activity
## 190 cation:amino acid symporter activity
## 191 3'-5' exonuclease activity
## 192 glycine transmembrane transporter activity
## 193 anion:cation symporter activity
## 194 glycine:sodium symporter activity
## 195 rRNA (adenine) methyltransferase activity
## 196 oxidoreductase activity, acting on a sulfur group of donors, oxygen as acceptor
## 197 racemase and epimerase activity
## 198 exoribonuclease activity, producing 5'-phosphomonoesters
## 199 flavin-linked sulfhydryl oxidase activity
## 200 thiol oxidase activity
## 201 Ral GTPase binding
## 202 potassium channel inhibitor activity
## 203 receptor tyrosine kinase binding
## 204 cobalamin binding
## 205 leptin receptor activity
## 206 cupric ion binding
## 207 double-stranded DNA binding
## 208 carboxy-lyase activity
## 209 channel regulator activity
## 210 helicase activity
## 211 nucleotidyltransferase activity
## 212 transcriptional activator activity, RNA polymerase II distal enhancer sequence-specific binding
## 213 polyprenyltransferase activity
## 214 AMP deaminase activity
## 215 DNA ligase activity
## 216 DNA ligase (ATP) activity
## 217 NAD+ ADP-ribosyltransferase activity
## 218 UDP-N-acetylglucosamine diphosphorylase activity
## 219 fumarate hydratase activity
## 220 poly(A)-specific ribonuclease activity
## 221 oxygen-dependent protoporphyrinogen oxidase activity
## 222 glutamate-tRNA ligase activity
## 223 threonine-tRNA ligase activity
## 224 tryptophan-tRNA ligase activity
## 225 signal recognition particle binding
## 226 smoothened binding
## 227 water transmembrane transporter activity
## 228 hedgehog receptor activity
## 229 C-methyltransferase activity
## 230 metalloexopeptidase activity
## 231 7S RNA binding
## 232 thioredoxin peroxidase activity
## 233 rRNA (cytosine-C5-)-methyltransferase activity
## 234 pseudouridine synthase activity
## 235 polyol transmembrane transporter activity
## 236 glycerol transmembrane transporter activity
## 237 urea transmembrane transporter activity
## 238 water channel activity
## 239 glycerol channel activity
## 240 urea channel activity
## 241 phospholipase activator activity
## 242 rRNA (cytosine) methyltransferase activity
## 243 peptidase activator activity
## 244 oxidoreductase activity, acting on the CH-CH group of donors, oxygen as acceptor
## 245 oxidoreductase activity, oxidizing metal ions
## 246 oxidoreductase activity, oxidizing metal ions, NAD or NADP as acceptor
## 247 intramolecular transferase activity
## 248 interferon binding
## 249 interferon-gamma binding
## 250 estrogen receptor binding
## 251 cyanocobalamin reductase (cyanide-eliminating) activity
## 252 protein kinase A catalytic subunit binding
## 253 U3 snoRNA binding
## 254 amide transmembrane transporter activity
## 255 glucoside transmembrane transporter activity
## 256 single-stranded telomeric DNA binding
## 257 RS domain binding
## 258 C3HC4-type RING finger domain binding
## 259 lipase activator activity
## 260 small ribosomal subunit rRNA binding
## 261 UFM1 transferase activity
## 262 hedgehog family protein binding
## 263 G-rich strand telomeric DNA binding
## 264 sequence-specific single stranded DNA binding
## 265 protein ADP-ribosylase activity
## 266 phospholipase D activator activity
## 267 ligase activity
## 268 5'-3' exonuclease activity
## 269 exodeoxyribonuclease activity, producing 5'-phosphomonoesters
## 270 vitamin binding
## 271 steroid hormone receptor binding
## 272 5'-3' exodeoxyribonuclease activity
## 273 telomerase RNA binding
## 274 actin binding
## 275 ribonucleoprotein complex binding
## 276 protein disulfide isomerase activity
## 277 nucleoside diphosphate kinase activity
## 278 aminoacyl-tRNA ligase activity
## 279 rRNA binding
## 280 protein complex scaffold
## 281 Ras guanyl-nucleotide exchange factor activity
## 282 transcription factor binding
## 283 lyase activity
## 284 kinase regulator activity
## 285 histone acetyltransferase activity
## 286 calcium activated cation channel activity
## 287 neurotransmitter transporter activity
## 288 neurotransmitter:sodium symporter activity
## 289 N-acetyltransferase activity
## 290 adenylate cyclase binding
## 291 oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor
## 292 kinase activator activity
## 293 protein serine/threonine kinase inhibitor activity
## 294 peptide N-acetyltransferase activity
## 295 protein kinase A regulatory subunit binding
## 296 histone deacetylase regulator activity
## 297 histone methyltransferase activity (H3-K4 specific)
## 298 protein binding involved in protein folding
## 299 histone deacetylase inhibitor activity
## 300 peptide-lysine-N-acetyltransferase activity
## 301 polysome binding
## 302 sugar transmembrane transporter activity
## 303 glucose transmembrane transporter activity
## 304 monosaccharide transmembrane transporter activity
## 305 hexose transmembrane transporter activity
## 306 intramolecular oxidoreductase activity
## 307 endoribonuclease activity
## 308 prenyltransferase activity
## 309 copper ion binding
## 310 phosphatase inhibitor activity
## 311 peptide hormone receptor binding
## 312 enzyme inhibitor activity
## 313 transcriptional repressor activity, RNA polymerase II transcription regulatory region sequence-specific binding
## 314 RNA polymerase II transcription factor binding
## 315 kinase binding
## 316 enzyme regulator activity
## 317 RNA polymerase II transcription factor activity, sequence-specific DNA binding
## 318 ribonuclease activity
## 319 amino acid binding
## 320 carbon-carbon lyase activity
## 321 tRNA methyltransferase activity
## 322 oxidoreductase activity, acting on peroxide as acceptor
## 323 protein kinase A binding
## 324 deoxyribonuclease activity
## 325 alpha-mannosidase activity
## 326 mannosyl-oligosaccharide 1,2-alpha-mannosidase activity
## 327 calcium channel activity
## 328 ATP-dependent helicase activity
## 329 mannosidase activity
## 330 mannosyl-oligosaccharide mannosidase activity
## 331 ATPase regulator activity
## 332 protein tyrosine kinase binding
## 333 protein kinase binding
## 334 microtubule motor activity
## 335 protein phosphatase binding
## 336 exoribonuclease activity
## 337 protein phosphatase inhibitor activity
## 338 5S rRNA binding
## 339 lactate transmembrane transporter activity
## 340 mevalonate transmembrane transporter activity
## 341 acetyltransferase activity
## 342 N-acyltransferase activity
## 343 phospholipase binding
## 344 bHLH transcription factor binding
## 345 insulin receptor substrate binding
## 346 ephrin receptor binding
## 347 ubiquitin ligase inhibitor activity
## 348 mismatch base pair DNA N-glycosylase activity
## 349 purine-specific mismatch base pair DNA N-glycosylase activity
## 350 aminoacyl-tRNA editing activity
## 351 NADH dehydrogenase activity
## 352 phosphogluconate dehydrogenase (decarboxylating) activity
## 353 protein geranylgeranyltransferase activity
## 354 Rab geranylgeranyltransferase activity
## 355 aspartate-tRNA ligase activity
## 356 gap junction channel activity
## 357 insulin-like growth factor binding
## 358 NADH dehydrogenase (ubiquinone) activity
## 359 protein prenyltransferase activity
## 360 CTD phosphatase activity
## 361 cyclosporin A binding
## 362 oxidoreductase activity, acting on NAD(P)H, quinone or similar compound as acceptor
## 363 transferase activity, transferring pentosyl groups
## 364 hydrolase activity, hydrolyzing N-glycosyl compounds
## 365 ligase activity, forming phosphoric ester bonds
## 366 DNA N-glycosylase activity
## 367 phenanthrene-9,10-epoxide hydrolase activity
## 368 deaminase activity
## 369 procollagen-proline 3-dioxygenase activity
## 370 procollagen-proline dioxygenase activity
## 371 wide pore channel activity
## 372 high molecular weight B cell growth factor receptor binding
## 373 peptidyl-proline dioxygenase activity
## 374 peptidyl-proline 3-dioxygenase activity
## 375 mismatch repair complex binding
## 376 MutSalpha complex binding
## 377 long-chain fatty acyl-CoA binding
## 378 proton-transporting ATPase activity, rotational mechanism
## 379 N-acetyllactosaminide 3-alpha-galactosyltransferase activity
## 380 aspartate-tRNA(Asn) ligase activity
## 381 deoxyribonuclease inhibitor activity
## 382 uridylyltransferase activity
## 383 FAD binding
## 384 2-(3-amino-3-carboxypropyl)histidine synthase activity
## 385 gap junction channel activity involved in cell communication by electrical coupling
## 386 miRNA binding
## 387 nuclear hormone receptor binding
## 388 cysteine-type peptidase activity
## 389 phosphatase binding
## 390 enzyme binding
## 391 SH3 domain binding
## 392 enzyme activator activity
## 393 potassium channel regulator activity
## 394 oxidoreductase activity, acting on the CH-CH group of donors
## 395 endopeptidase activity
## 396 GTPase binding
## 397 lamin binding
## 398 RNA polymerase II core promoter proximal region sequence-specific DNA binding
## 399 core promoter proximal region sequence-specific DNA binding
## 400 core promoter proximal region DNA binding
## 401 Ras GTPase binding
## 402 protein N-terminus binding
## 403 ligase activity, forming carbon-nitrogen bonds
## 404 ATPase binding
## 405 transcriptional activator activity, RNA polymerase II core promoter proximal region sequence-specific binding
## 406 oxidoreductase activity
## 407 peptidase activity
## 408 cofactor binding
## 409 hormone receptor binding
## 410 ATPase activity
## 411 transcription coactivator binding
## 412 ATPase activator activity
## 413 peroxidase activity
## 414 solute:sodium symporter activity
## 415 ion gated channel activity
## 416 methylated histone binding
## 417 ubiquitin-like protein conjugating enzyme binding
## 418 nucleoside triphosphate adenylate kinase activity
## 419 androgen receptor binding
## 420 ubiquitin-protein transferase inhibitor activity
## 421 sequence-specific double-stranded DNA binding
## 422 fatty-acyl-CoA binding
## 423 alcohol dehydrogenase (NADP+) activity
## 424 acetylgalactosaminyltransferase activity
## 425 DNA binding
## 426 coenzyme binding
## 427 UDP-glycosyltransferase activity
## 428 oxidoreductase activity, acting on a sulfur group of donors
## 429 protease binding
## 430 protein disulfide oxidoreductase activity
## 431 rRNA (guanine) methyltransferase activity
## 432 tetrapyrrole binding
## 433 peptidase regulator activity
## 434 rRNA (guanosine-2'-O-)-methyltransferase activity
## 435 succinate dehydrogenase activity
## 436 delta24(24-1) sterol reductase activity
## 437 phospholipid-translocating ATPase activity
## 438 alditol:NADP+ 1-oxidoreductase activity
## 439 epoxide hydrolase activity
## 440 phosphatidylinositol-4,5-bisphosphate 5-phosphatase activity
## 441 AMP-activated protein kinase activity
## 442 proline-tRNA ligase activity
## 443 interleukin-1 receptor binding
## 444 nucleocytoplasmic transporter activity
## 445 phospholipid transporter activity
## 446 S-methyltransferase activity
## 447 exopeptidase activity
## 448 methionine synthase activity
## 449 endochitinase activity
## 450 basic amino acid transmembrane transporter activity
## 451 arginine transmembrane transporter activity
## 452 L-lysine transmembrane transporter activity
## 453 hydrolase activity, acting on ether bonds
## 454 ether hydrolase activity
## 455 intermediate filament binding
## 456 L-ascorbic acid binding
## 457 phosphatidylinositol bisphosphate phosphatase activity
## 458 phosphatidylinositol phosphate 5-phosphatase activity
## 459 histone acetyltransferase binding
## 460 ATPase inhibitor activity
## 461 sphingolipid delta-4 desaturase activity
## 462 peptide antigen binding
## 463 lipoprotein transporter activity
## 464 glutathione binding
## 465 angiostatin binding
## 466 ATPase activity, coupled to transmembrane movement of ions, rotational mechanism
## 467 inositol trisphosphate phosphatase activity
## 468 mRNA 5'-UTR binding
## 469 delta24-sterol reductase activity
## 470 inositol-1,4,5-trisphosphate 5-phosphatase activity
## 471 inositol-1,3,4,5-tetrakisphosphate 5-phosphatase activity
## 472 inositol tetrakisphosphate phosphatase activity
## 473 inositol phosphate phosphatase activity
## 474 phosphatidylinositol phosphate phosphatase activity
## 475 ubiquitin conjugating enzyme activity
## 476 ubiquitin-like protein conjugating enzyme activity
## 477 connexin binding
## 478 sodium:proton antiporter activity involved in regulation of cardiac muscle cell membrane potential
## 479 cadherin binding involved in cell-cell adhesion
## 480 oligopeptide binding
## 481 protein serine/threonine/tyrosine kinase activity
## 482 antioxidant activity
## 483 growth factor receptor binding
## 484 tRNA binding
## 485 RNA helicase activity
## 486 ATP-dependent RNA helicase activity
## 487 protein kinase C activity
## 488 protein serine/threonine phosphatase activity
## 489 RNA-dependent ATPase activity
## 490 antiporter activity
## 491 ubiquitin-protein transferase regulator activity
## 492 14-3-3 protein binding
## 493 structural constituent of ribosome
## 494 motor activity
## 495 small GTPase binding
## 496 retinol dehydrogenase activity
## 497 disulfide oxidoreductase activity
## 498 tRNA (guanine) methyltransferase activity
## 499 MAP kinase tyrosine/serine/threonine phosphatase activity
## 500 MAP kinase phosphatase activity
## 501 mitogen-activated protein kinase p38 binding
## 502 calcium-dependent protein binding
## 503 NADP-retinol dehydrogenase activity
## 504 ligand-gated cation channel activity
## 505 thiol-dependent ubiquitin-specific protease activity
## 506 growth factor binding
## 507 unfolded protein binding
## 508 sulfur compound binding
## 509 nuclease activity
## 510 aldo-keto reductase (NADP) activity
## 511 protein tyrosine/serine/threonine phosphatase activity
## 512 nucleotide kinase activity
## 513 flavin adenine dinucleotide binding
## 514 repressing transcription factor binding
## 515 metalloendopeptidase activity
## 516 protein heterodimerization activity
## 517 nucleobase-containing compound kinase activity
## 518 hormone binding
## 519 virus receptor activity
## 520 binding
## 521 prenylated protein tyrosine phosphatase activity
## 522 protein kinase inhibitor activity
## 523 volume-sensitive anion channel activity
## 524 voltage-gated calcium channel activity
## 525 monocarboxylic acid transmembrane transporter activity
## 526 oxidoreductase activity, acting on the CH-CH group of donors, NAD or NADP as acceptor
## 527 kinase inhibitor activity
## 528 dioxygenase activity
## 529 ATP-dependent microtubule motor activity
## 530 transmembrane receptor protein serine/threonine kinase activity
## 531 coreceptor activity
## 532 Rab GTPase binding
## 533 transferase activity, transferring glycosyl groups
## 534 peptidase activity, acting on L-amino acid peptides
## 535 NF-kappaB binding
## 536 transcription factor activity, protein binding
## 537 transcription factor activity, transcription factor binding
## 538 p53 binding
## 539 metallopeptidase activity
## 540 alkaline phosphatase activity
## 541 amidase activity
## 542 dimethylallyltranstransferase activity
## 543 geranyltranstransferase activity
## 544 protein-arginine deiminase activity
## 545 signal transducer activity, downstream of receptor
## 546 monovalent cation:proton antiporter activity
## 547 collagen binding
## 548 hyaluronic acid binding
## 549 G-protein coupled photoreceptor activity
## 550 photoreceptor activity
## 551 anaphase-promoting complex binding
## 552 solute:cation antiporter activity
## 553 solute:proton antiporter activity
## 554 sodium:proton antiporter activity
## 555 potassium:proton antiporter activity
## 556 cation:cation antiporter activity
## 557 oxidoreductase activity, acting on NAD(P)H
## 558 fatty acid amide hydrolase activity
## 559 potassium ion antiporter activity
## 560 Hsp70 protein binding
## 561 U2 snRNA binding
## 562 GTP-dependent protein binding
## 563 mitogen-activated protein kinase kinase kinase binding
## 564 phosphatidylinositol-3-phosphate binding
## 565 GBD domain binding
## 566 apolipoprotein A-I receptor binding
## 567 histone demethylase activity (H3-trimethyl-K4 specific)
## 568 retinoic acid receptor binding
## 569 protein kinase B binding
## 570 acylglycerol lipase activity
## 571 calcium-independent phospholipase A2 activity
## 572 monosaccharide binding
## 573 delta14-sterol reductase activity
## 574 GDP-dissociation inhibitor binding
## 575 Rho GDP-dissociation inhibitor binding
## 576 NAD binding
## 577 4 iron, 4 sulfur cluster binding
## 578 chromo shadow domain binding
## 579 oleamide hydrolase activity
## 580 anandamide amidohydrolase activity
## 581 leptomycin B binding
## 582 RNA polymerase II core binding
## 583 RNA polymerase core enzyme binding
## 584 methyltransferase activity
## 585 transferase activity, transferring one-carbon groups
## 586 electron carrier activity
## 587 ubiquitin-like protein-specific protease activity
## 588 carboxylic acid binding
## 589 thiol-dependent ubiquitinyl hydrolase activity
## 590 organic acid binding
## 591 ubiquitinyl hydrolase activity
## 592 identical protein binding
## 593 magnesium ion binding
## 594 transcription factor activity, RNA polymerase II distal enhancer sequence-specific binding
## 595 basal RNA polymerase II transcription machinery binding
## 596 oxidoreductase activity, acting on CH-OH group of donors
## 597 L-amino acid transmembrane transporter activity
## 598 S-adenosylmethionine-dependent methyltransferase activity
## 599 transcription cofactor binding
## 600 solute:cation symporter activity
## 601 protein phosphatase 2A binding
## 602 ubiquitin-like protein transferase activity
## 603 transcription factor activity, sequence-specific DNA binding
## 604 RNA polymerase II regulatory region sequence-specific DNA binding
## 605 RNA polymerase II regulatory region DNA binding
## 606 RNA polymerase binding
## 607 ATP binding
## 608 protein tyrosine phosphatase activity
## 609 organic acid transmembrane transporter activity
## 610 transferase activity, transferring alkyl or aryl (other than methyl) groups
## 611 hydrolase activity, acting on glycosyl bonds
## 612 carboxylic acid transmembrane transporter activity
## 613 endonuclease activity
## 614 hormone activity
## 615 lipid transporter activity
## 616 P-P-bond-hydrolysis-driven protein transmembrane transporter activity
## 617 kinesin binding
## 618 carboxylic ester hydrolase activity
## 619 CTP synthase activity
## 620 NAD+ kinase activity
## 621 adenylate cyclase activity
## 622 adenylosuccinate synthase activity
## 623 methylenetetrahydrofolate reductase (NAD(P)H) activity
## 624 phospholipase A2 activity
## 625 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors
## 626 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amidines
## 627 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in cyclic amidines
## 628 phosphorus-oxygen lyase activity
## 629 TBP-class protein binding
## 630 leak channel activity
## 631 potassium ion leak channel activity
## 632 snoRNA binding
## 633 thioesterase binding
## 634 apolipoprotein receptor binding
## 635 hydrogen-exporting ATPase activity
## 636 prosaposin receptor activity
## 637 aspartic endopeptidase activity, intramembrane cleaving
## 638 peptidoglycan binding
## 639 X11-like protein binding
## 640 S100 protein binding
## 641 low-density lipoprotein particle receptor binding
## 642 lipoprotein particle receptor binding
## 643 proteasome binding
## 644 bicarbonate binding
## 645 ion antiporter activity
## 646 O-methyltransferase activity
## 647 JUN kinase binding
## 648 calcium ion transmembrane transporter activity
## 649 amino acid transmembrane transporter activity
## 650 ligand-gated ion channel activity
## 651 transcription cofactor activity
## 652 phosphoprotein phosphatase activity
## 653 cytokine binding
## 654 polypeptide N-acetylgalactosaminyltransferase activity
## 655 endopeptidase inhibitor activity
## 656 neutral amino acid transmembrane transporter activity
## 657 peptidase inhibitor activity
## 658 demethylase activity
## 659 cAMP response element binding
## 660 endopeptidase regulator activity
## 661 scaffold protein binding
## 662 protein dimerization activity
## 663 oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor
## 664 protein self-association
## 665 phosphatase activity
## 666 cadherin binding
## 667 transition metal ion binding
## 668 structural molecule activity
## 669 regulatory region DNA binding
## 670 regulatory region nucleic acid binding
## 671 phosphotransferase activity, phosphate group as acceptor
## 672 adenyl nucleotide binding
## 673 adenyl ribonucleotide binding
## 674 ubiquitin protein ligase activity
## 675 ubiquitin-like protein ligase activity
## 676 sequence-specific DNA binding
## 677 ubiquitin-protein transferase activity
## 678 N-methyltransferase activity
## 679 phosphatidylinositol binding
## 680 RNA polymerase II core promoter sequence-specific DNA binding
## 681 nucleoside binding
## 682 purine nucleoside binding
## 683 ribonucleoside binding
## 684 purine ribonucleoside binding
## 685 purine ribonucleoside triphosphate binding
## 686 transcription factor activity, RNA polymerase II transcription factor binding
## 687 transcription regulatory region DNA binding
## 688 core promoter binding
## 689 GTP binding
## 690 guanyl nucleotide binding
## 691 guanyl ribonucleotide binding
## 692 hydrolase activity, hydrolyzing O-glycosyl compounds
## 693 protein transmembrane transporter activity
## 694 protein channel activity
## 695 macromolecule transmembrane transporter activity
## 696 damaged DNA binding
## 697 antigen binding
## 698 cystathionine gamma-synthase activity
## 699 cystathionine gamma-lyase activity
## 700 chitinase activity
## 701 glutathione peroxidase activity
## 702 phosphopyruvate hydratase activity
## 703 cysteine-type endopeptidase inhibitor activity
## 704 inward rectifier potassium channel activity
## 705 voltage-gated chloride channel activity
## 706 fatty acid binding
## 707 chitin binding
## 708 cyclase activity
## 709 semaphorin receptor activity
## 710 GDP binding
## 711 vitamin D receptor binding
## 712 cysteine-type endopeptidase inhibitor activity involved in apoptotic process
## 713 cysteine-type endopeptidase regulator activity involved in apoptotic process
## 714 neurotrophin binding
## 715 L-cystine L-cysteine-lyase (deaminating)
## 716 homocysteine desulfhydrase activity
## 717 nerve growth factor binding
## 718 L-cysteine desulfhydrase activity
## 719 calcium-dependent cysteine-type endopeptidase activity
## 720 lipase activity
## 721 heat shock protein binding
## 722 phosphate ion binding
## 723 R-SMAD binding
## 724 enhancer binding
## 725 ATPase activity, coupled
## 726 purine nucleotide binding
## 727 ribonucleotide binding
## 728 purine ribonucleotide binding
## 729 histone deacetylase binding
## 730 phosphotyrosine binding
## 731 complement binding
## 732 adenylate kinase activity
## 733 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen
## 734 ligand-dependent nuclear receptor binding
## 735 protein phosphorylated amino acid binding
## 736 modified amino acid binding
## 737 RNA polymerase II distal enhancer sequence-specific DNA binding
## 738 organic anion transmembrane transporter activity
## 739 hydrogen ion transmembrane transporter activity
## 740 transcription factor activity, RNA polymerase II core promoter sequence-specific
## 741 aspartic-type endopeptidase activity
## 742 olfactory receptor activity
## 743 1-phosphatidylinositol binding
## 744 phosphatidylinositol-4,5-bisphosphate binding
## 745 drug binding
## 746 palmitoyl-CoA hydrolase activity
## 747 pyridoxal phosphate binding
## 748 monocarboxylic acid binding
## 749 ribosomal large subunit binding
## 750 NADP binding
## 751 iron-sulfur cluster binding
## 752 aspartic-type peptidase activity
## 753 carbohydrate derivative transporter activity
## 754 transcription regulatory region sequence-specific DNA binding
## 755 nucleotide binding
## 756 nucleoside phosphate binding
## 757 phosphoprotein binding
## 758 secondary active transmembrane transporter activity
## 759 cell adhesion molecule binding
## 760 RNA polymerase II activating transcription factor binding
## 761 sterol transporter activity
## 762 phosphatidylinositol phosphate binding
## 763 mitochondrion targeting sequence binding
## 764 ion binding
## 765 carbohydrate derivative binding
## 766 protein transporter activity
## 767 lysine N-methyltransferase activity
## 768 protein-lysine N-methyltransferase activity
## 769 histone-lysine N-methyltransferase activity
## 770 phospholipase activity
## 771 calcium-dependent protein kinase activity
## 772 oxidoreductase activity, acting on the CH-NH group of donors
## 773 oxidoreductase activity, acting on the CH-NH group of donors, NAD or NADP as acceptor
## 774 D-ribulokinase activity
## 775 heme binding
## 776 protein phosphatase 2B binding
## 777 histone demethylase activity (H3-K4 specific)
## 778 histone demethylase activity (H3-dimethyl-K4 specific)
## 779 UDP-galactosyltransferase activity
## 780 thyroid hormone receptor binding
## 781 HMG box domain binding
## 782 protein binding involved in cell adhesion
## 783 protein binding involved in cell-cell adhesion
## 784 nucleoside-triphosphatase activity
## 785 protein domain specific binding
## 786 phosphoric ester hydrolase activity
## 787 histone methyltransferase activity
## 788 protein homodimerization activity
## 789 protein binding
## 790 RNA polymerase II transcription cofactor activity
## 791 transferase activity, transferring hexosyl groups
## 792 catalytic activity
## 793 transcription corepressor activity
## 794 transcription coactivator activity
## 795 glycosaminoglycan binding
## 796 anion binding
## 797 mitogen-activated protein kinase binding
## 798 symporter activity
## 799 transmembrane receptor protein kinase activity
## 800 SMAD binding
## 801 pyrophosphatase activity
## 802 hydrolase activity, acting on acid anhydrides
## 803 hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides
## 804 1-acylglycerol-3-phosphate O-acyltransferase activity
## 805 serine-type endopeptidase activity
## 806 integrin binding
## 807 iron ion binding
## 808 ubiquinol-cytochrome-c reductase activity
## 809 voltage-gated anion channel activity
## 810 CoA hydrolase activity
## 811 phosphatidylinositol phosphate kinase activity
## 812 acylglycerol O-acyltransferase activity
## 813 oxidoreductase activity, acting on diphenols and related substances as donors
## 814 carbon-sulfur lyase activity
## 815 1-phosphatidylinositol-4-phosphate 3-kinase activity
## 816 telomeric DNA binding
## 817 lysophosphatidic acid acyltransferase activity
## 818 phosphatidylinositol-4,5-bisphosphate 3-kinase activity
## 819 2-acylglycerol-3-phosphate O-acyltransferase activity
## 820 acyl-CoA hydrolase activity
## 821 Rac GTPase binding
## 822 phosphatidylinositol bisphosphate kinase activity
## 823 phosphatidylinositol bisphosphate binding
## 824 protein serine/threonine kinase activity
## 825 metal ion binding
## 826 hydrolase activity, acting on ester bonds
## 827 active ion transmembrane transporter activity
## 828 signal sequence binding
## 829 activating transcription factor binding
## 830 carbohydrate binding
## 831 cytokine receptor activity
## 832 extracellular matrix structural constituent
## 833 structural constituent of cytoskeleton
## 834 spectrin binding
## 835 titin binding
## 836 histone demethylase activity
## 837 transferase activity, transferring phosphorus-containing groups
## 838 metal ion transmembrane transporter activity
## 839 anion channel activity
## 840 protein methyltransferase activity
## 841 ATPase activity, coupled to movement of substances
## 842 cation binding
## 843 sodium ion transmembrane transporter activity
## 844 P-P-bond-hydrolysis-driven transmembrane transporter activity
## 845 hydrolase activity
## 846 GTPase activity
## 847 transferase activity
## 848 chloride channel activity
## 849 chloride transmembrane transporter activity
## 850 zinc ion binding
## 851 core promoter sequence-specific DNA binding
## 852 translation initiation factor activity
## 853 translation factor activity, RNA binding
## 854 serine-type peptidase activity
## 855 structural constituent of muscle
## 856 galactosyltransferase activity
## 857 serine hydrolase activity
## 858 IgG binding
## 859 immunoglobulin binding
## 860 RNA polymerase II transcription coactivator activity
## 861 phospholipid binding
## 862 transcriptional repressor activity, RNA polymerase II transcription factor binding
## 863 microtubule binding
## 864 transferase activity, transferring acyl groups other than amino-acyl groups
## 865 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds
## 866 active transmembrane transporter activity
## 867 inorganic cation transmembrane transporter activity
## 868 peptide receptor activity
## 869 ephrin receptor activity
## 870 sodium channel activity
## 871 G-protein coupled peptide receptor activity
## 872 Rho GTPase binding
## 873 steroid hormone binding
## 874 enhancer sequence-specific DNA binding
## 875 small molecule binding
## 876 transcriptional activator activity, RNA polymerase II transcription factor binding
## 877 PDZ domain binding
## 878 transferase activity, transferring acyl groups
## 879 hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances
## 880 ATPase activity, coupled to transmembrane movement of substances
## 881 macromolecular complex binding
## 882 anion transmembrane transporter activity
## 883 sodium:potassium-exchanging ATPase activity
## 884 SNAP receptor activity
## 885 potassium-transporting ATPase activity
## 886 1-phosphatidylinositol-3-kinase activity
## 887 thiolester hydrolase activity
## 888 ligand-dependent nuclear receptor transcription coactivator activity
## 889 potassium ion binding
## 890 sodium ion binding
## 891 alkali metal ion binding
## 892 ion channel binding
## 893 calcium ion binding
## 894 ankyrin binding
## 895 kinase activity
## 896 transmembrane receptor protein tyrosine kinase activity
## 897 beta-tubulin binding
## 898 extracellular matrix binding
## 899 protein tyrosine kinase activity
## 900 phosphotransferase activity, alcohol group as acceptor
## 901 Rho guanyl-nucleotide exchange factor activity
## 902 protein C-terminus binding
## 903 inorganic anion transmembrane transporter activity
## 904 O-acyltransferase activity
## 905 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides
## 906 phosphatidylinositol 3-kinase activity
## 907 phosphatidylinositol 3-kinase binding
## 908 phosphatidylinositol kinase activity
## 909 heparin binding
## 910 beta-catenin binding
## 911 amide binding
## 912 peptide binding
## 913 cation-transporting ATPase activity
## 914 ATPase coupled ion transmembrane transporter activity
## 915 cytoskeletal protein binding
## 916 channel activity
## 917 passive transmembrane transporter activity
## 918 ADP binding
## 919 chaperone binding
## 920 lipid binding
## 921 protein kinase activity
## 922 protein complex binding
## 923 syntaxin binding
## 924 steroid binding
## 925 substrate-specific channel activity
## 926 voltage-gated cation channel activity
## 927 cation channel activity
## 928 nucleoside-triphosphatase regulator activity
## 929 GTPase activator activity
## 930 cation transmembrane transporter activity
## 931 SNARE binding
## 932 ATPase activity, coupled to transmembrane movement of ions, phosphorylative mechanism
## 933 ion channel activity
## 934 beta-amyloid binding
## 935 actin filament binding
## 936 tubulin binding
## 937 substrate-specific transmembrane transporter activity
## 938 growth factor activity
## 939 calmodulin binding
## 940 monovalent inorganic cation transmembrane transporter activity
## 941 transmembrane transporter activity
## 942 voltage-gated ion channel activity
## 943 substrate-specific transporter activity
## 944 transmembrane signaling receptor activity
## 945 GTPase regulator activity
## 946 transporter activity
## 947 voltage-gated potassium channel activity
## 948 ion transmembrane transporter activity
## 949 transmembrane receptor activity
## 950 potassium ion transmembrane transporter activity
## 951 signaling receptor activity
## 952 gated channel activity
## 953 potassium channel activity
## 954 receptor activity
## 955 receptor binding
## 956 cytokine activity
## 957 signal transducer activity
## 958 G-protein coupled receptor activity
## 959 cytokine receptor binding
## 960 trans-hexaprenyltranstransferase activity
## 961 single-stranded DNA endodeoxyribonuclease activity
## 962 lactase activity
## 963 alpha-1,2-mannosyltransferase activity
## 964 mannosyltransferase activity
## 965 alpha-1,3-mannosyltransferase activity
## 966 acyl binding
## 967 ACP phosphopantetheine attachment site binding involved in fatty acid biosynthetic process
## 968 peptidyltransferase activity
## 969 L-ornithine transmembrane transporter activity
## 970 S-adenosyl-L-methionine transmembrane transporter activity
## 971 sulfur amino acid transmembrane transporter activity
## 972 glycerol-1-phosphatase activity
## 973 microfilament motor activity
## 974 recombinase activity
## 975 phosphorelay sensor kinase activity
## 976 sphingosine hydroxylase activity
## 977 ribonuclease MRP activity
## 978 rDNA binding
## 979 NAD+ diphosphatase activity
## 980 tRNA-intron endonuclease activity
## 981 tRNA 2'-phosphotransferase activity
## 982 DNA secondary structure binding
## 983 peptide-N4-(N-acetyl-beta-glucosaminyl)asparagine amidase activity
## 984 N-acetylglucosaminylphosphatidylinositol deacetylase activity
## 985 C-8 sterol isomerase activity
## 986 C-5 sterol desaturase activity
## 987 lanosterol synthase activity
## 988 C-3 sterol dehydrogenase (C-4 sterol decarboxylase) activity
## 989 3-keto sterol reductase activity
## 990 C-4 methylsterol oxidase activity
## 991 nitrilase activity
## 992 peroxisome targeting sequence binding
## 993 1-phosphatidylinositol-3-phosphate 5-kinase activity
## 994 ferric-chelate reductase activity
## 995 adenine nucleotide transmembrane transporter activity
## 996 endopolyphosphatase activity
## 997 nicotinamide-nucleotide adenylyltransferase activity
## 998 3-hydroxyanthranilate 3,4-dioxygenase activity
## 999 RNA cap binding
## 1000 RNA 7-methylguanosine cap binding
## 1001 first spliceosomal transesterification activity
## 1002 second spliceosomal transesterification activity
## 1003 four-way junction DNA binding
## 1004 Y-form DNA binding
## 1005 heteroduplex DNA loop binding
## 1006 bubble DNA binding
## 1007 double-strand/single-strand DNA junction binding
## 1008 oxidized base lesion DNA N-glycosylase activity
## 1009 oxidized pyrimidine nucleobase lesion DNA N-glycosylase activity
## 1010 phosphatidyl-N-methylethanolamine N-methyltransferase activity
## 1011 adenyl-nucleotide exchange factor activity
## 1012 inositol hexakisphosphate binding
## 1013 inositol-1,4,5-trisphosphate 6-kinase activity
## 1014 inositol tetrakisphosphate 3-kinase activity
## 1015 inositol tetrakisphosphate 6-kinase activity
## 1016 inositol-1,3,4,5,6-pentakisphosphate kinase activity
## 1017 inositol heptakisphosphate kinase activity
## 1018 inositol hexakisphosphate 6-kinase activity
## 1019 inositol hexakisphosphate 5-kinase activity
## 1020 translation repressor activity, nucleic acid binding
## 1021 transcription factor activity, core RNA polymerase binding
## 1022 transcription factor activity, core RNA polymerase II binding
## 1023 RNA polymerase III core binding
## 1024 transcription factor activity, core RNA polymerase III binding
## 1025 mitochondrial RNA polymerase core promoter sequence-specific DNA binding
## 1026 RNA polymerase III type 1 promoter sequence-specific DNA binding
## 1027 RNA polymerase III type 2 promoter sequence-specific DNA binding
## 1028 transcription factor activity, RNA polymerase III type 1 promoter sequence-specific binding, TFIIIB recruiting
## 1029 transcription factor activity, RNA polymerase III transcription factor binding
## 1030 transcription factor activity, sequence-specific DNA binding transcription factor recruiting
## 1031 transcription factor activity, sequence-specific DNA binding, RNA polymerase recruiting
## 1032 RNA polymerase III regulatory region DNA binding
## 1033 RNA polymerase III transcription factor binding
## 1034 TFIIIB-type transcription factor activity
## 1035 RNA polymerase III type 1 promoter DNA binding
## 1036 RNA polymerase III type 2 promoter DNA binding
## 1037 RNA polymerase III type 3 promoter DNA binding
## 1038 RNA polymerase III transcription factor activity, sequence-specific DNA binding
## 1039 RNA polymerase I core binding
## 1040 RNA polymerase I activity
## 1041 RNA polymerase II activity
## 1042 RNA polymerase III activity
## 1043 transcription factor activity, RNA polymerase II core promoter sequence-specific binding involved in preinitiation complex assembly
## 1044 transcription factor activity, RNA polymerase II basal transcription factor binding
## 1045 transcription factor activity, TFIIB-class binding
## 1046 TFIIB-class transcription factor binding
## 1047 TFIID-class transcription factor binding
## 1048 TFIIF-class transcription factor binding
## 1049 RNA polymerase II repressing transcription factor binding
## 1050 RNA polymerase II transcription corepressor activity
## 1051 RNA polymerase II transcription coactivator activity involved in preinitiation complex assembly
## 1052 RNA polymerase II transcription factor activity, TBP-class protein binding, involved in preinitiation complex assembly
## 1053 RNA polymerase II transcription factor activity, sequence-specific transcription regulatory region DNA binding
## 1054 transcription factor activity, transcription factor recruiting
## 1055 transcription factor activity, RNA polymerase II transcription factor recruiting
## 1056 transcription termination site sequence-specific DNA binding
## 1057 TFIIIC-class transcription factor binding
## 1058 intronic transcription regulatory region sequence-specific DNA binding
## 1059 RNA polymerase II intronic transcription regulatory region sequence-specific DNA binding
## 1060 RNA polymerase I CORE element sequence-specific DNA binding
## 1061 RNA polymerase I upstream control element sequence-specific DNA binding
## 1062 RNA polymerase I transcription factor binding
## 1063 transcription factor activity, core RNA polymerase I binding
## 1064 transcription factor activity, RNA polymerase I CORE element binding transcription factor recruiting
## 1065 transcriptional repressor activity, RNA polymerase II distal enhancer sequence-specific binding
## 1066 transcription corepressor binding
## 1067 RNA polymerase II transcription cofactor binding
## 1068 RNA polymerase II transcription coactivator binding
## 1069 RNA polymerase II transcription corepressor binding
## 1070 dihydronicotinamide riboside quinone reductase activity
## 1071 opioid peptide activity
## 1072 N-acetylglucosamine 6-O-sulfotransferase activity
## 1073 lipopolysaccharide binding
## 1074 interleukin-21 receptor activity
## 1075 N-acetylgalactosamine 4-O-sulfotransferase activity
## 1076 cholesterol 25-hydroxylase activity
## 1077 Gq/11-coupled serotonin receptor activity
## 1078 dopamine neurotransmitter receptor activity, coupled via Gs
## 1079 dopamine neurotransmitter receptor activity, coupled via Gi/Go
## 1080 trace-amine receptor activity
## 1081 angiotensin type I receptor activity
## 1082 peptide YY receptor activity
## 1083 pancreatic polypeptide receptor activity
## 1084 urotensin II receptor activity
## 1085 adrenomedullin receptor activity
## 1086 neuromedin U receptor activity
## 1087 G-protein coupled adenosine receptor activity
## 1088 purinergic nucleotide receptor activity
## 1089 growth hormone secretagogue receptor activity
## 1090 ADP receptor activity
## 1091 nociceptin receptor activity
## 1092 cysteinyl leukotriene receptor activity
## 1093 leukotriene B4 receptor activity
## 1094 calcitonin gene-related peptide receptor activity
## 1095 adenylate cyclase inhibiting G-protein coupled glutamate receptor activity
## 1096 group II metabotropic glutamate receptor activity
## 1097 group III metabotropic glutamate receptor activity
## 1098 G-protein coupled receptor binding
## 1099 alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase activity
## 1100 sialate O-acetylesterase activity
## 1101 L-amino-acid oxidase activity
## 1102 lipid kinase activity
## 1103 ceramide kinase activity
## 1104 2'-5'-oligoadenylate synthetase activity
## 1105 galactosylceramide sulfotransferase activity
## 1106 prenylcysteine oxidase activity
## 1107 retinal dehydrogenase activity
## 1108 aminocarboxymuconate-semialdehyde decarboxylase activity
## 1109 prostaglandin J receptor activity
## 1110 phosphatidylserine binding
## 1111 IgM binding
## 1112 polymeric immunoglobulin receptor activity
## 1113 opsonin binding
## 1114 opsonin receptor activity
## 1115 complement component C1q binding
## 1116 complement component C3a binding
## 1117 complement component C3b binding
## 1118 complement component C4b binding
## 1119 complement component C5a binding
## 1120 complement component C4b receptor activity
## 1121 (1->3)-beta-D-glucan binding
## 1122 lipopolysaccharide receptor activity
## 1123 farnesylated protein binding
## 1124 glycoprotein binding
## 1125 G-protein alpha-subunit binding
## 1126 fibronectin binding
## 1127 retinoic acid binding
## 1128 opsin binding
## 1129 nucleobase binding
## 1130 adenine binding
## 1131 uracil binding
## 1132 thymine binding
## 1133 purine nucleobase binding
## 1134 4-hydroxybenzoate decaprenyltransferase activity
## 1135 interleukin-33 binding
## 1136 interleukin-33 receptor activity
## 1137 UTP binding
## 1138 CTP binding
## 1139 G-quadruplex RNA binding
## 1140 steroid receptor RNA activator RNA binding
## 1141 dystroglycan binding
## 1142 Ser-tRNA(Ala) hydrolase activity
## 1143 ceramide phosphoethanolamine synthase activity
## 1144 AT DNA binding
## 1145 DNA clamp loader activity
## 1146 double-stranded telomeric DNA binding
## 1147 left-handed Z-DNA binding
## 1148 satellite DNA binding
## 1149 steroid hormone receptor activity
## 1150 retinoic acid receptor activity
## 1151 telomerase activity
## 1152 telomerase RNA reverse transcriptase activity
## 1153 double-stranded RNA adenosine deaminase activity
## 1154 translation elongation factor activity
## 1155 translation release factor activity
## 1156 actin monomer binding
## 1157 lysozyme activity
## 1158 protein-glutamine gamma-glutamyltransferase activity
## 1159 alpha-ketoacid dehydrogenase activity
## 1160 alpha-1,3-mannosylglycoprotein 2-beta-N-acetylglucosaminyltransferase activity
## 1161 alpha-N-acetylneuraminate alpha-2,8-sialyltransferase activity
## 1162 beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase activity
## 1163 beta-1,4-mannosylglycoprotein 4-beta-N-acetylglucosaminyltransferase activity
## 1164 beta-N-acetylglucosaminylglycopeptide beta-1,4-galactosyltransferase activity
## 1165 beta-carotene 15,15'-monooxygenase activity
## 1166 beta-galactoside alpha-2,6-sialyltransferase activity
## 1167 beta-ureidopropionase activity
## 1168 gamma-glutamylcyclotransferase activity
## 1169 1-pyrroline-5-carboxylate dehydrogenase activity
## 1170 1,4-alpha-glucan branching enzyme activity
## 1171 11-beta-hydroxysteroid dehydrogenase [NAD(P)] activity
## 1172 2-acylglycerol O-acyltransferase activity
## 1173 1-alkyl-2-acetylglycerophosphocholine esterase activity
## 1174 3-beta-hydroxy-delta5-steroid dehydrogenase activity
## 1175 3-hydroxyacyl-CoA dehydrogenase activity
## 1176 3-hydroxybutyrate dehydrogenase activity
## 1177 3-hydroxyisobutyryl-CoA hydrolase activity
## 1178 3-methyl-2-oxobutanoate dehydrogenase (2-methylpropanoyl-transferring) activity
## 1179 3-oxo-5-alpha-steroid 4-dehydrogenase activity
## 1180 4-hydroxyphenylpyruvate dioxygenase activity
## 1181 5-aminolevulinate synthase activity
## 1182 6-phosphofructokinase activity
## 1183 6-pyruvoyltetrahydropterin synthase activity
## 1184 ADP-ribosylarginine hydrolase activity
## 1185 ATP adenylyltransferase activity
## 1186 ATP citrate synthase activity
## 1187 protein C-terminal carboxyl O-methyltransferase activity
## 1188 CDP-diacylglycerol-inositol 3-phosphatidyltransferase activity
## 1189 CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## 1190 D-amino-acid oxidase activity
## 1191 DNA (cytosine-5-)-methyltransferase activity
## 1192 DNA-directed DNA polymerase activity
## 1193 DNA primase activity
## 1194 DNA-(apurinic or apyrimidinic site) lyase activity
## 1195 methylated-DNA-[protein]-cysteine S-methyltransferase activity
## 1196 DNA nucleotidylexotransferase activity
## 1197 DNA topoisomerase activity
## 1198 DNA topoisomerase type I activity
## 1199 DNA topoisomerase type II (ATP-hydrolyzing) activity
## 1200 FMN adenylyltransferase activity
## 1201 GMP reductase activity
## 1202 GMP synthase activity
## 1203 GMP synthase (glutamine-hydrolyzing) activity
## 1204 GPI-anchor transamidase activity
## 1205 GTP cyclohydrolase I activity
## 1206 IMP cyclohydrolase activity
## 1207 IMP dehydrogenase activity
## 1208 L-iditol 2-dehydrogenase activity
## 1209 L-iduronidase activity
## 1210 L-serine ammonia-lyase activity
## 1211 N-acetylgalactosamine-4-sulfatase activity
## 1212 N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase activity
## 1213 N-acetyllactosamine synthase activity
## 1214 (N-acetylneuraminyl)-galactosylglucosylceramide N-acetylgalactosaminyltransferase activity
## 1215 N4-(beta-N-acetylglucosaminyl)-L-asparaginase activity
## 1216 NAD+ synthase (glutamine-hydrolyzing) activity
## 1217 NAD+ nucleosidase activity
## 1218 NAD(P)H dehydrogenase (quinone) activity
## 1219 NAD(P)+-protein-arginine ADP-ribosyltransferase activity
## 1220 NAD(P)+ transhydrogenase (B-specific) activity
## 1221 NADPH-hemoprotein reductase activity
## 1222 NADPH:quinone reductase activity
## 1223 RNA-3'-phosphate cyclase activity
## 1224 RNA-directed 5'-3' RNA polymerase activity
## 1225 RNA ligase (ATP) activity
## 1226 UDP-N-acetylglucosamine 4-epimerase activity
## 1227 UDP-N-acetylglucosamine-dolichyl-phosphate N-acetylglucosaminephosphotransferase activity
## 1228 UDP-N-acetylglucosamine-lysosomal-enzyme N-acetylglucosaminephosphotransferase activity
## 1229 UDP-glucose 4-epimerase activity
## 1230 UDP-glucose 6-dehydrogenase activity
## 1231 UDP-glucose:glycoprotein glucosyltransferase activity
## 1232 UTP:glucose-1-phosphate uridylyltransferase activity
## 1233 acetyl-CoA C-acetyltransferase activity
## 1234 acetyl-CoA hydrolase activity
## 1235 acetate-CoA ligase activity
## 1236 acetyl-CoA C-acyltransferase activity
## 1237 acetyl-CoA carboxylase activity
## 1238 acetylcholinesterase activity
## 1239 acid phosphatase activity
## 1240 aconitate hydratase activity
## 1241 acyl-CoA dehydrogenase activity
## 1242 acyl-CoA ligase activity
## 1243 acyl-CoA oxidase activity
## 1244 acylphosphatase activity
## 1245 adenine phosphoribosyltransferase activity
## 1246 adenosine deaminase activity
## 1247 adenosine kinase activity
## 1248 copper-exporting ATPase activity
## 1249 adenosylhomocysteinase activity
## 1250 adenosylmethionine decarboxylase activity
## 1251 N6-(1,2-dicarboxyethyl)AMP AMP-lyase (fumarate-forming) activity
## 1252 adenylylsulfate kinase activity
## 1253 L-alanine:2-oxoglutarate aminotransferase activity
## 1254 alcohol dehydrogenase (NAD) activity
## 1255 alcohol dehydrogenase activity, zinc-dependent
## 1256 alcohol sulfotransferase activity
## 1257 3-chloroallyl aldehyde dehydrogenase activity
## 1258 aldehyde dehydrogenase (NAD) activity
## 1259 aldehyde dehydrogenase [NAD(P)+] activity
## 1260 aldehyde oxidase activity
## 1261 aldose 1-epimerase activity
## 1262 allantoicase activity
## 1263 acetyl-CoA:L-glutamate N-acetyltransferase activity
## 1264 L-aminoadipate-semialdehyde dehydrogenase activity
## 1265 amidophosphoribosyltransferase activity
## 1266 aminoacyl-tRNA hydrolase activity
## 1267 aminoacylase activity
## 1268 aminomethyltransferase activity
## 1269 arachidonate 5-lipoxygenase activity
## 1270 arachidonate 12-lipoxygenase activity
## 1271 arginase activity
## 1272 argininosuccinate synthase activity
## 1273 argininosuccinate lyase activity
## 1274 arginyltransferase activity
## 1275 aralkylamine N-acetyltransferase activity
## 1276 arylamine N-acetyltransferase activity
## 1277 arylformamidase activity
## 1278 aryl sulfotransferase activity
## 1279 aryldialkylphosphatase activity
## 1280 arylesterase activity
## 1281 arylsulfatase activity
## 1282 asparagine synthase (glutamine-hydrolyzing) activity
## 1283 asparaginase activity
## 1284 aspartate 1-decarboxylase activity
## 1285 L-aspartate:2-oxoglutarate aminotransferase activity
## 1286 aspartate carbamoyltransferase activity
## 1287 biliverdin reductase activity
## 1288 biotin carboxylase activity
## 1289 biotin-[acetyl-CoA-carboxylase] ligase activity
## 1290 biotin-[methylcrotonoyl-CoA-carboxylase] ligase activity
## 1291 biotin-[methylmalonyl-CoA-carboxytransferase] ligase activity
## 1292 biotin-[propionyl-CoA-carboxylase (ATP-hydrolyzing)] ligase activity
## 1293 bis(5'-nucleosyl)-tetraphosphatase (asymmetrical) activity
## 1294 bisphosphoglycerate mutase activity
## 1295 bisphosphoglycerate 2-phosphatase activity
## 1296 butyryl-CoA dehydrogenase activity
## 1297 carbamoyl-phosphate synthase (ammonia) activity
## 1298 carbamoyl-phosphate synthase (glutamine-hydrolyzing) activity
## 1299 carbonate dehydratase activity
## 1300 carbonyl reductase (NADPH) activity
## 1301 carnitine O-acetyltransferase activity
## 1302 carnitine O-palmitoyltransferase activity
## 1303 catalase activity
## 1304 cerebroside-sulfatase activity
## 1305 choline O-acetyltransferase activity
## 1306 choline kinase activity
## 1307 cholinesterase activity
## 1308 choline-phosphate cytidylyltransferase activity
## 1309 citrate (Si)-synthase activity
## 1310 coproporphyrinogen oxidase activity
## 1311 creatine kinase activity
## 1312 cyclic-nucleotide phosphodiesterase activity
## 1313 2',3'-cyclic-nucleotide 3'-phosphodiesterase activity
## 1314 3',5'-cyclic-nucleotide phosphodiesterase activity
## 1315 3',5'-cyclic-AMP phosphodiesterase activity
## 1316 calmodulin-dependent cyclic-nucleotide phosphodiesterase activity
## 1317 cGMP-stimulated cyclic-nucleotide phosphodiesterase activity
## 1318 cGMP-inhibited cyclic-nucleotide phosphodiesterase activity
## 1319 cystathionine beta-synthase activity
## 1320 cytidine deaminase activity
## 1321 cytochrome-b5 reductase activity, acting on NAD(P)H
## 1322 cytochrome-c oxidase activity
## 1323 cytosine deaminase activity
## 1324 dCMP deaminase activity
## 1325 4-alpha-glucanotransferase activity
## 1326 amylo-alpha-1,6-glucosidase activity
## 1327 deoxycytidine kinase activity
## 1328 deoxyguanosine kinase activity
## 1329 deoxyribose-phosphate aldolase activity
## 1330 dephospho-CoA kinase activity
## 1331 diacylglycerol cholinephosphotransferase activity
## 1332 diacylglycerol kinase activity
## 1333 diacylglycerol O-acyltransferase activity
## 1334 diamine N-acetyltransferase activity
## 1335 dihydrofolate reductase activity
## 1336 dihydrolipoyl dehydrogenase activity
## 1337 dihydrolipoyllysine-residue succinyltransferase activity
## 1338 dihydroorotase activity
## 1339 dihydroorotate dehydrogenase activity
## 1340 6,7-dihydropteridine reductase activity
## 1341 dihydropyrimidinase activity
## 1342 diphosphomevalonate decarboxylase activity
## 1343 diphthine synthase activity
## 1344 dodecenoyl-CoA delta-isomerase activity
## 1345 dopachrome isomerase activity
## 1346 dolichol kinase activity
## 1347 dolichyl-phosphate-mannose-protein mannosyltransferase activity
## 1348 dUTP diphosphatase activity
## 1349 electron-transferring-flavoprotein dehydrogenase activity
## 1350 ATP-dependent peptidase activity
## 1351 aminopeptidase activity
## 1352 carboxypeptidase activity
## 1353 metallocarboxypeptidase activity
## 1354 serine-type carboxypeptidase activity
## 1355 threonine-type endopeptidase activity
## 1356 enoyl-CoA hydratase activity
## 1357 estradiol 17-beta-dehydrogenase activity
## 1358 estrone sulfotransferase activity
## 1359 ethanolamine kinase activity
## 1360 ethanolamine-phosphate cytidylyltransferase activity
## 1361 ethanolaminephosphotransferase activity
## 1362 exo-alpha-sialidase activity
## 1363 farnesyl-diphosphate farnesyltransferase activity
## 1364 farnesyltranstransferase activity
## 1365 fatty acid synthase activity
## 1366 [acyl-carrier-protein] S-acetyltransferase activity
## 1367 [acyl-carrier-protein] S-malonyltransferase activity
## 1368 3-oxoacyl-[acyl-carrier-protein] synthase activity
## 1369 3-oxoacyl-[acyl-carrier-protein] reductase (NADPH) activity
## 1370 3-hydroxypalmitoyl-[acyl-carrier-protein] dehydratase activity
## 1371 enoyl-[acyl-carrier-protein] reductase (NADPH, B-specific) activity
## 1372 oleoyl-[acyl-carrier-protein] hydrolase activity
## 1373 fatty-acyl-CoA synthase activity
## 1374 ferroxidase activity
## 1375 ferredoxin-NADP+ reductase activity
## 1376 ferrochelatase activity
## 1377 tetrahydrofolylpolyglutamate synthase activity
## 1378 formate-tetrahydrofolate ligase activity
## 1379 fructose-bisphosphate aldolase activity
## 1380 fumarylacetoacetase activity
## 1381 galactokinase activity
## 1382 galactosylceramidase activity
## 1383 glucan 1,4-alpha-glucosidase activity
## 1384 glucokinase activity
## 1385 gluconolactonase activity
## 1386 glucosamine-6-phosphate deaminase activity
## 1387 glucosamine 6-phosphate N-acetyltransferase activity
## 1388 glucose-6-phosphate dehydrogenase activity
## 1389 glucose-6-phosphatase activity
## 1390 glucose-6-phosphate isomerase activity
## 1391 glucosylceramidase activity
## 1392 glutamate 5-kinase activity
## 1393 glutamate-5-semialdehyde dehydrogenase activity
## 1394 glutamate dehydrogenase (NAD+) activity
## 1395 glutamate dehydrogenase [NAD(P)+] activity
## 1396 glutamate-cysteine ligase activity
## 1397 glutaminase activity
## 1398 glutamine-fructose-6-phosphate transaminase (isomerizing) activity
## 1399 glutaryl-CoA dehydrogenase activity
## 1400 glutathione-disulfide reductase activity
## 1401 glutathione synthase activity
## 1402 glutathione transferase activity
## 1403 glyceraldehyde-3-phosphate dehydrogenase (NAD+) (phosphorylating) activity
## 1404 glycerol-3-phosphate O-acyltransferase activity
## 1405 glycerol-3-phosphate dehydrogenase [NAD+] activity
## 1406 glycerol-3-phosphate dehydrogenase activity
## 1407 glycerol kinase activity
## 1408 glycerone kinase activity
## 1409 glycine hydroxymethyltransferase activity
## 1410 glycogen (starch) synthase activity
## 1411 glycine dehydrogenase (decarboxylating) activity
## 1412 glycolipid mannosyltransferase activity
## 1413 GDP-Man:Man3GlcNAc2-PP-Dol alpha-1,2-mannosyltransferase activity
## 1414 GDP-Man:Man1GlcNAc2-PP-Dol alpha-1,3-mannosyltransferase activity
## 1415 glycylpeptide N-tetradecanoyltransferase activity
## 1416 glycoprotein-fucosylgalactoside alpha-N-acetylgalactosaminyltransferase activity
## 1417 fucosylgalactoside 3-alpha-galactosyltransferase activity
## 1418 guanosine-diphosphatase activity
## 1419 guanylate cyclase activity
## 1420 guanylate kinase activity
## 1421 heme oxygenase (decyclizing) activity
## 1422 heparan sulfate 2-O-sulfotransferase activity
## 1423 hexaprenyldihydroxybenzoate methyltransferase activity
## 1424 histidine ammonia-lyase activity
## 1425 histidine decarboxylase activity
## 1426 histone deacetylase activity
## 1427 holocytochrome-c synthase activity
## 1428 homogentisate 1,2-dioxygenase activity
## 1429 hyalurononglucosaminidase activity
## 1430 hydroxyacylglutathione hydrolase activity
## 1431 hydroxymethylbilane synthase activity
## 1432 hydroxymethylglutaryl-CoA lyase activity
## 1433 hydroxymethylglutaryl-CoA reductase (NADPH) activity
## 1434 hydroxymethylglutaryl-CoA synthase activity
## 1435 hypoxanthine phosphoribosyltransferase activity
## 1436 iduronate-2-sulfatase activity
## 1437 inorganic diphosphatase activity
## 1438 1-phosphatidylinositol 4-kinase activity
## 1439 phosphatidylinositol phospholipase C activity
## 1440 phosphatidylinositol-3-phosphatase activity
## 1441 inositol-1,4-bisphosphate 1-phosphatase activity
## 1442 inositol-polyphosphate 5-phosphatase activity
## 1443 iodide peroxidase activity
## 1444 isocitrate dehydrogenase activity
## 1445 isocitrate dehydrogenase (NAD+) activity
## 1446 isocitrate dehydrogenase (NADP+) activity
## 1447 isopentenyl-diphosphate delta-isomerase activity
## 1448 ketohexokinase activity
## 1449 lactate dehydrogenase activity
## 1450 D-lactate dehydrogenase (cytochrome) activity
## 1451 L-lactate dehydrogenase activity
## 1452 lactose synthase activity
## 1453 lactoylglutathione lyase activity
## 1454 leukotriene-A4 hydrolase activity
## 1455 leukotriene-C4 synthase activity
## 1456 lipoprotein lipase activity
## 1457 long-chain-acyl-CoA dehydrogenase activity
## 1458 long-chain fatty acid-CoA ligase activity
## 1459 lysine N-acetyltransferase activity, acting on acetyl phosphate as donor
## 1460 malic enzyme activity
## 1461 malate dehydrogenase (decarboxylating) (NAD+) activity
## 1462 malate dehydrogenase (decarboxylating) (NADP+) activity
## 1463 malate synthase activity
## 1464 mannose-1-phosphate guanylyltransferase activity
## 1465 mannose-6-phosphate isomerase activity
## 1466 methenyltetrahydrofolate cyclohydrolase activity
## 1467 methionine adenosyltransferase activity
## 1468 methionyl-tRNA formyltransferase activity
## 1469 mRNA (guanine-N7-)-methyltransferase activity
## 1470 mRNA (nucleoside-2'-O-)-methyltransferase activity
## 1471 mRNA guanylyltransferase activity
## 1472 methylcrotonoyl-CoA carboxylase activity
## 1473 methylenetetrahydrofolate dehydrogenase [NAD(P)+] activity
## 1474 methylenetetrahydrofolate dehydrogenase (NAD+) activity
## 1475 methylenetetrahydrofolate dehydrogenase (NADP+) activity
## 1476 methylglutaconyl-CoA hydratase activity
## 1477 methylmalonate-semialdehyde dehydrogenase (acylating) activity
## 1478 methylmalonyl-CoA decarboxylase activity
## 1479 methylmalonyl-CoA epimerase activity
## 1480 methylmalonyl-CoA mutase activity
## 1481 mevalonate kinase activity
## 1482 monooxygenase activity
## 1483 calcidiol 1-monooxygenase activity
## 1484 N,N-dimethylaniline monooxygenase activity
## 1485 dopamine beta-monooxygenase activity
## 1486 kynurenine 3-monooxygenase activity
## 1487 monophenol monooxygenase activity
## 1488 peptidylglycine monooxygenase activity
## 1489 phenylalanine 4-monooxygenase activity
## 1490 squalene monooxygenase activity
## 1491 steroid 11-beta-monooxygenase activity
## 1492 steroid 17-alpha-monooxygenase activity
## 1493 steroid 21-monooxygenase activity
## 1494 tryptophan 5-monooxygenase activity
## 1495 tyrosine 3-monooxygenase activity
## 1496 inositol-3-phosphate synthase activity
## 1497 neolactotetraosylceramide alpha-2,3-sialyltransferase activity
## 1498 nicotinate-nucleotide diphosphorylase (carboxylating) activity
## 1499 nicotinate-nucleotide adenylyltransferase activity
## 1500 nicotinate phosphoribosyltransferase activity
## 1501 nitric-oxide synthase activity
## 1502 ribonuclease A activity
## 1503 ribonuclease III activity
## 1504 ribonuclease P activity
## 1505 phosphodiesterase I activity
## 1506 deoxyribonuclease I activity
## 1507 deoxyribonuclease II activity
## 1508 5'-3' exoribonuclease activity
## 1509 tRNA-specific ribonuclease activity
## 1510 nucleotide diphosphatase activity
## 1511 alpha,alpha-trehalase activity
## 1512 alpha-amylase activity
## 1513 alpha-galactosidase activity
## 1514 alpha-1,4-glucosidase activity
## 1515 alpha-L-fucosidase activity
## 1516 alpha-N-acetylglucosaminidase activity
## 1517 beta-N-acetylhexosaminidase activity
## 1518 beta-galactosidase activity
## 1519 beta-glucuronidase activity
## 1520 beta-mannosidase activity
## 1521 glycoprotein endo-alpha-1,2-mannosidase activity
## 1522 mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase activity
## 1523 mannosyl-oligosaccharide glucosidase activity
## 1524 oligo-1,6-glucosidase activity
## 1525 sucrose alpha-glucosidase activity
## 1526 oligosaccharyl transferase activity
## 1527 chitobiosyldiphosphodolichol beta-mannosyltransferase activity
## 1528 dolichyl-diphosphooligosaccharide-protein glycotransferase activity
## 1529 dolichyl-phosphate beta-glucosyltransferase activity
## 1530 dolichyl-phosphate beta-D-mannosyltransferase activity
## 1531 dolichyl-phosphate-glucose-glycolipid alpha-glucosyltransferase activity
## 1532 dolichyl-phosphate-mannose-glycolipid alpha-mannosyltransferase activity
## 1533 ornithine carbamoyltransferase activity
## 1534 ornithine decarboxylase activity
## 1535 ornithine-oxo-acid transaminase activity
## 1536 orotate phosphoribosyltransferase activity
## 1537 orotidine-5'-phosphate decarboxylase activity
## 1538 oxoglutarate dehydrogenase (succinyl-transferring) activity
## 1539 pantothenate kinase activity
## 1540 pantetheine-phosphate adenylyltransferase activity
## 1541 peptide alpha-N-acetyltransferase activity
## 1542 peptide-aspartate beta-dioxygenase activity
## 1543 peptidylamidoglycolate lyase activity
## 1544 phenylethanolamine N-methyltransferase activity
## 1545 phosphatidate cytidylyltransferase activity
## 1546 phosphatidylcholine-sterol O-acyltransferase activity
## 1547 phosphatidylethanolamine N-methyltransferase activity
## 1548 phosphatidylserine decarboxylase activity
## 1549 phosphoacetylglucosamine mutase activity
## 1550 phosphoenolpyruvate carboxykinase (GTP) activity
## 1551 phosphoglucomutase activity
## 1552 phosphomannomutase activity
## 1553 phosphoglycerate dehydrogenase activity
## 1554 phosphoglycerate kinase activity
## 1555 glycosylphosphatidylinositol phospholipase D activity
## 1556 lysophospholipase activity
## 1557 phospholipase C activity
## 1558 phospholipase D activity
## 1559 phosphomevalonate kinase activity
## 1560 phosphopantothenate--cysteine ligase activity
## 1561 phosphopantothenoylcysteine decarboxylase activity
## 1562 phosphoribosylamine-glycine ligase activity
## 1563 phosphoribosylaminoimidazole carboxylase activity
## 1564 phosphoribosylaminoimidazolesuccinocarboxamide synthase activity
## 1565 phosphoribosylformylglycinamidine cyclo-ligase activity
## 1566 phosphoribosylformylglycinamidine synthase activity
## 1567 phosphoribosylaminoimidazolecarboxamide formyltransferase activity
## 1568 phosphoribosylglycinamide formyltransferase activity
## 1569 phosphorylase activity
## 1570 phosphoserine phosphatase activity
## 1571 O-phospho-L-serine:2-oxoglutarate aminotransferase activity
## 1572 poly(ADP-ribose) glycohydrolase activity
## 1573 polynucleotide 5'-phosphatase activity
## 1574 polynucleotide adenylyltransferase activity
## 1575 polyribonucleotide nucleotidyltransferase activity
## 1576 porphobilinogen synthase activity
## 1577 procollagen-proline 4-dioxygenase activity
## 1578 proline dehydrogenase activity
## 1579 propionyl-CoA carboxylase activity
## 1580 protein farnesyltransferase activity
## 1581 CAAX-protein geranylgeranyltransferase activity
## 1582 prostaglandin-endoperoxide synthase activity
## 1583 prostaglandin-D synthase activity
## 1584 protein C-terminal S-isoprenylcysteine carboxyl O-methyltransferase activity
## 1585 protein histidine kinase activity
## 1586 3-phosphoinositide-dependent protein kinase activity
## 1587 DNA-dependent protein kinase activity
## 1588 calmodulin-dependent protein kinase activity
## 1589 elongation factor-2 kinase activity
## 1590 myosin light chain kinase activity
## 1591 phosphorylase kinase activity
## 1592 cyclic nucleotide-dependent protein kinase activity
## 1593 cAMP-dependent protein kinase activity
## 1594 cGMP-dependent protein kinase activity
## 1595 cyclin-dependent protein serine/threonine kinase activity
## 1596 eukaryotic translation initiation factor 2alpha kinase activity
## 1597 calcium-dependent protein kinase C activity
## 1598 calcium-independent protein kinase C activity
## 1599 signal transducer, downstream of receptor, with serine/threonine kinase activity
## 1600 G-protein coupled receptor kinase activity
## 1601 NF-kappaB-inducing kinase activity
## 1602 JUN kinase activity
## 1603 JUN kinase kinase kinase activity
## 1604 MAP kinase activity
## 1605 MAP kinase kinase activity
## 1606 MAP kinase kinase kinase activity
## 1607 ribosomal protein S6 kinase activity
## 1608 non-membrane spanning protein tyrosine kinase activity
## 1609 signal transducer, downstream of receptor, with protein tyrosine kinase activity
## 1610 protein-L-isoaspartate (D-aspartate) O-methyltransferase activity
## 1611 protein-lysine 6-oxidase activity
## 1612 calcium-dependent protein serine/threonine phosphatase activity
## 1613 non-membrane spanning protein tyrosine phosphatase activity
## 1614 signal transducer, downstream of receptor, with protein tyrosine phosphatase activity
## 1615 pseudouridylate synthase activity
## 1616 purine-nucleoside phosphorylase activity
## 1617 pyridoxamine-phosphate oxidase activity
## 1618 pyrroline-5-carboxylate reductase activity
## 1619 pyruvate carboxylase activity
## 1620 pyruvate dehydrogenase activity
## 1621 pyruvate dehydrogenase (acetyl-transferring) activity
## 1622 pyruvate dehydrogenase (acetyl-transferring) kinase activity
## 1623 [pyruvate dehydrogenase (lipoamide)] phosphatase activity
## 1624 dihydrolipoyllysine-residue acetyltransferase activity
## 1625 pyruvate kinase activity
## 1626 retinal isomerase activity
## 1627 ribokinase activity
## 1628 ribonucleoside-diphosphate reductase activity, thioredoxin disulfide as acceptor
## 1629 ribose phosphate diphosphokinase activity
## 1630 ribulose-phosphate 3-epimerase activity
## 1631 ribose-5-phosphate isomerase activity
## 1632 selenide, water dikinase activity
## 1633 sepiapterin reductase activity
## 1634 serine C-palmitoyltransferase activity
## 1635 serine-pyruvate transaminase activity
## 1636 spermidine synthase activity
## 1637 sphingomyelin phosphodiesterase activity
## 1638 stearoyl-CoA 9-desaturase activity
## 1639 steroid delta-isomerase activity
## 1640 sterol esterase activity
## 1641 steryl-sulfatase activity
## 1642 succinate-CoA ligase activity
## 1643 succinate-CoA ligase (ADP-forming) activity
## 1644 succinate-CoA ligase (GDP-forming) activity
## 1645 succinate-semialdehyde dehydrogenase (NAD+) activity
## 1646 succinyl-CoA hydrolase activity
## 1647 sulfate adenylyltransferase (ATP) activity
## 1648 sulfinoalanine decarboxylase activity
## 1649 superoxide dismutase activity
## 1650 thiamine diphosphokinase activity
## 1651 thioether S-methyltransferase activity
## 1652 thioredoxin-disulfide reductase activity
## 1653 thiosulfate sulfurtransferase activity
## 1654 L-threonine ammonia-lyase activity
## 1655 thromboxane-A synthase activity
## 1656 thymidine kinase activity
## 1657 thymidylate kinase activity
## 1658 thymidylate synthase activity
## 1659 thyroxine 5'-deiodinase activity
## 1660 sedoheptulose-7-phosphate:D-glyceraldehyde-3-phosphate glyceronetransferase activity
## 1661 transketolase activity
## 1662 transposase activity
## 1663 triglyceride lipase activity
## 1664 triose-phosphate isomerase activity
## 1665 tRNA (guanine-N2-)-methyltransferase activity
## 1666 alanine-tRNA ligase activity
## 1667 arginine-tRNA ligase activity
## 1668 asparagine-tRNA ligase activity
## 1669 cysteine-tRNA ligase activity
## 1670 glutamine-tRNA ligase activity
## 1671 glycine-tRNA ligase activity
## 1672 histidine-tRNA ligase activity
## 1673 isoleucine-tRNA ligase activity
## 1674 leucine-tRNA ligase activity
## 1675 lysine-tRNA ligase activity
## 1676 methionine-tRNA ligase activity
## 1677 phenylalanine-tRNA ligase activity
## 1678 serine-tRNA ligase activity
## 1679 tyrosine-tRNA ligase activity
## 1680 valine-tRNA ligase activity
## 1681 tryptophan 2,3-dioxygenase activity
## 1682 tubulin-tyrosine ligase activity
## 1683 L-tyrosine:2-oxoglutarate aminotransferase activity
## 1684 ubiquitin activating enzyme activity
## 1685 uracil DNA N-glycosylase activity
## 1686 uridine phosphorylase activity
## 1687 uroporphyrinogen-III synthase activity
## 1688 uroporphyrinogen decarboxylase activity
## 1689 xanthine dehydrogenase activity
## 1690 xanthine oxidase activity
## 1691 xylulokinase activity
## 1692 phospholipase inhibitor activity
## 1693 cAMP-dependent protein kinase inhibitor activity
## 1694 protein serine/threonine phosphatase inhibitor activity
## 1695 serine-type endopeptidase inhibitor activity
## 1696 asialoglycoprotein receptor activity
## 1697 aryl hydrocarbon receptor activity
## 1698 complement receptor activity
## 1699 complement component C3a receptor activity
## 1700 complement component C3b receptor activity
## 1701 complement component C5a receptor activity
## 1702 RNA polymerase II transcription factor activity, ligand-activated sequence-specific DNA binding
## 1703 androgen receptor activity
## 1704 9-cis retinoic acid receptor activity
## 1705 thyroid hormone receptor activity
## 1706 GABA-A receptor activity
## 1707 ciliary neurotrophic factor receptor activity
## 1708 erythropoietin receptor activity
## 1709 interferon receptor activity
## 1710 type I interferon receptor activity
## 1711 interferon-gamma receptor activity
## 1712 interleukin-1 receptor activity
## 1713 interleukin-1, Type I, activating receptor activity
## 1714 interleukin-1, Type II, blocking receptor activity
## 1715 interleukin-2 receptor activity
## 1716 interleukin-3 receptor activity
## 1717 interleukin-4 receptor activity
## 1718 interleukin-5 receptor activity
## 1719 interleukin-6 receptor activity
## 1720 interleukin-7 receptor activity
## 1721 interleukin-8 receptor activity
## 1722 interleukin-9 receptor activity
## 1723 interleukin-10 receptor activity
## 1724 interleukin-11 receptor activity
## 1725 leukemia inhibitory factor receptor activity
## 1726 oncostatin-M receptor activity
## 1727 prolactin receptor activity
## 1728 extracellular ATP-gated cation channel activity
## 1729 adrenergic receptor activity
## 1730 alpha-adrenergic receptor activity
## 1731 alpha1-adrenergic receptor activity
## 1732 alpha2-adrenergic receptor activity
## 1733 beta-adrenergic receptor activity
## 1734 beta1-adrenergic receptor activity
## 1735 beta2-adrenergic receptor activity
## 1736 angiotensin type II receptor activity
## 1737 bombesin receptor activity
## 1738 bradykinin receptor activity
## 1739 calcitonin receptor activity
## 1740 cannabinoid receptor activity
## 1741 chemokine receptor activity
## 1742 cholecystokinin receptor activity
## 1743 dopamine neurotransmitter receptor activity
## 1744 icosanoid receptor activity
## 1745 prostanoid receptor activity
## 1746 prostaglandin receptor activity
## 1747 prostaglandin D receptor activity
## 1748 prostaglandin E receptor activity
## 1749 prostaglandin F receptor activity
## 1750 thromboxane A2 receptor activity
## 1751 endothelin receptor activity
## 1752 follicle-stimulating hormone receptor activity
## 1753 luteinizing hormone receptor activity
## 1754 G-protein coupled GABA receptor activity
## 1755 galanin receptor activity
## 1756 glucagon receptor activity
## 1757 gonadotropin-releasing hormone receptor activity
## 1758 histamine receptor activity
## 1759 ionotropic glutamate receptor activity
## 1760 AMPA glutamate receptor activity
## 1761 NMDA glutamate receptor activity
## 1762 leukotriene receptor activity
## 1763 melanocortin receptor activity
## 1764 corticotropin receptor activity
## 1765 beta-endorphin receptor activity
## 1766 melanocyte-stimulating hormone receptor activity
## 1767 N-formyl peptide receptor activity
## 1768 neuropeptide Y receptor activity
## 1769 opioid receptor activity
## 1770 oxytocin receptor activity
## 1771 parathyroid hormone receptor activity
## 1772 platelet activating factor receptor activity
## 1773 G-protein coupled serotonin receptor activity
## 1774 somatostatin receptor activity
## 1775 tachykinin receptor activity
## 1776 thyroid-stimulating hormone receptor activity
## 1777 thyrotropin-releasing hormone receptor activity
## 1778 transferrin receptor activity
## 1779 vasoactive intestinal polypeptide receptor activity
## 1780 vasopressin receptor activity
## 1781 transmembrane receptor protein tyrosine phosphatase activity
## 1782 GPI-linked ephrin receptor activity
## 1783 transmembrane-ephrin receptor activity
## 1784 epidermal growth factor-activated receptor activity
## 1785 fibroblast growth factor-activated receptor activity
## 1786 hepatocyte growth factor-activated receptor activity
## 1787 insulin-activated receptor activity
## 1788 insulin-like growth factor-activated receptor activity
## 1789 macrophage colony-stimulating factor receptor activity
## 1790 platelet-derived growth factor-activated receptor activity
## 1791 platelet-derived growth factor alpha-receptor activity
## 1792 platelet-derived growth factor beta-receptor activity
## 1793 stem cell factor receptor activity
## 1794 vascular endothelial growth factor-activated receptor activity
## 1795 transforming growth factor beta-activated receptor activity
## 1796 transforming growth factor beta receptor activity, type I
## 1797 transforming growth factor beta receptor activity, type II
## 1798 neurotrophin receptor activity
## 1799 osmosensor activity
## 1800 low-density lipoprotein receptor activity
## 1801 netrin receptor activity
## 1802 scavenger receptor activity
## 1803 KDEL sequence binding
## 1804 nuclear export signal receptor activity
## 1805 peroxisome matrix targeting signal-1 binding
## 1806 peroxisome matrix targeting signal-2 binding
## 1807 laminin receptor activity
## 1808 transforming growth factor beta receptor, cytoplasmic mediator activity
## 1809 MAP-kinase scaffold activity
## 1810 protein kinase C binding
## 1811 ARF guanyl-nucleotide exchange factor activity
## 1812 Sar guanyl-nucleotide exchange factor activity
## 1813 GDP-dissociation inhibitor activity
## 1814 Rab GDP-dissociation inhibitor activity
## 1815 Rho GDP-dissociation inhibitor activity
## 1816 GTPase inhibitor activity
## 1817 fibroblast growth factor receptor binding
## 1818 type 1 fibroblast growth factor receptor binding
## 1819 frizzled binding
## 1820 frizzled-2 binding
## 1821 type 2 fibroblast growth factor receptor binding
## 1822 Notch binding
## 1823 patched binding
## 1824 type II transforming growth factor beta receptor binding
## 1825 receptor tyrosine kinase-like orphan receptor binding
## 1826 death receptor binding
## 1827 scavenger receptor binding
## 1828 ciliary neurotrophic factor receptor binding
## 1829 erythropoietin receptor binding
## 1830 granulocyte macrophage colony-stimulating factor receptor binding
## 1831 granulocyte colony-stimulating factor receptor binding
## 1832 growth hormone receptor binding
## 1833 type I interferon receptor binding
## 1834 interferon-gamma receptor binding
## 1835 interleukin-2 receptor binding
## 1836 interleukin-3 receptor binding
## 1837 interleukin-4 receptor binding
## 1838 interleukin-5 receptor binding
## 1839 interleukin-6 receptor binding
## 1840 interleukin-7 receptor binding
## 1841 interleukin-9 receptor binding
## 1842 interleukin-10 receptor binding
## 1843 interleukin-11 receptor binding
## 1844 interleukin-12 receptor binding
## 1845 interleukin-13 receptor binding
## 1846 leukemia inhibitory factor receptor binding
## 1847 oncostatin-M receptor binding
## 1848 prolactin receptor binding
## 1849 interleukin-1, Type I receptor binding
## 1850 interleukin-1, Type II receptor binding
## 1851 interleukin-1 receptor antagonist activity
## 1852 interleukin-8 receptor binding
## 1853 macrophage colony-stimulating factor receptor binding
## 1854 transforming growth factor beta receptor binding
## 1855 platelet-derived growth factor receptor binding
## 1856 nerve growth factor receptor binding
## 1857 tumor necrosis factor receptor binding
## 1858 neurotrophin p75 receptor binding
## 1859 neurotrophin TRKB receptor binding
## 1860 neurotrophin TRKC receptor binding
## 1861 hepatocyte growth factor receptor binding
## 1862 vascular endothelial growth factor receptor binding
## 1863 stem cell factor receptor binding
## 1864 CD40 receptor binding
## 1865 CD27 receptor binding
## 1866 ErbB-2 class receptor binding
## 1867 gonadotropin hormone-releasing hormone activity
## 1868 neuropeptide hormone activity
## 1869 neurohypophyseal hormone activity
## 1870 structural constituent of cell wall
## 1871 structural constituent of eye lens
## 1872 ryanodine-sensitive calcium-release channel activity
## 1873 inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## 1874 intracellular cyclic nucleotide activated cation channel activity
## 1875 intracellular cAMP activated cation channel activity
## 1876 intracellular cGMP activated cation channel activity
## 1877 intracellular calcium activated chloride channel activity
## 1878 extracellular ligand-gated ion channel activity
## 1879 excitatory extracellular ligand-gated ion channel activity
## 1880 extracellular-glutamate-gated ion channel activity
## 1881 inhibitory extracellular ligand-gated ion channel activity
## 1882 voltage-gated sodium channel activity
## 1883 A-type (transient outward) potassium channel activity
## 1884 delayed rectifier potassium channel activity
## 1885 open rectifier potassium channel activity
## 1886 channel-conductance-controlling ATPase activity
## 1887 amine transmembrane transporter activity
## 1888 vesicular hydrogen:amino acid antiporter activity
## 1889 acetylcholine transmembrane transporter activity
## 1890 hydrogen:amino acid symporter activity
## 1891 high-affinity arginine transmembrane transporter activity
## 1892 L-histidine transmembrane transporter activity
## 1893 high-affinity lysine transmembrane transporter activity
## 1894 proline:sodium symporter activity
## 1895 L-tyrosine transmembrane transporter activity
## 1896 choline:sodium symporter activity
## 1897 creatine transmembrane transporter activity
## 1898 creatine:sodium symporter activity
## 1899 dicarboxylic acid transmembrane transporter activity
## 1900 L-glutamate transmembrane transporter activity
## 1901 high-affinity glutamate transmembrane transporter activity
## 1902 inorganic phosphate transmembrane transporter activity
## 1903 high-affinity inorganic phosphate:sodium symporter activity
## 1904 long-chain fatty acid transporter activity
## 1905 peroxisomal fatty-acyl-CoA transporter activity
## 1906 dopamine transmembrane transporter activity
## 1907 dopamine:sodium symporter activity
## 1908 gamma-aminobutyric acid:sodium symporter activity
## 1909 norepinephrine transmembrane transporter activity
## 1910 norepinephrine:sodium symporter activity
## 1911 serotonin:sodium symporter activity
## 1912 nucleoside transmembrane transporter activity
## 1913 nucleotide-sugar transmembrane transporter activity
## 1914 oxygen transporter activity
## 1915 purine nucleobase transmembrane transporter activity
## 1916 purine ribonucleotide transmembrane transporter activity
## 1917 ATP transmembrane transporter activity
## 1918 pyrimidine nucleobase transmembrane transporter activity
## 1919 sugar:proton symporter activity
## 1920 fructose transmembrane transporter activity
## 1921 low-affinity glucose:sodium symporter activity
## 1922 myo-inositol transmembrane transporter activity
## 1923 myo-inositol:proton symporter activity
## 1924 myo-inositol:sodium symporter activity
## 1925 taurine:sodium symporter activity
## 1926 copper ion transmembrane transporter activity
## 1927 iron ion transmembrane transporter activity
## 1928 manganese ion transmembrane transporter activity
## 1929 calcium-transporting ATPase activity
## 1930 eye pigment precursor transporter activity
## 1931 glucose:sodium symporter activity
## 1932 nucleoside:sodium symporter activity
## 1933 proton-dependent oligopeptide secondary active transmembrane transporter activity
## 1934 calcium:sodium antiporter activity
## 1935 sodium:phosphate symporter activity
## 1936 inorganic anion exchanger activity
## 1937 CMP-N-acetylneuraminate transmembrane transporter activity
## 1938 GDP-fucose transmembrane transporter activity
## 1939 UDP-galactose transmembrane transporter activity
## 1940 UDP-glucuronic acid transmembrane transporter activity
## 1941 UDP-N-acetylglucosamine transmembrane transporter activity
## 1942 UDP-xylose transmembrane transporter activity
## 1943 ATP:ADP antiporter activity
## 1944 carnitine:acyl carnitine antiporter activity
## 1945 pyruvate secondary active transmembrane transporter activity
## 1946 soluble NSF attachment protein activity
## 1947 androgen binding
## 1948 vitamin D binding
## 1949 retinoid binding
## 1950 11-cis retinal binding
## 1951 all-trans retinal binding
## 1952 cytoskeletal regulatory protein binding
## 1953 profilin binding
## 1954 tropomyosin binding
## 1955 FK506 binding
## 1956 galactose binding
## 1957 glucose binding
## 1958 mannose binding
## 1959 folic acid binding
## 1960 calcium-dependent phospholipid binding
## 1961 phosphatidylinositol-3,4,5-trisphosphate binding
## 1962 odorant binding
## 1963 pheromone binding
## 1964 chemokine activity
## 1965 high-density lipoprotein particle binding
## 1966 axon guidance receptor activity
## 1967 calcium sensitive guanylate cyclase activator activity
## 1968 glutamate receptor activity
## 1969 extracellular-glutamate-gated chloride channel activity
## 1970 ornithine decarboxylase inhibitor activity
## 1971 phosphoric diester hydrolase activity
## 1972 cytoskeletal adaptor activity
## 1973 galactoside 2-alpha-L-fucosyltransferase activity
## 1974 UDP-glucose:hexose-1-phosphate uridylyltransferase activity
## 1975 N-acetyllactosaminide beta-1,6-N-acetylglucosaminyltransferase activity
## 1976 alpha-methylacyl-CoA racemase activity
## 1977 nicotinamide N-methyltransferase activity
## 1978 peptide-methionine (S)-S-oxide reductase activity
## 1979 sarcosine oxidase activity
## 1980 prostaglandin-I synthase activity
## 1981 sphinganine-1-phosphate aldolase activity
## 1982 thiopurine S-methyltransferase activity
## 1983 ceramide glucosyltransferase activity
## 1984 cholesterol 7-alpha-monooxygenase activity
## 1985 4-alpha-hydroxytetrahydrobiopterin dehydratase activity
## 1986 quercetin 2,3-dioxygenase activity
## 1987 primary amine oxidase activity
## 1988 nuclear localization sequence binding
## 1989 cAMP response element binding protein binding
## 1990 oxysterol binding
## 1991 sulfotransferase activity
## 1992 structural constituent of bone
## 1993 protein tyrosine phosphatase activator activity
## 1994 mRNA methyltransferase activity
## 1995 tRNA (guanine-N7-)-methyltransferase activity
## 1996 succinate dehydrogenase (ubiquinone) activity
## 1997 glycogen phosphorylase activity
## 1998 neuropeptide receptor activity
## 1999 eukaryotic initiation factor 4E binding
## 2000 metalloendopeptidase inhibitor activity
## 2001 RNA guanylyltransferase activity
## 2002 tRNA guanylyltransferase activity
## 2003 phosphatidate phosphatase activity
## 2004 ferrous iron binding
## 2005 ferric iron binding
## 2006 G-protein coupled amine receptor activity
## 2007 dipeptidyl-peptidase activity
## 2008 tripeptidyl-peptidase activity
## 2009 peptidyl-dipeptidase activity
## 2010 omega peptidase activity
## 2011 tRNA-specific adenosine deaminase activity
## 2012 nucleotidase activity
## 2013 5'-nucleotidase activity
## 2014 3'-nucleotidase activity
## 2015 3-oxoacid CoA-transferase activity
## 2016 pyrimidine-specific mismatch base pair DNA N-glycosylase activity
## 2017 Mo-molybdopterin cofactor sulfurase activity
## 2018 poly-glutamine tract binding
## 2019 JAK pathway signal transduction adaptor activity
## 2020 secondary active sulfate transmembrane transporter activity
## 2021 calcium, potassium:sodium antiporter activity
## 2022 sulfonylurea receptor activity
## 2023 calcium- and calmodulin-responsive adenylate cyclase activity
## 2024 3'-5'-exodeoxyribonuclease activity
## 2025 DNA binding, bending
## 2026 single-stranded DNA 3'-5' exodeoxyribonuclease activity
## 2027 double-stranded DNA 3'-5' exodeoxyribonuclease activity
## 2028 Ral guanyl-nucleotide exchange factor activity
## 2029 methyl-CpG binding
## 2030 signaling pattern recognition receptor activity
## 2031 protein tyrosine/threonine phosphatase activity
## 2032 high voltage-gated calcium channel activity
## 2033 low voltage-gated calcium channel activity
## 2034 gamma-butyrobetaine dioxygenase activity
## 2035 MAP kinase kinase kinase kinase activity
## 2036 RNA polymerase II carboxy-terminal domain kinase activity
## 2037 mechanically-gated ion channel activity
## 2038 IkappaB kinase activity
## 2039 cholesterol monooxygenase (side-chain-cleaving) activity
## 2040 steroid 7-alpha-hydroxylase activity
## 2041 coumarin 7-hydroxylase activity
## 2042 arachidonic acid epoxygenase activity
## 2043 steroid hydroxylase activity
## 2044 oxysterol 7-alpha-hydroxylase activity
## 2045 sterol 12-alpha-hydroxylase activity
## 2046 sterol 14-demethylase activity
## 2047 retinoic acid 4-hydroxylase activity
## 2048 25-hydroxycholecalciferol-24-hydroxylase activity
## 2049 arachidonic acid 14,15-epoxygenase activity
## 2050 arachidonic acid 11,12-epoxygenase activity
## 2051 CoA-transferase activity
## 2052 8-oxo-7,8-dihydroguanosine triphosphate pyrophosphatase activity
## 2053 fucosyltransferase activity
## 2054 protein-N-terminal asparagine amidohydrolase activity
## 2055 RNA lariat debranching enzyme activity
## 2056 beta-glucosidase activity
## 2057 glycoprotein 6-alpha-L-fucosyltransferase activity
## 2058 2-polyprenyl-6-methoxy-1,4-benzoquinone methyltransferase activity
## 2059 protein kinase C inhibitor activity
## 2060 calcium-dependent protein kinase inhibitor activity
## 2061 ribonuclease inhibitor activity
## 2062 phosphatidylethanolamine binding
## 2063 selenium binding
## 2064 vitamin E binding
## 2065 calcitriol receptor activity
## 2066 thyrotropin-releasing hormone activity
## 2067 inositol-1,4,5-trisphosphate 3-kinase activity
## 2068 3'(2'),5'-bisphosphate nucleotidase activity
## 2069 3-hydroxyisobutyrate dehydrogenase activity
## 2070 CDP-diacylglycerol-glycerol-3-phosphate 3-phosphatidyltransferase activity
## 2071 D-aspartate oxidase activity
## 2072 GDP-mannose 4,6-dehydratase activity
## 2073 N-acetylglucosamine-6-phosphate deacetylase activity
## 2074 N-acetylglucosamine-6-sulfatase activity
## 2075 alanine-glyoxylate transaminase activity
## 2076 alpha-1,3-mannosylglycoprotein 4-beta-N-acetylglucosaminyltransferase activity
## 2077 alpha-1,6-mannosylglycoprotein 2-beta-N-acetylglucosaminyltransferase activity
## 2078 alpha-N-acetylgalactosaminidase activity
## 2079 beta-galactosyl-N-acetylglucosaminylgalactosylglucosyl-ceramide beta-1,3-acetylglucosaminyltransferase activity
## 2080 carnitine O-octanoyltransferase activity
## 2081 chondroitin 6-sulfotransferase activity
## 2082 dTDP-glucose 4,6-dehydratase activity
## 2083 glycerate dehydrogenase activity
## 2084 glycogenin glucosyltransferase activity
## 2085 [heparan sulfate]-glucosamine 3-sulfotransferase 1 activity
## 2086 histone-arginine N-methyltransferase activity
## 2087 isovaleryl-CoA dehydrogenase activity
## 2088 palmitoyl-(protein) hydrolase activity
## 2089 procollagen-lysine 5-dioxygenase activity
## 2090 protein-tyrosine sulfotransferase activity
## 2091 pyridoxal kinase activity
## 2092 queuine tRNA-ribosyltransferase activity
## 2093 sarcosine dehydrogenase activity
## 2094 sphinganine kinase activity
## 2095 sulfite oxidase activity
## 2096 transaminase activity
## 2097 sulfuric ester hydrolase activity
## 2098 diphosphoinositol-polyphosphate diphosphatase activity
## 2099 gamma-glutamyl carboxylase activity
## 2100 UDP-galactose:glucosylceramide beta-1,4-galactosyltransferase activity
## 2101 tetracycline transporter activity
## 2102 translation activator activity
## 2103 protoheme IX farnesyltransferase activity
## 2104 mannan endo-1,6-alpha-mannosidase activity
## 2105 UDP-galactose:beta-N-acetylglucosamine beta-1,3-galactosyltransferase activity
## 2106 melatonin receptor activity
## 2107 benzodiazepine receptor activity
## 2108 monoamine transmembrane transporter activity
## 2109 sucrose:proton symporter activity
## 2110 sodium:iodide symporter activity
## 2111 bile acid:sodium symporter activity
## 2112 sodium:bicarbonate symporter activity
## 2113 sodium:potassium:chloride symporter activity
## 2114 secondary active organic cation transmembrane transporter activity
## 2115 folic acid transporter activity
## 2116 reduced folate carrier activity
## 2117 ammonium transmembrane transporter activity
## 2118 L-ascorbate:sodium symporter activity
## 2119 acetyl-CoA transporter activity
## 2120 sodium-dependent multivitamin transmembrane transporter activity
## 2121 phosphatidylcholine transporter activity
## 2122 phosphatidylinositol transporter activity
## 2123 taste receptor activity
## 2124 riboflavin kinase activity
## 2125 N-acetyllactosaminide beta-1,3-N-acetylglucosaminyltransferase activity
## 2126 oxidized purine nucleobase lesion DNA N-glycosylase activity
## 2127 JUN kinase kinase activity
## 2128 hydrogen-exporting ATPase activity, phosphorylative mechanism
## 2129 sodium-exporting ATPase activity, phosphorylative mechanism
## 2130 chloride-transporting ATPase activity
## 2131 xenobiotic-transporting ATPase activity
## 2132 microtubule-severing ATPase activity
## 2133 ATP-dependent microtubule motor activity, plus-end-directed
## 2134 JUN kinase phosphatase activity
## 2135 calcium-dependent protein serine/threonine phosphatase regulator activity
## 2136 cAMP-dependent protein kinase regulator activity
## 2137 phosphorylase kinase regulator activity
## 2138 alkylglycerone-phosphate synthase activity
## 2139 small protein activating enzyme activity
## 2140 rRNA (uridine-2'-O-)-methyltransferase activity
## 2141 cysteine-type endopeptidase activator activity involved in apoptotic process
## 2142 2,4-dienoyl-CoA reductase (NADPH) activity
## 2143 3-demethylubiquinone-9 3-O-methyltransferase activity
## 2144 4-hydroxy-2-oxoglutarate aldolase activity
## 2145 cholate 7-alpha-dehydrogenase activity
## 2146 D-serine ammonia-lyase activity
## 2147 DNA-3-methyladenine glycosylase activity
## 2148 L-allo-threonine aldolase activity
## 2149 N-acetylmuramoyl-L-alanine amidase activity
## 2150 NAD(P)+ transhydrogenase activity
## 2151 N-acetylneuraminate lyase activity
## 2152 NAD(P)+ transhydrogenase (AB-specific) activity
## 2153 NADPH dehydrogenase (quinone) activity
## 2154 UDP-N-acetylglucosamine 2-epimerase activity
## 2155 UDP-sugar diphosphatase activity
## 2156 acetate CoA-transferase activity
## 2157 N-acylneuraminate cytidylyltransferase activity
## 2158 agmatinase activity
## 2159 alkyl hydroperoxide reductase activity
## 2160 arginine decarboxylase activity
## 2161 arsenate reductase (glutaredoxin) activity
## 2162 beta-aspartyl-peptidase activity
## 2163 betaine-aldehyde dehydrogenase activity
## 2164 bis(5'-nucleosyl)-tetraphosphatase (symmetrical) activity
## 2165 cardiolipin synthase activity
## 2166 chloramphenicol O-acetyltransferase activity
## 2167 choline dehydrogenase activity
## 2168 cob(I)yrinic acid a,c-diamide adenosyltransferase activity
## 2169 crossover junction endodeoxyribonuclease activity
## 2170 cupric reductase activity
## 2171 dCTP deaminase activity
## 2172 dGTPase activity
## 2173 exodeoxyribonuclease I activity
## 2174 exodeoxyribonuclease III activity
## 2175 exoribonuclease II activity
## 2176 fructokinase activity
## 2177 glycerate kinase activity
## 2178 glycerophosphodiester phosphodiesterase activity
## 2179 glycine C-acetyltransferase activity
## 2180 glycolate oxidase activity
## 2181 guanine deaminase activity
## 2182 guanosine-3',5'-bis(diphosphate) 3'-diphosphatase activity
## 2183 guanosine-5'-triphosphate,3'-diphosphate diphosphatase activity
## 2184 holo-[acyl-carrier-protein] synthase activity
## 2185 hydrogen:potassium-exchanging ATPase activity
## 2186 hydroxypyruvate isomerase activity
## 2187 inositol monophosphate 1-phosphatase activity
## 2188 nitrate reductase activity
## 2189 nitric oxide dioxygenase activity
## 2190 oxaloacetate decarboxylase activity
## 2191 peptidoglycan glycosyltransferase activity
## 2192 phosphatidylglycerophosphatase activity
## 2193 phospho-N-acetylmuramoyl-pentapeptide-transferase activity
## 2194 phosphoglycolate phosphatase activity
## 2195 phosphatidylcholine 1-acylhydrolase activity
## 2196 phosphopentomutase activity
## 2197 rRNA (adenine-N6-)-methyltransferase activity
## 2198 ribonuclease E activity
## 2199 selenocysteine lyase activity
## 2200 site-specific DNA-methyltransferase (adenine-specific) activity
## 2201 DNA-methyltransferase activity
## 2202 succinate-semialdehyde dehydrogenase [NAD(P)+] activity
## 2203 tRNA (guanine-N1-)-methyltransferase activity
## 2204 tRNA (guanosine-2'-O-)-methyltransferase activity
## 2205 thymidine phosphorylase activity
## 2206 biotin binding
## 2207 four-way junction helicase activity
## 2208 N-acylmannosamine kinase activity
## 2209 signal transducer, downstream of receptor, with serine/threonine phosphatase activity
## 2210 low-affinity phosphate transmembrane transporter activity
## 2211 blue light photoreceptor activity
## 2212 sterol 5-alpha reductase activity
## 2213 sterol delta7 reductase activity
## 2214 fatty acid elongase activity
## 2215 calcium-dependent protein serine/threonine kinase activity
## 2216 FMN binding
## 2217 acireductone dioxygenase [iron(II)-requiring] activity
## 2218 phosphatidylinositol-5-phosphate binding
## 2219 lithium:proton antiporter activity
## 2220 double-stranded methylated DNA binding
## 2221 methyl-CpNpG binding
## 2222 nerve growth factor receptor activity
## 2223 H3 histone acetyltransferase activity
## 2224 H4 histone acetyltransferase activity
## 2225 telomerase inhibitor activity
## 2226 acetyltransferase activator activity
## 2227 serum response element binding
## 2228 cyclase regulator activity
## 2229 adenylate cyclase inhibitor activity
## 2230 calcium-dependent protein kinase regulator activity
## 2231 calcium-dependent cysteine-type endopeptidase inhibitor activity
## 2232 [heparan sulfate]-glucosamine N-sulfotransferase activity
## 2233 galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase activity
## 2234 heparan-alpha-glucosaminide N-acetyltransferase activity
## 2235 glucuronosyltransferase activity
## 2236 peptide disulfide oxidoreductase activity
## 2237 glutathione disulfide oxidoreductase activity
## 2238 NADPH-adrenodoxin reductase activity
## 2239 beta3-adrenergic receptor activity
## 2240 gastrin receptor activity
## 2241 secretin receptor activity
## 2242 corticotrophin-releasing factor receptor activity
## 2243 thrombin-activated receptor activity
## 2244 uridine nucleotide receptor activity
## 2245 glycine amidinotransferase activity
## 2246 cadmium ion transmembrane transporter activity
## 2247 cobalt ion transmembrane transporter activity
## 2248 copper uptake transmembrane transporter activity
## 2249 ferric iron transmembrane transporter activity
## 2250 ferrous iron transmembrane transporter activity
## 2251 lead ion transmembrane transporter activity
## 2252 magnesium ion transmembrane transporter activity
## 2253 molybdate ion transmembrane transporter activity
## 2254 organic cation transmembrane transporter activity
## 2255 arsenite transmembrane transporter activity
## 2256 bicarbonate transmembrane transporter activity
## 2257 iodide transmembrane transporter activity
## 2258 nitrate transmembrane transporter activity
## 2259 phosphate ion transmembrane transporter activity
## 2260 sulfate transmembrane transporter activity
## 2261 thiosulfate transmembrane transporter activity
## 2262 bile acid transmembrane transporter activity
## 2263 canalicular bile acid transmembrane transporter activity
## 2264 bilirubin transmembrane transporter activity
## 2265 oxaloacetate transmembrane transporter activity
## 2266 prostaglandin transmembrane transporter activity
## 2267 citrate transmembrane transporter activity
## 2268 alpha-ketoglutarate transmembrane transporter activity
## 2269 malate transmembrane transporter activity
## 2270 succinate transmembrane transporter activity
## 2271 urate transmembrane transporter activity
## 2272 pyrimidine nucleotide-sugar transmembrane transporter activity
## 2273 aromatic amino acid transmembrane transporter activity
## 2274 L-alanine transmembrane transporter activity
## 2275 L-asparagine transmembrane transporter activity
## 2276 L-aspartate transmembrane transporter activity
## 2277 L-cystine transmembrane transporter activity
## 2278 gamma-aminobutyric acid transmembrane transporter activity
## 2279 L-glutamine transmembrane transporter activity
## 2280 L-leucine transmembrane transporter activity
## 2281 L-methionine transmembrane transporter activity
## 2282 L-proline transmembrane transporter activity
## 2283 L-serine transmembrane transporter activity
## 2284 L-threonine transmembrane transporter activity
## 2285 L-tryptophan transmembrane transporter activity
## 2286 peptide transporter activity
## 2287 oligopeptide transporter activity
## 2288 nucleobase transmembrane transporter activity
## 2289 adenine transmembrane transporter activity
## 2290 purine nucleoside transmembrane transporter activity
## 2291 nucleotide transmembrane transporter activity
## 2292 purine nucleotide transmembrane transporter activity
## 2293 ADP transmembrane transporter activity
## 2294 pyrimidine nucleotide transmembrane transporter activity
## 2295 choline transmembrane transporter activity
## 2296 serotonin transmembrane transporter activity
## 2297 carnitine transmembrane transporter activity
## 2298 acyl carnitine transmembrane transporter activity
## 2299 coenzyme A transmembrane transporter activity
## 2300 FAD transmembrane transporter activity
## 2301 heme transporter activity
## 2302 thiamine transmembrane transporter activity
## 2303 cobalamin transporter activity
## 2304 drug transmembrane transporter activity
## 2305 fatty acid transporter activity
## 2306 aminophospholipid transporter activity
## 2307 hydrogen ion channel activity
## 2308 calcium-activated potassium channel activity
## 2309 outward rectifier potassium channel activity
## 2310 ATP-activated inward rectifier potassium channel activity
## 2311 stretch-activated, cation-selective, calcium channel activity
## 2312 kainate selective glutamate receptor activity
## 2313 store-operated calcium channel activity
## 2314 ligand-gated sodium channel activity
## 2315 porin activity
## 2316 uniporter activity
## 2317 solute:proton symporter activity
## 2318 anion:anion antiporter activity
## 2319 drug:proton antiporter activity
## 2320 sodium:inorganic phosphate symporter activity
## 2321 phosphate ion carrier activity
## 2322 sodium-dependent phosphate transmembrane transporter activity
## 2323 cystine:glutamate antiporter activity
## 2324 peptide:proton symporter activity
## 2325 sodium-independent organic anion transmembrane transporter activity
## 2326 thyroid hormone transmembrane transporter activity
## 2327 methotrexate transporter activity
## 2328 low-affinity sodium:dicarboxylate symporter activity
## 2329 high-affinity sodium:dicarboxylate symporter activity
## 2330 oxoglutarate:malate antiporter activity
## 2331 calcium:cation antiporter activity
## 2332 calcium:proton antiporter activity
## 2333 cation:chloride symporter activity
## 2334 sodium:chloride symporter activity
## 2335 potassium:chloride symporter activity
## 2336 sodium:sulfate symporter activity
## 2337 pyrimidine- and adenine-specific:sodium symporter activity
## 2338 purine-specific nucleoside:sodium symporter activity
## 2339 thiamine uptake transmembrane transporter activity
## 2340 manganese-transporting ATPase activity
## 2341 cobalamin-transporting ATPase activity
## 2342 oligopeptide-transporting ATPase activity
## 2343 glutathione S-conjugate-exporting ATPase activity
## 2344 bile acid-exporting ATPase activity
## 2345 peptide antigen-transporting ATPase activity
## 2346 heme-transporting ATPase activity
## 2347 peptide-transporting ATPase activity
## 2348 acetylcholine receptor activity
## 2349 G-protein activated inward rectifier potassium channel activity
## 2350 cholesterol binding
## 2351 putrescine transmembrane transporter activity
## 2352 gamma-aminobutyric acid:proton symporter activity
## 2353 glutamate:sodium symporter activity
## 2354 sialic acid:proton symporter activity
## 2355 C4-dicarboxylate transmembrane transporter activity
## 2356 efflux transmembrane transporter activity
## 2357 uptake transmembrane transporter activity
## 2358 mannose transmembrane transporter activity
## 2359 organophosphate ester transmembrane transporter activity
## 2360 DNA translocase activity
## 2361 zinc-transporting ATPase activity
## 2362 short-chain fatty acid uptake transporter activity
## 2363 ferrous iron uptake transmembrane transporter activity
## 2364 toxic substance binding
## 2365 fatty acid ligase activity
## 2366 quaternary ammonium group transmembrane transporter activity
## 2367 formate uptake transmembrane transporter activity
## 2368 formate efflux transmembrane transporter activity
## 2369 galactosidase activity
## 2370 glucosidase activity
## 2371 hexosaminidase activity
## 2372 nucleobase-containing compound transmembrane transporter activity
## 2373 phospholipase A2 activator activity
## 2374 morphogen activity
## 2375 peptidoglycan receptor activity
## 2376 maleylacetoacetate isomerase activity
## 2377 translation release factor activity, codon nonspecific
## 2378 nickel cation binding
## 2379 urocanate hydratase activity
## 2380 pyrimidine-nucleoside phosphorylase activity
## 2381 formyltetrahydrofolate dehydrogenase activity
## 2382 amylase activity
## 2383 linoleate 13S-lipoxygenase activity
## 2384 glial cell-derived neurotrophic factor receptor activity
## 2385 NAD(P)H oxidase activity
## 2386 superoxide-generating NADPH oxidase activity
## 2387 superoxide-generating NADPH oxidase activator activity
## 2388 catechol O-methyltransferase activity
## 2389 AMP binding
## 2390 kynurenine-oxoglutarate transaminase activity
## 2391 linoleoyl-CoA desaturase activity
## 2392 steroid dehydrogenase activity
## 2393 sphingomyelin phosphodiesterase activator activity
## 2394 beta-N-acetylglucosaminidase activity
## 2395 HNK-1 sulfotransferase activity
## 2396 N-sulfoglucosamine sulfohydrolase activity
## 2397 protein N-acetylglucosaminyltransferase activity
## 2398 glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase activity
## 2399 protein-arginine N-methyltransferase activity
## 2400 [myelin basic protein]-arginine N-methyltransferase activity
## 2401 small conductance calcium-activated potassium channel activity
## 2402 glycerone-phosphate O-acyltransferase activity
## 2403 myristoyl-[acyl-carrier-protein] hydrolase activity
## 2404 palmitoyl-[acyl-carrier-protein] hydrolase activity
## 2405 tRNA (uracil) methyltransferase activity
## 2406 1-phosphatidylinositol-4-phosphate 5-kinase activity
## 2407 1-phosphatidylinositol-5-phosphate 4-kinase activity
## 2408 inositol bisphosphate phosphatase activity
## 2409 phosphatidylinositol-3,4,5-trisphosphate 3-phosphatase activity
## 2410 phosphatidylinositol-3,4-bisphosphate 4-phosphatase activity
## 2411 activin receptor activity, type I
## 2412 activin receptor activity, type II
## 2413 palmitoyl-CoA oxidase activity
## 2414 pristanoyl-CoA oxidase activity
## 2415 dimethylargininase activity
## 2416 15-hydroxyprostaglandin dehydrogenase (NAD+) activity
## 2417 CoA-ligase activity
## 2418 carnitine O-acyltransferase activity
## 2419 C-acyltransferase activity
## 2420 palmitoyltransferase activity
## 2421 serine O-acyltransferase activity
## 2422 O-acetyltransferase activity
## 2423 O-palmitoyltransferase activity
## 2424 S-acyltransferase activity
## 2425 S-acetyltransferase activity
## 2426 CoA carboxylase activity
## 2427 mRNA (2'-O-methyladenosine-N6-)-methyltransferase activity
## 2428 tRNA (adenine) methyltransferase activity
## 2429 tRNA (cytosine) methyltransferase activity
## 2430 tRNA (cytosine-5-)-methyltransferase activity
## 2431 tRNA (adenine-N1-)-methyltransferase activity
## 2432 tRNA (adenine-N6-)-methyltransferase activity
## 2433 C-acetyltransferase activity
## 2434 G-protein coupled neurotensin receptor activity
## 2435 C-C chemokine receptor activity
## 2436 C-X-C chemokine receptor activity
## 2437 C-X3-C chemokine receptor activity
## 2438 substance P receptor activity
## 2439 substance K receptor activity
## 2440 orexin receptor activity
## 2441 protein-hormone receptor activity
## 2442 prostacyclin receptor activity
## 2443 pheromone receptor activity
## 2444 peptidase activator activity involved in apoptotic process
## 2445 long-chain-enoyl-CoA hydratase activity
## 2446 long-chain-3-hydroxyacyl-CoA dehydrogenase activity
## 2447 interleukin-12 receptor activity
## 2448 gastric inhibitory peptide receptor activity
## 2449 growth hormone-releasing hormone receptor activity
## 2450 pituitary adenylate cyclase activating polypeptide activity
## 2451 latrotoxin receptor activity
## 2452 cyclin-dependent protein kinase 5 activator activity
## 2453 glycine binding
## 2454 thienylcyclohexylpiperidine binding
## 2455 glutaminyl-peptide cyclotransferase activity
## 2456 growth hormone-releasing hormone activity
## 2457 malate dehydrogenase activity
## 2458 hydroxypyruvate reductase activity
## 2459 oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor
## 2460 oxidoreductase activity, acting on the aldehyde or oxo group of donors, oxygen as acceptor
## 2461 oxidoreductase activity, acting on the aldehyde or oxo group of donors, disulfide as acceptor
## 2462 oxidoreductase activity, acting on the CH-CH group of donors, quinone or related compound as acceptor
## 2463 oxidoreductase activity, acting on the CH-NH2 group of donors
## 2464 oxidoreductase activity, acting on the CH-NH2 group of donors, NAD or NADP as acceptor
## 2465 oxidoreductase activity, acting on the CH-NH2 group of donors, oxygen as acceptor
## 2466 oxidoreductase activity, acting on the CH-NH group of donors, oxygen as acceptor
## 2467 oxidoreductase activity, acting on NAD(P)H, heme protein as acceptor
## 2468 oxidoreductase activity, acting on other nitrogenous compounds as donors
## 2469 oxidoreductase activity, acting on a sulfur group of donors, NAD(P) as acceptor
## 2470 oxidoreductase activity, acting on a sulfur group of donors, quinone or similar compound as acceptor
## 2471 oxidoreductase activity, acting on a heme group of donors
## 2472 oxidoreductase activity, acting on single donors with incorporation of molecular oxygen
## 2473 oxidoreductase activity, acting on single donors with incorporation of molecular oxygen, incorporation of two atoms of oxygen
## 2474 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, NAD(P)H as one donor, and incorporation of one atom of oxygen
## 2475 flavonoid 3'-monooxygenase activity
## 2476 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen
## 2477 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced iron-sulfur protein as one donor, and incorporation of one atom of oxygen
## 2478 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced pteridine as one donor, and incorporation of one atom of oxygen
## 2479 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen
## 2480 oxidoreductase activity, acting on paired donors, with oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water
## 2481 oxidoreductase activity, acting on CH or CH2 groups
## 2482 hydroxymethyl-, formyl- and related transferase activity
## 2483 carboxyl- or carbamoyltransferase activity
## 2484 transferase activity, transferring aldehyde or ketonic groups
## 2485 succinyltransferase activity
## 2486 transferase activity, transferring amino-acyl groups
## 2487 spermine synthase activity
## 2488 transferase activity, transferring nitrogenous groups
## 2489 phosphotransferase activity, carboxyl group as acceptor
## 2490 phosphotransferase activity, nitrogenous group as acceptor
## 2491 diphosphotransferase activity
## 2492 phosphotransferase activity, for other substituted phosphate groups
## 2493 transferase activity, transferring sulfur-containing groups
## 2494 sulfurtransferase activity
## 2495 3-mercaptopyruvate sulfurtransferase activity
## 2496 dipeptidase activity
## 2497 cysteine-type carboxypeptidase activity
## 2498 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in cyclic amides
## 2499 hydrolase activity, acting on acid carbon-carbon bonds, in ketonic substances
## 2500 aldehyde-lyase activity
## 2501 oxo-acid-lyase activity
## 2502 carbon-oxygen lyase activity, acting on phosphates
## 2503 carbon-nitrogen lyase activity
## 2504 ammonia-lyase activity
## 2505 amidine-lyase activity
## 2506 strictosidine synthase activity
## 2507 racemase and epimerase activity, acting on carbohydrates and derivatives
## 2508 intramolecular oxidoreductase activity, interconverting aldoses and ketoses
## 2509 intramolecular oxidoreductase activity, transposing C=C bonds
## 2510 intramolecular transferase activity, phosphotransferases
## 2511 ligase activity, forming carbon-sulfur bonds
## 2512 acid-thiol ligase activity
## 2513 acid-amino acid ligase activity
## 2514 cyclo-ligase activity
## 2515 carbon-nitrogen ligase activity, with glutamine as amido-N-donor
## 2516 ligase activity, forming carbon-carbon bonds
## 2517 endodeoxyribonuclease activity, producing 5'-phosphomonoesters
## 2518 endodeoxyribonuclease activity, producing 3'-phosphomonoesters
## 2519 site-specific endodeoxyribonuclease activity, specific for altered base
## 2520 endoribonuclease activity, producing 3'-phosphomonoesters
## 2521 endonuclease activity, active with either ribo- or deoxyribonucleic acids and producing 3'-phosphomonoesters
## 2522 oxidoreductase activity, acting on the CH-OH group of donors, oxygen as acceptor
## 2523 oxidoreductase activity, acting on the aldehyde or oxo group of donors
## 2524 G-protein coupled acetylcholine receptor activity
## 2525 follicle-stimulating hormone activity
## 2526 GABA receptor activity
## 2527 retinal binding
## 2528 pyroglutamyl-peptidase activity
## 2529 SUMO-specific protease activity
## 2530 extracellular-glycine-gated chloride channel activity
## 2531 galactoside binding
## 2532 natriuretic peptide receptor activity
## 2533 alpha-2 macroglobulin receptor activity
## 2534 lipoate-protein ligase activity
## 2535 arginine deiminase activity
## 2536 lipoate synthase activity
## 2537 activin-activated receptor activity
## 2538 3'-tyrosyl-DNA phosphodiesterase activity
## 2539 myosin phosphatase activity
## 2540 myosin phosphatase regulator activity
## 2541 myosin binding
## 2542 myosin I binding
## 2543 Rap guanyl-nucleotide exchange factor activity
## 2544 ceramidase activity
## 2545 glycosylceramidase activity
## 2546 corticotropin-releasing hormone activity
## 2547 peptide hormone binding
## 2548 GTP-Rho binding
## 2549 D-erythro-sphingosine kinase activity
## 2550 6-phosphogluconolactonase activity
## 2551 3-galactosyl-N-acetylglucosaminide 4-alpha-L-fucosyltransferase activity
## 2552 S-methyl-5-thioadenosine phosphorylase activity
## 2553 single-strand selective uracil DNA N-glycosylase activity
## 2554 U6 snRNA binding
## 2555 syntaxin-1 binding
## 2556 oxidative phosphorylation uncoupler activity
## 2557 sodium channel regulator activity
## 2558 chloride channel regulator activity
## 2559 mineralocorticoid receptor activity
## 2560 delta1-pyrroline-5-carboxylate synthetase activity
## 2561 glycolipid transporter activity
## 2562 AU-rich element binding
## 2563 heparan sulfate 6-O-sulfotransferase activity
## 2564 acetylserotonin O-methyltransferase activity
## 2565 sulfonylurea receptor binding
## 2566 very-long-chain-acyl-CoA dehydrogenase activity
## 2567 5'-flap endonuclease activity
## 2568 nucleoside-diphosphatase activity
## 2569 dihydropyrimidine dehydrogenase (NADP+) activity
## 2570 deoxycytidyl transferase activity
## 2571 cholesterol transporter activity
## 2572 phospholipid scramblase activity
## 2573 triglyceride binding
## 2574 fibroblast growth factor binding
## 2575 NAD-dependent histone deacetylase activity
## 2576 Wnt-protein binding
## 2577 tRNA dihydrouridine synthase activity
## 2578 DEAD/H-box RNA helicase binding
## 2579 sodium:dicarboxylate symporter activity
## 2580 pantetheine hydrolase activity
## 2581 inositol-1,3,4-trisphosphate 4-phosphatase activity
## 2582 aryl hydrocarbon receptor binding
## 2583 vinculin binding
## 2584 5-oxoprolinase (ATP-hydrolyzing) activity
## 2585 CDP-alcohol phosphatidyltransferase activity
## 2586 cysteine dioxygenase activity
## 2587 glycine N-methyltransferase activity
## 2588 phosphatidylinositol N-acetylglucosaminyltransferase activity
## 2589 diphthine-ammonia ligase activity
## 2590 aspartate N-acetyltransferase activity
## 2591 calmodulin-lysine N-methyltransferase activity
## 2592 threonine racemase activity
## 2593 ribosomal S6-glutamic acid ligase activity
## 2594 protein C-terminal leucine carboxyl O-methyltransferase activity
## 2595 alcohol dehydrogenase [NAD(P)+] activity
## 2596 formaldehyde dehydrogenase activity
## 2597 malonate-semialdehyde dehydrogenase (acetylating) activity
## 2598 benzaldehyde dehydrogenase (NAD+) activity
## 2599 fluorene oxygenase activity
## 2600 phenanthrene 9,10-monooxygenase activity
## 2601 alkane 1-monooxygenase activity
## 2602 3,4-dihydrocoumarin hydrolase activity
## 2603 S-formylglutathione hydrolase activity
## 2604 acetylpyruvate hydrolase activity
## 2605 3-hydroxyacyl-CoA dehydratase activity
## 2606 GMP binding
## 2607 pyrimidine nucleotide binding
## 2608 benzaldehyde dehydrogenase activity
## 2609 deoxyhypusine monooxygenase activity
## 2610 deoxynucleoside kinase activity
## 2611 ADP-sugar diphosphatase activity
## 2612 aminobutyraldehyde dehydrogenase activity
## 2613 protein-disulfide reductase (glutathione) activity
## 2614 mannokinase activity
## 2615 trans-2-enoyl-CoA reductase (NADPH) activity
## 2616 deacetylase activity
## 2617 cyclohydrolase activity
## 2618 oxalate transmembrane transporter activity
## 2619 toxin transporter activity
## 2620 protein-cysteine S-palmitoyltransferase activity
## 2621 immunoglobulin receptor activity
## 2622 IgE receptor activity
## 2623 IgG receptor activity
## 2624 low-affinity IgG receptor activity
## 2625 Atg8 ligase activity
## 2626 Atg12 transferase activity
## 2627 Atg12 activating enzyme activity
## 2628 Atg8 activating enzyme activity
## 2629 FAT10 activating enzyme activity
## 2630 NEDD8 activating enzyme activity
## 2631 ISG15 activating enzyme activity
## 2632 NEDD8-specific protease activity
## 2633 ISG15-specific protease activity
## 2634 NEDD8 transferase activity
## 2635 SUMO transferase activity
## 2636 tubulin N-acetyltransferase activity
## 2637 aspartoacylase activity
## 2638 polyamine binding
## 2639 spermidine binding
## 2640 putrescine binding
## 2641 cocaine binding
## 2642 oxygen binding
## 2643 oxygen sensor activity
## 2644 aspartic-type endopeptidase inhibitor activity
## 2645 phospholipase A2 inhibitor activity
## 2646 isoprenoid binding
## 2647 retinol binding
## 2648 IgA binding
## 2649 IgE binding
## 2650 chloride channel inhibitor activity
## 2651 sodium channel inhibitor activity
## 2652 structural constituent of myelin sheath
## 2653 cyclin-dependent protein kinase activating kinase activity
## 2654 SUMO activating enzyme activity
## 2655 chemokine binding
## 2656 C-C chemokine binding
## 2657 C-X-C chemokine binding
## 2658 interleukin-8 binding
## 2659 C-X3-C chemokine binding
## 2660 type I interferon binding
## 2661 interleukin-1 binding
## 2662 interleukin-10 binding
## 2663 interleukin-11 binding
## 2664 interleukin-12 binding
## 2665 interleukin-2 binding
## 2666 interleukin-6 binding
## 2667 interleukin-9 binding
## 2668 diacylglycerol binding
## 2669 potassium ion symporter activity
## 2670 transmitter-gated ion channel activity
## 2671 acetylcholine-gated cation-selective channel activity
## 2672 glutamate-gated calcium ion channel activity
## 2673 serotonin-gated cation channel activity
## 2674 GABA-gated chloride ion channel activity
## 2675 glycine-gated chloride ion channel activity
## 2676 MHC protein complex binding
## 2677 MHC class I protein complex binding
## 2678 MHC class II protein complex binding
## 2679 MHC class Ib protein binding
## 2680 MHC class Ib protein binding, via antigen binding groove
## 2681 extracellular matrix structural constituent conferring tensile strength
## 2682 extracellular matrix constituent conferring elasticity
## 2683 L-malate dehydrogenase activity
## 2684 HLA-A specific activating MHC class I receptor activity
## 2685 HLA-B specific inhibitory MHC class I receptor activity
## 2686 alpha-1,6-mannosylglycoprotein 6-beta-N-acetylglucosaminyltransferase activity
## 2687 molybdenum ion binding
## 2688 benzodiazepine receptor binding
## 2689 protein xylosyltransferase activity
## 2690 receptor signaling complex scaffold activity
## 2691 GKAP/Homer scaffold activity
## 2692 low-density lipoprotein particle binding
## 2693 voltage-gated proton channel activity
## 2694 troponin C binding
## 2695 nitric oxide transmembrane transporter activity
## 2696 extracellular matrix constituent, lubricant activity
## 2697 semaphorin receptor binding
## 2698 apolipoprotein receptor activity
## 2699 lipoprotein particle receptor activity
## 2700 very-low-density lipoprotein particle receptor activity
## 2701 deoxynucleotide transmembrane transporter activity
## 2702 nitric-oxide synthase regulator activity
## 2703 polysaccharide binding
## 2704 guanylate cyclase regulator activity
## 2705 guanylate cyclase activator activity
## 2706 guanylate cyclase inhibitor activity
## 2707 glyoxylate reductase (NADP) activity
## 2708 5-formyltetrahydrofolate cyclo-ligase activity
## 2709 melanin-concentrating hormone receptor activity
## 2710 LIM domain binding
## 2711 LRR domain binding
## 2712 clathrin binding
## 2713 structural constituent of epidermis
## 2714 testosterone dehydrogenase [NAD(P)] activity
## 2715 estrogen receptor activity
## 2716 sphingolipid activator protein activity
## 2717 protein tyrosine kinase inhibitor activity
## 2718 receptor signaling protein tyrosine kinase inhibitor activity
## 2719 protein tyrosine kinase activator activity
## 2720 transmembrane receptor protein tyrosine kinase activator activity
## 2721 receptor signaling protein tyrosine kinase activator activity
## 2722 heparanase activity
## 2723 ADP-ribosylation factor binding
## 2724 cyclin binding
## 2725 DNA polymerase processivity factor activity
## 2726 1-alpha,25-dihydroxyvitamin D3 24-hydroxylase activity
## 2727 vitamin D3 25-hydroxylase activity
## 2728 structural constituent of tooth enamel
## 2729 syntaxin-3 binding
## 2730 iron-responsive element binding
## 2731 inositol-1,3,4,5,6-pentakisphosphate 3-phosphatase activity
## 2732 melanin-concentrating hormone activity
## 2733 molybdopterin synthase activity
## 2734 interleukin-17 receptor activity
## 2735 ICAM-3 receptor activity
## 2736 translation repressor activity
## 2737 thyroid hormone receptor coactivator activity
## 2738 urokinase plasminogen activator receptor activity
## 2739 serine racemase activity
## 2740 neurotensin receptor activity, non-G-protein coupled
## 2741 interleukin-17E receptor binding
## 2742 fructosamine-3-kinase activity
## 2743 lactose binding
## 2744 glutamate formimidoyltransferase activity
## 2745 formimidoyltetrahydrofolate cyclodeaminase activity
## 2746 kynureninase activity
## 2747 hemoglobin binding
## 2748 inorganic diphosphate transmembrane transporter activity
## 2749 receptor regulator activity
## 2750 receptor activator activity
## 2751 receptor inhibitor activity
## 2752 acetylcholine receptor regulator activity
## 2753 acetylcholine receptor activator activity
## 2754 acetylcholine receptor inhibitor activity
## 2755 cyclic nucleotide binding
## 2756 cAMP binding
## 2757 cGMP binding
## 2758 [methionine synthase] reductase activity
## 2759 neurotransmitter receptor activity
## 2760 oxidoreductase activity, acting on phosphorus or arsenic in donors, disulfide as acceptor
## 2761 transforming growth factor beta receptor, common-partner cytoplasmic mediator activity
## 2762 transforming growth factor beta receptor, inhibitory cytoplasmic mediator activity
## 2763 transforming growth factor beta receptor, pathway-specific cytoplasmic mediator activity
## 2764 U1 snRNA binding
## 2765 U4 snRNA binding
## 2766 U4atac snRNA binding
## 2767 U5 snRNA binding
## 2768 U6atac snRNA binding
## 2769 U12 snRNA binding
## 2770 pre-mRNA 5'-splice site binding
## 2771 pre-mRNA 3'-splice site binding
## 2772 U6 snRNA 3'-end binding
## 2773 Rac guanyl-nucleotide exchange factor activity
## 2774 S-adenosylmethionine-dependent tRNA (m5U54) methyltransferase activity
## 2775 acetoacetate-CoA ligase activity
## 2776 guanidinoacetate N-methyltransferase activity
## 2777 carnosine N-methyltransferase activity
## 2778 amine N-methyltransferase activity
## 2779 pyridine N-methyltransferase activity
## 2780 arsenite methyltransferase activity
## 2781 methylarsonite methyltransferase activity
## 2782 beta-2-microglobulin binding
## 2783 endogenous lipid antigen binding
## 2784 exogenous lipid antigen binding
## 2785 actin-dependent ATPase activity
## 2786 calcium-dependent ATPase activity
## 2787 TPR domain binding
## 2788 endoplasmic reticulum signal peptide binding
## 2789 Tat protein binding
## 2790 thiamine binding
## 2791 thiamine pyrophosphate binding
## 2792 taurine binding
## 2793 mismatched DNA binding
## 2794 kininogen binding
## 2795 filamin binding
## 2796 troponin I binding
## 2797 troponin T binding
## 2798 cysteine desulfurase activity
## 2799 histone methyltransferase activity (H3-K79 specific)
## 2800 phosphopantetheine binding
## 2801 POZ domain binding
## 2802 phosphatidylcholine binding
## 2803 denatured protein binding
## 2804 translation initiation factor binding
## 2805 eukaryotic initiation factor 4G binding
## 2806 protein tag
## 2807 lithium ion binding
## 2808 chloride ion binding
## 2809 telethonin binding
## 2810 mitogen-activated protein kinase kinase binding
## 2811 myosin V binding
## 2812 nucleosomal histone binding
## 2813 thyrotropin-releasing hormone receptor binding
## 2814 peptidyl-proline 4-dioxygenase activity
## 2815 ubiquitin conjugating enzyme binding
## 2816 beta-endorphin binding
## 2817 opioid receptor binding
## 2818 G-protein beta-subunit binding
## 2819 G-protein gamma-subunit binding
## 2820 G-protein beta/gamma-subunit complex binding
## 2821 adenosine receptor binding
## 2822 A1 adenosine receptor binding
## 2823 A2A adenosine receptor binding
## 2824 adrenergic receptor binding
## 2825 alpha-1A adrenergic receptor binding
## 2826 alpha-1B adrenergic receptor binding
## 2827 alpha-2A adrenergic receptor binding
## 2828 alpha-2B adrenergic receptor binding
## 2829 alpha-2C adrenergic receptor binding
## 2830 beta-1 adrenergic receptor binding
## 2831 beta-2 adrenergic receptor binding
## 2832 beta-3 adrenergic receptor binding
## 2833 adrenomedullin receptor binding
## 2834 angiotensin receptor binding
## 2835 type 1 angiotensin receptor binding
## 2836 type 2 angiotensin receptor binding
## 2837 apelin receptor binding
## 2838 bombesin receptor binding
## 2839 endothelin A receptor binding
## 2840 endothelin B receptor binding
## 2841 neuromedin B receptor binding
## 2842 bradykinin receptor binding
## 2843 C5L2 anaphylatoxin chemotactic receptor binding
## 2844 calcitonin receptor binding
## 2845 haptoglobin binding
## 2846 hemoglobin alpha binding
## 2847 CXCR5 chemokine receptor binding
## 2848 CCR1 chemokine receptor binding
## 2849 CCR2 chemokine receptor binding
## 2850 CCR3 chemokine receptor binding
## 2851 CCR4 chemokine receptor binding
## 2852 CCR5 chemokine receptor binding
## 2853 CCR6 chemokine receptor binding
## 2854 CCR7 chemokine receptor binding
## 2855 CCR10 chemokine receptor binding
## 2856 CX3C chemokine receptor binding
## 2857 type B gastrin/cholecystokinin receptor binding
## 2858 D1 dopamine receptor binding
## 2859 D2 dopamine receptor binding
## 2860 D3 dopamine receptor binding
## 2861 D4 dopamine receptor binding
## 2862 D5 dopamine receptor binding
## 2863 Edg-2 lysophosphatidic acid receptor binding
## 2864 follicle-stimulating hormone receptor binding
## 2865 type 1 galanin receptor binding
## 2866 type 2 galanin receptor binding
## 2867 type 3 galanin receptor binding
## 2868 ghrelin receptor binding
## 2869 glucagon receptor binding
## 2870 growth hormone-releasing hormone receptor binding
## 2871 type 1 hypocretin receptor binding
## 2872 type 2 hypocretin receptor binding
## 2873 kisspeptin receptor binding
## 2874 lutropin-choriogonadotropic hormone receptor binding
## 2875 corticotropin hormone receptor binding
## 2876 type 3 melanocortin receptor binding
## 2877 type 4 melanocortin receptor binding
## 2878 type 5 melanocortin receptor binding
## 2879 type 1 metabotropic glutamate receptor binding
## 2880 type 5 metabotropic glutamate receptor binding
## 2881 P2Y1 nucleotide receptor binding
## 2882 G-protein coupled serotonin receptor binding
## 2883 type 2A serotonin receptor binding
## 2884 substance P receptor binding
## 2885 substance K receptor binding
## 2886 olfactory receptor binding
## 2887 kappa-type opioid receptor binding
## 2888 mu-type opioid receptor binding
## 2889 orexigenic neuropeptide QRFP receptor binding
## 2890 oxytocin receptor binding
## 2891 type 1 parathyroid hormone receptor binding
## 2892 pituitary adenylate cyclase-activating polypeptide receptor binding
## 2893 platelet activating factor receptor binding
## 2894 prolactin-releasing peptide receptor binding
## 2895 prostanoid receptor binding
## 2896 EP4 subtype prostaglandin E2 receptor binding
## 2897 thromboxane A2 receptor binding
## 2898 proteinase activated receptor binding
## 2899 somatostatin receptor binding
## 2900 taste receptor binding
## 2901 vasopressin receptor binding
## 2902 V1A vasopressin receptor binding
## 2903 V1B vasopressin receptor binding
## 2904 V2 vasopressin receptor binding
## 2905 very long-chain fatty acid-CoA ligase activity
## 2906 mineralocorticoid receptor binding
## 2907 insulin-like growth factor I binding
## 2908 insulin-like growth factor II binding
## 2909 interleukin-28 receptor binding
## 2910 myosin light chain binding
## 2911 myosin head/neck binding
## 2912 myosin tail binding
## 2913 myosin heavy chain binding
## 2914 myosin II heavy chain binding
## 2915 NAD-dependent histone deacetylase activity (H3-K14 specific)
## 2916 clathrin heavy chain binding
## 2917 clathrin light chain binding
## 2918 bile acid binding
## 2919 NACHT domain binding
## 2920 Pyrin domain binding
## 2921 SAM domain binding
## 2922 DNA insertion or deletion binding
## 2923 guanine/thymine mispair binding
## 2924 single base insertion or deletion binding
## 2925 dinucleotide insertion or deletion binding
## 2926 single guanine insertion binding
## 2927 single thymine insertion binding
## 2928 succinate-semialdehyde dehydrogenase binding
## 2929 dinucleotide repeat insertion binding
## 2930 SUMO binding
## 2931 SUMO polymer binding
## 2932 acrosin binding
## 2933 riboflavin transporter activity
## 2934 oxidized DNA binding
## 2935 oxidized purine DNA binding
## 2936 oxidized pyrimidine DNA binding
## 2937 MHC class I receptor activity
## 2938 MHC class Ib receptor activity
## 2939 MHC class II receptor activity
## 2940 inhibitory MHC class I receptor activity
## 2941 HECT domain binding
## 2942 MutLalpha complex binding
## 2943 purine-rich negative regulatory element binding
## 2944 beta-N-acetylgalactosaminidase activity
## 2945 2-alkenal reductase [NAD(P)] activity
## 2946 DNA hairpin binding
## 2947 maltose alpha-glucosidase activity
## 2948 histone demethylase activity (H3-K9 specific)
## 2949 muramyl dipeptide binding
## 2950 sulfiredoxin activity
## 2951 deoxyribonucleotide binding
## 2952 purine deoxyribonucleotide binding
## 2953 pyrimidine deoxyribonucleotide binding
## 2954 pyrimidine ribonucleotide binding
## 2955 dATP binding
## 2956 dGTP binding
## 2957 ATP-dependent 5'-3' RNA helicase activity
## 2958 copper-dependent protein binding
## 2959 GTPase activating protein binding
## 2960 heterotrimeric G-protein binding
## 2961 sterol response element binding
## 2962 tumor necrosis factor receptor superfamily binding
## 2963 calcitonin binding
## 2964 sterol binding
## 2965 bitter taste receptor activity
## 2966 sour taste receptor activity
## 2967 sweet taste receptor activity
## 2968 acetylcholine receptor binding
## 2969 progesterone receptor binding
## 2970 FFAT motif binding
## 2971 sphingomyelin synthase activity
## 2972 calmodulin-dependent protein phosphatase activity
## 2973 ribonuclease P RNA binding
## 2974 cysteine transmembrane transporter activity
## 2975 choline binding
## 2976 protein deacetylase activity
## 2977 folate reductase activity
## 2978 transferrin transmembrane transporter activity
## 2979 RNA strand annealing activity
## 2980 formyl-CoA transferase activity
## 2981 receptor serine/threonine kinase binding
## 2982 double-stranded DNA-dependent ATPase activity
## 2983 ATP-dependent 5'-3' DNA/RNA helicase activity
## 2984 sialic acid binding
## 2985 DNA 5'-adenosine monophosphate hydrolase activity
## 2986 aspartate dehydrogenase activity
## 2987 1-pyrroline dehydrogenase activity
## 2988 peptide-methionine (R)-S-oxide reductase activity
## 2989 L-methionine-(R)-S-oxide reductase activity
## 2990 histone demethylase activity (H3-R2 specific)
## 2991 histone demethylase activity (H4-R3 specific)
## 2992 indoleamine 2,3-dioxygenase activity
## 2993 steroid dehydrogenase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor
## 2994 7alpha-hydroxycholest-4-en-3-one 12alpha-hydroxylase activity
## 2995 taurochenodeoxycholate 6alpha-hydroxylase activity
## 2996 cholesterol 24-hydroxylase activity
## 2997 3alpha,7alpha,12alpha-trihydroxy-5beta-cholestanoyl-CoA 24-hydroxylase activity
## 2998 thyroxine 5-deiodinase activity
## 2999 propanoyl-CoA C-acyltransferase activity
## 3000 lipoyl(octanoyl) transferase activity
## 3001 procollagen glucosyltransferase activity
## 3002 O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase activity
## 3003 N-acetyl-beta-glucosaminyl-glycoprotein 4-beta-N-acetylgalactosaminyltransferase activity
## 3004 diphosphoinositol-pentakisphosphate kinase activity
## 3005 N-acetylgalactosamine kinase activity
## 3006 UMP kinase activity
## 3007 Fas-activated serine/threonine kinase activity
## 3008 [heparan sulfate]-glucosamine 3-sulfotransferase 2 activity
## 3009 [heparan sulfate]-glucosamine 3-sulfotransferase 3 activity
## 3010 hormone-sensitive lipase activity
## 3011 choloyl-CoA hydrolase activity
## 3012 pyridoxal phosphatase activity
## 3013 10-hydroxy-9-(phosphonooxy)octadecanoate phosphatase activity
## 3014 ribonuclease T2 activity
## 3015 hyaluronoglucuronidase activity
## 3016 glucan 1,3-alpha-glucosidase activity
## 3017 mannosyl-glycoprotein endo-beta-N-acetylglucosaminidase activity
## 3018 cis-stilbene-oxide hydrolase activity
## 3019 D-dopachrome decarboxylase activity
## 3020 3alpha,7alpha,12alpha-trihydroxy-5beta-cholest-24-enoyl-CoA hydratase activity
## 3021 FAD-AMP lyase (cyclizing) activity
## 3022 deoxyhypusine synthase activity
## 3023 8-oxo-7,8-dihydroguanine DNA N-glycosylase activity
## 3024 lipid-transporting ATPase activity
## 3025 sterol-transporting ATPase activity
## 3026 estrogen response element binding
## 3027 RNA strand-exchange activity
## 3028 DNA polymerase activity
## 3029 apolipoprotein binding
## 3030 apolipoprotein A-I binding
## 3031 apolipoprotein A-I receptor activity
## 3032 very-low-density lipoprotein particle binding
## 3033 GTP-dependent protein kinase activity
## 3034 GPI anchor binding
## 3035 RNA pyrophosphohydrolase activity
## 3036 4-aminobutyrate:2-oxoglutarate transaminase activity
## 3037 bisphosphoglycerate phosphatase activity
## 3038 bisphosphoglycerate 3-phosphatase activity
## 3039 bis(5'-adenosyl)-hexaphosphatase activity
## 3040 bis(5'-adenosyl)-pentaphosphatase activity
## 3041 glycoprotein transporter activity
## 3042 ubiquitin-ubiquitin ligase activity
## 3043 dynactin binding
## 3044 chondroitin sulfotransferase activity
## 3045 heparan sulfate sulfotransferase activity
## 3046 phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## 3047 box C/D snoRNA binding
## 3048 box H/ACA snoRNA binding
## 3049 fumarylpyruvate hydrolase activity
## 3050 piRNA binding
## 3051 L-hydroxyproline transmembrane transporter activity
## 3052 phosphatidylinositol trisphosphate phosphatase activity
## 3053 phosphatidylinositol phosphate 4-phosphatase activity
## 3054 phosphatidylinositol-4,5-bisphosphate 4-phosphatase activity
## 3055 oxoglutarate dehydrogenase (NAD+) activity
## 3056 pyruvate dehydrogenase (NAD+) activity
## 3057 tetrahydrobiopterin binding
## 3058 arginine binding
## 3059 retinol transporter activity
## 3060 glutathione transmembrane transporter activity
## 3061 histone demethylase activity (H3-monomethyl-K4 specific)
## 3062 inhibin binding
## 3063 type I transforming growth factor beta receptor binding
## 3064 type III transforming growth factor beta receptor binding
## 3065 gamma-glutamyl-peptidase activity
## 3066 cholesterol O-acyltransferase activity
## 3067 histone deacetylase activity (H4-K16 specific)
## 3068 caffeine oxidase activity
## 3069 trimethylamine monooxygenase activity
## 3070 NAD-dependent protein deacetylase activity
## 3071 iron chaperone activity
## 3072 immunoglobulin receptor binding
## 3073 Fc-gamma receptor I complex binding
## 3074 phosphatidylinositol 3-kinase regulator activity
## 3075 histone acetyltransferase regulator activity
## 3076 histone kinase activity
## 3077 histone serine kinase activity
## 3078 histone kinase activity (H3-S10 specific)
## 3079 histone threonine kinase activity
## 3080 glutamate-cysteine ligase catalytic subunit binding
## 3081 dopamine binding
## 3082 protein-arginine omega-N monomethyltransferase activity
## 3083 protein-arginine omega-N asymmetric methyltransferase activity
## 3084 protein-arginine omega-N symmetric methyltransferase activity
## 3085 UDP-glucosyltransferase activity
## 3086 UDP-xylosyltransferase activity
## 3087 glutamate receptor binding
## 3088 ionotropic glutamate receptor binding
## 3089 G-protein coupled glutamate receptor binding
## 3090 glucocorticoid receptor binding
## 3091 ethanol binding
## 3092 inositol pentakisphosphate 2-kinase activity
## 3093 Toll-like receptor binding
## 3094 selenocysteine insertion sequence binding
## 3095 chondroitin sulfate proteoglycan binding
## 3096 chondroitin sulfate binding
## 3097 zymogen binding
## 3098 carbon dioxide transmembrane transporter activity
## 3099 histone kinase activity (H3-Y41 specific)
## 3100 histone kinase activity (H3-T11 specific)
## 3101 histone kinase activity (H3-T6 specific)
## 3102 dihydrotestosterone 17-beta-dehydrogenase activity
## 3103 cyclic-di-GMP binding
## 3104 choriogonadotropin hormone receptor activity
## 3105 lipase binding
## 3106 chylomicron binding
## 3107 MH2 domain binding
## 3108 MH1 domain binding
## 3109 DNA demethylase activity
## 3110 oxidative RNA demethylase activity
## 3111 oxidative DNA demethylase activity
## 3112 NADH pyrophosphatase activity
## 3113 carbohydrate response element binding
## 3114 8-oxo-7,8-dihydrodeoxyguanosine triphosphate pyrophosphatase activity
## 3115 histone demethylase activity (H4-K20 specific)
## 3116 purinergic receptor activity
## 3117 ganglioside binding
## 3118 methylthiotransferase activity
## 3119 N6-isopentenyladenosine methylthiotransferase activity
## 3120 N6-threonylcarbomyladenosine methylthiotransferase activity
## 3121 peptidyl-cysteine S-nitrosylase activity
## 3122 AP-2 adaptor complex binding
## 3123 snRNA stem-loop binding
## 3124 clathrin adaptor activity
## 3125 ceramide transporter activity
## 3126 histone methyltransferase activity (H3-R17 specific)
## 3127 L-DOPA receptor activity
## 3128 AP-1 adaptor complex binding
## 3129 AP-3 adaptor complex binding
## 3130 Toll-like receptor 4 binding
## 3131 Toll-like receptor 2 binding
## 3132 enone reductase activity
## 3133 oligopeptide transmembrane transporter activity
## 3134 chemokine (C-C motif) ligand 7 binding
## 3135 macrophage migration inhibitory factor binding
## 3136 lysophosphatidic acid binding
## 3137 S-nitrosoglutathione binding
## 3138 dinitrosyl-iron complex binding
## 3139 cardiolipin hydrolase activity
## 3140 chemokine (C-C motif) ligand 19 binding
## 3141 chemokine (C-C motif) ligand 21 binding
## 3142 deubiquitinase activator activity
## 3143 Krueppel-associated box domain binding
## 3144 dITP diphosphatase activity
## 3145 death effector domain binding
## 3146 mRNA 3'-UTR AU-rich region binding
## 3147 microsatellite binding
## 3148 GAF domain binding
## 3149 mediator complex binding
## 3150 long-chain fatty acid binding
## 3151 protein-malonyllysine demalonylase activity
## 3152 protein-succinyllysine desuccinylase activity
## 3153 peroxisome membrane class-1 targeting sequence binding
## 3154 prostaglandin H2 endoperoxidase reductase activity
## 3155 prostaglandin D2 11-ketoreductase activity
## 3156 13-prostaglandin reductase activity
## 3157 12-hydroxyheptadecatrienoic acid synthase activity
## 3158 peptidyl-histidine dioxygenase activity
## 3159 peptidyl-asparagine 3-dioxygenase activity
## 3160 kringle domain binding
## 3161 GTP diphosphatase activity
## 3162 ITP diphosphatase activity
## 3163 XTP diphosphatase activity
## 3164 phosphatidylinositol 3-kinase regulatory subunit binding
## 3165 phosphatidylinositol 3-kinase catalytic subunit binding
## 3166 tyrosyl-RNA phosphodiesterase activity
## 3167 VEGF-A-activated receptor activity
## 3168 VEGF-B-activated receptor activity
## 3169 VEGF-C-activated receptor activity
## 3170 placental growth factor-activated receptor activity
## 3171 glutathione hydrolase activity
## 3172 thiocyanate peroxidase activity
## 3173 proteasome-activating ATPase activity
## 3174 arachidonate 8(S)-lipoxygenase activity
## 3175 K48-linked polyubiquitin binding
## 3176 iron-sulfur transferase activity
## 3177 hepatocyte growth factor binding
## 3178 BLOC-2 complex binding
## 3179 L-dopa decarboxylase activity
## 3180 peroxidase inhibitor activity
## 3181 nitric-oxide synthase inhibitor activity
## 3182 cargo receptor activity
## 3183 reelin receptor activity
## 3184 sphingosine-1-phosphate receptor activity
## 3185 enkephalin receptor activity
## 3186 morphine receptor activity
## 3187 dynorphin receptor activity
## 3188 transcription factor activity, ligand-activated RNA polymerase II transcription factor binding
## 3189 glucocorticoid-activated RNA polymerase II transcription factor binding transcription factor activity
## 3190 RNA polymerase II transcription factor activity, estrogen-activated sequence-specific DNA binding
## 3191 protein tyrosine kinase collagen receptor activity
## 3192 collagen receptor activity
## 3193 vascular endothelial growth factor binding
## 3194 nodal binding
## 3195 choriogonadotropin hormone binding
## 3196 C-C motif chemokine 19 receptor activity
## 3197 C-C motif chemokine 21 receptor activity
## 3198 neuregulin receptor activity
## 3199 neuregulin binding
## 3200 thrombopoietin receptor activity
## 3201 bile acid receptor activity
## 3202 G-protein coupled bile acid receptor activity
## 3203 lithocholic acid receptor activity
## 3204 neuropilin binding
## 3205 RIG-I binding
## 3206 co-receptor binding
## 3207 interleukin-18 binding
## 3208 interleukin-18 receptor activity
## 3209 interleukin-16 binding
## 3210 interleukin-16 receptor activity
## 3211 interleukin-20 binding
## 3212 interleukin-22 binding
## 3213 interleukin-22 receptor activity
## 3214 interleukin-23 binding
## 3215 interleukin-23 receptor activity
## 3216 neurexin family protein binding
## 3217 chemoattractant activity
## 3218 thiamine phosphate phosphatase activity
## 3219 fructose 1,6-bisphosphate 1-phosphatase activity
## 3220 rRNA primary transcript binding
## 3221 interleukin-12 beta subunit binding
## 3222 interleukin-12 alpha subunit binding
## 3223 neurotransmitter binding
## 3224 acetylcholine binding
## 3225 SH2 domain binding
## 3226 dolichyl pyrophosphate Man9GlcNAc2 alpha-1,3-glucosyltransferase activity
## 3227 hydroxymethylglutaryl-CoA reductase activity
## 3228 MHC protein binding
## 3229 MHC class I protein binding
## 3230 MHC class II protein binding
## 3231 URM1 activating enzyme activity
## 3232 ISG15 transferase activity
## 3233 heparan sulfate N-acetylglucosaminyltransferase activity
## 3234 GDP-4-dehydro-D-rhamnose reductase activity
## 3235 chemokine receptor binding
## 3236 sphingosine-1-phosphate phosphatase activity
## 3237 triacyl lipopeptide binding
## 3238 lipid phosphatase activity
## 3239 peptide deformylase activity
## 3240 riboflavin reductase (NADPH) activity
## 3241 T cell receptor binding
## 3242 CD4 receptor binding
## 3243 CD8 receptor binding
## 3244 ATPase activity, uncoupled
## 3245 MHC class II protein binding, via antigen binding groove
## 3246 PH domain binding
## 3247 3'-tRNA processing endoribonuclease activity
## 3248 histone methyltransferase activity (H4-K20 specific)
## 3249 actinin binding
## 3250 fucose binding
## 3251 Wnt-activated receptor activity
## 3252 BRE binding
## 3253 tubulin deacetylase activity
## 3254 neuromedin U receptor binding
## 3255 neuropeptide binding
## 3256 neuromedin U binding
## 3257 enterobactin transporter activity
## 3258 peroxisome proliferator activated receptor binding
## 3259 ornithine decarboxylase activator activity
## 3260 ornithine decarboxylase regulator activity
## 3261 ATP-dependent protein binding
## 3262 alpha-tubulin binding
## 3263 gamma-tubulin binding
## 3264 ribosome binding
## 3265 ribosomal small subunit binding
## 3266 chromatin insulator sequence binding
## 3267 tumor necrosis factor binding
## 3268 ErbB-3 class receptor binding
## 3269 glycerol-3-phosphatase activity
## 3270 5'-3' DNA helicase activity
## 3271 ATP-dependent 5'-3' DNA helicase activity
## 3272 alcohol binding
## 3273 vascular endothelial growth factor receptor 1 binding
## 3274 vascular endothelial growth factor receptor 2 binding
## 3275 vascular endothelial growth factor receptor 3 binding
## 3276 glycosphingolipid binding
## 3277 SMC family protein binding
## 3278 ATPase-coupled anion transmembrane transporter activity
## 3279 laminin binding
## 3280 laminin-1 binding
## 3281 sodium-dependent organic anion transmembrane transporter activity
## 3282 adenosine-diphosphatase activity
## 3283 CTPase activity
## 3284 phosphatidylinositol-3,4-bisphosphate binding
## 3285 CDP-diacylglycerol-phosphatidylglycerol phosphatidyltransferase activity
## 3286 proteoglycan binding
## 3287 heparan sulfate proteoglycan binding
## 3288 HLH domain binding
## 3289 3-phosphoinositide-dependent protein kinase binding
## 3290 MRF binding
## 3291 protein anchor
## 3292 kinetochore binding
## 3293 leucine zipper domain binding
## 3294 inositol 1,3,4,5 tetrakisphosphate binding
## 3295 lipoamide binding
## 3296 molybdopterin cofactor binding
## 3297 insulin binding
## 3298 DNA-N1-methyladenine dioxygenase activity
## 3299 G/U mismatch-specific uracil-DNA glycosylase activity
## 3300 dihydrolipoyllysine-residue (2-methylpropanoyl)transferase activity
## 3301 oxidoreductase activity, oxidizing metal ions with flavin as acceptor
## 3302 glyceraldehyde oxidoreductase activity
## 3303 phosphatidylinositol-4-phosphate phosphatase activity
## 3304 phosphatidylinositol-3,5-bisphosphate 5-phosphatase activity
## 3305 ADP-specific glucokinase activity
## 3306 Ras palmitoyltransferase activity
## 3307 acireductone synthase activity
## 3308 N-acetylgalactosamine-6-sulfatase activity
## 3309 NADPH:sulfur oxidoreductase activity
## 3310 DNA-7-methylguanine glycosylase activity
## 3311 suramin binding
## 3312 histone acetyltransferase activity (H3-K23 specific)
## 3313 histone acetyltransferase activity (H4-K5 specific)
## 3314 histone acetyltransferase activity (H4-K8 specific)
## 3315 histone acetyltransferase activity (H4-K12 specific)
## 3316 H2A histone acetyltransferase activity
## 3317 histone methyltransferase activity (H4-R3 specific)
## 3318 retinoic acid-responsive element binding
## 3319 RNA polymerase II core promoter proximal region sequence-specific DNA binding, bending
## 3320 non-sequence-specific DNA binding, bending
## 3321 glucagon-like peptide 1 receptor activity
## 3322 DNA topoisomerase binding
## 3323 GTP cyclohydrolase binding
## 3324 17-beta-hydroxysteroid dehydrogenase (NAD+) activity
## 3325 decaprenyldihydroxybenzoate methyltransferase activity
## 3326 3-demethylubiquinone-10 3-O-methyltransferase activity
## 3327 FMN transmembrane transporter activity
## 3328 2-hydroxy-adenosine triphosphate pyrophosphatase activity
## 3329 2-hydroxy-(deoxy)adenosine-triphosphate pyrophosphatase activity
## 3330 8-oxo-dGDP phosphatase activity
## 3331 8-oxo-GDP phosphatase activity
## 3332 8-hydroxy-dADP phosphatase activity
## 3333 hemi-methylated DNA-binding
## 3334 bone sialoprotein binding
## 3335 acid-sensing ion channel activity
## 3336 DNA end binding
## 3337 G-protein coupled purinergic nucleotide receptor activity
## 3338 UDP-activated nucleotide receptor activity
## 3339 UTP-activated nucleotide receptor activity
## 3340 ATP-activated adenosine receptor activity
## 3341 ADP-activated adenosine receptor activity
## 3342 azole transporter activity
## 3343 bioactive lipid receptor activity
## 3344 N-acetylglucosamine kinase activity
## 3345 keratan sulfotransferase activity
## 3346 pre-mRNA branch point binding
## 3347 uridine-diphosphatase activity
## 3348 electron transporter, transferring electrons within CoQH2-cytochrome c reductase complex activity
## 3349 electron transporter, transferring electrons from CoQH2-cytochrome c reductase complex and cytochrome c oxidase complex activity
## 3350 myosin II binding
## 3351 glutathione dehydrogenase (ascorbate) activity
## 3352 translation regulator activity
## 3353 translation factor activity, non-nucleic acid binding
## 3354 CXCR chemokine receptor binding
## 3355 alpha-catenin binding
## 3356 gamma-catenin binding
## 3357 unmethylated CpG binding
## 3358 interleukin-1 Type I receptor antagonist activity
## 3359 interleukin-1 Type II receptor antagonist activity
## 3360 omega-6 fatty acid desaturase activity
## 3361 chemorepellent activity
## 3362 dynein heavy chain binding
## 3363 interleukin-27 receptor activity
## 3364 interleukin-27 binding
## 3365 interleukin-20 receptor binding
## 3366 interleukin-22 receptor binding
## 3367 interleukin-23 receptor binding
## 3368 interleukin-27 receptor binding
## 3369 syndecan binding
## 3370 geranylgeranyl reductase activity
## 3371 TRAIL binding
## 3372 ketoreductase activity
## 3373 gluconokinase activity
## 3374 polynucleotide 3'-phosphatase activity
## 3375 ATP-dependent polydeoxyribonucleotide 5'-hydroxyl-kinase activity
## 3376 S-methyl-5-thioribose-1-phosphate isomerase activity
## 3377 xylosylprotein 4-beta-galactosyltransferase activity
## 3378 D-xylulose reductase activity
## 3379 glucosyltransferase activity
## 3380 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase activity
## 3381 histamine N-methyltransferase activity
## 3382 malate dehydrogenase (NADP+) activity
## 3383 alpha-L-arabinofuranosidase activity
## 3384 methylthioribulose 1-phosphate dehydratase activity
## 3385 long-chain-alcohol oxidase activity
## 3386 polyamine oxidase activity
## 3387 sphingolipid-translocating ATPase activity
## 3388 sphingolipid transporter activity
## 3389 sphingolipid binding
## 3390 natural killer cell lectin-like receptor binding
## 3391 borate transmembrane transporter activity
## 3392 host cell surface receptor binding
## 3393 virion binding
## 3394 chemokine receptor antagonist activity
## 3395 hydroxyapatite binding
## 3396 cadmium ion binding
## 3397 calcium oxalate binding
## 3398 metal chelating activity
## 3399 transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer
## 3400 alpha-(1->3)-fucosyltransferase activity
## 3401 peptide-O-fucosyltransferase activity
## 3402 ER retention sequence binding
## 3403 proton-transporting ATP synthase activity, rotational mechanism
## 3404 1-phosphatidylinositol-3-kinase regulator activity
## 3405 3'-phosphoadenosine 5'-phosphosulfate transmembrane transporter activity
## 3406 retinoid X receptor binding
## 3407 NAD-dependent histone deacetylase activity (H3-K9 specific)
## 3408 NAD-dependent histone deacetylase activity (H4-K16 specific)
## 3409 histone acetyltransferase activity (H4-K16 specific)
## 3410 histone methyltransferase activity (H3-K9 specific)
## 3411 histone methyltransferase activity (H3-K36 specific)
## 3412 histone methyltransferase activity (H3-K27 specific)
## 3413 TAP1 binding
## 3414 TAP2 binding
## 3415 tapasin binding
## 3416 oxidoreductase activity, acting on the CH-NH group of donors, flavin as acceptor
## 3417 17-alpha,20-alpha-dihydroxypregn-4-en-3-one dehydrogenase activity
## 3418 sterol-4-alpha-carboxylate 3-dehydrogenase (decarboxylating) activity
## 3419 3-hydroxy-2-methylbutyryl-CoA dehydrogenase activity
## 3420 cholest-5-ene-3-beta,7-alpha-diol 3-beta-dehydrogenase activity
## 3421 prostaglandin-F synthase activity
## 3422 15-hydroxyprostaglandin-D dehydrogenase (NADP+) activity
## 3423 15-hydroxyprostaglandin dehydrogenase (NADP+) activity
## 3424 androsterone dehydrogenase activity
## 3425 3-oxoacyl-[acyl-carrier-protein] reductase (NADH) activity
## 3426 testosterone dehydrogenase (NAD+) activity
## 3427 androsterone dehydrogenase (B-specific) activity
## 3428 testosterone 17-beta-dehydrogenase (NADP+) activity
## 3429 vitamin-K-epoxide reductase (warfarin-sensitive) activity
## 3430 vitamin-K-epoxide reductase (warfarin-insensitive) activity
## 3431 phospholipid-hydroperoxide glutathione peroxidase activity
## 3432 ketosteroid monooxygenase activity
## 3433 4-trimethylammoniobutyraldehyde dehydrogenase activity
## 3434 trans-1,2-dihydrobenzene-1,2-diol dehydrogenase activity
## 3435 enoyl-[acyl-carrier-protein] reductase (NADPH, A-specific) activity
## 3436 thiomorpholine-carboxylate dehydrogenase activity
## 3437 saccharopine dehydrogenase (NADP+, L-lysine-forming) activity
## 3438 saccharopine dehydrogenase (NAD+, L-glutamate-forming) activity
## 3439 protein-disulfide reductase activity
## 3440 betaine-homocysteine S-methyltransferase activity
## 3441 1-alkenylglycerophosphocholine O-acyltransferase activity
## 3442 1-alkenylglycerophosphoethanolamine O-acyltransferase activity
## 3443 phosphatidylcholine-retinol O-acyltransferase activity
## 3444 platelet-activating factor acetyltransferase activity
## 3445 1-acylglycerophosphocholine O-acyltransferase activity
## 3446 N-acetylneuraminate 7-O(or 9-O)-acetyltransferase activity
## 3447 1-alkylglycerophosphocholine O-acyltransferase activity
## 3448 1-alkylglycerophosphocholine O-acetyltransferase activity
## 3449 long-chain-alcohol O-fatty-acyltransferase activity
## 3450 cysteine-S-conjugate N-acetyltransferase activity
## 3451 galactosylxylosylprotein 3-beta-galactosyltransferase activity
## 3452 beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,3-N-acetylglucosaminyltransferase activity
## 3453 acetylgalactosaminyl-O-glycosyl-glycoprotein beta-1,3-N-acetylglucosaminyltransferase activity
## 3454 acetylgalactosaminyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase activity
## 3455 glucuronosyl-N-acetylgalactosaminyl-proteoglycan 4-beta-N-acetylgalactosaminyltransferase activity
## 3456 lactosylceramide 1,3-N-acetyl-beta-D-glucosaminyltransferase activity
## 3457 N-acylsphingosine galactosyltransferase activity
## 3458 galactosylgalactosylglucosylceramide beta-D-acetylgalactosaminyltransferase activity
## 3459 glucosaminylgalactosylglucosylceramide beta-galactosyltransferase activity
## 3460 globoside alpha-N-acetylgalactosaminyltransferase activity
## 3461 nicotinamide phosphoribosyltransferase activity
## 3462 monosialoganglioside sialyltransferase activity
## 3463 (alpha-N-acetylneuraminyl-2,3-beta-galactosyl-1,3)-N-acetyl-galactosaminide 6-alpha-sialyltransferase activity
## 3464 lactosylceramide alpha-2,3-sialyltransferase activity
## 3465 4-hydroxybenzoate nonaprenyltransferase activity
## 3466 (S)-3-amino-2-methylpropionate transaminase activity
## 3467 (R)-3-amino-2-methylpropionate-pyruvate transaminase activity
## 3468 L-phenylalanine:pyruvate aminotransferase activity
## 3469 kynurenine-glyoxylate transaminase activity
## 3470 glutamine-phenylpyruvate transaminase activity
## 3471 [hydroxymethylglutaryl-CoA reductase (NADPH)] kinase activity
## 3472 [3-methyl-2-oxobutanoate dehydrogenase (acetyl-transferring)] kinase activity
## 3473 inositol tetrakisphosphate 1-kinase activity
## 3474 inositol tetrakisphosphate 5-kinase activity
## 3475 fucose-1-phosphate guanylyltransferase activity
## 3476 D-ribitol-5-phosphate cytidylyltransferase activity
## 3477 succinate-hydroxymethylglutarate CoA-transferase activity
## 3478 methylumbelliferyl-acetate deacetylase activity
## 3479 glycerophosphocholine phosphodiesterase activity
## 3480 glycerophosphocholine cholinephosphodiesterase activity
## 3481 alkylglycerophosphoethanolamine phosphodiesterase activity
## 3482 glycerophosphoinositol inositolphosphodiesterase activity
## 3483 glycerophosphoinositol glycerophosphodiesterase activity
## 3484 protein-glucosylgalactosylhydroxylysine glucosidase activity
## 3485 alkenylglycerophosphocholine hydrolase activity
## 3486 alkenylglycerophosphoethanolamine hydrolase activity
## 3487 17-alpha-hydroxyprogesterone aldolase activity
## 3488 N-acylneuraminate-9-phosphate synthase activity
## 3489 3-hydroxyoctanoyl-[acyl-carrier-protein] dehydratase activity
## 3490 ATP-dependent NAD(P)H-hydrate dehydratase activity
## 3491 heparosan-N-sulfate-glucuronate 5-epimerase activity
## 3492 ceramide cholinephosphotransferase activity
## 3493 calcium-dependent phospholipase A2 activity
## 3494 15-oxoprostaglandin 13-oxidase activity
## 3495 2-aminoadipate transaminase activity
## 3496 2-hydroxyglutarate dehydrogenase activity
## 3497 2-methylcitrate dehydratase activity
## 3498 3',5'-cyclic-GMP phosphodiesterase activity
## 3499 3-dehydrosphinganine reductase activity
## 3500 4-hydroxyglutamate transaminase activity
## 3501 7-dehydrocholesterol reductase activity
## 3502 aconitate decarboxylase activity
## 3503 acylglycerol kinase activity
## 3504 acylpyruvate hydrolase activity
## 3505 ADP-ribose diphosphatase activity
## 3506 albendazole monooxygenase activity
## 3507 alpha-amino-acid esterase activity
## 3508 arachidonate-CoA ligase activity
## 3509 amine sulfotransferase activity
## 3510 ATP diphosphatase activity
## 3511 beta-adrenergic receptor kinase activity
## 3512 bile-salt sulfotransferase activity
## 3513 biotinidase activity
## 3514 bis(5'-adenosyl)-triphosphatase activity
## 3515 indanol dehydrogenase activity
## 3516 iron-cytochrome-c reductase activity
## 3517 carnosine synthase activity
## 3518 CDP-glycerol diphosphatase activity
## 3519 chlordecone reductase activity
## 3520 cholate-CoA ligase activity
## 3521 cholestenol delta-isomerase activity
## 3522 cholestenone 5-alpha-reductase activity
## 3523 chondroitin 4-sulfotransferase activity
## 3524 chondroitin-glucuronate 5-epimerase activity
## 3525 butyrate-CoA ligase activity
## 3526 corticosterone 18-monooxygenase activity
## 3527 delta4-3-oxosteroid 5beta-reductase activity
## 3528 cysteamine dioxygenase activity
## 3529 L-cysteine:2-oxoglutarate aminotransferase activity
## 3530 cysteine-S-conjugate beta-lyase activity
## 3531 D-glutamate cyclase activity
## 3532 D-xylose 1-dehydrogenase (NADP+) activity
## 3533 dCTP diphosphatase activity
## 3534 deoxycytidine deaminase activity
## 3535 dihydrocoumarin hydrolase activity
## 3536 diiodophenylpyruvate reductase activity
## 3537 dimethylglycine dehydrogenase activity
## 3538 dolichyldiphosphatase activity
## 3539 fatty acid peroxidase activity
## 3540 flavonol 3-sulfotransferase activity
## 3541 ganglioside galactosyltransferase activity
## 3542 glucose-1,6-bisphosphate synthase activity
## 3543 glucose 1-dehydrogenase [NAD(P)] activity
## 3544 L-glucuronate reductase activity
## 3545 L-glutamine:pyruvate aminotransferase activity
## 3546 glutamine N-acyltransferase activity
## 3547 glycine N-acyltransferase activity
## 3548 glycine N-benzoyltransferase activity
## 3549 glycine N-choloyltransferase activity
## 3550 glyoxylate oxidase activity
## 3551 hepoxilin-epoxide hydrolase activity
## 3552 hydroxyacid-oxoacid transhydrogenase activity
## 3553 hydroxylysine kinase activity
## 3554 receptor agonist activity
## 3555 receptor antagonist activity
## 3556 CCR chemokine receptor binding
## 3557 disaccharide binding
## 3558 quinone binding
## 3559 ubiquinone binding
## 3560 UDP-glucuronate decarboxylase activity
## 3561 calcium- and calmodulin-regulated 3',5'-cyclic-GMP phosphodiesterase activity
## 3562 tau protein binding
## 3563 activin binding
## 3564 phytanoyl-CoA dioxygenase activity
## 3565 CXCR3 chemokine receptor binding
## 3566 3'-flap endonuclease activity
## 3567 methionine adenosyltransferase regulator activity
## 3568 brain-derived neurotrophic factor binding
## 3569 platelet-derived growth factor binding
## 3570 Roundabout binding
## 3571 beta-1,3-galactosyltransferase activity
## 3572 calcium-induced calcium release activity
## 3573 L-fuconate dehydratase activity
## 3574 L-pipecolate oxidase activity
## 3575 L-xylulose reductase (NADP+) activity
## 3576 lathosterol oxidase activity
## 3577 leukotriene-B4 20-monooxygenase activity
## 3578 m7G(5')pppN diphosphatase activity
## 3579 malonyl-CoA decarboxylase activity
## 3580 L-gulonate 3-dehydrogenase activity
## 3581 inositol oxygenase activity
## 3582 myosin-light-chain-phosphatase activity
## 3583 N-acetylglucosamine deacetylase activity
## 3584 N-acylglucosamine 2-epimerase activity
## 3585 N-acylneuraminate-9-phosphatase activity
## 3586 N-formylglutamate deformylase activity
## 3587 NAD(P)+ nucleosidase activity
## 3588 nucleoside deoxyribosyltransferase activity
## 3589 nucleoside phosphotransferase activity
## 3590 omega-amidase activity
## 3591 phenylpyruvate tautomerase activity
## 3592 phytanate-CoA ligase activity
## 3593 fucokinase activity
## 3594 procollagen galactosyltransferase activity
## 3595 prostaglandin-E synthase activity
## 3596 prostaglandin-E2 9-reductase activity
## 3597 retinol O-fatty-acyltransferase activity
## 3598 retinyl-palmitate esterase activity
## 3599 rhodopsin kinase activity
## 3600 ribosylnicotinamide kinase activity
## 3601 RNA uridylyltransferase activity
## 3602 sedoheptulokinase activity
## 3603 sphingomyelin phosphodiesterase D activity
## 3604 sphingosine N-acyltransferase activity
## 3605 steroid sulfotransferase activity
## 3606 sulfur dioxygenase activity
## 3607 tau-protein kinase activity
## 3608 thiamin-triphosphatase activity
## 3609 thiosulfate-thiol sulfurtransferase activity
## 3610 trans-L-3-hydroxyproline dehydratase activity
## 3611 trans-octaprenyltranstransferase activity
## 3612 trimethyllysine dioxygenase activity
## 3613 triokinase activity
## 3614 triphosphatase activity
## 3615 UDP-glucuronate 5'-epimerase activity
## 3616 [acetyl-CoA carboxylase] kinase activity
## 3617 nitrite reductase (NO-forming) activity
## 3618 calcium-dependent phospholipase C activity
## 3619 transforming growth factor beta binding
## 3620 microfibril binding
## 3621 aquacobalamin reductase (NADPH) activity
## 3622 ethanolamine-phosphate phospho-lyase activity
## 3623 N-acetylneuraminate synthase activity
## 3624 arachidonate 15-lipoxygenase activity
## 3625 glyceryl-ether monooxygenase activity
## 3626 imidazolonepropionase activity
## 3627 hyaluronan synthase activity
## 3628 glucuronosyl-N-acetylglucosaminyl-proteoglycan 4-alpha-N-acetylglucosaminyltransferase activity
## 3629 N-acetylglucosaminyl-proteoglycan 4-beta-glucuronosyltransferase activity
## 3630 N-acetylgalactosaminyl-proteoglycan 3-beta-glucuronosyltransferase activity
## 3631 lactosylceramide 4-alpha-galactosyltransferase activity
## 3632 acyloxyacyl hydrolase activity
## 3633 icosanoid binding
## 3634 icosatetraenoic acid binding
## 3635 arachidonic acid binding
## 3636 glutamate-tRNA(Gln) ligase activity
## 3637 glutaminyl-tRNA synthase (glutamine-hydrolyzing) activity
## 3638 1,5-anhydro-D-fructose reductase activity
## 3639 GDP-L-fucose synthase activity
## 3640 quinine 3-monooxygenase activity
## 3641 methylarsonate reductase activity
## 3642 propionyl-CoA C2-trimethyltridecanoyltransferase activity
## 3643 5-oxo-6E,8Z,11Z,14Z-icosatetraenoic acid binding
## 3644 5-hydroxy-6E,8Z,11Z,14Z-icosatetraenoic acid binding
## 3645 5(S)-hydroxyperoxy-6E,8Z,11Z,14Z-icosatetraenoic acid binding
## 3646 testosterone 6-beta-hydroxylase activity
## 3647 3'-phosphoadenosine 5'-phosphosulfate binding
## 3648 N-acetylgalactosamine 4-sulfate 6-O-sulfotransferase activity
## 3649 oxidoreductase activity, acting on NAD(P)H, oxygen as acceptor
## 3650 AF-2 domain binding
## 3651 AF-1 domain binding
## 3652 DBD domain binding
## 3653 LBD domain binding
## 3654 proteoglycan sulfotransferase activity
## 3655 WW domain binding
## 3656 CARD domain binding
## 3657 dopamine receptor binding
## 3658 advanced glycation end-product receptor activity
## 3659 RAGE receptor binding
## 3660 GABA receptor binding
## 3661 phosphoserine binding
## 3662 phosphothreonine binding
## 3663 pyruvate transmembrane transporter activity
## 3664 cobalt ion binding
## 3665 nitric-oxide synthase binding
## 3666 microtubule minus-end binding
## 3667 RNA transmembrane transporter activity
## 3668 hepoxilin A3 synthase activity
## 3669 metal ion:proton antiporter activity
## 3670 cofactor transporter activity
## 3671 coenzyme transporter activity
## 3672 mono-olein transacylation activity
## 3673 diolein transacylation activity
## 3674 CP2 mannose-ethanolamine phosphotransferase activity
## 3675 muscle alpha-actinin binding
## 3676 FATZ binding
## 3677 mannose-ethanolamine phosphotransferase activity
## 3678 serotonin binding
## 3679 epinephrine binding
## 3680 norepinephrine binding
## 3681 tRNA N-acetyltransferase activity
## 3682 alpha-actinin binding
## 3683 BH domain binding
## 3684 corticotropin-releasing hormone binding
## 3685 PTB domain binding
## 3686 corticotropin-releasing hormone receptor binding
## 3687 corticotropin-releasing hormone receptor 1 binding
## 3688 corticotropin-releasing hormone receptor 2 binding
## 3689 BH2 domain binding
## 3690 BH3 domain binding
## 3691 D-tyrosyl-tRNA(Tyr) deacylase activity
## 3692 NFAT protein binding
## 3693 2 iron, 2 sulfur cluster binding
## 3694 3 iron, 4 sulfur cluster binding
## 3695 5'-deoxyribose-5-phosphate lyase activity
## 3696 inositol-1,3,4,5-tetrakisphosphate 3-phosphatase activity
## 3697 protein C-terminal methylesterase activity
## 3698 NAD transporter activity
## 3699 polynucleotide 5'-hydroxyl-kinase activity
## 3700 ATP-dependent polyribonucleotide 5'-hydroxyl-kinase activity
## 3701 cytosine C-5 DNA demethylase activity
## 3702 inositol tetrakisphosphate kinase activity
## 3703 inositol trisphosphate kinase activity
## 3704 all-trans-retinol 13,14-reductase activity
## 3705 misfolded protein binding
## 3706 phosphatidylinositol-3,4-bisphosphate 3-phosphatase activity
## 3707 glycolipid binding
## 3708 histone demethylase activity (H3-K36 specific)
## 3709 methotrexate binding
## 3710 Hsp90 protein binding
## 3711 G-quadruplex DNA binding
## 3712 S-(hydroxymethyl)glutathione dehydrogenase activity
## 3713 granulocyte colony-stimulating factor binding
## 3714 lysophospholipid transporter activity
## 3715 (R)-2-hydroxyglutarate dehydrogenase activity
## 3716 squalene synthase activity
## 3717 protein carboxyl O-methyltransferase activity
## 3718 tRNA dimethylallyltransferase activity
## 3719 sn-glycerol-3-phosphate:ubiquinone-8 oxidoreductase activity
## 3720 tryptamine:oxygen oxidoreductase (deaminating) activity
## 3721 aminoacetone:oxygen oxidoreductase(deaminating) activity
## 3722 aliphatic-amine oxidase activity
## 3723 phenethylamine:oxygen oxidoreductase (deaminating) activity
## 3724 diamine oxidase activity
## 3725 histamine oxidase activity
## 3726 methylputrescine oxidase activity
## 3727 propane-1,3-diamine oxidase activity
## 3728 phosphatidylinositol-3,5-bisphosphate 3-phosphatase activity
## 3729 lysophosphatidic acid phosphatase activity
## 3730 L-leucine transaminase activity
## 3731 L-valine transaminase activity
## 3732 L-isoleucine transaminase activity
## 3733 guanine phosphoribosyltransferase activity
## 3734 tRNA (cytosine-2'-O-)-methyltransferase activity
## 3735 raffinose alpha-galactosidase activity
## 3736 tRNA-specific adenosine-34 deaminase activity
## 3737 inositol hexakisphosphate 1-kinase activity
## 3738 inositol hexakisphosphate 3-kinase activity
## 3739 inositol-1,3,4-trisphosphate 6-kinase activity
## 3740 inositol-1,3,4-trisphosphate 5-kinase activity
## 3741 phosphocholine phosphatase activity
## 3742 phosphoethanolamine phosphatase activity
## 3743 phosphatidylserine 1-acylhydrolase activity
## 3744 1-acyl-2-lysophosphatidylserine acylhydrolase activity
## 3745 exo-alpha-(2->3)-sialidase activity
## 3746 exo-alpha-(2->6)-sialidase activity
## 3747 exo-alpha-(2->8)-sialidase activity
## 3748 beta-galactoside alpha-2,3-sialyltransferase activity
## 3749 1-phosphatidylinositol-5-kinase activity
## 3750 1-phosphatidylinositol-3-phosphate 4-kinase activity
## 3751 phosphatidylinositol-3,4-bisphosphate 5-kinase activity
## 3752 medium-chain acyl-CoA hydrolase activity
## 3753 very long chain acyl-CoA hydrolase activity
## 3754 DNA-7-methyladenine glycosylase activity
## 3755 DNA-3-methylguanine glycosylase activity
## 3756 inositol-1,3,4,5,6-pentakisphosphate 1-phosphatase activity
## 3757 inositol hexakisphosphate 2-phosphatase activity
## 3758 inositol pentakisphosphate phosphatase activity
## 3759 inositol-3,4-bisphosphate 4-phosphatase activity
## 3760 inositol-1,3,4-trisphosphate 1-phosphatase activity
## 3761 inositol-1,3,4,6-tetrakisphosphate 6-phosphatase activity
## 3762 inositol-1,3,4,6-tetrakisphosphate 1-phosphatase activity
## 3763 inositol monophosphate 3-phosphatase activity
## 3764 inositol monophosphate 4-phosphatase activity
## 3765 inositol-3,4,6-trisphosphate 1-kinase activity
## 3766 inositol 5-diphosphate pentakisphosphate 5-kinase activity
## 3767 inositol diphosphate tetrakisphosphate kinase activity
## 3768 inositol diphosphate tetrakisphosphate diphosphatase activity
## 3769 inositol-1-diphosphate-2,3,4,5,6-pentakisphosphate diphosphatase activity
## 3770 inositol-3-diphosphate-1,2,4,5,6-pentakisphosphate diphosphatase activity
## 3771 inositol-5-diphosphate-1,2,3,4,6-pentakisphosphate diphosphatase activity
## 3772 inositol-1,5-bisdiphosphate-2,3,4,6-tetrakisphosphate 1-diphosphatase activity
## 3773 inositol-1,5-bisdiphosphate-2,3,4,6-tetrakisphosphate 5-diphosphatase activity
## 3774 inositol-3,5-bisdiphosphate-2,3,4,6-tetrakisphosphate 5-diphosphatase activity
## 3775 ferric-chelate reductase (NADPH) activity
## 3776 very-long-chain-(S)-2-hydroxy-acid oxidase activity
## 3777 long-chain-(S)-2-hydroxy-long-chain-acid oxidase activity
## 3778 medium-chain-(S)-2-hydroxy-acid oxidase activity
## 3779 ADP-dependent NAD(P)H-hydrate dehydratase activity
## 3780 peptidyl-lysine acetyltransferase activity
## 3781 arachidonic acid omega-hydroxylase activity
## 3782 alpha-tocopherol omega-hydroxylase activity
## 3783 tocotrienol omega-hydroxylase activity
## 3784 all-trans-retinyl-palmitate hydrolase, 11-cis retinol forming activity
## 3785 all-trans-retinyl-ester hydrolase, 11-cis retinol forming activity
## 3786 norspermine:oxygen oxidoreductase activity
## 3787 N1-acetylspermine:oxygen oxidoreductase (N1-acetylspermidine-forming) activity
## 3788 N(1),N(12)-diacetylspermine:oxygen oxidoreductase (3-acetamidopropanal-forming) activity
## 3789 spermine:oxygen oxidoreductase (spermidine-forming) activity
## 3790 spermidine:oxygen oxidoreductase (3-aminopropanal-forming) activity
## 3791 N1-acetylspermine:oxygen oxidoreductase (3-acetamidopropanal-forming) activity
## 3792 N1-acetylspermidine:oxygen oxidoreductase (3-acetamidopropanal-forming) activity
## 3793 tRNA (guanine(37)-N(1))-methyltransferase activity
## 3794 23S rRNA (adenine(1618)-N(6))-methyltransferase activity
## 3795 18S rRNA (adenine(1779)-N(6)/adenine(1780)-N(6))-dimethyltransferase activity
## 3796 dol-P-Man:Man(7)GlcNAc(2)-PP-Dol alpha-1,6-mannosyltransferase activity
## 3797 dol-P-Man:Man(8)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase activity
## 3798 dol-P-Man:Man(5)GlcNAc(2)-PP-Dol alpha-1,3-mannosyltransferase activity
## 3799 dol-P-Man:Man(6)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase activity
## 3800 CTP:tRNA cytidylyltransferase activity
## 3801 CTP:3'-cytidine-tRNA cytidylyltransferase activity
## 3802 ATP:3'-cytidine-cytidine-tRNA adenylyltransferase activity
## 3803 gap junction hemi-channel activity
## 3804 adiponectin binding
## 3805 lipase inhibitor activity
## 3806 ligase regulator activity
## 3807 minus-end directed microfilament motor activity
## 3808 plus-end directed microfilament motor activity
## 3809 large conductance calcium-activated potassium channel activity
## 3810 brain-derived neurotrophic factor-activated receptor activity
## 3811 phosphatidylcholine-sterol O-acyltransferase activator activity
## 3812 lipoprotein lipase activator activity
## 3813 peptidyl-dipeptidase inhibitor activity
## 3814 endoribonuclease inhibitor activity
## 3815 endopeptidase activator activity
## 3816 cyclic-GMP-AMP synthase activity
## 3817 cyclic-GMP-AMP binding
## 3818 glucose 6-phosphate:inorganic phosphate antiporter activity
## 3819 glycogen synthase activity, transferring glucose-1-phosphate
## 3820 molybdopterin adenylyltransferase activity
## 3821 molybdopterin molybdotransferase activity
## 3822 molybdopterin-synthase sulfurtransferase activity
## 3823 molybdopterin-synthase adenylyltransferase activity
## 3824 fructose-1-phosphate aldolase activity
## 3825 S-methylmethionine-homocysteine S-methyltransferase activity
## 3826 H3K27me3 modified histone binding
## 3827 RNA polymerase II sequence-specific DNA binding transcription factor binding
## 3828 ubiquitinated histone binding
## 3829 SUMO conjugating enzyme activity
## 3830 NEDD8 ligase activity
## 3831 SUMO ligase activity
## 3832 diphthine methylesterase activity
## 3833 lipoamidase activity
## 3834 protein-glutaryllysine deglutarylase activity
## 3835 N(6)-L-threonylcarbamoyladenine synthase
## 3836 tRNA (N(6)-L-threonylcarbamoyladenosine(37)-C(2))-methylthiotransferase
## 3837 folic acid receptor activity
## 3838 forked DNA-dependent helicase activity
## 3839 acid sphingomyelin phosphodiesterase activity
## 3840 telomeric repeat-containing RNA binding
## 3841 magnesium:sodium antiporter activity
## 3842 ribosylnicotinate kinase activity
## 3843 translation elongation factor binding
## 3844 peptidoglycan muralytic activity
## 3845 GTP 3',8'-cyclase activity
## 3846 cyclic pyranopterin monophosphate synthase activity
## 3847 NAD+ nucleotidase, cyclic ADP-ribose generating
## 3848 ADP-ribosyl cyclase activity
## 3849 cyclic ADP-ribose hydrolase
## 3850 telomeric D-loop binding
## 3851 glutamic-type peptidase activity
## 3852 metalloaminopeptidase activity
## 3853 serine-type exopeptidase activity
## 3854 serine-type aminopeptidase activity
## 3855 oligopeptidase activity
## 3856 armadillo repeat domain binding
## 3857 carbon monoxide binding
## 3858 nitric oxide binding
## 3859 rRNA (pseudouridine) methyltransferase activity
## 3860 fibrinogen binding
## 3861 collagen V binding
## 3862 thrombospondin receptor activity
## 3863 fructose binding
## 3864 proline-rich region binding
## 3865 titin Z domain binding
## 3866 fructose-6-phosphate binding
## 3867 delta-catenin binding
## 3868 ciliary neurotrophic factor binding
## 3869 transforming growth factor beta receptor activity, type III
## 3870 SUMO-specific endopeptidase activity
## 3871 SUMO-specific isopeptidase activity
## 3872 large ribosomal subunit rRNA binding
## 3873 DNA polymerase binding
## 3874 methionine-R-sulfoxide reductase activity
## 3875 sulfide:quinone oxidoreductase activity
## 3876 pristanate-CoA ligase activity
## 3877 tyrosyl-DNA phosphodiesterase activity
## 3878 5'-tyrosyl-DNA phosphodiesterase activity
## 3879 phosphatidylinositol-4-phosphate binding
## 3880 pyridoxal binding
## 3881 ferritin receptor activity
## 3882 N-acylphosphatidylethanolamine-specific phospholipase D activity
## 3883 phosphatidic acid binding
## 3884 inward rectifier potassium channel inhibitor activity
## 3885 thyroid hormone binding
## 3886 very-low-density lipoprotein particle receptor binding
## 3887 aromatase activity
## 3888 aspartate binding
## 3889 flap-structured DNA binding
## 3890 3'-flap-structured DNA binding
## 3891 mitochondrial light strand promoter anti-sense binding
## 3892 mitochondrial heavy strand promoter anti-sense binding
## 3893 mitochondrial light strand promoter sense binding
## 3894 NADP+ binding
## 3895 NADPH binding
## 3896 NAD+ binding
## 3897 NADH binding
## 3898 ammonium ion binding
## 3899 co-SMAD binding
## 3900 I-SMAD binding
## 3901 tubulin-dependent ATPase activity
## 3902 oligosaccharide binding
## 3903 high-density lipoprotein particle receptor activity
## 3904 death domain binding
## 3905 11-beta-hydroxysteroid dehydrogenase (NADP+) activity
## 3906 oleic acid binding
## 3907 linoleic acid binding
## 3908 L-phenylalanine aminotransferase activity
## 3909 L-glutamine aminotransferase activity
## 3910 endoribonuclease activity, cleaving siRNA-paired mRNA
## 3911 nicotinic acid receptor activity
## 3912 adenylyltransferase activity
## 3913 cytidylyltransferase activity
## 3914 guanylyltransferase activity
## 3915 metallodipeptidase activity
## 3916 vitamin D 24-hydroxylase activity
## 3917 lysine-acetylated histone binding
## 3918 methylcytosine dioxygenase activity
## 3919 histone methyltransferase activity (H3-R2 specific)
## 3920 histone methyltransferase activity (H2A-R3 specific)
## 3921 nucleosome-dependent ATPase activity
## 3922 (S)-2-(5-amino-1-(5-phospho-D-ribosyl)imidazole-4-carboxamido)succinate AMP-lyase (fumarate-forming) activity
## 3923 vitamin D response element binding
## 3924 high-density lipoprotein particle receptor binding
## 3925 inositol 1,4,5 trisphosphate binding
## 3926 deoxyribonucleoside 5'-monophosphate N-glycosidase activity
## 3927 transmembrane receptor protein serine/threonine kinase binding
## 3928 activin receptor binding
## 3929 type I activin receptor binding
## 3930 type II activin receptor binding
## 3931 BMP receptor binding
## 3932 leucine binding
## 3933 protein adenylyltransferase activity
## 3934 protein-glycine ligase activity
## 3935 protein-glycine ligase activity, initiating
## 3936 protein-glutamic acid ligase activity
## 3937 tubulin-glutamic acid ligase activity
## 3938 C2H2 zinc finger domain binding
## 3939 protein-N-terminal glutamine amidohydrolase activity
## 3940 phytoceramidase activity
## 3941 dihydrosphingosine-1-phosphate phosphatase activity
## 3942 peptidyl-lysine 5-dioxygenase activity
## 3943 dynein complex binding
## 3944 myosin VI binding
## 3945 myosin VI light chain binding
## 3946 primary miRNA binding
## 3947 pre-miRNA binding
## 3948 E-box binding
## 3949 sodium-dependent L-ascorbate transmembrane transporter activity
## 3950 lipoteichoic acid binding
## 3951 lipoteichoic acid receptor activity
## 3952 serine binding
## 3953 lysophosphatidic acid receptor activity
## 3954 POU domain binding
## 3955 FHA domain binding
## 3956 TIR domain binding
## 3957 SET domain binding
## 3958 snRNP binding
## 3959 medium-chain-acyl-CoA dehydrogenase activity
## 3960 type 1 melanocortin receptor binding
## 3961 eukaryotic initiation factor eIF2 binding
## 3962 RNA trimethylguanosine synthase activity
## 3963 histone pre-mRNA stem-loop binding
## 3964 rRNA (cytosine-N4-)-methyltransferase activity
## 3965 ankyrin repeat binding
## 3966 RING-like zinc finger domain binding
## 3967 histone demethylase activity (H3-K27 specific)
## 3968 UFM1 activating enzyme activity
## 3969 UFM1 hydrolase activity
## 3970 linoleic acid epoxygenase activity
## 3971 dihydroceramidase activity
## 3972 lipopeptide binding
## 3973 chemokine (C-C motif) ligand 5 binding
## 3974 K11-linked polyubiquitin binding
## 3975 K6-linked polyubiquitin binding
## 3976 lipoprotein particle binding
## 3977 N-box binding
## 3978 neuropeptide receptor binding
## 3979 N-terminal protein N-methyltransferase activity
## 3980 1-(4-iodo-2,5-dimethoxyphenyl)propan-2-amine binding
## 3981 Arp2/3 complex binding
## 3982 coreceptor activity involved in Wnt signaling pathway
## 3983 WD40-repeat domain binding
## 3984 volume-sensitive chloride channel activity
## 3985 modified amino acid transmembrane transporter activity
## 3986 histone kinase activity (H3-T3 specific)
## 3987 Rho-dependent protein serine/threonine kinase activity
## 3988 L-DOPA binding
## 3989 tyrosine binding
## 3990 17-beta-ketosteroid reductase activity
## 3991 ADP-D-ribose binding
## 3992 poly-ADP-D-ribose binding
## 3993 17-beta-hydroxysteroid dehydrogenase (NADP+) activity
## 3994 DNA topoisomerase (ATP-hydrolyzing) activator activity
## 3995 N-acetyl-L-aspartate-L-glutamate ligase activity
## 3996 citrate-L-glutamate ligase activity
## 3997 fatty-acyl-CoA reductase (alcohol-forming) activity
## 3998 3R-hydroxyacyl-CoA dehydratase activity
## 3999 phosphatidylinositol-3,5-bisphosphate binding
## 4000 GDP-D-glucose phosphorylase activity
## 4001 phosphatidyl-N-dimethylethanolamine N-methyltransferase activity
## 4002 AMP transmembrane transporter activity
## 4003 L-phenylalanine:2-oxoglutarate aminotransferase activity
## 4004 fatty acid alpha-hydroxylase activity
## 4005 voltage-gated sodium channel activity involved in cardiac muscle cell action potential
## 4006 voltage-gated calcium channel activity involved in cardiac muscle cell action potential
## 4007 voltage-gated potassium channel activity involved in cardiac muscle cell action potential repolarization
## 4008 gap junction channel activity involved in SA node cell-atrial cardiac muscle cell electrical coupling
## 4009 sodium:potassium-exchanging ATPase activity involved in regulation of cardiac muscle cell membrane potential
## 4010 calcium:sodium antiporter activity involved in regulation of cardiac muscle cell membrane potential
## 4011 calcium-transporting ATPase activity involved in regulation of cardiac muscle cell membrane potential
## 4012 voltage-gated potassium channel activity involved in SA node cell action potential depolarization
## 4013 voltage-gated calcium channel activity involved in AV node cell action potential
## 4014 voltage-gated calcium channel activity involved in bundle of His cell action potential
## 4015 voltage-gated calcium channel activity involved SA node cell action potential
## 4016 voltage-gated sodium channel activity involved in AV node cell action potential
## 4017 voltage-gated sodium channel activity involved in bundle of His cell action potential
## 4018 voltage-gated sodium channel activity involved in Purkinje myocyte action potential
## 4019 voltage-gated sodium channel activity involved in SA node cell action potential
## 4020 gap junction channel activity involved in cardiac conduction electrical coupling
## 4021 gap junction channel activity involved in atrial cardiac muscle cell-AV node cell electrical coupling
## 4022 gap junction channel activity involved in AV node cell-bundle of His cell electrical coupling
## 4023 gap junction channel activity involved in bundle of His cell-Purkinje myocyte electrical coupling
## 4024 gap junction channel activity involved in Purkinje myocyte-ventricular cardiac muscle cell electrical coupling
## 4025 protein binding involved in heterotypic cell-cell adhesion
## 4026 cell adhesive protein binding involved in AV node cell-bundle of His cell communication
## 4027 cell adhesive protein binding involved in bundle of His cell-Purkinje myocyte communication
## 4028 voltage-gated potassium channel activity involved in bundle of His cell action potential repolarization
## 4029 voltage-gated potassium channel activity involved in atrial cardiac muscle cell action potential repolarization
## 4030 voltage-gated potassium channel activity involved in SA node cell action potential repolarization
## 4031 caspase binding
## 4032 translation regulator activity, nucleic acid binding
## 4033 malonyl-CoA synthetase activity
## 4034 nicotinate transporter activity
## 4035 thiamine pyrophosphate transporter activity
## 4036 vitamin transmembrane transporter activity
## 4037 drug transporter activity
## 4038 MIT domain binding
## 4039 phosphatidylcholine-translocating ATPase activity
## 4040 phosphatidylethanolamine-translocating ATPase activity
## 4041 phosphatidylserine-translocating ATPase activity
## 4042 alpha-glucosidase activity
## 4043 endoribonuclease activity, cleaving miRNA-paired mRNA
## 4044 pre-miRNA transporter activity
## 4045 receptor-receptor interaction
## 4046 ceramide binding
## 4047 adipokinetic hormone receptor activity
## 4048 L27 domain binding
## 4049 COPII adaptor activity
## 4050 ubiquitin-protein transferase activator activity
## 4051 supercoiled DNA binding
## 4052 neuroligin family protein binding
## 4053 pre-mRNA intronic binding
## 4054 pre-mRNA intronic pyrimidine-rich binding
## 4055 polychlorinated biphenyl binding
## 4056 DH domain binding
## 4057 MADS box domain binding
## 4058 mitochondrial ribosome binding
## 4059 cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## 4060 20-hydroxy-leukotriene B4 omega oxidase activity
## 4061 20-aldehyde-leukotriene B4 20-monooxygenase activity
## 4062 eoxin A4 synthase activity
## 4063 7SK snRNA binding
## 4064 protein O-GlcNAc transferase activity
## 4065 MDM2/MDM4 family protein binding
## 4066 NAD-dependent histone deacetylase activity (H3-K18 specific)
## 4067 dIDP diphosphatase activity
## 4068 cyclin-dependent protein kinase activity
## 4069 structural molecule activity conferring elasticity
## 4070 glutathione oxidoreductase activity
## 4071 cullin family protein binding
## 4072 temperature-gated ion channel activity
## 4073 temperature-gated cation channel activity
## 4074 monoamine oxidase activity
## 4075 low-affinity L-arginine transmembrane transporter activity
## 4076 high-affinity L-ornithine transmembrane transporter activity
## 4077 calcitonin family receptor activity
## 4078 amylin receptor activity
## 4079 serpin family protein binding
## 4080 STAT family protein binding
## 4081 iron channel activity
## 4082 disordered domain specific binding
## 4083 LEM domain binding
## 4084 polynucleotide phosphatase activity
## 4085 nucleotide phosphatase activity, acting on free nucleotides
## 4086 selenomethionine adenosyltransferase activity
## 4087 selenocysteine-tRNA ligase activity
## 4088 phosphoseryl-selenocysteinyl-tRNA selenium transferase activity
## 4089 methylselenol reductase activity
## 4090 methylseleninic acid reductase activity
## 4091 collagen fibril binding
## 4092 protein binding involved in cell-matrix adhesion
## 4093 collagen binding involved in cell-matrix adhesion
## 4094 integrin binding involved in cell-matrix adhesion
## 4095 FBXO family protein binding
## 4096 mechanically-gated potassium channel activity
## 4097 mRNA cap binding
## 4098 postsynaptic neurotransmitter receptor activity
## 4099 structural constituent of postsynaptic actin cytoskeleton
## 4100 ceramide-translocating ATPase activity
## 4101 ligand-gated anion channel activity
## 4102 potassium channel activator activity
## 4103 G-protein coupled receptor activity involved in regulation of postsynaptic membrane potential
## 4104 ion antiporter activity involved in regulation of postsynaptic membrane potential
## 4105 neurotransmitter receptor activity involved in regulation of postsynaptic cytosolic calcium ion concentration
## 4106 serotonin receptor activity
## 4107 microtubule lateral binding
## 4108 protein histidine phosphatase activity
## 4109 estrogen 16-alpha-hydroxylase activity
## 4110 2-octaprenyl-6-methoxy-1,4-benzoquinone methylase activity
## 4111 acyl-L-homoserine-lactone lactonohydrolase activity
## 4112 cytosolic dipeptidase activity
## 4113 proline dipeptidase activity
## 4114 3-oxo-pimeloyl-[acp] methyl ester reductase activity
## 4115 lecithin:11-cis retinol acyltransferase activity
## 4116 1,8-cineole 2-exo-monooxygenase activity
## 4117 3-oxo-arachidoyl-CoA synthase activity
## 4118 3-oxo-cerotoyl-CoA synthase activity
## 4119 3-oxo-lignoceronyl-CoA synthase activity
## 4120 3-oxo-arachidoyl-CoA reductase activity
## 4121 3-oxo-behenoyl-CoA reductase activity
## 4122 3-oxo-lignoceroyl-CoA reductase activity
## 4123 3-oxo-cerotoyl-CoA reductase activity
## 4124 3-hydroxy-behenoyl-CoA dehydratase activity
## 4125 3-hydroxy-lignoceroyl-CoA dehydratase activity
## 4126 mycophenolic acid acyl-glucuronide esterase activity
## 4127 decanoate--CoA ligase activity
## 4128 scopolin beta-glucosidase activity
## 4129 8-oxo-dGTP phosphohydrolase activity
## 4130 tRNA 4-demethylwyosine alpha-amino-alpha-carboxypropyltransferase activity
## 4131 GDP-Man:Man2GlcNAc2-PP-dolichol alpha-1,6-mannosyltransferase activity
## 4132 1-ethyladenine demethylase activity
## 4133 wax ester synthase activity
## 4134 catecholamine binding
## 4135 azole transmembrane transporter activity
## 4136 phosphatidylglycerol binding
## 4137 cardiolipin binding
## 4138 XTP binding
## 4139 ITP binding
## 4140 phosphate transmembrane transporter activity
## 4141 sulfur compound transmembrane transporter activity
## 4142 calcitriol binding
## 4143 calcidiol binding
## 4144 lithocholic acid binding
## 4145 chenodeoxycholic acid binding
## 4146 D3 vitamins binding
## 4147 voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## 4148 chemoattractant activity involved in axon guidance
## 4149 ceramide 1-phosphate binding
## 4150 ceramide 1-phosphate transporter activity
## 4151 riboflavin binding
## 4152 estradiol binding
## 4153 platinum binding
## 4154 xenon atom binding
## 4155 S-adenosyl-L-methionine binding
## 4156 phosphatidylethanolamine transporter activity
## 4157 ubiquitin protein ligase activity involved in ERAD pathway
## 4158 BAT3 complex binding
## 4159 transmitter-gated ion channel activity involved in regulation of postsynaptic membrane potential
## 4160 heparan sulfate binding
## 4161 melatonin binding
## 4162 ubiquitin-specific protease activity involved in positive regulation of ERAD pathway
## 4163 Ac-Asp-Glu binding
## 4164 tetrahydrofolyl-poly(glutamate) polymer binding
## 4165 advanced glycation end-product binding
## 4166 peptide transmembrane transporter activity
## 4167 beta-catenin destruction complex binding
## 4168 all-trans-retinol binding
## 4169 proteasome core complex binding
## 4170 coreceptor activity involved in canonical Wnt signaling pathway
## 4171 coreceptor activity involved in Wnt signaling pathway, planar cell polarity pathway
## 4172 retromer complex binding
## 4173 ganglioside GM1 binding
## 4174 ganglioside GM2 binding
## 4175 ganglioside GM3 binding
## 4176 ganglioside GT1b binding
## 4177 ganglioside GP1c binding
## 4178 resveratrol binding
## 4179 8-hydroxy-2'-deoxyguanosine DNA binding
## 4180 IDP phosphatase activity
## 4181 phosphatidic acid transporter activity
## 4182 trimethylamine receptor activity
## 4183 linoleate 9S-lipoxygenase activity
## 4184 phosphodiesterase decapping endonuclease activity
## 4185 EH domain binding
## 4186 euchromatin binding
## 4187 peptide-serine-N-acetyltransferase activity
## 4188 peptide-glutamate-N-acetyltransferase activity
## 4189 histone methyltransferase binding
## 4190 histone kinase activity (H2A-T120 specific)
## 4191 N6-methyladenosine-containing RNA binding
## 4192 keratin filament binding
## 4193 histone-glutamine methyltransferase activity
## 4194 RNA polymerase II C-terminal domain phosphoserine binding
## 4195 anti-Mullerian hormone receptor activity
## 4196 preribosome binding
## 4197 protein antigen binding
## 4198 extracellular matrix protein binding
## 4199 MAP kinase threonine phosphatase activity
## 4200 F-box domain binding
## 4201 U1 snRNP binding
## 4202 linear polyubiquitin binding
## 4203 leptin receptor binding
## 4204 mast cell secretagogue receptor activity
## 4205 3' overhang single-stranded DNA endodeoxyribonuclease activity
## 4206 palmitoleoyltransferase activity
## 4207 palmitoleyl hydrolase activity
## 4208 mRNA CDS binding
## 4209 pseudouridine 5'-phosphatase activity
## 4210 protein binding, bridging involved in substrate recognition for ubiquitination
## 4211 arrestin family protein binding
## 4212 C-rich single-stranded DNA binding
## 4213 rRNA cytidine N-acetyltransferase activity
## 4214 H4K20me3 modified histone binding
## 4215 RNA N1-methyladenosine dioxygenase activity
## 4216 RNA N6-methyladenosine dioxygenase activity
## 4217 5.8S rRNA binding
## 4218 G-rich single-stranded DNA binding
## 4219 tRNA demethylase activity
## 4220 mannan binding
## 4221 glycogen binding
## 4222 starch binding
## Hyper_Total_Regions Hyper_Expected Hyper_Foreground_Region_Hits
## 1 33 7.1701190 15
## 2 33 7.1701190 15
## 3 8 1.7382110 6
## 4 6 1.3036580 5
## 5 47 10.2119900 19
## 6 34 7.3873950 15
## 7 34 7.3873950 15
## 8 25 5.4319080 12
## 9 15 3.2591450 8
## 10 355 77.1331000 95
## 11 3 0.6518290 3
## 12 3 0.6518290 3
## 13 3 0.6518290 3
## 14 3 0.6518290 3
## 15 3 0.6518290 3
## 16 3 0.6518290 3
## 17 3 0.6518290 3
## 18 13 2.8245920 7
## 19 13 2.8245920 7
## 20 26 5.6491850 11
## 21 30 6.5182900 12
## 22 14 3.0418690 7
## 23 14 3.0418690 7
## 24 14 3.0418690 7
## 25 6 1.3036580 4
## 26 6 1.3036580 4
## 27 9 1.9554870 5
## 28 15 3.2591450 7
## 29 15 3.2591450 7
## 30 15 3.2591450 7
## 31 25 5.4319080 10
## 32 25 5.4319080 10
## 33 4 0.8691053 3
## 34 4 0.8691053 3
## 35 4 0.8691053 3
## 36 4 0.8691053 3
## 37 4 0.8691053 3
## 38 4 0.8691053 3
## 39 4 0.8691053 3
## 40 4 0.8691053 3
## 41 40 8.6910530 14
## 42 16 3.4764210 7
## 43 13 2.8245920 6
## 44 13 2.8245920 6
## 45 7 1.5209340 4
## 46 10 2.1727630 5
## 47 10 2.1727630 5
## 48 2 0.4345527 2
## 49 2 0.4345527 2
## 50 2 0.4345527 2
## 51 2 0.4345527 2
## 52 2 0.4345527 2
## 53 2 0.4345527 2
## 54 2 0.4345527 2
## 55 2 0.4345527 2
## 56 2 0.4345527 2
## 57 2 0.4345527 2
## 58 2 0.4345527 2
## 59 2 0.4345527 2
## 60 2 0.4345527 2
## 61 2 0.4345527 2
## 62 2 0.4345527 2
## 63 2 0.4345527 2
## 64 2 0.4345527 2
## 65 2 0.4345527 2
## 66 2 0.4345527 2
## 67 2 0.4345527 2
## 68 2 0.4345527 2
## 69 2 0.4345527 2
## 70 2 0.4345527 2
## 71 2 0.4345527 2
## 72 27 5.8664610 10
## 73 794 172.5174000 188
## 74 14 3.0418690 6
## 75 21 4.5628030 8
## 76 11 2.3900400 5
## 77 59 12.8193000 18
## 78 5 1.0863820 3
## 79 5 1.0863820 3
## 80 5 1.0863820 3
## 81 5 1.0863820 3
## 82 5 1.0863820 3
## 83 5 1.0863820 3
## 84 5 1.0863820 3
## 85 5 1.0863820 3
## 86 5 1.0863820 3
## 87 5 1.0863820 3
## 88 5 1.0863820 3
## 89 5 1.0863820 3
## 90 5 1.0863820 3
## 91 8 1.7382110 4
## 92 8 1.7382110 4
## 93 8 1.7382110 4
## 94 18 3.9109740 7
## 95 33 7.1701190 11
## 96 41 8.9083300 13
## 97 45 9.7774350 14
## 98 19 4.1282500 7
## 99 12 2.6073160 5
## 100 12 2.6073160 5
## 101 12 2.6073160 5
## 102 12 2.6073160 5
## 103 50 10.8638200 15
## 104 9 1.9554870 4
## 105 9 1.9554870 4
## 106 9 1.9554870 4
## 107 9 1.9554870 4
## 108 9 1.9554870 4
## 109 9 1.9554870 4
## 110 6 1.3036580 3
## 111 6 1.3036580 3
## 112 6 1.3036580 3
## 113 3 0.6518290 2
## 114 3 0.6518290 2
## 115 3 0.6518290 2
## 116 3 0.6518290 2
## 117 3 0.6518290 2
## 118 3 0.6518290 2
## 119 3 0.6518290 2
## 120 3 0.6518290 2
## 121 3 0.6518290 2
## 122 3 0.6518290 2
## 123 3 0.6518290 2
## 124 3 0.6518290 2
## 125 3 0.6518290 2
## 126 3 0.6518290 2
## 127 3 0.6518290 2
## 128 3 0.6518290 2
## 129 3 0.6518290 2
## 130 3 0.6518290 2
## 131 3 0.6518290 2
## 132 3 0.6518290 2
## 133 3 0.6518290 2
## 134 3 0.6518290 2
## 135 3 0.6518290 2
## 136 3 0.6518290 2
## 137 3 0.6518290 2
## 138 3 0.6518290 2
## 139 3 0.6518290 2
## 140 3 0.6518290 2
## 141 3 0.6518290 2
## 142 3 0.6518290 2
## 143 3 0.6518290 2
## 144 3 0.6518290 2
## 145 3 0.6518290 2
## 146 3 0.6518290 2
## 147 3 0.6518290 2
## 148 3 0.6518290 2
## 149 84 18.2512100 23
## 150 84 18.2512100 23
## 151 32 6.9528430 10
## 152 40 8.6910530 12
## 153 40 8.6910530 12
## 154 17 3.6936980 6
## 155 17 3.6936980 6
## 156 17 3.6936980 6
## 157 21 4.5628030 7
## 158 10 2.1727630 4
## 159 10 2.1727630 4
## 160 10 2.1727630 4
## 161 10 2.1727630 4
## 162 137 29.7668600 35
## 163 25 5.4319080 8
## 164 29 6.3010140 9
## 165 1091 237.0485000 247
## 166 252 54.7536400 61
## 167 113 24.5522300 29
## 168 18 3.9109740 6
## 169 7 1.5209340 3
## 170 7 1.5209340 3
## 171 7 1.5209340 3
## 172 7 1.5209340 3
## 173 7 1.5209340 3
## 174 22 4.7800790 7
## 175 22 4.7800790 7
## 176 1103 239.6558000 249
## 177 34 7.3873950 10
## 178 131 28.4632000 33
## 179 11 2.3900400 4
## 180 11 2.3900400 4
## 181 11 2.3900400 4
## 182 4 0.8691053 2
## 183 4 0.8691053 2
## 184 4 0.8691053 2
## 185 4 0.8691053 2
## 186 4 0.8691053 2
## 187 4 0.8691053 2
## 188 4 0.8691053 2
## 189 4 0.8691053 2
## 190 4 0.8691053 2
## 191 4 0.8691053 2
## 192 4 0.8691053 2
## 193 4 0.8691053 2
## 194 4 0.8691053 2
## 195 4 0.8691053 2
## 196 4 0.8691053 2
## 197 4 0.8691053 2
## 198 4 0.8691053 2
## 199 4 0.8691053 2
## 200 4 0.8691053 2
## 201 4 0.8691053 2
## 202 4 0.8691053 2
## 203 4 0.8691053 2
## 204 4 0.8691053 2
## 205 4 0.8691053 2
## 206 4 0.8691053 2
## 207 229 49.7562800 55
## 208 15 3.2591450 5
## 209 31 6.7355660 9
## 210 19 4.1282500 6
## 211 23 4.9973560 7
## 212 1 0.2172763 1
## 213 1 0.2172763 1
## 214 1 0.2172763 1
## 215 1 0.2172763 1
## 216 1 0.2172763 1
## 217 1 0.2172763 1
## 218 1 0.2172763 1
## 219 1 0.2172763 1
## 220 1 0.2172763 1
## 221 1 0.2172763 1
## 222 1 0.2172763 1
## 223 1 0.2172763 1
## 224 1 0.2172763 1
## 225 1 0.2172763 1
## 226 1 0.2172763 1
## 227 1 0.2172763 1
## 228 1 0.2172763 1
## 229 1 0.2172763 1
## 230 1 0.2172763 1
## 231 1 0.2172763 1
## 232 1 0.2172763 1
## 233 1 0.2172763 1
## 234 1 0.2172763 1
## 235 1 0.2172763 1
## 236 1 0.2172763 1
## 237 1 0.2172763 1
## 238 1 0.2172763 1
## 239 1 0.2172763 1
## 240 1 0.2172763 1
## 241 1 0.2172763 1
## 242 1 0.2172763 1
## 243 1 0.2172763 1
## 244 1 0.2172763 1
## 245 1 0.2172763 1
## 246 1 0.2172763 1
## 247 1 0.2172763 1
## 248 1 0.2172763 1
## 249 1 0.2172763 1
## 250 1 0.2172763 1
## 251 1 0.2172763 1
## 252 1 0.2172763 1
## 253 1 0.2172763 1
## 254 1 0.2172763 1
## 255 1 0.2172763 1
## 256 1 0.2172763 1
## 257 1 0.2172763 1
## 258 1 0.2172763 1
## 259 1 0.2172763 1
## 260 1 0.2172763 1
## 261 1 0.2172763 1
## 262 1 0.2172763 1
## 263 1 0.2172763 1
## 264 1 0.2172763 1
## 265 1 0.2172763 1
## 266 1 0.2172763 1
## 267 44 9.5601590 12
## 268 8 1.7382110 3
## 269 8 1.7382110 3
## 270 8 1.7382110 3
## 271 8 1.7382110 3
## 272 8 1.7382110 3
## 273 8 1.7382110 3
## 274 83 18.0339400 21
## 275 28 6.0837370 8
## 276 12 2.6073160 4
## 277 12 2.6073160 4
## 278 12 2.6073160 4
## 279 12 2.6073160 4
## 280 12 2.6073160 4
## 281 45 9.7774350 12
## 282 172 37.3715300 41
## 283 42 9.1256060 11
## 284 21 4.5628030 6
## 285 5 1.0863820 2
## 286 5 1.0863820 2
## 287 5 1.0863820 2
## 288 5 1.0863820 2
## 289 5 1.0863820 2
## 290 5 1.0863820 2
## 291 5 1.0863820 2
## 292 5 1.0863820 2
## 293 5 1.0863820 2
## 294 5 1.0863820 2
## 295 5 1.0863820 2
## 296 5 1.0863820 2
## 297 5 1.0863820 2
## 298 5 1.0863820 2
## 299 5 1.0863820 2
## 300 5 1.0863820 2
## 301 5 1.0863820 2
## 302 17 3.6936980 5
## 303 13 2.8245920 4
## 304 13 2.8245920 4
## 305 13 2.8245920 4
## 306 13 2.8245920 4
## 307 9 1.9554870 3
## 308 9 1.9554870 3
## 309 9 1.9554870 3
## 310 9 1.9554870 3
## 311 9 1.9554870 3
## 312 69 14.9920700 17
## 313 65 14.1229600 16
## 314 39 8.4737770 10
## 315 150 32.5914500 35
## 316 186 40.4134000 43
## 317 204 44.3243700 47
## 318 18 3.9109740 5
## 319 18 3.9109740 5
## 320 18 3.9109740 5
## 321 14 3.0418690 4
## 322 14 3.0418690 4
## 323 14 3.0418690 4
## 324 10 2.1727630 3
## 325 10 2.1727630 3
## 326 10 2.1727630 3
## 327 10 2.1727630 3
## 328 10 2.1727630 3
## 329 10 2.1727630 3
## 330 10 2.1727630 3
## 331 10 2.1727630 3
## 332 10 2.1727630 3
## 333 116 25.2040500 27
## 334 23 4.9973560 6
## 335 45 9.7774350 11
## 336 6 1.3036580 2
## 337 6 1.3036580 2
## 338 6 1.3036580 2
## 339 6 1.3036580 2
## 340 6 1.3036580 2
## 341 6 1.3036580 2
## 342 6 1.3036580 2
## 343 6 1.3036580 2
## 344 6 1.3036580 2
## 345 6 1.3036580 2
## 346 6 1.3036580 2
## 347 6 1.3036580 2
## 348 2 0.4345527 1
## 349 2 0.4345527 1
## 350 2 0.4345527 1
## 351 2 0.4345527 1
## 352 2 0.4345527 1
## 353 2 0.4345527 1
## 354 2 0.4345527 1
## 355 2 0.4345527 1
## 356 2 0.4345527 1
## 357 2 0.4345527 1
## 358 2 0.4345527 1
## 359 2 0.4345527 1
## 360 2 0.4345527 1
## 361 2 0.4345527 1
## 362 2 0.4345527 1
## 363 2 0.4345527 1
## 364 2 0.4345527 1
## 365 2 0.4345527 1
## 366 2 0.4345527 1
## 367 2 0.4345527 1
## 368 2 0.4345527 1
## 369 2 0.4345527 1
## 370 2 0.4345527 1
## 371 2 0.4345527 1
## 372 2 0.4345527 1
## 373 2 0.4345527 1
## 374 2 0.4345527 1
## 375 2 0.4345527 1
## 376 2 0.4345527 1
## 377 2 0.4345527 1
## 378 2 0.4345527 1
## 379 2 0.4345527 1
## 380 2 0.4345527 1
## 381 2 0.4345527 1
## 382 2 0.4345527 1
## 383 2 0.4345527 1
## 384 2 0.4345527 1
## 385 2 0.4345527 1
## 386 19 4.1282500 5
## 387 19 4.1282500 5
## 388 50 10.8638200 12
## 389 50 10.8638200 12
## 390 431 93.6461000 96
## 391 59 12.8193000 14
## 392 95 20.6412500 22
## 393 15 3.2591450 4
## 394 15 3.2591450 4
## 395 73 15.8611700 17
## 396 78 16.9475500 18
## 397 11 2.3900400 3
## 398 115 24.9867800 26
## 399 115 24.9867800 26
## 400 115 24.9867800 26
## 401 56 12.1674700 13
## 402 20 4.3455270 5
## 403 29 6.3010140 7
## 404 29 6.3010140 7
## 405 88 19.1203200 20
## 406 120 26.0731600 27
## 407 111 24.1176700 25
## 408 52 11.2983700 12
## 409 34 7.3873950 8
## 410 66 14.3402400 15
## 411 7 1.5209340 2
## 412 7 1.5209340 2
## 413 7 1.5209340 2
## 414 7 1.5209340 2
## 415 7 1.5209340 2
## 416 7 1.5209340 2
## 417 7 1.5209340 2
## 418 7 1.5209340 2
## 419 7 1.5209340 2
## 420 7 1.5209340 2
## 421 217 47.1489600 48
## 422 16 3.4764210 4
## 423 16 3.4764210 4
## 424 16 3.4764210 4
## 425 553 120.1538000 121
## 426 39 8.4737770 9
## 427 30 6.5182900 7
## 428 21 4.5628030 5
## 429 12 2.6073160 3
## 430 12 2.6073160 3
## 431 12 2.6073160 3
## 432 12 2.6073160 3
## 433 12 2.6073160 3
## 434 12 2.6073160 3
## 435 3 0.6518290 1
## 436 3 0.6518290 1
## 437 3 0.6518290 1
## 438 3 0.6518290 1
## 439 3 0.6518290 1
## 440 3 0.6518290 1
## 441 3 0.6518290 1
## 442 3 0.6518290 1
## 443 3 0.6518290 1
## 444 3 0.6518290 1
## 445 3 0.6518290 1
## 446 3 0.6518290 1
## 447 3 0.6518290 1
## 448 3 0.6518290 1
## 449 3 0.6518290 1
## 450 3 0.6518290 1
## 451 3 0.6518290 1
## 452 3 0.6518290 1
## 453 3 0.6518290 1
## 454 3 0.6518290 1
## 455 3 0.6518290 1
## 456 3 0.6518290 1
## 457 3 0.6518290 1
## 458 3 0.6518290 1
## 459 3 0.6518290 1
## 460 3 0.6518290 1
## 461 3 0.6518290 1
## 462 3 0.6518290 1
## 463 3 0.6518290 1
## 464 3 0.6518290 1
## 465 3 0.6518290 1
## 466 3 0.6518290 1
## 467 3 0.6518290 1
## 468 3 0.6518290 1
## 469 3 0.6518290 1
## 470 3 0.6518290 1
## 471 3 0.6518290 1
## 472 3 0.6518290 1
## 473 3 0.6518290 1
## 474 3 0.6518290 1
## 475 3 0.6518290 1
## 476 3 0.6518290 1
## 477 3 0.6518290 1
## 478 3 0.6518290 1
## 479 3 0.6518290 1
## 480 3 0.6518290 1
## 481 17 3.6936980 4
## 482 17 3.6936980 4
## 483 17 3.6936980 4
## 484 8 1.7382110 2
## 485 8 1.7382110 2
## 486 8 1.7382110 2
## 487 8 1.7382110 2
## 488 8 1.7382110 2
## 489 8 1.7382110 2
## 490 8 1.7382110 2
## 491 8 1.7382110 2
## 492 8 1.7382110 2
## 493 27 5.8664610 6
## 494 27 5.8664610 6
## 495 60 13.0365800 13
## 496 13 2.8245920 3
## 497 13 2.8245920 3
## 498 13 2.8245920 3
## 499 13 2.8245920 3
## 500 13 2.8245920 3
## 501 13 2.8245920 3
## 502 13 2.8245920 3
## 503 13 2.8245920 3
## 504 13 2.8245920 3
## 505 32 6.9528430 7
## 506 32 6.9528430 7
## 507 32 6.9528430 7
## 508 65 14.1229600 14
## 509 37 8.0392240 8
## 510 18 3.9109740 4
## 511 18 3.9109740 4
## 512 18 3.9109740 4
## 513 18 3.9109740 4
## 514 18 3.9109740 4
## 515 23 4.9973560 5
## 516 108 23.4658400 23
## 517 28 6.0837370 6
## 518 28 6.0837370 6
## 519 38 8.2565010 8
## 520 2080 451.9348000 451
## 521 9 1.9554870 2
## 522 9 1.9554870 2
## 523 9 1.9554870 2
## 524 9 1.9554870 2
## 525 9 1.9554870 2
## 526 9 1.9554870 2
## 527 9 1.9554870 2
## 528 9 1.9554870 2
## 529 9 1.9554870 2
## 530 14 3.0418690 3
## 531 14 3.0418690 3
## 532 14 3.0418690 3
## 533 48 10.4292600 10
## 534 105 22.8140100 22
## 535 19 4.1282500 4
## 536 185 40.1961200 39
## 537 185 40.1961200 39
## 538 24 5.2146320 5
## 539 24 5.2146320 5
## 540 4 0.8691053 1
## 541 4 0.8691053 1
## 542 4 0.8691053 1
## 543 4 0.8691053 1
## 544 4 0.8691053 1
## 545 4 0.8691053 1
## 546 4 0.8691053 1
## 547 4 0.8691053 1
## 548 4 0.8691053 1
## 549 4 0.8691053 1
## 550 4 0.8691053 1
## 551 4 0.8691053 1
## 552 4 0.8691053 1
## 553 4 0.8691053 1
## 554 4 0.8691053 1
## 555 4 0.8691053 1
## 556 4 0.8691053 1
## 557 4 0.8691053 1
## 558 4 0.8691053 1
## 559 4 0.8691053 1
## 560 4 0.8691053 1
## 561 4 0.8691053 1
## 562 4 0.8691053 1
## 563 4 0.8691053 1
## 564 4 0.8691053 1
## 565 4 0.8691053 1
## 566 4 0.8691053 1
## 567 4 0.8691053 1
## 568 4 0.8691053 1
## 569 4 0.8691053 1
## 570 4 0.8691053 1
## 571 4 0.8691053 1
## 572 4 0.8691053 1
## 573 4 0.8691053 1
## 574 4 0.8691053 1
## 575 4 0.8691053 1
## 576 4 0.8691053 1
## 577 4 0.8691053 1
## 578 4 0.8691053 1
## 579 4 0.8691053 1
## 580 4 0.8691053 1
## 581 4 0.8691053 1
## 582 29 6.3010140 6
## 583 29 6.3010140 6
## 584 58 12.6020300 12
## 585 58 12.6020300 12
## 586 34 7.3873950 7
## 587 34 7.3873950 7
## 588 34 7.3873950 7
## 589 34 7.3873950 7
## 590 34 7.3873950 7
## 591 34 7.3873950 7
## 592 350 76.0467200 74
## 593 64 13.9056900 13
## 594 20 4.3455270 4
## 595 30 6.5182900 6
## 596 30 6.5182900 6
## 597 15 3.2591450 3
## 598 50 10.8638200 10
## 599 10 2.1727630 2
## 600 10 2.1727630 2
## 601 10 2.1727630 2
## 602 94 20.4239800 19
## 603 279 60.6201000 58
## 604 185 40.1961200 38
## 605 185 40.1961200 38
## 606 31 6.7355660 6
## 607 346 75.1776100 72
## 608 46 9.9947110 9
## 609 26 5.6491850 5
## 610 26 5.6491850 5
## 611 26 5.6491850 5
## 612 26 5.6491850 5
## 613 21 4.5628030 4
## 614 21 4.5628030 4
## 615 21 4.5628030 4
## 616 21 4.5628030 4
## 617 21 4.5628030 4
## 618 21 4.5628030 4
## 619 5 1.0863820 1
## 620 5 1.0863820 1
## 621 5 1.0863820 1
## 622 5 1.0863820 1
## 623 5 1.0863820 1
## 624 5 1.0863820 1
## 625 5 1.0863820 1
## 626 5 1.0863820 1
## 627 5 1.0863820 1
## 628 5 1.0863820 1
## 629 5 1.0863820 1
## 630 5 1.0863820 1
## 631 5 1.0863820 1
## 632 5 1.0863820 1
## 633 5 1.0863820 1
## 634 5 1.0863820 1
## 635 5 1.0863820 1
## 636 5 1.0863820 1
## 637 5 1.0863820 1
## 638 5 1.0863820 1
## 639 5 1.0863820 1
## 640 5 1.0863820 1
## 641 5 1.0863820 1
## 642 5 1.0863820 1
## 643 5 1.0863820 1
## 644 5 1.0863820 1
## 645 5 1.0863820 1
## 646 16 3.4764210 3
## 647 16 3.4764210 3
## 648 16 3.4764210 3
## 649 16 3.4764210 3
## 650 16 3.4764210 3
## 651 173 37.5888100 35
## 652 52 11.2983700 10
## 653 32 6.9528430 6
## 654 11 2.3900400 2
## 655 11 2.3900400 2
## 656 11 2.3900400 2
## 657 11 2.3900400 2
## 658 11 2.3900400 2
## 659 11 2.3900400 2
## 660 11 2.3900400 2
## 661 11 2.3900400 2
## 662 245 53.2327000 50
## 663 27 5.8664610 5
## 664 27 5.8664610 5
## 665 82 17.8166600 16
## 666 82 17.8166600 16
## 667 198 43.0207100 40
## 668 126 27.3768200 25
## 669 241 52.3636000 49
## 670 241 52.3636000 49
## 671 22 4.7800790 4
## 672 350 76.0467200 72
## 673 350 76.0467200 72
## 674 48 10.4292600 9
## 675 48 10.4292600 9
## 676 290 63.0101400 59
## 677 93 20.2067000 18
## 678 33 7.1701190 6
## 679 33 7.1701190 6
## 680 28 6.0837370 5
## 681 386 83.8686600 79
## 682 386 83.8686600 79
## 683 386 83.8686600 79
## 684 386 83.8686600 79
## 685 386 83.8686600 79
## 686 64 13.9056900 12
## 687 239 51.9290400 48
## 688 84 18.2512100 16
## 689 49 10.6465400 9
## 690 49 10.6465400 9
## 691 49 10.6465400 9
## 692 23 4.9973560 4
## 693 23 4.9973560 4
## 694 23 4.9973560 4
## 695 23 4.9973560 4
## 696 6 1.3036580 1
## 697 6 1.3036580 1
## 698 6 1.3036580 1
## 699 6 1.3036580 1
## 700 6 1.3036580 1
## 701 6 1.3036580 1
## 702 6 1.3036580 1
## 703 6 1.3036580 1
## 704 6 1.3036580 1
## 705 6 1.3036580 1
## 706 6 1.3036580 1
## 707 6 1.3036580 1
## 708 6 1.3036580 1
## 709 6 1.3036580 1
## 710 6 1.3036580 1
## 711 6 1.3036580 1
## 712 6 1.3036580 1
## 713 6 1.3036580 1
## 714 6 1.3036580 1
## 715 6 1.3036580 1
## 716 6 1.3036580 1
## 717 6 1.3036580 1
## 718 6 1.3036580 1
## 719 12 2.6073160 2
## 720 12 2.6073160 2
## 721 12 2.6073160 2
## 722 12 2.6073160 2
## 723 12 2.6073160 2
## 724 44 9.5601590 8
## 725 44 9.5601590 8
## 726 390 84.7377700 79
## 727 390 84.7377700 79
## 728 390 84.7377700 79
## 729 24 5.2146320 4
## 730 13 2.8245920 2
## 731 13 2.8245920 2
## 732 13 2.8245920 2
## 733 13 2.8245920 2
## 734 13 2.8245920 2
## 735 13 2.8245920 2
## 736 13 2.8245920 2
## 737 30 6.5182900 5
## 738 30 6.5182900 5
## 739 19 4.1282500 3
## 740 7 1.5209340 1
## 741 7 1.5209340 1
## 742 7 1.5209340 1
## 743 7 1.5209340 1
## 744 7 1.5209340 1
## 745 7 1.5209340 1
## 746 7 1.5209340 1
## 747 7 1.5209340 1
## 748 7 1.5209340 1
## 749 7 1.5209340 1
## 750 7 1.5209340 1
## 751 7 1.5209340 1
## 752 7 1.5209340 1
## 753 7 1.5209340 1
## 754 201 43.6725400 39
## 755 436 94.7324800 88
## 756 436 94.7324800 88
## 757 25 5.4319080 4
## 758 36 7.8219480 6
## 759 94 20.4239800 17
## 760 14 3.0418690 2
## 761 14 3.0418690 2
## 762 14 3.0418690 2
## 763 20 4.3455270 3
## 764 1033 224.4465000 215
## 765 425 92.3424400 85
## 766 37 8.0392240 6
## 767 26 5.6491850 4
## 768 26 5.6491850 4
## 769 26 5.6491850 4
## 770 8 1.7382110 1
## 771 8 1.7382110 1
## 772 8 1.7382110 1
## 773 8 1.7382110 1
## 774 8 1.7382110 1
## 775 8 1.7382110 1
## 776 8 1.7382110 1
## 777 8 1.7382110 1
## 778 8 1.7382110 1
## 779 8 1.7382110 1
## 780 8 1.7382110 1
## 781 8 1.7382110 1
## 782 8 1.7382110 1
## 783 8 1.7382110 1
## 784 141 30.6359600 26
## 785 196 42.5861600 37
## 786 91 19.7721500 16
## 787 27 5.8664610 4
## 788 167 36.2851500 31
## 789 1860 404.1340000 396
## 790 44 9.5601590 7
## 791 44 9.5601590 7
## 792 1011 219.6664000 209
## 793 76 16.5130000 13
## 794 92 19.9894200 16
## 795 39 8.4737770 6
## 796 531 115.3737000 106
## 797 22 4.7800790 3
## 798 28 6.0837370 4
## 799 28 6.0837370 4
## 800 28 6.0837370 4
## 801 144 31.2877900 26
## 802 144 31.2877900 26
## 803 144 31.2877900 26
## 804 9 1.9554870 1
## 805 9 1.9554870 1
## 806 9 1.9554870 1
## 807 9 1.9554870 1
## 808 9 1.9554870 1
## 809 9 1.9554870 1
## 810 9 1.9554870 1
## 811 9 1.9554870 1
## 812 9 1.9554870 1
## 813 9 1.9554870 1
## 814 9 1.9554870 1
## 815 9 1.9554870 1
## 816 9 1.9554870 1
## 817 9 1.9554870 1
## 818 9 1.9554870 1
## 819 9 1.9554870 1
## 820 9 1.9554870 1
## 821 9 1.9554870 1
## 822 9 1.9554870 1
## 823 9 1.9554870 1
## 824 124 26.9422700 22
## 825 727 157.9599000 147
## 826 155 33.6778300 28
## 827 29 6.3010140 4
## 828 23 4.9973560 3
## 829 23 4.9973560 3
## 830 58 12.6020300 9
## 831 17 3.6936980 2
## 832 17 3.6936980 2
## 833 10 2.1727630 1
## 834 10 2.1727630 1
## 835 10 2.1727630 1
## 836 10 2.1727630 1
## 837 248 53.8845300 46
## 838 91 19.7721500 15
## 839 30 6.5182900 4
## 840 30 6.5182900 4
## 841 30 6.5182900 4
## 842 733 159.2636000 147
## 843 36 7.8219480 5
## 844 48 10.4292600 7
## 845 416 90.3869500 80
## 846 54 11.7329200 8
## 847 484 105.1617000 94
## 848 18 3.9109740 2
## 849 18 3.9109740 2
## 850 145 31.5050700 25
## 851 43 9.3428820 6
## 852 11 2.3900400 1
## 853 11 2.3900400 1
## 854 11 2.3900400 1
## 855 11 2.3900400 1
## 856 11 2.3900400 1
## 857 11 2.3900400 1
## 858 11 2.3900400 1
## 859 11 2.3900400 1
## 860 25 5.4319080 3
## 861 55 11.9502000 8
## 862 50 10.8638200 7
## 863 50 10.8638200 7
## 864 26 5.6491850 3
## 865 26 5.6491850 3
## 866 84 18.2512100 13
## 867 106 23.0312900 17
## 868 12 2.6073160 1
## 869 12 2.6073160 1
## 870 12 2.6073160 1
## 871 12 2.6073160 1
## 872 12 2.6073160 1
## 873 12 2.6073160 1
## 874 39 8.4737770 5
## 875 476 103.4235000 91
## 876 33 7.1701190 4
## 877 33 7.1701190 4
## 878 27 5.8664610 3
## 879 27 5.8664610 3
## 880 27 5.8664610 3
## 881 298 64.7483500 54
## 882 64 13.9056900 9
## 883 13 2.8245920 1
## 884 13 2.8245920 1
## 885 13 2.8245920 1
## 886 13 2.8245920 1
## 887 13 2.8245920 1
## 888 13 2.8245920 1
## 889 13 2.8245920 1
## 890 13 2.8245920 1
## 891 13 2.8245920 1
## 892 13 2.8245920 1
## 893 109 23.6831200 17
## 894 21 4.5628030 2
## 895 225 48.8871700 39
## 896 14 3.0418690 1
## 897 14 3.0418690 1
## 898 14 3.0418690 1
## 899 36 7.8219480 4
## 900 197 42.8034400 33
## 901 23 4.9973560 2
## 902 23 4.9973560 2
## 903 23 4.9973560 2
## 904 15 3.2591450 1
## 905 15 3.2591450 1
## 906 15 3.2591450 1
## 907 15 3.2591450 1
## 908 15 3.2591450 1
## 909 24 5.2146320 2
## 910 16 3.4764210 1
## 911 64 13.9056900 8
## 912 64 13.9056900 8
## 913 25 5.4319080 2
## 914 25 5.4319080 2
## 915 203 44.1071000 33
## 916 100 21.7276300 14
## 917 100 21.7276300 14
## 918 17 3.6936980 1
## 919 17 3.6936980 1
## 920 107 23.2485700 15
## 921 153 33.2432800 23
## 922 159 34.5469400 24
## 923 27 5.8664610 2
## 924 19 4.1282500 1
## 925 75 16.2957200 9
## 926 36 7.8219480 3
## 927 44 9.5601590 4
## 928 83 18.0339400 10
## 929 65 14.1229600 7
## 930 131 28.4632000 18
## 931 30 6.5182900 2
## 932 22 4.7800790 1
## 933 74 16.0784500 8
## 934 23 4.9973560 1
## 935 23 4.9973560 1
## 936 69 14.9920700 7
## 937 226 49.1044500 34
## 938 34 7.3873950 2
## 939 58 12.6020300 5
## 940 72 15.6439000 7
## 941 241 52.3636000 36
## 942 51 11.0810900 4
## 943 263 57.1436800 40
## 944 176 38.2406300 24
## 945 74 16.0784500 7
## 946 288 62.5755800 44
## 947 27 5.8664610 1
## 948 179 38.8924600 24
## 949 185 40.1961200 25
## 950 51 11.0810900 3
## 951 189 41.0652300 24
## 952 60 13.0365800 4
## 953 34 7.3873950 1
## 954 250 54.3190800 33
## 955 246 53.4499800 32
## 956 40 8.6910530 1
## 957 239 51.9290400 30
## 958 78 16.9475500 5
## 959 67 14.5575100 3
## 960 0 0.0000000 0
## 961 0 0.0000000 0
## 962 0 0.0000000 0
## 963 0 0.0000000 0
## 964 9 1.9554870 0
## 965 0 0.0000000 0
## 966 0 0.0000000 0
## 967 0 0.0000000 0
## 968 0 0.0000000 0
## 969 0 0.0000000 0
## 970 0 0.0000000 0
## 971 0 0.0000000 0
## 972 0 0.0000000 0
## 973 0 0.0000000 0
## 974 0 0.0000000 0
## 975 3 0.6518290 0
## 976 0 0.0000000 0
## 977 0 0.0000000 0
## 978 1 0.2172763 0
## 979 0 0.0000000 0
## 980 1 0.2172763 0
## 981 0 0.0000000 0
## 982 0 0.0000000 0
## 983 0 0.0000000 0
## 984 0 0.0000000 0
## 985 0 0.0000000 0
## 986 0 0.0000000 0
## 987 0 0.0000000 0
## 988 0 0.0000000 0
## 989 2 0.4345527 0
## 990 0 0.0000000 0
## 991 1 0.2172763 0
## 992 0 0.0000000 0
## 993 0 0.0000000 0
## 994 0 0.0000000 0
## 995 2 0.4345527 0
## 996 0 0.0000000 0
## 997 2 0.4345527 0
## 998 0 0.0000000 0
## 999 3 0.6518290 0
## 1000 0 0.0000000 0
## 1001 0 0.0000000 0
## 1002 0 0.0000000 0
## 1003 0 0.0000000 0
## 1004 0 0.0000000 0
## 1005 0 0.0000000 0
## 1006 0 0.0000000 0
## 1007 0 0.0000000 0
## 1008 0 0.0000000 0
## 1009 0 0.0000000 0
## 1010 0 0.0000000 0
## 1011 0 0.0000000 0
## 1012 5 1.0863820 0
## 1013 0 0.0000000 0
## 1014 0 0.0000000 0
## 1015 0 0.0000000 0
## 1016 0 0.0000000 0
## 1017 0 0.0000000 0
## 1018 0 0.0000000 0
## 1019 0 0.0000000 0
## 1020 0 0.0000000 0
## 1021 0 0.0000000 0
## 1022 0 0.0000000 0
## 1023 0 0.0000000 0
## 1024 0 0.0000000 0
## 1025 0 0.0000000 0
## 1026 0 0.0000000 0
## 1027 0 0.0000000 0
## 1028 0 0.0000000 0
## 1029 0 0.0000000 0
## 1030 0 0.0000000 0
## 1031 0 0.0000000 0
## 1032 1 0.2172763 0
## 1033 1 0.2172763 0
## 1034 0 0.0000000 0
## 1035 1 0.2172763 0
## 1036 1 0.2172763 0
## 1037 1 0.2172763 0
## 1038 0 0.0000000 0
## 1039 0 0.0000000 0
## 1040 0 0.0000000 0
## 1041 0 0.0000000 0
## 1042 1 0.2172763 0
## 1043 0 0.0000000 0
## 1044 0 0.0000000 0
## 1045 0 0.0000000 0
## 1046 0 0.0000000 0
## 1047 1 0.2172763 0
## 1048 0 0.0000000 0
## 1049 5 1.0863820 0
## 1050 17 3.6936980 0
## 1051 0 0.0000000 0
## 1052 0 0.0000000 0
## 1053 0 0.0000000 0
## 1054 0 0.0000000 0
## 1055 0 0.0000000 0
## 1056 0 0.0000000 0
## 1057 1 0.2172763 0
## 1058 10 2.1727630 0
## 1059 10 2.1727630 0
## 1060 0 0.0000000 0
## 1061 0 0.0000000 0
## 1062 0 0.0000000 0
## 1063 0 0.0000000 0
## 1064 0 0.0000000 0
## 1065 0 0.0000000 0
## 1066 3 0.6518290 0
## 1067 0 0.0000000 0
## 1068 0 0.0000000 0
## 1069 0 0.0000000 0
## 1070 0 0.0000000 0
## 1071 0 0.0000000 0
## 1072 0 0.0000000 0
## 1073 2 0.4345527 0
## 1074 0 0.0000000 0
## 1075 0 0.0000000 0
## 1076 0 0.0000000 0
## 1077 0 0.0000000 0
## 1078 4 0.8691053 0
## 1079 0 0.0000000 0
## 1080 0 0.0000000 0
## 1081 0 0.0000000 0
## 1082 0 0.0000000 0
## 1083 0 0.0000000 0
## 1084 0 0.0000000 0
## 1085 0 0.0000000 0
## 1086 0 0.0000000 0
## 1087 2 0.4345527 0
## 1088 1 0.2172763 0
## 1089 0 0.0000000 0
## 1090 0 0.0000000 0
## 1091 0 0.0000000 0
## 1092 0 0.0000000 0
## 1093 0 0.0000000 0
## 1094 0 0.0000000 0
## 1095 5 1.0863820 0
## 1096 0 0.0000000 0
## 1097 0 0.0000000 0
## 1098 50 10.8638200 0
## 1099 0 0.0000000 0
## 1100 0 0.0000000 0
## 1101 0 0.0000000 0
## 1102 2 0.4345527 0
## 1103 0 0.0000000 0
## 1104 0 0.0000000 0
## 1105 0 0.0000000 0
## 1106 0 0.0000000 0
## 1107 0 0.0000000 0
## 1108 0 0.0000000 0
## 1109 0 0.0000000 0
## 1110 5 1.0863820 0
## 1111 0 0.0000000 0
## 1112 2 0.4345527 0
## 1113 4 0.8691053 0
## 1114 4 0.8691053 0
## 1115 0 0.0000000 0
## 1116 0 0.0000000 0
## 1117 4 0.8691053 0
## 1118 4 0.8691053 0
## 1119 0 0.0000000 0
## 1120 4 0.8691053 0
## 1121 0 0.0000000 0
## 1122 1 0.2172763 0
## 1123 0 0.0000000 0
## 1124 5 1.0863820 0
## 1125 7 1.5209340 0
## 1126 0 0.0000000 0
## 1127 1 0.2172763 0
## 1128 0 0.0000000 0
## 1129 0 0.0000000 0
## 1130 0 0.0000000 0
## 1131 0 0.0000000 0
## 1132 0 0.0000000 0
## 1133 0 0.0000000 0
## 1134 0 0.0000000 0
## 1135 0 0.0000000 0
## 1136 0 0.0000000 0
## 1137 0 0.0000000 0
## 1138 0 0.0000000 0
## 1139 2 0.4345527 0
## 1140 0 0.0000000 0
## 1141 4 0.8691053 0
## 1142 0 0.0000000 0
## 1143 0 0.0000000 0
## 1144 0 0.0000000 0
## 1145 0 0.0000000 0
## 1146 1 0.2172763 0
## 1147 0 0.0000000 0
## 1148 1 0.2172763 0
## 1149 8 1.7382110 0
## 1150 1 0.2172763 0
## 1151 0 0.0000000 0
## 1152 0 0.0000000 0
## 1153 1 0.2172763 0
## 1154 0 0.0000000 0
## 1155 0 0.0000000 0
## 1156 1 0.2172763 0
## 1157 0 0.0000000 0
## 1158 0 0.0000000 0
## 1159 0 0.0000000 0
## 1160 0 0.0000000 0
## 1161 0 0.0000000 0
## 1162 0 0.0000000 0
## 1163 0 0.0000000 0
## 1164 2 0.4345527 0
## 1165 0 0.0000000 0
## 1166 0 0.0000000 0
## 1167 0 0.0000000 0
## 1168 0 0.0000000 0
## 1169 1 0.2172763 0
## 1170 0 0.0000000 0
## 1171 1 0.2172763 0
## 1172 0 0.0000000 0
## 1173 2 0.4345527 0
## 1174 0 0.0000000 0
## 1175 0 0.0000000 0
## 1176 0 0.0000000 0
## 1177 0 0.0000000 0
## 1178 0 0.0000000 0
## 1179 0 0.0000000 0
## 1180 0 0.0000000 0
## 1181 0 0.0000000 0
## 1182 0 0.0000000 0
## 1183 0 0.0000000 0
## 1184 0 0.0000000 0
## 1185 0 0.0000000 0
## 1186 0 0.0000000 0
## 1187 2 0.4345527 0
## 1188 0 0.0000000 0
## 1189 0 0.0000000 0
## 1190 0 0.0000000 0
## 1191 0 0.0000000 0
## 1192 0 0.0000000 0
## 1193 0 0.0000000 0
## 1194 0 0.0000000 0
## 1195 0 0.0000000 0
## 1196 0 0.0000000 0
## 1197 0 0.0000000 0
## 1198 0 0.0000000 0
## 1199 0 0.0000000 0
## 1200 1 0.2172763 0
## 1201 0 0.0000000 0
## 1202 0 0.0000000 0
## 1203 0 0.0000000 0
## 1204 1 0.2172763 0
## 1205 0 0.0000000 0
## 1206 0 0.0000000 0
## 1207 0 0.0000000 0
## 1208 0 0.0000000 0
## 1209 0 0.0000000 0
## 1210 0 0.0000000 0
## 1211 0 0.0000000 0
## 1212 0 0.0000000 0
## 1213 2 0.4345527 0
## 1214 0 0.0000000 0
## 1215 0 0.0000000 0
## 1216 0 0.0000000 0
## 1217 0 0.0000000 0
## 1218 0 0.0000000 0
## 1219 0 0.0000000 0
## 1220 0 0.0000000 0
## 1221 0 0.0000000 0
## 1222 0 0.0000000 0
## 1223 1 0.2172763 0
## 1224 0 0.0000000 0
## 1225 0 0.0000000 0
## 1226 2 0.4345527 0
## 1227 0 0.0000000 0
## 1228 0 0.0000000 0
## 1229 2 0.4345527 0
## 1230 0 0.0000000 0
## 1231 0 0.0000000 0
## 1232 0 0.0000000 0
## 1233 0 0.0000000 0
## 1234 0 0.0000000 0
## 1235 0 0.0000000 0
## 1236 0 0.0000000 0
## 1237 0 0.0000000 0
## 1238 0 0.0000000 0
## 1239 2 0.4345527 0
## 1240 0 0.0000000 0
## 1241 2 0.4345527 0
## 1242 0 0.0000000 0
## 1243 0 0.0000000 0
## 1244 0 0.0000000 0
## 1245 0 0.0000000 0
## 1246 1 0.2172763 0
## 1247 0 0.0000000 0
## 1248 0 0.0000000 0
## 1249 0 0.0000000 0
## 1250 0 0.0000000 0
## 1251 0 0.0000000 0
## 1252 0 0.0000000 0
## 1253 0 0.0000000 0
## 1254 0 0.0000000 0
## 1255 0 0.0000000 0
## 1256 0 0.0000000 0
## 1257 0 0.0000000 0
## 1258 1 0.2172763 0
## 1259 0 0.0000000 0
## 1260 0 0.0000000 0
## 1261 0 0.0000000 0
## 1262 0 0.0000000 0
## 1263 0 0.0000000 0
## 1264 0 0.0000000 0
## 1265 0 0.0000000 0
## 1266 0 0.0000000 0
## 1267 0 0.0000000 0
## 1268 0 0.0000000 0
## 1269 0 0.0000000 0
## 1270 0 0.0000000 0
## 1271 0 0.0000000 0
## 1272 0 0.0000000 0
## 1273 0 0.0000000 0
## 1274 0 0.0000000 0
## 1275 0 0.0000000 0
## 1276 0 0.0000000 0
## 1277 0 0.0000000 0
## 1278 0 0.0000000 0
## 1279 0 0.0000000 0
## 1280 0 0.0000000 0
## 1281 0 0.0000000 0
## 1282 0 0.0000000 0
## 1283 0 0.0000000 0
## 1284 0 0.0000000 0
## 1285 0 0.0000000 0
## 1286 0 0.0000000 0
## 1287 0 0.0000000 0
## 1288 0 0.0000000 0
## 1289 0 0.0000000 0
## 1290 0 0.0000000 0
## 1291 0 0.0000000 0
## 1292 0 0.0000000 0
## 1293 0 0.0000000 0
## 1294 0 0.0000000 0
## 1295 0 0.0000000 0
## 1296 0 0.0000000 0
## 1297 0 0.0000000 0
## 1298 0 0.0000000 0
## 1299 1 0.2172763 0
## 1300 0 0.0000000 0
## 1301 0 0.0000000 0
## 1302 1 0.2172763 0
## 1303 0 0.0000000 0
## 1304 0 0.0000000 0
## 1305 0 0.0000000 0
## 1306 0 0.0000000 0
## 1307 0 0.0000000 0
## 1308 0 0.0000000 0
## 1309 0 0.0000000 0
## 1310 0 0.0000000 0
## 1311 0 0.0000000 0
## 1312 4 0.8691053 0
## 1313 0 0.0000000 0
## 1314 4 0.8691053 0
## 1315 4 0.8691053 0
## 1316 0 0.0000000 0
## 1317 0 0.0000000 0
## 1318 0 0.0000000 0
## 1319 0 0.0000000 0
## 1320 0 0.0000000 0
## 1321 1 0.2172763 0
## 1322 0 0.0000000 0
## 1323 0 0.0000000 0
## 1324 0 0.0000000 0
## 1325 2 0.4345527 0
## 1326 2 0.4345527 0
## 1327 0 0.0000000 0
## 1328 0 0.0000000 0
## 1329 0 0.0000000 0
## 1330 0 0.0000000 0
## 1331 0 0.0000000 0
## 1332 0 0.0000000 0
## 1333 0 0.0000000 0
## 1334 0 0.0000000 0
## 1335 0 0.0000000 0
## 1336 0 0.0000000 0
## 1337 0 0.0000000 0
## 1338 0 0.0000000 0
## 1339 0 0.0000000 0
## 1340 0 0.0000000 0
## 1341 0 0.0000000 0
## 1342 0 0.0000000 0
## 1343 2 0.4345527 0
## 1344 0 0.0000000 0
## 1345 0 0.0000000 0
## 1346 0 0.0000000 0
## 1347 0 0.0000000 0
## 1348 0 0.0000000 0
## 1349 0 0.0000000 0
## 1350 0 0.0000000 0
## 1351 0 0.0000000 0
## 1352 2 0.4345527 0
## 1353 0 0.0000000 0
## 1354 0 0.0000000 0
## 1355 3 0.6518290 0
## 1356 0 0.0000000 0
## 1357 2 0.4345527 0
## 1358 0 0.0000000 0
## 1359 0 0.0000000 0
## 1360 0 0.0000000 0
## 1361 0 0.0000000 0
## 1362 0 0.0000000 0
## 1363 0 0.0000000 0
## 1364 2 0.4345527 0
## 1365 1 0.2172763 0
## 1366 0 0.0000000 0
## 1367 0 0.0000000 0
## 1368 0 0.0000000 0
## 1369 0 0.0000000 0
## 1370 0 0.0000000 0
## 1371 0 0.0000000 0
## 1372 0 0.0000000 0
## 1373 0 0.0000000 0
## 1374 0 0.0000000 0
## 1375 0 0.0000000 0
## 1376 0 0.0000000 0
## 1377 0 0.0000000 0
## 1378 0 0.0000000 0
## 1379 0 0.0000000 0
## 1380 0 0.0000000 0
## 1381 0 0.0000000 0
## 1382 0 0.0000000 0
## 1383 0 0.0000000 0
## 1384 0 0.0000000 0
## 1385 0 0.0000000 0
## 1386 0 0.0000000 0
## 1387 0 0.0000000 0
## 1388 1 0.2172763 0
## 1389 0 0.0000000 0
## 1390 0 0.0000000 0
## 1391 4 0.8691053 0
## 1392 0 0.0000000 0
## 1393 0 0.0000000 0
## 1394 0 0.0000000 0
## 1395 0 0.0000000 0
## 1396 1 0.2172763 0
## 1397 0 0.0000000 0
## 1398 0 0.0000000 0
## 1399 0 0.0000000 0
## 1400 0 0.0000000 0
## 1401 0 0.0000000 0
## 1402 4 0.8691053 0
## 1403 0 0.0000000 0
## 1404 0 0.0000000 0
## 1405 0 0.0000000 0
## 1406 0 0.0000000 0
## 1407 0 0.0000000 0
## 1408 0 0.0000000 0
## 1409 0 0.0000000 0
## 1410 0 0.0000000 0
## 1411 0 0.0000000 0
## 1412 8 1.7382110 0
## 1413 0 0.0000000 0
## 1414 0 0.0000000 0
## 1415 0 0.0000000 0
## 1416 0 0.0000000 0
## 1417 0 0.0000000 0
## 1418 0 0.0000000 0
## 1419 0 0.0000000 0
## 1420 3 0.6518290 0
## 1421 0 0.0000000 0
## 1422 2 0.4345527 0
## 1423 0 0.0000000 0
## 1424 0 0.0000000 0
## 1425 0 0.0000000 0
## 1426 10 2.1727630 0
## 1427 0 0.0000000 0
## 1428 0 0.0000000 0
## 1429 0 0.0000000 0
## 1430 0 0.0000000 0
## 1431 0 0.0000000 0
## 1432 2 0.4345527 0
## 1433 0 0.0000000 0
## 1434 1 0.2172763 0
## 1435 0 0.0000000 0
## 1436 0 0.0000000 0
## 1437 1 0.2172763 0
## 1438 2 0.4345527 0
## 1439 0 0.0000000 0
## 1440 0 0.0000000 0
## 1441 0 0.0000000 0
## 1442 0 0.0000000 0
## 1443 0 0.0000000 0
## 1444 0 0.0000000 0
## 1445 0 0.0000000 0
## 1446 0 0.0000000 0
## 1447 0 0.0000000 0
## 1448 0 0.0000000 0
## 1449 0 0.0000000 0
## 1450 0 0.0000000 0
## 1451 0 0.0000000 0
## 1452 1 0.2172763 0
## 1453 0 0.0000000 0
## 1454 0 0.0000000 0
## 1455 2 0.4345527 0
## 1456 0 0.0000000 0
## 1457 0 0.0000000 0
## 1458 1 0.2172763 0
## 1459 0 0.0000000 0
## 1460 0 0.0000000 0
## 1461 0 0.0000000 0
## 1462 0 0.0000000 0
## 1463 0 0.0000000 0
## 1464 0 0.0000000 0
## 1465 0 0.0000000 0
## 1466 0 0.0000000 0
## 1467 0 0.0000000 0
## 1468 0 0.0000000 0
## 1469 0 0.0000000 0
## 1470 0 0.0000000 0
## 1471 0 0.0000000 0
## 1472 0 0.0000000 0
## 1473 0 0.0000000 0
## 1474 0 0.0000000 0
## 1475 0 0.0000000 0
## 1476 0 0.0000000 0
## 1477 0 0.0000000 0
## 1478 0 0.0000000 0
## 1479 0 0.0000000 0
## 1480 0 0.0000000 0
## 1481 0 0.0000000 0
## 1482 5 1.0863820 0
## 1483 0 0.0000000 0
## 1484 1 0.2172763 0
## 1485 0 0.0000000 0
## 1486 1 0.2172763 0
## 1487 0 0.0000000 0
## 1488 0 0.0000000 0
## 1489 0 0.0000000 0
## 1490 0 0.0000000 0
## 1491 0 0.0000000 0
## 1492 0 0.0000000 0
## 1493 0 0.0000000 0
## 1494 0 0.0000000 0
## 1495 0 0.0000000 0
## 1496 0 0.0000000 0
## 1497 0 0.0000000 0
## 1498 0 0.0000000 0
## 1499 2 0.4345527 0
## 1500 0 0.0000000 0
## 1501 0 0.0000000 0
## 1502 0 0.0000000 0
## 1503 0 0.0000000 0
## 1504 0 0.0000000 0
## 1505 0 0.0000000 0
## 1506 0 0.0000000 0
## 1507 1 0.2172763 0
## 1508 0 0.0000000 0
## 1509 1 0.2172763 0
## 1510 0 0.0000000 0
## 1511 0 0.0000000 0
## 1512 0 0.0000000 0
## 1513 0 0.0000000 0
## 1514 0 0.0000000 0
## 1515 0 0.0000000 0
## 1516 0 0.0000000 0
## 1517 0 0.0000000 0
## 1518 0 0.0000000 0
## 1519 0 0.0000000 0
## 1520 0 0.0000000 0
## 1521 0 0.0000000 0
## 1522 0 0.0000000 0
## 1523 0 0.0000000 0
## 1524 0 0.0000000 0
## 1525 0 0.0000000 0
## 1526 1 0.2172763 0
## 1527 0 0.0000000 0
## 1528 1 0.2172763 0
## 1529 0 0.0000000 0
## 1530 1 0.2172763 0
## 1531 1 0.2172763 0
## 1532 8 1.7382110 0
## 1533 0 0.0000000 0
## 1534 0 0.0000000 0
## 1535 0 0.0000000 0
## 1536 0 0.0000000 0
## 1537 0 0.0000000 0
## 1538 0 0.0000000 0
## 1539 1 0.2172763 0
## 1540 0 0.0000000 0
## 1541 0 0.0000000 0
## 1542 0 0.0000000 0
## 1543 0 0.0000000 0
## 1544 0 0.0000000 0
## 1545 0 0.0000000 0
## 1546 0 0.0000000 0
## 1547 0 0.0000000 0
## 1548 0 0.0000000 0
## 1549 0 0.0000000 0
## 1550 0 0.0000000 0
## 1551 0 0.0000000 0
## 1552 0 0.0000000 0
## 1553 2 0.4345527 0
## 1554 0 0.0000000 0
## 1555 0 0.0000000 0
## 1556 3 0.6518290 0
## 1557 0 0.0000000 0
## 1558 0 0.0000000 0
## 1559 2 0.4345527 0
## 1560 0 0.0000000 0
## 1561 0 0.0000000 0
## 1562 0 0.0000000 0
## 1563 0 0.0000000 0
## 1564 0 0.0000000 0
## 1565 0 0.0000000 0
## 1566 0 0.0000000 0
## 1567 0 0.0000000 0
## 1568 0 0.0000000 0
## 1569 0 0.0000000 0
## 1570 0 0.0000000 0
## 1571 0 0.0000000 0
## 1572 1 0.2172763 0
## 1573 0 0.0000000 0
## 1574 0 0.0000000 0
## 1575 0 0.0000000 0
## 1576 0 0.0000000 0
## 1577 0 0.0000000 0
## 1578 0 0.0000000 0
## 1579 0 0.0000000 0
## 1580 0 0.0000000 0
## 1581 0 0.0000000 0
## 1582 0 0.0000000 0
## 1583 0 0.0000000 0
## 1584 2 0.4345527 0
## 1585 3 0.6518290 0
## 1586 0 0.0000000 0
## 1587 0 0.0000000 0
## 1588 7 1.5209340 0
## 1589 0 0.0000000 0
## 1590 0 0.0000000 0
## 1591 0 0.0000000 0
## 1592 3 0.6518290 0
## 1593 3 0.6518290 0
## 1594 0 0.0000000 0
## 1595 2 0.4345527 0
## 1596 0 0.0000000 0
## 1597 0 0.0000000 0
## 1598 0 0.0000000 0
## 1599 2 0.4345527 0
## 1600 0 0.0000000 0
## 1601 0 0.0000000 0
## 1602 0 0.0000000 0
## 1603 0 0.0000000 0
## 1604 0 0.0000000 0
## 1605 0 0.0000000 0
## 1606 2 0.4345527 0
## 1607 0 0.0000000 0
## 1608 11 2.3900400 0
## 1609 0 0.0000000 0
## 1610 0 0.0000000 0
## 1611 0 0.0000000 0
## 1612 0 0.0000000 0
## 1613 0 0.0000000 0
## 1614 0 0.0000000 0
## 1615 0 0.0000000 0
## 1616 0 0.0000000 0
## 1617 0 0.0000000 0
## 1618 2 0.4345527 0
## 1619 0 0.0000000 0
## 1620 0 0.0000000 0
## 1621 0 0.0000000 0
## 1622 0 0.0000000 0
## 1623 0 0.0000000 0
## 1624 0 0.0000000 0
## 1625 0 0.0000000 0
## 1626 0 0.0000000 0
## 1627 0 0.0000000 0
## 1628 0 0.0000000 0
## 1629 0 0.0000000 0
## 1630 0 0.0000000 0
## 1631 0 0.0000000 0
## 1632 0 0.0000000 0
## 1633 0 0.0000000 0
## 1634 0 0.0000000 0
## 1635 0 0.0000000 0
## 1636 1 0.2172763 0
## 1637 0 0.0000000 0
## 1638 0 0.0000000 0
## 1639 0 0.0000000 0
## 1640 0 0.0000000 0
## 1641 0 0.0000000 0
## 1642 0 0.0000000 0
## 1643 0 0.0000000 0
## 1644 0 0.0000000 0
## 1645 0 0.0000000 0
## 1646 0 0.0000000 0
## 1647 0 0.0000000 0
## 1648 0 0.0000000 0
## 1649 0 0.0000000 0
## 1650 0 0.0000000 0
## 1651 0 0.0000000 0
## 1652 0 0.0000000 0
## 1653 0 0.0000000 0
## 1654 0 0.0000000 0
## 1655 0 0.0000000 0
## 1656 0 0.0000000 0
## 1657 0 0.0000000 0
## 1658 0 0.0000000 0
## 1659 0 0.0000000 0
## 1660 0 0.0000000 0
## 1661 0 0.0000000 0
## 1662 0 0.0000000 0
## 1663 0 0.0000000 0
## 1664 0 0.0000000 0
## 1665 1 0.2172763 0
## 1666 0 0.0000000 0
## 1667 0 0.0000000 0
## 1668 0 0.0000000 0
## 1669 0 0.0000000 0
## 1670 0 0.0000000 0
## 1671 0 0.0000000 0
## 1672 0 0.0000000 0
## 1673 1 0.2172763 0
## 1674 0 0.0000000 0
## 1675 0 0.0000000 0
## 1676 0 0.0000000 0
## 1677 0 0.0000000 0
## 1678 2 0.4345527 0
## 1679 2 0.4345527 0
## 1680 0 0.0000000 0
## 1681 0 0.0000000 0
## 1682 0 0.0000000 0
## 1683 0 0.0000000 0
## 1684 0 0.0000000 0
## 1685 0 0.0000000 0
## 1686 0 0.0000000 0
## 1687 0 0.0000000 0
## 1688 2 0.4345527 0
## 1689 0 0.0000000 0
## 1690 0 0.0000000 0
## 1691 0 0.0000000 0
## 1692 2 0.4345527 0
## 1693 0 0.0000000 0
## 1694 2 0.4345527 0
## 1695 0 0.0000000 0
## 1696 0 0.0000000 0
## 1697 1 0.2172763 0
## 1698 4 0.8691053 0
## 1699 0 0.0000000 0
## 1700 4 0.8691053 0
## 1701 0 0.0000000 0
## 1702 4 0.8691053 0
## 1703 1 0.2172763 0
## 1704 1 0.2172763 0
## 1705 1 0.2172763 0
## 1706 0 0.0000000 0
## 1707 3 0.6518290 0
## 1708 0 0.0000000 0
## 1709 0 0.0000000 0
## 1710 0 0.0000000 0
## 1711 0 0.0000000 0
## 1712 0 0.0000000 0
## 1713 0 0.0000000 0
## 1714 0 0.0000000 0
## 1715 0 0.0000000 0
## 1716 0 0.0000000 0
## 1717 0 0.0000000 0
## 1718 0 0.0000000 0
## 1719 3 0.6518290 0
## 1720 0 0.0000000 0
## 1721 0 0.0000000 0
## 1722 0 0.0000000 0
## 1723 0 0.0000000 0
## 1724 0 0.0000000 0
## 1725 0 0.0000000 0
## 1726 0 0.0000000 0
## 1727 0 0.0000000 0
## 1728 0 0.0000000 0
## 1729 0 0.0000000 0
## 1730 0 0.0000000 0
## 1731 0 0.0000000 0
## 1732 0 0.0000000 0
## 1733 0 0.0000000 0
## 1734 0 0.0000000 0
## 1735 0 0.0000000 0
## 1736 6 1.3036580 0
## 1737 0 0.0000000 0
## 1738 0 0.0000000 0
## 1739 0 0.0000000 0
## 1740 1 0.2172763 0
## 1741 0 0.0000000 0
## 1742 0 0.0000000 0
## 1743 4 0.8691053 0
## 1744 6 1.3036580 0
## 1745 6 1.3036580 0
## 1746 6 1.3036580 0
## 1747 0 0.0000000 0
## 1748 5 1.0863820 0
## 1749 1 0.2172763 0
## 1750 0 0.0000000 0
## 1751 0 0.0000000 0
## 1752 0 0.0000000 0
## 1753 0 0.0000000 0
## 1754 0 0.0000000 0
## 1755 0 0.0000000 0
## 1756 0 0.0000000 0
## 1757 0 0.0000000 0
## 1758 3 0.6518290 0
## 1759 5 1.0863820 0
## 1760 0 0.0000000 0
## 1761 0 0.0000000 0
## 1762 0 0.0000000 0
## 1763 0 0.0000000 0
## 1764 0 0.0000000 0
## 1765 0 0.0000000 0
## 1766 0 0.0000000 0
## 1767 0 0.0000000 0
## 1768 0 0.0000000 0
## 1769 0 0.0000000 0
## 1770 0 0.0000000 0
## 1771 0 0.0000000 0
## 1772 1 0.2172763 0
## 1773 3 0.6518290 0
## 1774 0 0.0000000 0
## 1775 0 0.0000000 0
## 1776 0 0.0000000 0
## 1777 0 0.0000000 0
## 1778 0 0.0000000 0
## 1779 0 0.0000000 0
## 1780 1 0.2172763 0
## 1781 3 0.6518290 0
## 1782 1 0.2172763 0
## 1783 5 1.0863820 0
## 1784 0 0.0000000 0
## 1785 0 0.0000000 0
## 1786 0 0.0000000 0
## 1787 0 0.0000000 0
## 1788 0 0.0000000 0
## 1789 0 0.0000000 0
## 1790 0 0.0000000 0
## 1791 0 0.0000000 0
## 1792 0 0.0000000 0
## 1793 0 0.0000000 0
## 1794 0 0.0000000 0
## 1795 9 1.9554870 0
## 1796 0 0.0000000 0
## 1797 0 0.0000000 0
## 1798 1 0.2172763 0
## 1799 0 0.0000000 0
## 1800 1 0.2172763 0
## 1801 0 0.0000000 0
## 1802 11 2.3900400 0
## 1803 0 0.0000000 0
## 1804 0 0.0000000 0
## 1805 0 0.0000000 0
## 1806 0 0.0000000 0
## 1807 0 0.0000000 0
## 1808 0 0.0000000 0
## 1809 0 0.0000000 0
## 1810 1 0.2172763 0
## 1811 0 0.0000000 0
## 1812 0 0.0000000 0
## 1813 9 1.9554870 0
## 1814 0 0.0000000 0
## 1815 0 0.0000000 0
## 1816 2 0.4345527 0
## 1817 0 0.0000000 0
## 1818 0 0.0000000 0
## 1819 5 1.0863820 0
## 1820 0 0.0000000 0
## 1821 0 0.0000000 0
## 1822 0 0.0000000 0
## 1823 0 0.0000000 0
## 1824 15 3.2591450 0
## 1825 0 0.0000000 0
## 1826 4 0.8691053 0
## 1827 0 0.0000000 0
## 1828 0 0.0000000 0
## 1829 0 0.0000000 0
## 1830 0 0.0000000 0
## 1831 0 0.0000000 0
## 1832 6 1.3036580 0
## 1833 0 0.0000000 0
## 1834 0 0.0000000 0
## 1835 0 0.0000000 0
## 1836 0 0.0000000 0
## 1837 0 0.0000000 0
## 1838 0 0.0000000 0
## 1839 3 0.6518290 0
## 1840 0 0.0000000 0
## 1841 0 0.0000000 0
## 1842 2 0.4345527 0
## 1843 0 0.0000000 0
## 1844 2 0.4345527 0
## 1845 0 0.0000000 0
## 1846 0 0.0000000 0
## 1847 0 0.0000000 0
## 1848 0 0.0000000 0
## 1849 0 0.0000000 0
## 1850 0 0.0000000 0
## 1851 0 0.0000000 0
## 1852 2 0.4345527 0
## 1853 9 1.9554870 0
## 1854 24 5.2146320 0
## 1855 0 0.0000000 0
## 1856 0 0.0000000 0
## 1857 6 1.3036580 0
## 1858 0 0.0000000 0
## 1859 0 0.0000000 0
## 1860 0 0.0000000 0
## 1861 1 0.2172763 0
## 1862 0 0.0000000 0
## 1863 0 0.0000000 0
## 1864 0 0.0000000 0
## 1865 0 0.0000000 0
## 1866 0 0.0000000 0
## 1867 0 0.0000000 0
## 1868 3 0.6518290 0
## 1869 0 0.0000000 0
## 1870 0 0.0000000 0
## 1871 0 0.0000000 0
## 1872 0 0.0000000 0
## 1873 0 0.0000000 0
## 1874 1 0.2172763 0
## 1875 0 0.0000000 0
## 1876 0 0.0000000 0
## 1877 2 0.4345527 0
## 1878 5 1.0863820 0
## 1879 5 1.0863820 0
## 1880 5 1.0863820 0
## 1881 0 0.0000000 0
## 1882 2 0.4345527 0
## 1883 2 0.4345527 0
## 1884 3 0.6518290 0
## 1885 0 0.0000000 0
## 1886 0 0.0000000 0
## 1887 0 0.0000000 0
## 1888 0 0.0000000 0
## 1889 0 0.0000000 0
## 1890 0 0.0000000 0
## 1891 0 0.0000000 0
## 1892 0 0.0000000 0
## 1893 0 0.0000000 0
## 1894 0 0.0000000 0
## 1895 0 0.0000000 0
## 1896 0 0.0000000 0
## 1897 0 0.0000000 0
## 1898 0 0.0000000 0
## 1899 2 0.4345527 0
## 1900 1 0.2172763 0
## 1901 1 0.2172763 0
## 1902 0 0.0000000 0
## 1903 0 0.0000000 0
## 1904 0 0.0000000 0
## 1905 0 0.0000000 0
## 1906 0 0.0000000 0
## 1907 0 0.0000000 0
## 1908 0 0.0000000 0
## 1909 0 0.0000000 0
## 1910 0 0.0000000 0
## 1911 0 0.0000000 0
## 1912 2 0.4345527 0
## 1913 4 0.8691053 0
## 1914 0 0.0000000 0
## 1915 0 0.0000000 0
## 1916 2 0.4345527 0
## 1917 2 0.4345527 0
## 1918 0 0.0000000 0
## 1919 3 0.6518290 0
## 1920 1 0.2172763 0
## 1921 1 0.2172763 0
## 1922 0 0.0000000 0
## 1923 0 0.0000000 0
## 1924 0 0.0000000 0
## 1925 0 0.0000000 0
## 1926 0 0.0000000 0
## 1927 0 0.0000000 0
## 1928 1 0.2172763 0
## 1929 6 1.3036580 0
## 1930 0 0.0000000 0
## 1931 1 0.2172763 0
## 1932 0 0.0000000 0
## 1933 0 0.0000000 0
## 1934 0 0.0000000 0
## 1935 0 0.0000000 0
## 1936 0 0.0000000 0
## 1937 0 0.0000000 0
## 1938 0 0.0000000 0
## 1939 0 0.0000000 0
## 1940 2 0.4345527 0
## 1941 2 0.4345527 0
## 1942 0 0.0000000 0
## 1943 0 0.0000000 0
## 1944 0 0.0000000 0
## 1945 0 0.0000000 0
## 1946 0 0.0000000 0
## 1947 0 0.0000000 0
## 1948 0 0.0000000 0
## 1949 1 0.2172763 0
## 1950 0 0.0000000 0
## 1951 0 0.0000000 0
## 1952 0 0.0000000 0
## 1953 0 0.0000000 0
## 1954 5 1.0863820 0
## 1955 0 0.0000000 0
## 1956 0 0.0000000 0
## 1957 0 0.0000000 0
## 1958 0 0.0000000 0
## 1959 0 0.0000000 0
## 1960 7 1.5209340 0
## 1961 1 0.2172763 0
## 1962 1 0.2172763 0
## 1963 0 0.0000000 0
## 1964 5 1.0863820 0
## 1965 1 0.2172763 0
## 1966 1 0.2172763 0
## 1967 0 0.0000000 0
## 1968 5 1.0863820 0
## 1969 0 0.0000000 0
## 1970 1 0.2172763 0
## 1971 9 1.9554870 0
## 1972 0 0.0000000 0
## 1973 0 0.0000000 0
## 1974 0 0.0000000 0
## 1975 0 0.0000000 0
## 1976 0 0.0000000 0
## 1977 0 0.0000000 0
## 1978 0 0.0000000 0
## 1979 0 0.0000000 0
## 1980 0 0.0000000 0
## 1981 0 0.0000000 0
## 1982 0 0.0000000 0
## 1983 0 0.0000000 0
## 1984 0 0.0000000 0
## 1985 0 0.0000000 0
## 1986 0 0.0000000 0
## 1987 0 0.0000000 0
## 1988 3 0.6518290 0
## 1989 2 0.4345527 0
## 1990 0 0.0000000 0
## 1991 2 0.4345527 0
## 1992 0 0.0000000 0
## 1993 0 0.0000000 0
## 1994 0 0.0000000 0
## 1995 0 0.0000000 0
## 1996 1 0.2172763 0
## 1997 0 0.0000000 0
## 1998 0 0.0000000 0
## 1999 0 0.0000000 0
## 2000 0 0.0000000 0
## 2001 0 0.0000000 0
## 2002 0 0.0000000 0
## 2003 3 0.6518290 0
## 2004 0 0.0000000 0
## 2005 0 0.0000000 0
## 2006 3 0.6518290 0
## 2007 0 0.0000000 0
## 2008 0 0.0000000 0
## 2009 0 0.0000000 0
## 2010 0 0.0000000 0
## 2011 0 0.0000000 0
## 2012 0 0.0000000 0
## 2013 0 0.0000000 0
## 2014 0 0.0000000 0
## 2015 0 0.0000000 0
## 2016 0 0.0000000 0
## 2017 0 0.0000000 0
## 2018 10 2.1727630 0
## 2019 0 0.0000000 0
## 2020 1 0.2172763 0
## 2021 0 0.0000000 0
## 2022 0 0.0000000 0
## 2023 0 0.0000000 0
## 2024 0 0.0000000 0
## 2025 0 0.0000000 0
## 2026 0 0.0000000 0
## 2027 0 0.0000000 0
## 2028 0 0.0000000 0
## 2029 2 0.4345527 0
## 2030 2 0.4345527 0
## 2031 0 0.0000000 0
## 2032 7 1.5209340 0
## 2033 0 0.0000000 0
## 2034 0 0.0000000 0
## 2035 0 0.0000000 0
## 2036 0 0.0000000 0
## 2037 0 0.0000000 0
## 2038 0 0.0000000 0
## 2039 0 0.0000000 0
## 2040 0 0.0000000 0
## 2041 0 0.0000000 0
## 2042 2 0.4345527 0
## 2043 0 0.0000000 0
## 2044 0 0.0000000 0
## 2045 0 0.0000000 0
## 2046 0 0.0000000 0
## 2047 0 0.0000000 0
## 2048 0 0.0000000 0
## 2049 1 0.2172763 0
## 2050 1 0.2172763 0
## 2051 0 0.0000000 0
## 2052 0 0.0000000 0
## 2053 0 0.0000000 0
## 2054 0 0.0000000 0
## 2055 0 0.0000000 0
## 2056 0 0.0000000 0
## 2057 0 0.0000000 0
## 2058 0 0.0000000 0
## 2059 0 0.0000000 0
## 2060 1 0.2172763 0
## 2061 0 0.0000000 0
## 2062 0 0.0000000 0
## 2063 0 0.0000000 0
## 2064 0 0.0000000 0
## 2065 0 0.0000000 0
## 2066 0 0.0000000 0
## 2067 5 1.0863820 0
## 2068 0 0.0000000 0
## 2069 0 0.0000000 0
## 2070 0 0.0000000 0
## 2071 0 0.0000000 0
## 2072 0 0.0000000 0
## 2073 0 0.0000000 0
## 2074 0 0.0000000 0
## 2075 0 0.0000000 0
## 2076 0 0.0000000 0
## 2077 0 0.0000000 0
## 2078 0 0.0000000 0
## 2079 0 0.0000000 0
## 2080 0 0.0000000 0
## 2081 0 0.0000000 0
## 2082 0 0.0000000 0
## 2083 0 0.0000000 0
## 2084 0 0.0000000 0
## 2085 0 0.0000000 0
## 2086 1 0.2172763 0
## 2087 0 0.0000000 0
## 2088 7 1.5209340 0
## 2089 1 0.2172763 0
## 2090 0 0.0000000 0
## 2091 0 0.0000000 0
## 2092 1 0.2172763 0
## 2093 0 0.0000000 0
## 2094 0 0.0000000 0
## 2095 0 0.0000000 0
## 2096 1 0.2172763 0
## 2097 0 0.0000000 0
## 2098 0 0.0000000 0
## 2099 0 0.0000000 0
## 2100 0 0.0000000 0
## 2101 0 0.0000000 0
## 2102 0 0.0000000 0
## 2103 0 0.0000000 0
## 2104 0 0.0000000 0
## 2105 1 0.2172763 0
## 2106 0 0.0000000 0
## 2107 0 0.0000000 0
## 2108 0 0.0000000 0
## 2109 1 0.2172763 0
## 2110 0 0.0000000 0
## 2111 0 0.0000000 0
## 2112 0 0.0000000 0
## 2113 0 0.0000000 0
## 2114 0 0.0000000 0
## 2115 2 0.4345527 0
## 2116 0 0.0000000 0
## 2117 12 2.6073160 0
## 2118 0 0.0000000 0
## 2119 0 0.0000000 0
## 2120 0 0.0000000 0
## 2121 0 0.0000000 0
## 2122 0 0.0000000 0
## 2123 2 0.4345527 0
## 2124 0 0.0000000 0
## 2125 0 0.0000000 0
## 2126 0 0.0000000 0
## 2127 0 0.0000000 0
## 2128 3 0.6518290 0
## 2129 0 0.0000000 0
## 2130 0 0.0000000 0
## 2131 0 0.0000000 0
## 2132 0 0.0000000 0
## 2133 4 0.8691053 0
## 2134 0 0.0000000 0
## 2135 1 0.2172763 0
## 2136 0 0.0000000 0
## 2137 0 0.0000000 0
## 2138 0 0.0000000 0
## 2139 0 0.0000000 0
## 2140 0 0.0000000 0
## 2141 0 0.0000000 0
## 2142 0 0.0000000 0
## 2143 0 0.0000000 0
## 2144 0 0.0000000 0
## 2145 0 0.0000000 0
## 2146 0 0.0000000 0
## 2147 0 0.0000000 0
## 2148 0 0.0000000 0
## 2149 1 0.2172763 0
## 2150 0 0.0000000 0
## 2151 1 0.2172763 0
## 2152 0 0.0000000 0
## 2153 0 0.0000000 0
## 2154 0 0.0000000 0
## 2155 0 0.0000000 0
## 2156 0 0.0000000 0
## 2157 0 0.0000000 0
## 2158 1 0.2172763 0
## 2159 0 0.0000000 0
## 2160 3 0.6518290 0
## 2161 3 0.6518290 0
## 2162 0 0.0000000 0
## 2163 0 0.0000000 0
## 2164 0 0.0000000 0
## 2165 0 0.0000000 0
## 2166 0 0.0000000 0
## 2167 0 0.0000000 0
## 2168 0 0.0000000 0
## 2169 0 0.0000000 0
## 2170 0 0.0000000 0
## 2171 0 0.0000000 0
## 2172 0 0.0000000 0
## 2173 0 0.0000000 0
## 2174 0 0.0000000 0
## 2175 0 0.0000000 0
## 2176 0 0.0000000 0
## 2177 0 0.0000000 0
## 2178 0 0.0000000 0
## 2179 0 0.0000000 0
## 2180 0 0.0000000 0
## 2181 0 0.0000000 0
## 2182 0 0.0000000 0
## 2183 0 0.0000000 0
## 2184 0 0.0000000 0
## 2185 0 0.0000000 0
## 2186 1 0.2172763 0
## 2187 0 0.0000000 0
## 2188 0 0.0000000 0
## 2189 0 0.0000000 0
## 2190 0 0.0000000 0
## 2191 0 0.0000000 0
## 2192 0 0.0000000 0
## 2193 0 0.0000000 0
## 2194 0 0.0000000 0
## 2195 0 0.0000000 0
## 2196 0 0.0000000 0
## 2197 0 0.0000000 0
## 2198 2 0.4345527 0
## 2199 0 0.0000000 0
## 2200 0 0.0000000 0
## 2201 0 0.0000000 0
## 2202 0 0.0000000 0
## 2203 0 0.0000000 0
## 2204 0 0.0000000 0
## 2205 0 0.0000000 0
## 2206 0 0.0000000 0
## 2207 0 0.0000000 0
## 2208 0 0.0000000 0
## 2209 0 0.0000000 0
## 2210 0 0.0000000 0
## 2211 0 0.0000000 0
## 2212 0 0.0000000 0
## 2213 0 0.0000000 0
## 2214 1 0.2172763 0
## 2215 7 1.5209340 0
## 2216 0 0.0000000 0
## 2217 0 0.0000000 0
## 2218 1 0.2172763 0
## 2219 0 0.0000000 0
## 2220 0 0.0000000 0
## 2221 0 0.0000000 0
## 2222 1 0.2172763 0
## 2223 0 0.0000000 0
## 2224 0 0.0000000 0
## 2225 0 0.0000000 0
## 2226 0 0.0000000 0
## 2227 0 0.0000000 0
## 2228 0 0.0000000 0
## 2229 0 0.0000000 0
## 2230 1 0.2172763 0
## 2231 0 0.0000000 0
## 2232 0 0.0000000 0
## 2233 0 0.0000000 0
## 2234 0 0.0000000 0
## 2235 0 0.0000000 0
## 2236 4 0.8691053 0
## 2237 3 0.6518290 0
## 2238 0 0.0000000 0
## 2239 0 0.0000000 0
## 2240 0 0.0000000 0
## 2241 0 0.0000000 0
## 2242 0 0.0000000 0
## 2243 0 0.0000000 0
## 2244 0 0.0000000 0
## 2245 0 0.0000000 0
## 2246 0 0.0000000 0
## 2247 0 0.0000000 0
## 2248 0 0.0000000 0
## 2249 0 0.0000000 0
## 2250 0 0.0000000 0
## 2251 0 0.0000000 0
## 2252 3 0.6518290 0
## 2253 0 0.0000000 0
## 2254 4 0.8691053 0
## 2255 0 0.0000000 0
## 2256 1 0.2172763 0
## 2257 0 0.0000000 0
## 2258 0 0.0000000 0
## 2259 5 1.0863820 0
## 2260 1 0.2172763 0
## 2261 0 0.0000000 0
## 2262 0 0.0000000 0
## 2263 0 0.0000000 0
## 2264 0 0.0000000 0
## 2265 0 0.0000000 0
## 2266 0 0.0000000 0
## 2267 0 0.0000000 0
## 2268 0 0.0000000 0
## 2269 0 0.0000000 0
## 2270 0 0.0000000 0
## 2271 0 0.0000000 0
## 2272 4 0.8691053 0
## 2273 0 0.0000000 0
## 2274 0 0.0000000 0
## 2275 0 0.0000000 0
## 2276 0 0.0000000 0
## 2277 0 0.0000000 0
## 2278 0 0.0000000 0
## 2279 0 0.0000000 0
## 2280 0 0.0000000 0
## 2281 0 0.0000000 0
## 2282 0 0.0000000 0
## 2283 7 1.5209340 0
## 2284 0 0.0000000 0
## 2285 0 0.0000000 0
## 2286 2 0.4345527 0
## 2287 0 0.0000000 0
## 2288 0 0.0000000 0
## 2289 0 0.0000000 0
## 2290 2 0.4345527 0
## 2291 8 1.7382110 0
## 2292 2 0.4345527 0
## 2293 2 0.4345527 0
## 2294 6 1.3036580 0
## 2295 5 1.0863820 0
## 2296 0 0.0000000 0
## 2297 0 0.0000000 0
## 2298 0 0.0000000 0
## 2299 0 0.0000000 0
## 2300 0 0.0000000 0
## 2301 2 0.4345527 0
## 2302 2 0.4345527 0
## 2303 0 0.0000000 0
## 2304 2 0.4345527 0
## 2305 0 0.0000000 0
## 2306 0 0.0000000 0
## 2307 0 0.0000000 0
## 2308 3 0.6518290 0
## 2309 4 0.8691053 0
## 2310 1 0.2172763 0
## 2311 0 0.0000000 0
## 2312 5 1.0863820 0
## 2313 0 0.0000000 0
## 2314 0 0.0000000 0
## 2315 0 0.0000000 0
## 2316 0 0.0000000 0
## 2317 3 0.6518290 0
## 2318 1 0.2172763 0
## 2319 0 0.0000000 0
## 2320 0 0.0000000 0
## 2321 0 0.0000000 0
## 2322 0 0.0000000 0
## 2323 0 0.0000000 0
## 2324 0 0.0000000 0
## 2325 0 0.0000000 0
## 2326 0 0.0000000 0
## 2327 0 0.0000000 0
## 2328 0 0.0000000 0
## 2329 0 0.0000000 0
## 2330 0 0.0000000 0
## 2331 0 0.0000000 0
## 2332 0 0.0000000 0
## 2333 0 0.0000000 0
## 2334 0 0.0000000 0
## 2335 0 0.0000000 0
## 2336 0 0.0000000 0
## 2337 0 0.0000000 0
## 2338 0 0.0000000 0
## 2339 2 0.4345527 0
## 2340 0 0.0000000 0
## 2341 0 0.0000000 0
## 2342 0 0.0000000 0
## 2343 0 0.0000000 0
## 2344 0 0.0000000 0
## 2345 0 0.0000000 0
## 2346 0 0.0000000 0
## 2347 0 0.0000000 0
## 2348 2 0.4345527 0
## 2349 1 0.2172763 0
## 2350 4 0.8691053 0
## 2351 4 0.8691053 0
## 2352 0 0.0000000 0
## 2353 0 0.0000000 0
## 2354 0 0.0000000 0
## 2355 0 0.0000000 0
## 2356 5 1.0863820 0
## 2357 2 0.4345527 0
## 2358 0 0.0000000 0
## 2359 8 1.7382110 0
## 2360 0 0.0000000 0
## 2361 0 0.0000000 0
## 2362 0 0.0000000 0
## 2363 0 0.0000000 0
## 2364 2 0.4345527 0
## 2365 1 0.2172763 0
## 2366 0 0.0000000 0
## 2367 0 0.0000000 0
## 2368 0 0.0000000 0
## 2369 0 0.0000000 0
## 2370 2 0.4345527 0
## 2371 0 0.0000000 0
## 2372 12 2.6073160 0
## 2373 0 0.0000000 0
## 2374 1 0.2172763 0
## 2375 1 0.2172763 0
## 2376 0 0.0000000 0
## 2377 0 0.0000000 0
## 2378 0 0.0000000 0
## 2379 0 0.0000000 0
## 2380 0 0.0000000 0
## 2381 0 0.0000000 0
## 2382 0 0.0000000 0
## 2383 0 0.0000000 0
## 2384 0 0.0000000 0
## 2385 1 0.2172763 0
## 2386 0 0.0000000 0
## 2387 0 0.0000000 0
## 2388 0 0.0000000 0
## 2389 0 0.0000000 0
## 2390 1 0.2172763 0
## 2391 0 0.0000000 0
## 2392 3 0.6518290 0
## 2393 0 0.0000000 0
## 2394 0 0.0000000 0
## 2395 0 0.0000000 0
## 2396 0 0.0000000 0
## 2397 0 0.0000000 0
## 2398 0 0.0000000 0
## 2399 2 0.4345527 0
## 2400 0 0.0000000 0
## 2401 2 0.4345527 0
## 2402 1 0.2172763 0
## 2403 0 0.0000000 0
## 2404 0 0.0000000 0
## 2405 0 0.0000000 0
## 2406 0 0.0000000 0
## 2407 0 0.0000000 0
## 2408 0 0.0000000 0
## 2409 0 0.0000000 0
## 2410 0 0.0000000 0
## 2411 0 0.0000000 0
## 2412 0 0.0000000 0
## 2413 0 0.0000000 0
## 2414 0 0.0000000 0
## 2415 0 0.0000000 0
## 2416 0 0.0000000 0
## 2417 0 0.0000000 0
## 2418 1 0.2172763 0
## 2419 1 0.2172763 0
## 2420 4 0.8691053 0
## 2421 0 0.0000000 0
## 2422 1 0.2172763 0
## 2423 1 0.2172763 0
## 2424 2 0.4345527 0
## 2425 0 0.0000000 0
## 2426 0 0.0000000 0
## 2427 0 0.0000000 0
## 2428 0 0.0000000 0
## 2429 0 0.0000000 0
## 2430 0 0.0000000 0
## 2431 0 0.0000000 0
## 2432 0 0.0000000 0
## 2433 0 0.0000000 0
## 2434 0 0.0000000 0
## 2435 0 0.0000000 0
## 2436 0 0.0000000 0
## 2437 0 0.0000000 0
## 2438 0 0.0000000 0
## 2439 0 0.0000000 0
## 2440 0 0.0000000 0
## 2441 2 0.4345527 0
## 2442 0 0.0000000 0
## 2443 0 0.0000000 0
## 2444 0 0.0000000 0
## 2445 0 0.0000000 0
## 2446 0 0.0000000 0
## 2447 0 0.0000000 0
## 2448 0 0.0000000 0
## 2449 0 0.0000000 0
## 2450 0 0.0000000 0
## 2451 0 0.0000000 0
## 2452 0 0.0000000 0
## 2453 2 0.4345527 0
## 2454 2 0.4345527 0
## 2455 0 0.0000000 0
## 2456 0 0.0000000 0
## 2457 2 0.4345527 0
## 2458 0 0.0000000 0
## 2459 1 0.2172763 0
## 2460 0 0.0000000 0
## 2461 0 0.0000000 0
## 2462 1 0.2172763 0
## 2463 0 0.0000000 0
## 2464 0 0.0000000 0
## 2465 0 0.0000000 0
## 2466 0 0.0000000 0
## 2467 1 0.2172763 0
## 2468 0 0.0000000 0
## 2469 0 0.0000000 0
## 2470 0 0.0000000 0
## 2471 0 0.0000000 0
## 2472 0 0.0000000 0
## 2473 0 0.0000000 0
## 2474 3 0.6518290 0
## 2475 0 0.0000000 0
## 2476 3 0.6518290 0
## 2477 1 0.2172763 0
## 2478 0 0.0000000 0
## 2479 0 0.0000000 0
## 2480 0 0.0000000 0
## 2481 0 0.0000000 0
## 2482 0 0.0000000 0
## 2483 0 0.0000000 0
## 2484 0 0.0000000 0
## 2485 0 0.0000000 0
## 2486 0 0.0000000 0
## 2487 0 0.0000000 0
## 2488 1 0.2172763 0
## 2489 0 0.0000000 0
## 2490 3 0.6518290 0
## 2491 0 0.0000000 0
## 2492 0 0.0000000 0
## 2493 2 0.4345527 0
## 2494 0 0.0000000 0
## 2495 0 0.0000000 0
## 2496 0 0.0000000 0
## 2497 2 0.4345527 0
## 2498 0 0.0000000 0
## 2499 0 0.0000000 0
## 2500 0 0.0000000 0
## 2501 3 0.6518290 0
## 2502 0 0.0000000 0
## 2503 0 0.0000000 0
## 2504 0 0.0000000 0
## 2505 0 0.0000000 0
## 2506 0 0.0000000 0
## 2507 2 0.4345527 0
## 2508 1 0.2172763 0
## 2509 0 0.0000000 0
## 2510 0 0.0000000 0
## 2511 1 0.2172763 0
## 2512 0 0.0000000 0
## 2513 9 1.9554870 0
## 2514 0 0.0000000 0
## 2515 0 0.0000000 0
## 2516 0 0.0000000 0
## 2517 0 0.0000000 0
## 2518 1 0.2172763 0
## 2519 0 0.0000000 0
## 2520 1 0.2172763 0
## 2521 2 0.4345527 0
## 2522 0 0.0000000 0
## 2523 1 0.2172763 0
## 2524 0 0.0000000 0
## 2525 0 0.0000000 0
## 2526 0 0.0000000 0
## 2527 1 0.2172763 0
## 2528 0 0.0000000 0
## 2529 0 0.0000000 0
## 2530 0 0.0000000 0
## 2531 0 0.0000000 0
## 2532 0 0.0000000 0
## 2533 0 0.0000000 0
## 2534 0 0.0000000 0
## 2535 2 0.4345527 0
## 2536 0 0.0000000 0
## 2537 0 0.0000000 0
## 2538 0 0.0000000 0
## 2539 0 0.0000000 0
## 2540 0 0.0000000 0
## 2541 4 0.8691053 0
## 2542 0 0.0000000 0
## 2543 1 0.2172763 0
## 2544 0 0.0000000 0
## 2545 0 0.0000000 0
## 2546 0 0.0000000 0
## 2547 3 0.6518290 0
## 2548 0 0.0000000 0
## 2549 0 0.0000000 0
## 2550 1 0.2172763 0
## 2551 0 0.0000000 0
## 2552 0 0.0000000 0
## 2553 0 0.0000000 0
## 2554 0 0.0000000 0
## 2555 8 1.7382110 0
## 2556 0 0.0000000 0
## 2557 6 1.3036580 0
## 2558 0 0.0000000 0
## 2559 0 0.0000000 0
## 2560 0 0.0000000 0
## 2561 0 0.0000000 0
## 2562 2 0.4345527 0
## 2563 0 0.0000000 0
## 2564 0 0.0000000 0
## 2565 0 0.0000000 0
## 2566 0 0.0000000 0
## 2567 0 0.0000000 0
## 2568 0 0.0000000 0
## 2569 0 0.0000000 0
## 2570 0 0.0000000 0
## 2571 0 0.0000000 0
## 2572 0 0.0000000 0
## 2573 0 0.0000000 0
## 2574 9 1.9554870 0
## 2575 2 0.4345527 0
## 2576 1 0.2172763 0
## 2577 0 0.0000000 0
## 2578 7 1.5209340 0
## 2579 0 0.0000000 0
## 2580 0 0.0000000 0
## 2581 0 0.0000000 0
## 2582 1 0.2172763 0
## 2583 0 0.0000000 0
## 2584 0 0.0000000 0
## 2585 0 0.0000000 0
## 2586 0 0.0000000 0
## 2587 0 0.0000000 0
## 2588 2 0.4345527 0
## 2589 0 0.0000000 0
## 2590 0 0.0000000 0
## 2591 0 0.0000000 0
## 2592 0 0.0000000 0
## 2593 0 0.0000000 0
## 2594 0 0.0000000 0
## 2595 0 0.0000000 0
## 2596 0 0.0000000 0
## 2597 0 0.0000000 0
## 2598 0 0.0000000 0
## 2599 2 0.4345527 0
## 2600 0 0.0000000 0
## 2601 1 0.2172763 0
## 2602 0 0.0000000 0
## 2603 0 0.0000000 0
## 2604 0 0.0000000 0
## 2605 0 0.0000000 0
## 2606 0 0.0000000 0
## 2607 0 0.0000000 0
## 2608 0 0.0000000 0
## 2609 0 0.0000000 0
## 2610 0 0.0000000 0
## 2611 0 0.0000000 0
## 2612 0 0.0000000 0
## 2613 1 0.2172763 0
## 2614 0 0.0000000 0
## 2615 2 0.4345527 0
## 2616 10 2.1727630 0
## 2617 0 0.0000000 0
## 2618 1 0.2172763 0
## 2619 0 0.0000000 0
## 2620 2 0.4345527 0
## 2621 4 0.8691053 0
## 2622 0 0.0000000 0
## 2623 0 0.0000000 0
## 2624 0 0.0000000 0
## 2625 0 0.0000000 0
## 2626 0 0.0000000 0
## 2627 0 0.0000000 0
## 2628 0 0.0000000 0
## 2629 0 0.0000000 0
## 2630 0 0.0000000 0
## 2631 0 0.0000000 0
## 2632 1 0.2172763 0
## 2633 0 0.0000000 0
## 2634 0 0.0000000 0
## 2635 1 0.2172763 0
## 2636 0 0.0000000 0
## 2637 0 0.0000000 0
## 2638 0 0.0000000 0
## 2639 0 0.0000000 0
## 2640 0 0.0000000 0
## 2641 0 0.0000000 0
## 2642 2 0.4345527 0
## 2643 0 0.0000000 0
## 2644 0 0.0000000 0
## 2645 0 0.0000000 0
## 2646 1 0.2172763 0
## 2647 1 0.2172763 0
## 2648 0 0.0000000 0
## 2649 0 0.0000000 0
## 2650 0 0.0000000 0
## 2651 1 0.2172763 0
## 2652 1 0.2172763 0
## 2653 0 0.0000000 0
## 2654 0 0.0000000 0
## 2655 1 0.2172763 0
## 2656 1 0.2172763 0
## 2657 0 0.0000000 0
## 2658 0 0.0000000 0
## 2659 0 0.0000000 0
## 2660 0 0.0000000 0
## 2661 1 0.2172763 0
## 2662 0 0.0000000 0
## 2663 0 0.0000000 0
## 2664 0 0.0000000 0
## 2665 0 0.0000000 0
## 2666 3 0.6518290 0
## 2667 0 0.0000000 0
## 2668 0 0.0000000 0
## 2669 0 0.0000000 0
## 2670 5 1.0863820 0
## 2671 0 0.0000000 0
## 2672 0 0.0000000 0
## 2673 0 0.0000000 0
## 2674 0 0.0000000 0
## 2675 0 0.0000000 0
## 2676 1 0.2172763 0
## 2677 0 0.0000000 0
## 2678 1 0.2172763 0
## 2679 0 0.0000000 0
## 2680 0 0.0000000 0
## 2681 0 0.0000000 0
## 2682 0 0.0000000 0
## 2683 2 0.4345527 0
## 2684 0 0.0000000 0
## 2685 0 0.0000000 0
## 2686 0 0.0000000 0
## 2687 0 0.0000000 0
## 2688 0 0.0000000 0
## 2689 0 0.0000000 0
## 2690 2 0.4345527 0
## 2691 0 0.0000000 0
## 2692 1 0.2172763 0
## 2693 0 0.0000000 0
## 2694 0 0.0000000 0
## 2695 0 0.0000000 0
## 2696 0 0.0000000 0
## 2697 0 0.0000000 0
## 2698 0 0.0000000 0
## 2699 1 0.2172763 0
## 2700 1 0.2172763 0
## 2701 0 0.0000000 0
## 2702 5 1.0863820 0
## 2703 13 2.8245920 0
## 2704 0 0.0000000 0
## 2705 0 0.0000000 0
## 2706 0 0.0000000 0
## 2707 0 0.0000000 0
## 2708 0 0.0000000 0
## 2709 0 0.0000000 0
## 2710 0 0.0000000 0
## 2711 1 0.2172763 0
## 2712 11 2.3900400 0
## 2713 0 0.0000000 0
## 2714 0 0.0000000 0
## 2715 0 0.0000000 0
## 2716 0 0.0000000 0
## 2717 0 0.0000000 0
## 2718 0 0.0000000 0
## 2719 0 0.0000000 0
## 2720 0 0.0000000 0
## 2721 0 0.0000000 0
## 2722 0 0.0000000 0
## 2723 0 0.0000000 0
## 2724 0 0.0000000 0
## 2725 0 0.0000000 0
## 2726 0 0.0000000 0
## 2727 0 0.0000000 0
## 2728 1 0.2172763 0
## 2729 0 0.0000000 0
## 2730 0 0.0000000 0
## 2731 0 0.0000000 0
## 2732 0 0.0000000 0
## 2733 0 0.0000000 0
## 2734 0 0.0000000 0
## 2735 0 0.0000000 0
## 2736 0 0.0000000 0
## 2737 0 0.0000000 0
## 2738 0 0.0000000 0
## 2739 0 0.0000000 0
## 2740 1 0.2172763 0
## 2741 0 0.0000000 0
## 2742 0 0.0000000 0
## 2743 0 0.0000000 0
## 2744 0 0.0000000 0
## 2745 0 0.0000000 0
## 2746 0 0.0000000 0
## 2747 0 0.0000000 0
## 2748 0 0.0000000 0
## 2749 4 0.8691053 0
## 2750 3 0.6518290 0
## 2751 1 0.2172763 0
## 2752 0 0.0000000 0
## 2753 0 0.0000000 0
## 2754 0 0.0000000 0
## 2755 6 1.3036580 0
## 2756 6 1.3036580 0
## 2757 0 0.0000000 0
## 2758 0 0.0000000 0
## 2759 14 3.0418690 0
## 2760 3 0.6518290 0
## 2761 0 0.0000000 0
## 2762 0 0.0000000 0
## 2763 0 0.0000000 0
## 2764 0 0.0000000 0
## 2765 0 0.0000000 0
## 2766 0 0.0000000 0
## 2767 0 0.0000000 0
## 2768 0 0.0000000 0
## 2769 1 0.2172763 0
## 2770 0 0.0000000 0
## 2771 1 0.2172763 0
## 2772 0 0.0000000 0
## 2773 3 0.6518290 0
## 2774 0 0.0000000 0
## 2775 0 0.0000000 0
## 2776 0 0.0000000 0
## 2777 0 0.0000000 0
## 2778 0 0.0000000 0
## 2779 0 0.0000000 0
## 2780 0 0.0000000 0
## 2781 0 0.0000000 0
## 2782 1 0.2172763 0
## 2783 1 0.2172763 0
## 2784 1 0.2172763 0
## 2785 0 0.0000000 0
## 2786 0 0.0000000 0
## 2787 0 0.0000000 0
## 2788 0 0.0000000 0
## 2789 0 0.0000000 0
## 2790 0 0.0000000 0
## 2791 0 0.0000000 0
## 2792 0 0.0000000 0
## 2793 0 0.0000000 0
## 2794 0 0.0000000 0
## 2795 2 0.4345527 0
## 2796 1 0.2172763 0
## 2797 0 0.0000000 0
## 2798 0 0.0000000 0
## 2799 0 0.0000000 0
## 2800 0 0.0000000 0
## 2801 2 0.4345527 0
## 2802 0 0.0000000 0
## 2803 0 0.0000000 0
## 2804 4 0.8691053 0
## 2805 0 0.0000000 0
## 2806 2 0.4345527 0
## 2807 0 0.0000000 0
## 2808 0 0.0000000 0
## 2809 0 0.0000000 0
## 2810 0 0.0000000 0
## 2811 0 0.0000000 0
## 2812 0 0.0000000 0
## 2813 0 0.0000000 0
## 2814 0 0.0000000 0
## 2815 4 0.8691053 0
## 2816 0 0.0000000 0
## 2817 0 0.0000000 0
## 2818 0 0.0000000 0
## 2819 0 0.0000000 0
## 2820 1 0.2172763 0
## 2821 0 0.0000000 0
## 2822 0 0.0000000 0
## 2823 0 0.0000000 0
## 2824 0 0.0000000 0
## 2825 0 0.0000000 0
## 2826 0 0.0000000 0
## 2827 0 0.0000000 0
## 2828 0 0.0000000 0
## 2829 0 0.0000000 0
## 2830 0 0.0000000 0
## 2831 0 0.0000000 0
## 2832 0 0.0000000 0
## 2833 0 0.0000000 0
## 2834 5 1.0863820 0
## 2835 5 1.0863820 0
## 2836 0 0.0000000 0
## 2837 0 0.0000000 0
## 2838 5 1.0863820 0
## 2839 0 0.0000000 0
## 2840 5 1.0863820 0
## 2841 0 0.0000000 0
## 2842 0 0.0000000 0
## 2843 0 0.0000000 0
## 2844 0 0.0000000 0
## 2845 0 0.0000000 0
## 2846 0 0.0000000 0
## 2847 0 0.0000000 0
## 2848 0 0.0000000 0
## 2849 0 0.0000000 0
## 2850 0 0.0000000 0
## 2851 0 0.0000000 0
## 2852 8 1.7382110 0
## 2853 0 0.0000000 0
## 2854 0 0.0000000 0
## 2855 0 0.0000000 0
## 2856 0 0.0000000 0
## 2857 0 0.0000000 0
## 2858 0 0.0000000 0
## 2859 0 0.0000000 0
## 2860 0 0.0000000 0
## 2861 0 0.0000000 0
## 2862 0 0.0000000 0
## 2863 0 0.0000000 0
## 2864 0 0.0000000 0
## 2865 0 0.0000000 0
## 2866 0 0.0000000 0
## 2867 0 0.0000000 0
## 2868 0 0.0000000 0
## 2869 0 0.0000000 0
## 2870 0 0.0000000 0
## 2871 0 0.0000000 0
## 2872 0 0.0000000 0
## 2873 2 0.4345527 0
## 2874 0 0.0000000 0
## 2875 0 0.0000000 0
## 2876 0 0.0000000 0
## 2877 0 0.0000000 0
## 2878 0 0.0000000 0
## 2879 0 0.0000000 0
## 2880 0 0.0000000 0
## 2881 0 0.0000000 0
## 2882 1 0.2172763 0
## 2883 0 0.0000000 0
## 2884 0 0.0000000 0
## 2885 0 0.0000000 0
## 2886 0 0.0000000 0
## 2887 0 0.0000000 0
## 2888 0 0.0000000 0
## 2889 0 0.0000000 0
## 2890 0 0.0000000 0
## 2891 0 0.0000000 0
## 2892 0 0.0000000 0
## 2893 0 0.0000000 0
## 2894 0 0.0000000 0
## 2895 0 0.0000000 0
## 2896 0 0.0000000 0
## 2897 0 0.0000000 0
## 2898 0 0.0000000 0
## 2899 0 0.0000000 0
## 2900 0 0.0000000 0
## 2901 0 0.0000000 0
## 2902 0 0.0000000 0
## 2903 0 0.0000000 0
## 2904 0 0.0000000 0
## 2905 1 0.2172763 0
## 2906 0 0.0000000 0
## 2907 0 0.0000000 0
## 2908 0 0.0000000 0
## 2909 0 0.0000000 0
## 2910 2 0.4345527 0
## 2911 0 0.0000000 0
## 2912 0 0.0000000 0
## 2913 0 0.0000000 0
## 2914 0 0.0000000 0
## 2915 2 0.4345527 0
## 2916 0 0.0000000 0
## 2917 0 0.0000000 0
## 2918 0 0.0000000 0
## 2919 0 0.0000000 0
## 2920 0 0.0000000 0
## 2921 0 0.0000000 0
## 2922 0 0.0000000 0
## 2923 0 0.0000000 0
## 2924 0 0.0000000 0
## 2925 0 0.0000000 0
## 2926 0 0.0000000 0
## 2927 0 0.0000000 0
## 2928 0 0.0000000 0
## 2929 0 0.0000000 0
## 2930 0 0.0000000 0
## 2931 0 0.0000000 0
## 2932 0 0.0000000 0
## 2933 0 0.0000000 0
## 2934 0 0.0000000 0
## 2935 0 0.0000000 0
## 2936 0 0.0000000 0
## 2937 2 0.4345527 0
## 2938 0 0.0000000 0
## 2939 0 0.0000000 0
## 2940 0 0.0000000 0
## 2941 0 0.0000000 0
## 2942 0 0.0000000 0
## 2943 0 0.0000000 0
## 2944 0 0.0000000 0
## 2945 0 0.0000000 0
## 2946 0 0.0000000 0
## 2947 0 0.0000000 0
## 2948 6 1.3036580 0
## 2949 0 0.0000000 0
## 2950 4 0.8691053 0
## 2951 0 0.0000000 0
## 2952 0 0.0000000 0
## 2953 0 0.0000000 0
## 2954 0 0.0000000 0
## 2955 0 0.0000000 0
## 2956 0 0.0000000 0
## 2957 0 0.0000000 0
## 2958 0 0.0000000 0
## 2959 1 0.2172763 0
## 2960 0 0.0000000 0
## 2961 0 0.0000000 0
## 2962 6 1.3036580 0
## 2963 0 0.0000000 0
## 2964 4 0.8691053 0
## 2965 0 0.0000000 0
## 2966 0 0.0000000 0
## 2967 1 0.2172763 0
## 2968 4 0.8691053 0
## 2969 0 0.0000000 0
## 2970 0 0.0000000 0
## 2971 0 0.0000000 0
## 2972 0 0.0000000 0
## 2973 0 0.0000000 0
## 2974 0 0.0000000 0
## 2975 0 0.0000000 0
## 2976 10 2.1727630 0
## 2977 0 0.0000000 0
## 2978 0 0.0000000 0
## 2979 0 0.0000000 0
## 2980 0 0.0000000 0
## 2981 8 1.7382110 0
## 2982 0 0.0000000 0
## 2983 0 0.0000000 0
## 2984 4 0.8691053 0
## 2985 0 0.0000000 0
## 2986 0 0.0000000 0
## 2987 0 0.0000000 0
## 2988 0 0.0000000 0
## 2989 0 0.0000000 0
## 2990 0 0.0000000 0
## 2991 0 0.0000000 0
## 2992 0 0.0000000 0
## 2993 3 0.6518290 0
## 2994 0 0.0000000 0
## 2995 0 0.0000000 0
## 2996 0 0.0000000 0
## 2997 0 0.0000000 0
## 2998 0 0.0000000 0
## 2999 1 0.2172763 0
## 3000 0 0.0000000 0
## 3001 0 0.0000000 0
## 3002 0 0.0000000 0
## 3003 0 0.0000000 0
## 3004 0 0.0000000 0
## 3005 0 0.0000000 0
## 3006 0 0.0000000 0
## 3007 0 0.0000000 0
## 3008 0 0.0000000 0
## 3009 0 0.0000000 0
## 3010 0 0.0000000 0
## 3011 0 0.0000000 0
## 3012 0 0.0000000 0
## 3013 0 0.0000000 0
## 3014 0 0.0000000 0
## 3015 0 0.0000000 0
## 3016 0 0.0000000 0
## 3017 0 0.0000000 0
## 3018 1 0.2172763 0
## 3019 0 0.0000000 0
## 3020 0 0.0000000 0
## 3021 0 0.0000000 0
## 3022 0 0.0000000 0
## 3023 0 0.0000000 0
## 3024 0 0.0000000 0
## 3025 0 0.0000000 0
## 3026 0 0.0000000 0
## 3027 0 0.0000000 0
## 3028 0 0.0000000 0
## 3029 2 0.4345527 0
## 3030 0 0.0000000 0
## 3031 0 0.0000000 0
## 3032 1 0.2172763 0
## 3033 0 0.0000000 0
## 3034 1 0.2172763 0
## 3035 0 0.0000000 0
## 3036 0 0.0000000 0
## 3037 0 0.0000000 0
## 3038 0 0.0000000 0
## 3039 0 0.0000000 0
## 3040 0 0.0000000 0
## 3041 0 0.0000000 0
## 3042 1 0.2172763 0
## 3043 0 0.0000000 0
## 3044 0 0.0000000 0
## 3045 2 0.4345527 0
## 3046 0 0.0000000 0
## 3047 0 0.0000000 0
## 3048 0 0.0000000 0
## 3049 0 0.0000000 0
## 3050 0 0.0000000 0
## 3051 0 0.0000000 0
## 3052 0 0.0000000 0
## 3053 0 0.0000000 0
## 3054 0 0.0000000 0
## 3055 0 0.0000000 0
## 3056 0 0.0000000 0
## 3057 0 0.0000000 0
## 3058 2 0.4345527 0
## 3059 0 0.0000000 0
## 3060 0 0.0000000 0
## 3061 0 0.0000000 0
## 3062 0 0.0000000 0
## 3063 0 0.0000000 0
## 3064 6 1.3036580 0
## 3065 0 0.0000000 0
## 3066 3 0.6518290 0
## 3067 0 0.0000000 0
## 3068 0 0.0000000 0
## 3069 0 0.0000000 0
## 3070 2 0.4345527 0
## 3071 0 0.0000000 0
## 3072 2 0.4345527 0
## 3073 2 0.4345527 0
## 3074 4 0.8691053 0
## 3075 1 0.2172763 0
## 3076 0 0.0000000 0
## 3077 0 0.0000000 0
## 3078 0 0.0000000 0
## 3079 0 0.0000000 0
## 3080 1 0.2172763 0
## 3081 0 0.0000000 0
## 3082 1 0.2172763 0
## 3083 1 0.2172763 0
## 3084 0 0.0000000 0
## 3085 0 0.0000000 0
## 3086 0 0.0000000 0
## 3087 1 0.2172763 0
## 3088 1 0.2172763 0
## 3089 0 0.0000000 0
## 3090 0 0.0000000 0
## 3091 0 0.0000000 0
## 3092 0 0.0000000 0
## 3093 1 0.2172763 0
## 3094 0 0.0000000 0
## 3095 1 0.2172763 0
## 3096 4 0.8691053 0
## 3097 0 0.0000000 0
## 3098 0 0.0000000 0
## 3099 0 0.0000000 0
## 3100 0 0.0000000 0
## 3101 0 0.0000000 0
## 3102 0 0.0000000 0
## 3103 0 0.0000000 0
## 3104 0 0.0000000 0
## 3105 0 0.0000000 0
## 3106 0 0.0000000 0
## 3107 0 0.0000000 0
## 3108 0 0.0000000 0
## 3109 0 0.0000000 0
## 3110 0 0.0000000 0
## 3111 0 0.0000000 0
## 3112 0 0.0000000 0
## 3113 0 0.0000000 0
## 3114 0 0.0000000 0
## 3115 0 0.0000000 0
## 3116 3 0.6518290 0
## 3117 0 0.0000000 0
## 3118 0 0.0000000 0
## 3119 0 0.0000000 0
## 3120 0 0.0000000 0
## 3121 0 0.0000000 0
## 3122 2 0.4345527 0
## 3123 0 0.0000000 0
## 3124 2 0.4345527 0
## 3125 0 0.0000000 0
## 3126 0 0.0000000 0
## 3127 0 0.0000000 0
## 3128 0 0.0000000 0
## 3129 0 0.0000000 0
## 3130 1 0.2172763 0
## 3131 0 0.0000000 0
## 3132 0 0.0000000 0
## 3133 0 0.0000000 0
## 3134 0 0.0000000 0
## 3135 0 0.0000000 0
## 3136 0 0.0000000 0
## 3137 0 0.0000000 0
## 3138 0 0.0000000 0
## 3139 0 0.0000000 0
## 3140 0 0.0000000 0
## 3141 0 0.0000000 0
## 3142 0 0.0000000 0
## 3143 0 0.0000000 0
## 3144 0 0.0000000 0
## 3145 0 0.0000000 0
## 3146 2 0.4345527 0
## 3147 1 0.2172763 0
## 3148 0 0.0000000 0
## 3149 0 0.0000000 0
## 3150 2 0.4345527 0
## 3151 0 0.0000000 0
## 3152 0 0.0000000 0
## 3153 0 0.0000000 0
## 3154 0 0.0000000 0
## 3155 0 0.0000000 0
## 3156 0 0.0000000 0
## 3157 0 0.0000000 0
## 3158 0 0.0000000 0
## 3159 0 0.0000000 0
## 3160 0 0.0000000 0
## 3161 0 0.0000000 0
## 3162 0 0.0000000 0
## 3163 0 0.0000000 0
## 3164 0 0.0000000 0
## 3165 0 0.0000000 0
## 3166 0 0.0000000 0
## 3167 0 0.0000000 0
## 3168 0 0.0000000 0
## 3169 0 0.0000000 0
## 3170 0 0.0000000 0
## 3171 0 0.0000000 0
## 3172 0 0.0000000 0
## 3173 0 0.0000000 0
## 3174 0 0.0000000 0
## 3175 2 0.4345527 0
## 3176 0 0.0000000 0
## 3177 0 0.0000000 0
## 3178 0 0.0000000 0
## 3179 0 0.0000000 0
## 3180 0 0.0000000 0
## 3181 5 1.0863820 0
## 3182 12 2.6073160 0
## 3183 1 0.2172763 0
## 3184 2 0.4345527 0
## 3185 0 0.0000000 0
## 3186 0 0.0000000 0
## 3187 0 0.0000000 0
## 3188 0 0.0000000 0
## 3189 0 0.0000000 0
## 3190 0 0.0000000 0
## 3191 1 0.2172763 0
## 3192 1 0.2172763 0
## 3193 0 0.0000000 0
## 3194 0 0.0000000 0
## 3195 0 0.0000000 0
## 3196 0 0.0000000 0
## 3197 0 0.0000000 0
## 3198 0 0.0000000 0
## 3199 0 0.0000000 0
## 3200 1 0.2172763 0
## 3201 0 0.0000000 0
## 3202 0 0.0000000 0
## 3203 0 0.0000000 0
## 3204 0 0.0000000 0
## 3205 0 0.0000000 0
## 3206 0 0.0000000 0
## 3207 0 0.0000000 0
## 3208 0 0.0000000 0
## 3209 0 0.0000000 0
## 3210 0 0.0000000 0
## 3211 0 0.0000000 0
## 3212 0 0.0000000 0
## 3213 0 0.0000000 0
## 3214 2 0.4345527 0
## 3215 2 0.4345527 0
## 3216 1 0.2172763 0
## 3217 0 0.0000000 0
## 3218 0 0.0000000 0
## 3219 0 0.0000000 0
## 3220 2 0.4345527 0
## 3221 0 0.0000000 0
## 3222 0 0.0000000 0
## 3223 0 0.0000000 0
## 3224 0 0.0000000 0
## 3225 7 1.5209340 0
## 3226 1 0.2172763 0
## 3227 0 0.0000000 0
## 3228 0 0.0000000 0
## 3229 0 0.0000000 0
## 3230 0 0.0000000 0
## 3231 0 0.0000000 0
## 3232 0 0.0000000 0
## 3233 0 0.0000000 0
## 3234 0 0.0000000 0
## 3235 15 3.2591450 0
## 3236 1 0.2172763 0
## 3237 0 0.0000000 0
## 3238 3 0.6518290 0
## 3239 0 0.0000000 0
## 3240 0 0.0000000 0
## 3241 2 0.4345527 0
## 3242 2 0.4345527 0
## 3243 2 0.4345527 0
## 3244 0 0.0000000 0
## 3245 0 0.0000000 0
## 3246 0 0.0000000 0
## 3247 0 0.0000000 0
## 3248 0 0.0000000 0
## 3249 2 0.4345527 0
## 3250 0 0.0000000 0
## 3251 0 0.0000000 0
## 3252 0 0.0000000 0
## 3253 0 0.0000000 0
## 3254 0 0.0000000 0
## 3255 0 0.0000000 0
## 3256 0 0.0000000 0
## 3257 0 0.0000000 0
## 3258 1 0.2172763 0
## 3259 3 0.6518290 0
## 3260 4 0.8691053 0
## 3261 0 0.0000000 0
## 3262 7 1.5209340 0
## 3263 4 0.8691053 0
## 3264 3 0.6518290 0
## 3265 0 0.0000000 0
## 3266 0 0.0000000 0
## 3267 0 0.0000000 0
## 3268 0 0.0000000 0
## 3269 0 0.0000000 0
## 3270 0 0.0000000 0
## 3271 0 0.0000000 0
## 3272 14 3.0418690 0
## 3273 0 0.0000000 0
## 3274 0 0.0000000 0
## 3275 0 0.0000000 0
## 3276 0 0.0000000 0
## 3277 0 0.0000000 0
## 3278 0 0.0000000 0
## 3279 11 2.3900400 0
## 3280 0 0.0000000 0
## 3281 0 0.0000000 0
## 3282 0 0.0000000 0
## 3283 0 0.0000000 0
## 3284 1 0.2172763 0
## 3285 0 0.0000000 0
## 3286 5 1.0863820 0
## 3287 4 0.8691053 0
## 3288 0 0.0000000 0
## 3289 0 0.0000000 0
## 3290 4 0.8691053 0
## 3291 0 0.0000000 0
## 3292 0 0.0000000 0
## 3293 1 0.2172763 0
## 3294 4 0.8691053 0
## 3295 0 0.0000000 0
## 3296 0 0.0000000 0
## 3297 0 0.0000000 0
## 3298 0 0.0000000 0
## 3299 0 0.0000000 0
## 3300 1 0.2172763 0
## 3301 0 0.0000000 0
## 3302 0 0.0000000 0
## 3303 0 0.0000000 0
## 3304 0 0.0000000 0
## 3305 0 0.0000000 0
## 3306 0 0.0000000 0
## 3307 0 0.0000000 0
## 3308 0 0.0000000 0
## 3309 0 0.0000000 0
## 3310 0 0.0000000 0
## 3311 0 0.0000000 0
## 3312 0 0.0000000 0
## 3313 0 0.0000000 0
## 3314 0 0.0000000 0
## 3315 0 0.0000000 0
## 3316 0 0.0000000 0
## 3317 1 0.2172763 0
## 3318 0 0.0000000 0
## 3319 0 0.0000000 0
## 3320 0 0.0000000 0
## 3321 0 0.0000000 0
## 3322 0 0.0000000 0
## 3323 0 0.0000000 0
## 3324 0 0.0000000 0
## 3325 0 0.0000000 0
## 3326 0 0.0000000 0
## 3327 0 0.0000000 0
## 3328 0 0.0000000 0
## 3329 0 0.0000000 0
## 3330 0 0.0000000 0
## 3331 0 0.0000000 0
## 3332 0 0.0000000 0
## 3333 0 0.0000000 0
## 3334 0 0.0000000 0
## 3335 0 0.0000000 0
## 3336 0 0.0000000 0
## 3337 1 0.2172763 0
## 3338 0 0.0000000 0
## 3339 0 0.0000000 0
## 3340 0 0.0000000 0
## 3341 0 0.0000000 0
## 3342 2 0.4345527 0
## 3343 2 0.4345527 0
## 3344 0 0.0000000 0
## 3345 0 0.0000000 0
## 3346 0 0.0000000 0
## 3347 0 0.0000000 0
## 3348 0 0.0000000 0
## 3349 0 0.0000000 0
## 3350 0 0.0000000 0
## 3351 0 0.0000000 0
## 3352 0 0.0000000 0
## 3353 0 0.0000000 0
## 3354 2 0.4345527 0
## 3355 0 0.0000000 0
## 3356 0 0.0000000 0
## 3357 0 0.0000000 0
## 3358 0 0.0000000 0
## 3359 0 0.0000000 0
## 3360 0 0.0000000 0
## 3361 0 0.0000000 0
## 3362 5 1.0863820 0
## 3363 0 0.0000000 0
## 3364 0 0.0000000 0
## 3365 1 0.2172763 0
## 3366 1 0.2172763 0
## 3367 0 0.0000000 0
## 3368 0 0.0000000 0
## 3369 0 0.0000000 0
## 3370 0 0.0000000 0
## 3371 0 0.0000000 0
## 3372 0 0.0000000 0
## 3373 0 0.0000000 0
## 3374 0 0.0000000 0
## 3375 0 0.0000000 0
## 3376 0 0.0000000 0
## 3377 0 0.0000000 0
## 3378 0 0.0000000 0
## 3379 1 0.2172763 0
## 3380 0 0.0000000 0
## 3381 0 0.0000000 0
## 3382 0 0.0000000 0
## 3383 0 0.0000000 0
## 3384 0 0.0000000 0
## 3385 0 0.0000000 0
## 3386 0 0.0000000 0
## 3387 0 0.0000000 0
## 3388 0 0.0000000 0
## 3389 2 0.4345527 0
## 3390 0 0.0000000 0
## 3391 0 0.0000000 0
## 3392 0 0.0000000 0
## 3393 0 0.0000000 0
## 3394 0 0.0000000 0
## 3395 0 0.0000000 0
## 3396 0 0.0000000 0
## 3397 0 0.0000000 0
## 3398 0 0.0000000 0
## 3399 1 0.2172763 0
## 3400 0 0.0000000 0
## 3401 0 0.0000000 0
## 3402 0 0.0000000 0
## 3403 1 0.2172763 0
## 3404 4 0.8691053 0
## 3405 0 0.0000000 0
## 3406 1 0.2172763 0
## 3407 0 0.0000000 0
## 3408 0 0.0000000 0
## 3409 0 0.0000000 0
## 3410 0 0.0000000 0
## 3411 5 1.0863820 0
## 3412 0 0.0000000 0
## 3413 0 0.0000000 0
## 3414 0 0.0000000 0
## 3415 0 0.0000000 0
## 3416 0 0.0000000 0
## 3417 0 0.0000000 0
## 3418 0 0.0000000 0
## 3419 0 0.0000000 0
## 3420 0 0.0000000 0
## 3421 1 0.2172763 0
## 3422 0 0.0000000 0
## 3423 0 0.0000000 0
## 3424 0 0.0000000 0
## 3425 0 0.0000000 0
## 3426 0 0.0000000 0
## 3427 0 0.0000000 0
## 3428 0 0.0000000 0
## 3429 0 0.0000000 0
## 3430 0 0.0000000 0
## 3431 0 0.0000000 0
## 3432 0 0.0000000 0
## 3433 0 0.0000000 0
## 3434 0 0.0000000 0
## 3435 0 0.0000000 0
## 3436 0 0.0000000 0
## 3437 0 0.0000000 0
## 3438 0 0.0000000 0
## 3439 0 0.0000000 0
## 3440 0 0.0000000 0
## 3441 0 0.0000000 0
## 3442 0 0.0000000 0
## 3443 0 0.0000000 0
## 3444 0 0.0000000 0
## 3445 0 0.0000000 0
## 3446 0 0.0000000 0
## 3447 0 0.0000000 0
## 3448 0 0.0000000 0
## 3449 0 0.0000000 0
## 3450 0 0.0000000 0
## 3451 1 0.2172763 0
## 3452 0 0.0000000 0
## 3453 0 0.0000000 0
## 3454 0 0.0000000 0
## 3455 0 0.0000000 0
## 3456 0 0.0000000 0
## 3457 0 0.0000000 0
## 3458 0 0.0000000 0
## 3459 0 0.0000000 0
## 3460 0 0.0000000 0
## 3461 0 0.0000000 0
## 3462 0 0.0000000 0
## 3463 0 0.0000000 0
## 3464 0 0.0000000 0
## 3465 0 0.0000000 0
## 3466 0 0.0000000 0
## 3467 0 0.0000000 0
## 3468 0 0.0000000 0
## 3469 1 0.2172763 0
## 3470 0 0.0000000 0
## 3471 0 0.0000000 0
## 3472 0 0.0000000 0
## 3473 0 0.0000000 0
## 3474 0 0.0000000 0
## 3475 0 0.0000000 0
## 3476 0 0.0000000 0
## 3477 0 0.0000000 0
## 3478 0 0.0000000 0
## 3479 0 0.0000000 0
## 3480 0 0.0000000 0
## 3481 5 1.0863820 0
## 3482 0 0.0000000 0
## 3483 0 0.0000000 0
## 3484 0 0.0000000 0
## 3485 0 0.0000000 0
## 3486 0 0.0000000 0
## 3487 0 0.0000000 0
## 3488 0 0.0000000 0
## 3489 0 0.0000000 0
## 3490 0 0.0000000 0
## 3491 0 0.0000000 0
## 3492 0 0.0000000 0
## 3493 1 0.2172763 0
## 3494 0 0.0000000 0
## 3495 0 0.0000000 0
## 3496 0 0.0000000 0
## 3497 0 0.0000000 0
## 3498 0 0.0000000 0
## 3499 0 0.0000000 0
## 3500 0 0.0000000 0
## 3501 0 0.0000000 0
## 3502 0 0.0000000 0
## 3503 0 0.0000000 0
## 3504 0 0.0000000 0
## 3505 0 0.0000000 0
## 3506 0 0.0000000 0
## 3507 0 0.0000000 0
## 3508 0 0.0000000 0
## 3509 0 0.0000000 0
## 3510 0 0.0000000 0
## 3511 0 0.0000000 0
## 3512 0 0.0000000 0
## 3513 0 0.0000000 0
## 3514 0 0.0000000 0
## 3515 0 0.0000000 0
## 3516 0 0.0000000 0
## 3517 0 0.0000000 0
## 3518 0 0.0000000 0
## 3519 0 0.0000000 0
## 3520 0 0.0000000 0
## 3521 0 0.0000000 0
## 3522 0 0.0000000 0
## 3523 0 0.0000000 0
## 3524 0 0.0000000 0
## 3525 0 0.0000000 0
## 3526 0 0.0000000 0
## 3527 0 0.0000000 0
## 3528 0 0.0000000 0
## 3529 0 0.0000000 0
## 3530 1 0.2172763 0
## 3531 0 0.0000000 0
## 3532 0 0.0000000 0
## 3533 0 0.0000000 0
## 3534 0 0.0000000 0
## 3535 0 0.0000000 0
## 3536 0 0.0000000 0
## 3537 0 0.0000000 0
## 3538 0 0.0000000 0
## 3539 0 0.0000000 0
## 3540 0 0.0000000 0
## 3541 0 0.0000000 0
## 3542 0 0.0000000 0
## 3543 1 0.2172763 0
## 3544 1 0.2172763 0
## 3545 0 0.0000000 0
## 3546 0 0.0000000 0
## 3547 0 0.0000000 0
## 3548 0 0.0000000 0
## 3549 0 0.0000000 0
## 3550 0 0.0000000 0
## 3551 0 0.0000000 0
## 3552 0 0.0000000 0
## 3553 0 0.0000000 0
## 3554 3 0.6518290 0
## 3555 0 0.0000000 0
## 3556 13 2.8245920 0
## 3557 0 0.0000000 0
## 3558 2 0.4345527 0
## 3559 1 0.2172763 0
## 3560 0 0.0000000 0
## 3561 0 0.0000000 0
## 3562 0 0.0000000 0
## 3563 9 1.9554870 0
## 3564 0 0.0000000 0
## 3565 0 0.0000000 0
## 3566 0 0.0000000 0
## 3567 0 0.0000000 0
## 3568 0 0.0000000 0
## 3569 0 0.0000000 0
## 3570 0 0.0000000 0
## 3571 1 0.2172763 0
## 3572 0 0.0000000 0
## 3573 0 0.0000000 0
## 3574 0 0.0000000 0
## 3575 0 0.0000000 0
## 3576 0 0.0000000 0
## 3577 1 0.2172763 0
## 3578 0 0.0000000 0
## 3579 0 0.0000000 0
## 3580 0 0.0000000 0
## 3581 0 0.0000000 0
## 3582 0 0.0000000 0
## 3583 0 0.0000000 0
## 3584 0 0.0000000 0
## 3585 0 0.0000000 0
## 3586 0 0.0000000 0
## 3587 0 0.0000000 0
## 3588 0 0.0000000 0
## 3589 0 0.0000000 0
## 3590 0 0.0000000 0
## 3591 0 0.0000000 0
## 3592 0 0.0000000 0
## 3593 0 0.0000000 0
## 3594 3 0.6518290 0
## 3595 0 0.0000000 0
## 3596 0 0.0000000 0
## 3597 0 0.0000000 0
## 3598 0 0.0000000 0
## 3599 0 0.0000000 0
## 3600 0 0.0000000 0
## 3601 1 0.2172763 0
## 3602 0 0.0000000 0
## 3603 0 0.0000000 0
## 3604 1 0.2172763 0
## 3605 0 0.0000000 0
## 3606 0 0.0000000 0
## 3607 1 0.2172763 0
## 3608 0 0.0000000 0
## 3609 0 0.0000000 0
## 3610 0 0.0000000 0
## 3611 0 0.0000000 0
## 3612 0 0.0000000 0
## 3613 0 0.0000000 0
## 3614 0 0.0000000 0
## 3615 0 0.0000000 0
## 3616 0 0.0000000 0
## 3617 0 0.0000000 0
## 3618 0 0.0000000 0
## 3619 9 1.9554870 0
## 3620 0 0.0000000 0
## 3621 0 0.0000000 0
## 3622 0 0.0000000 0
## 3623 0 0.0000000 0
## 3624 0 0.0000000 0
## 3625 0 0.0000000 0
## 3626 0 0.0000000 0
## 3627 0 0.0000000 0
## 3628 1 0.2172763 0
## 3629 0 0.0000000 0
## 3630 0 0.0000000 0
## 3631 0 0.0000000 0
## 3632 0 0.0000000 0
## 3633 1 0.2172763 0
## 3634 1 0.2172763 0
## 3635 1 0.2172763 0
## 3636 0 0.0000000 0
## 3637 0 0.0000000 0
## 3638 0 0.0000000 0
## 3639 0 0.0000000 0
## 3640 0 0.0000000 0
## 3641 0 0.0000000 0
## 3642 1 0.2172763 0
## 3643 0 0.0000000 0
## 3644 0 0.0000000 0
## 3645 0 0.0000000 0
## 3646 0 0.0000000 0
## 3647 0 0.0000000 0
## 3648 0 0.0000000 0
## 3649 1 0.2172763 0
## 3650 0 0.0000000 0
## 3651 1 0.2172763 0
## 3652 5 1.0863820 0
## 3653 5 1.0863820 0
## 3654 0 0.0000000 0
## 3655 4 0.8691053 0
## 3656 0 0.0000000 0
## 3657 0 0.0000000 0
## 3658 0 0.0000000 0
## 3659 3 0.6518290 0
## 3660 0 0.0000000 0
## 3661 0 0.0000000 0
## 3662 0 0.0000000 0
## 3663 1 0.2172763 0
## 3664 0 0.0000000 0
## 3665 7 1.5209340 0
## 3666 5 1.0863820 0
## 3667 0 0.0000000 0
## 3668 0 0.0000000 0
## 3669 0 0.0000000 0
## 3670 4 0.8691053 0
## 3671 0 0.0000000 0
## 3672 0 0.0000000 0
## 3673 0 0.0000000 0
## 3674 0 0.0000000 0
## 3675 2 0.4345527 0
## 3676 0 0.0000000 0
## 3677 0 0.0000000 0
## 3678 0 0.0000000 0
## 3679 0 0.0000000 0
## 3680 0 0.0000000 0
## 3681 0 0.0000000 0
## 3682 2 0.4345527 0
## 3683 2 0.4345527 0
## 3684 0 0.0000000 0
## 3685 0 0.0000000 0
## 3686 0 0.0000000 0
## 3687 0 0.0000000 0
## 3688 0 0.0000000 0
## 3689 0 0.0000000 0
## 3690 2 0.4345527 0
## 3691 0 0.0000000 0
## 3692 0 0.0000000 0
## 3693 4 0.8691053 0
## 3694 1 0.2172763 0
## 3695 0 0.0000000 0
## 3696 0 0.0000000 0
## 3697 0 0.0000000 0
## 3698 0 0.0000000 0
## 3699 1 0.2172763 0
## 3700 0 0.0000000 0
## 3701 0 0.0000000 0
## 3702 0 0.0000000 0
## 3703 5 1.0863820 0
## 3704 0 0.0000000 0
## 3705 0 0.0000000 0
## 3706 0 0.0000000 0
## 3707 1 0.2172763 0
## 3708 2 0.4345527 0
## 3709 0 0.0000000 0
## 3710 1 0.2172763 0
## 3711 0 0.0000000 0
## 3712 0 0.0000000 0
## 3713 4 0.8691053 0
## 3714 0 0.0000000 0
## 3715 0 0.0000000 0
## 3716 0 0.0000000 0
## 3717 2 0.4345527 0
## 3718 4 0.8691053 0
## 3719 0 0.0000000 0
## 3720 0 0.0000000 0
## 3721 0 0.0000000 0
## 3722 0 0.0000000 0
## 3723 0 0.0000000 0
## 3724 0 0.0000000 0
## 3725 0 0.0000000 0
## 3726 0 0.0000000 0
## 3727 0 0.0000000 0
## 3728 0 0.0000000 0
## 3729 2 0.4345527 0
## 3730 0 0.0000000 0
## 3731 0 0.0000000 0
## 3732 0 0.0000000 0
## 3733 0 0.0000000 0
## 3734 0 0.0000000 0
## 3735 0 0.0000000 0
## 3736 0 0.0000000 0
## 3737 0 0.0000000 0
## 3738 0 0.0000000 0
## 3739 0 0.0000000 0
## 3740 0 0.0000000 0
## 3741 0 0.0000000 0
## 3742 0 0.0000000 0
## 3743 0 0.0000000 0
## 3744 0 0.0000000 0
## 3745 0 0.0000000 0
## 3746 0 0.0000000 0
## 3747 0 0.0000000 0
## 3748 0 0.0000000 0
## 3749 0 0.0000000 0
## 3750 0 0.0000000 0
## 3751 0 0.0000000 0
## 3752 0 0.0000000 0
## 3753 0 0.0000000 0
## 3754 0 0.0000000 0
## 3755 0 0.0000000 0
## 3756 0 0.0000000 0
## 3757 0 0.0000000 0
## 3758 0 0.0000000 0
## 3759 0 0.0000000 0
## 3760 0 0.0000000 0
## 3761 0 0.0000000 0
## 3762 0 0.0000000 0
## 3763 0 0.0000000 0
## 3764 0 0.0000000 0
## 3765 0 0.0000000 0
## 3766 0 0.0000000 0
## 3767 0 0.0000000 0
## 3768 0 0.0000000 0
## 3769 0 0.0000000 0
## 3770 0 0.0000000 0
## 3771 0 0.0000000 0
## 3772 0 0.0000000 0
## 3773 0 0.0000000 0
## 3774 0 0.0000000 0
## 3775 0 0.0000000 0
## 3776 0 0.0000000 0
## 3777 0 0.0000000 0
## 3778 0 0.0000000 0
## 3779 0 0.0000000 0
## 3780 0 0.0000000 0
## 3781 0 0.0000000 0
## 3782 0 0.0000000 0
## 3783 0 0.0000000 0
## 3784 0 0.0000000 0
## 3785 0 0.0000000 0
## 3786 0 0.0000000 0
## 3787 0 0.0000000 0
## 3788 0 0.0000000 0
## 3789 0 0.0000000 0
## 3790 0 0.0000000 0
## 3791 0 0.0000000 0
## 3792 0 0.0000000 0
## 3793 0 0.0000000 0
## 3794 0 0.0000000 0
## 3795 0 0.0000000 0
## 3796 0 0.0000000 0
## 3797 0 0.0000000 0
## 3798 0 0.0000000 0
## 3799 0 0.0000000 0
## 3800 0 0.0000000 0
## 3801 0 0.0000000 0
## 3802 0 0.0000000 0
## 3803 0 0.0000000 0
## 3804 2 0.4345527 0
## 3805 2 0.4345527 0
## 3806 0 0.0000000 0
## 3807 0 0.0000000 0
## 3808 0 0.0000000 0
## 3809 0 0.0000000 0
## 3810 0 0.0000000 0
## 3811 0 0.0000000 0
## 3812 0 0.0000000 0
## 3813 0 0.0000000 0
## 3814 0 0.0000000 0
## 3815 0 0.0000000 0
## 3816 0 0.0000000 0
## 3817 0 0.0000000 0
## 3818 0 0.0000000 0
## 3819 0 0.0000000 0
## 3820 0 0.0000000 0
## 3821 0 0.0000000 0
## 3822 0 0.0000000 0
## 3823 0 0.0000000 0
## 3824 0 0.0000000 0
## 3825 0 0.0000000 0
## 3826 1 0.2172763 0
## 3827 0 0.0000000 0
## 3828 0 0.0000000 0
## 3829 0 0.0000000 0
## 3830 0 0.0000000 0
## 3831 0 0.0000000 0
## 3832 0 0.0000000 0
## 3833 0 0.0000000 0
## 3834 0 0.0000000 0
## 3835 0 0.0000000 0
## 3836 0 0.0000000 0
## 3837 0 0.0000000 0
## 3838 0 0.0000000 0
## 3839 0 0.0000000 0
## 3840 4 0.8691053 0
## 3841 0 0.0000000 0
## 3842 0 0.0000000 0
## 3843 0 0.0000000 0
## 3844 1 0.2172763 0
## 3845 0 0.0000000 0
## 3846 0 0.0000000 0
## 3847 0 0.0000000 0
## 3848 0 0.0000000 0
## 3849 0 0.0000000 0
## 3850 0 0.0000000 0
## 3851 0 0.0000000 0
## 3852 0 0.0000000 0
## 3853 0 0.0000000 0
## 3854 0 0.0000000 0
## 3855 0 0.0000000 0
## 3856 2 0.4345527 0
## 3857 0 0.0000000 0
## 3858 0 0.0000000 0
## 3859 0 0.0000000 0
## 3860 0 0.0000000 0
## 3861 0 0.0000000 0
## 3862 0 0.0000000 0
## 3863 1 0.2172763 0
## 3864 0 0.0000000 0
## 3865 0 0.0000000 0
## 3866 0 0.0000000 0
## 3867 0 0.0000000 0
## 3868 3 0.6518290 0
## 3869 9 1.9554870 0
## 3870 0 0.0000000 0
## 3871 0 0.0000000 0
## 3872 0 0.0000000 0
## 3873 2 0.4345527 0
## 3874 0 0.0000000 0
## 3875 0 0.0000000 0
## 3876 0 0.0000000 0
## 3877 0 0.0000000 0
## 3878 0 0.0000000 0
## 3879 2 0.4345527 0
## 3880 0 0.0000000 0
## 3881 0 0.0000000 0
## 3882 0 0.0000000 0
## 3883 2 0.4345527 0
## 3884 0 0.0000000 0
## 3885 0 0.0000000 0
## 3886 1 0.2172763 0
## 3887 3 0.6518290 0
## 3888 0 0.0000000 0
## 3889 0 0.0000000 0
## 3890 0 0.0000000 0
## 3891 0 0.0000000 0
## 3892 0 0.0000000 0
## 3893 0 0.0000000 0
## 3894 0 0.0000000 0
## 3895 0 0.0000000 0
## 3896 0 0.0000000 0
## 3897 0 0.0000000 0
## 3898 0 0.0000000 0
## 3899 3 0.6518290 0
## 3900 0 0.0000000 0
## 3901 0 0.0000000 0
## 3902 1 0.2172763 0
## 3903 0 0.0000000 0
## 3904 2 0.4345527 0
## 3905 1 0.2172763 0
## 3906 1 0.2172763 0
## 3907 0 0.0000000 0
## 3908 0 0.0000000 0
## 3909 0 0.0000000 0
## 3910 0 0.0000000 0
## 3911 0 0.0000000 0
## 3912 3 0.6518290 0
## 3913 0 0.0000000 0
## 3914 0 0.0000000 0
## 3915 0 0.0000000 0
## 3916 0 0.0000000 0
## 3917 0 0.0000000 0
## 3918 0 0.0000000 0
## 3919 1 0.2172763 0
## 3920 1 0.2172763 0
## 3921 0 0.0000000 0
## 3922 0 0.0000000 0
## 3923 0 0.0000000 0
## 3924 0 0.0000000 0
## 3925 0 0.0000000 0
## 3926 0 0.0000000 0
## 3927 8 1.7382110 0
## 3928 0 0.0000000 0
## 3929 0 0.0000000 0
## 3930 0 0.0000000 0
## 3931 8 1.7382110 0
## 3932 4 0.8691053 0
## 3933 0 0.0000000 0
## 3934 3 0.6518290 0
## 3935 0 0.0000000 0
## 3936 5 1.0863820 0
## 3937 5 1.0863820 0
## 3938 0 0.0000000 0
## 3939 0 0.0000000 0
## 3940 0 0.0000000 0
## 3941 0 0.0000000 0
## 3942 1 0.2172763 0
## 3943 6 1.3036580 0
## 3944 1 0.2172763 0
## 3945 1 0.2172763 0
## 3946 0 0.0000000 0
## 3947 0 0.0000000 0
## 3948 3 0.6518290 0
## 3949 0 0.0000000 0
## 3950 0 0.0000000 0
## 3951 0 0.0000000 0
## 3952 0 0.0000000 0
## 3953 0 0.0000000 0
## 3954 0 0.0000000 0
## 3955 0 0.0000000 0
## 3956 0 0.0000000 0
## 3957 0 0.0000000 0
## 3958 0 0.0000000 0
## 3959 2 0.4345527 0
## 3960 0 0.0000000 0
## 3961 0 0.0000000 0
## 3962 0 0.0000000 0
## 3963 0 0.0000000 0
## 3964 0 0.0000000 0
## 3965 0 0.0000000 0
## 3966 1 0.2172763 0
## 3967 0 0.0000000 0
## 3968 0 0.0000000 0
## 3969 0 0.0000000 0
## 3970 1 0.2172763 0
## 3971 0 0.0000000 0
## 3972 1 0.2172763 0
## 3973 0 0.0000000 0
## 3974 0 0.0000000 0
## 3975 0 0.0000000 0
## 3976 2 0.4345527 0
## 3977 0 0.0000000 0
## 3978 9 1.9554870 0
## 3979 0 0.0000000 0
## 3980 0 0.0000000 0
## 3981 0 0.0000000 0
## 3982 0 0.0000000 0
## 3983 0 0.0000000 0
## 3984 0 0.0000000 0
## 3985 0 0.0000000 0
## 3986 0 0.0000000 0
## 3987 0 0.0000000 0
## 3988 0 0.0000000 0
## 3989 0 0.0000000 0
## 3990 0 0.0000000 0
## 3991 0 0.0000000 0
## 3992 0 0.0000000 0
## 3993 0 0.0000000 0
## 3994 0 0.0000000 0
## 3995 0 0.0000000 0
## 3996 0 0.0000000 0
## 3997 0 0.0000000 0
## 3998 0 0.0000000 0
## 3999 2 0.4345527 0
## 4000 0 0.0000000 0
## 4001 0 0.0000000 0
## 4002 0 0.0000000 0
## 4003 0 0.0000000 0
## 4004 0 0.0000000 0
## 4005 0 0.0000000 0
## 4006 0 0.0000000 0
## 4007 2 0.4345527 0
## 4008 0 0.0000000 0
## 4009 0 0.0000000 0
## 4010 0 0.0000000 0
## 4011 0 0.0000000 0
## 4012 0 0.0000000 0
## 4013 0 0.0000000 0
## 4014 0 0.0000000 0
## 4015 0 0.0000000 0
## 4016 0 0.0000000 0
## 4017 0 0.0000000 0
## 4018 0 0.0000000 0
## 4019 0 0.0000000 0
## 4020 0 0.0000000 0
## 4021 0 0.0000000 0
## 4022 0 0.0000000 0
## 4023 0 0.0000000 0
## 4024 0 0.0000000 0
## 4025 4 0.8691053 0
## 4026 0 0.0000000 0
## 4027 0 0.0000000 0
## 4028 0 0.0000000 0
## 4029 0 0.0000000 0
## 4030 0 0.0000000 0
## 4031 0 0.0000000 0
## 4032 0 0.0000000 0
## 4033 0 0.0000000 0
## 4034 0 0.0000000 0
## 4035 0 0.0000000 0
## 4036 2 0.4345527 0
## 4037 2 0.4345527 0
## 4038 0 0.0000000 0
## 4039 0 0.0000000 0
## 4040 0 0.0000000 0
## 4041 0 0.0000000 0
## 4042 2 0.4345527 0
## 4043 0 0.0000000 0
## 4044 0 0.0000000 0
## 4045 0 0.0000000 0
## 4046 0 0.0000000 0
## 4047 2 0.4345527 0
## 4048 0 0.0000000 0
## 4049 0 0.0000000 0
## 4050 1 0.2172763 0
## 4051 0 0.0000000 0
## 4052 0 0.0000000 0
## 4053 1 0.2172763 0
## 4054 0 0.0000000 0
## 4055 0 0.0000000 0
## 4056 0 0.0000000 0
## 4057 0 0.0000000 0
## 4058 0 0.0000000 0
## 4059 0 0.0000000 0
## 4060 0 0.0000000 0
## 4061 0 0.0000000 0
## 4062 0 0.0000000 0
## 4063 0 0.0000000 0
## 4064 0 0.0000000 0
## 4065 2 0.4345527 0
## 4066 0 0.0000000 0
## 4067 0 0.0000000 0
## 4068 2 0.4345527 0
## 4069 2 0.4345527 0
## 4070 0 0.0000000 0
## 4071 0 0.0000000 0
## 4072 0 0.0000000 0
## 4073 0 0.0000000 0
## 4074 0 0.0000000 0
## 4075 0 0.0000000 0
## 4076 0 0.0000000 0
## 4077 0 0.0000000 0
## 4078 0 0.0000000 0
## 4079 0 0.0000000 0
## 4080 0 0.0000000 0
## 4081 0 0.0000000 0
## 4082 1 0.2172763 0
## 4083 0 0.0000000 0
## 4084 0 0.0000000 0
## 4085 3 0.6518290 0
## 4086 0 0.0000000 0
## 4087 2 0.4345527 0
## 4088 0 0.0000000 0
## 4089 0 0.0000000 0
## 4090 0 0.0000000 0
## 4091 0 0.0000000 0
## 4092 0 0.0000000 0
## 4093 0 0.0000000 0
## 4094 0 0.0000000 0
## 4095 0 0.0000000 0
## 4096 0 0.0000000 0
## 4097 0 0.0000000 0
## 4098 0 0.0000000 0
## 4099 0 0.0000000 0
## 4100 0 0.0000000 0
## 4101 0 0.0000000 0
## 4102 2 0.4345527 0
## 4103 0 0.0000000 0
## 4104 0 0.0000000 0
## 4105 0 0.0000000 0
## 4106 3 0.6518290 0
## 4107 0 0.0000000 0
## 4108 0 0.0000000 0
## 4109 0 0.0000000 0
## 4110 0 0.0000000 0
## 4111 0 0.0000000 0
## 4112 0 0.0000000 0
## 4113 0 0.0000000 0
## 4114 0 0.0000000 0
## 4115 0 0.0000000 0
## 4116 0 0.0000000 0
## 4117 1 0.2172763 0
## 4118 1 0.2172763 0
## 4119 1 0.2172763 0
## 4120 0 0.0000000 0
## 4121 0 0.0000000 0
## 4122 0 0.0000000 0
## 4123 0 0.0000000 0
## 4124 0 0.0000000 0
## 4125 0 0.0000000 0
## 4126 0 0.0000000 0
## 4127 0 0.0000000 0
## 4128 0 0.0000000 0
## 4129 0 0.0000000 0
## 4130 0 0.0000000 0
## 4131 0 0.0000000 0
## 4132 0 0.0000000 0
## 4133 0 0.0000000 0
## 4134 0 0.0000000 0
## 4135 2 0.4345527 0
## 4136 0 0.0000000 0
## 4137 0 0.0000000 0
## 4138 0 0.0000000 0
## 4139 0 0.0000000 0
## 4140 8 1.7382110 0
## 4141 3 0.6518290 0
## 4142 0 0.0000000 0
## 4143 0 0.0000000 0
## 4144 0 0.0000000 0
## 4145 0 0.0000000 0
## 4146 0 0.0000000 0
## 4147 2 0.4345527 0
## 4148 0 0.0000000 0
## 4149 0 0.0000000 0
## 4150 0 0.0000000 0
## 4151 0 0.0000000 0
## 4152 0 0.0000000 0
## 4153 0 0.0000000 0
## 4154 0 0.0000000 0
## 4155 0 0.0000000 0
## 4156 0 0.0000000 0
## 4157 0 0.0000000 0
## 4158 0 0.0000000 0
## 4159 0 0.0000000 0
## 4160 0 0.0000000 0
## 4161 0 0.0000000 0
## 4162 0 0.0000000 0
## 4163 0 0.0000000 0
## 4164 0 0.0000000 0
## 4165 0 0.0000000 0
## 4166 0 0.0000000 0
## 4167 0 0.0000000 0
## 4168 0 0.0000000 0
## 4169 0 0.0000000 0
## 4170 0 0.0000000 0
## 4171 0 0.0000000 0
## 4172 0 0.0000000 0
## 4173 0 0.0000000 0
## 4174 0 0.0000000 0
## 4175 0 0.0000000 0
## 4176 0 0.0000000 0
## 4177 0 0.0000000 0
## 4178 0 0.0000000 0
## 4179 0 0.0000000 0
## 4180 0 0.0000000 0
## 4181 0 0.0000000 0
## 4182 0 0.0000000 0
## 4183 0 0.0000000 0
## 4184 0 0.0000000 0
## 4185 0 0.0000000 0
## 4186 0 0.0000000 0
## 4187 0 0.0000000 0
## 4188 0 0.0000000 0
## 4189 0 0.0000000 0
## 4190 0 0.0000000 0
## 4191 1 0.2172763 0
## 4192 0 0.0000000 0
## 4193 0 0.0000000 0
## 4194 0 0.0000000 0
## 4195 0 0.0000000 0
## 4196 2 0.4345527 0
## 4197 0 0.0000000 0
## 4198 0 0.0000000 0
## 4199 0 0.0000000 0
## 4200 0 0.0000000 0
## 4201 0 0.0000000 0
## 4202 0 0.0000000 0
## 4203 0 0.0000000 0
## 4204 0 0.0000000 0
## 4205 0 0.0000000 0
## 4206 0 0.0000000 0
## 4207 0 0.0000000 0
## 4208 0 0.0000000 0
## 4209 0 0.0000000 0
## 4210 0 0.0000000 0
## 4211 0 0.0000000 0
## 4212 0 0.0000000 0
## 4213 0 0.0000000 0
## 4214 0 0.0000000 0
## 4215 0 0.0000000 0
## 4216 0 0.0000000 0
## 4217 0 0.0000000 0
## 4218 0 0.0000000 0
## 4219 0 0.0000000 0
## 4220 0 0.0000000 0
## 4221 0 0.0000000 0
## 4222 0 0.0000000 0
## Hyper_Fold_Enrichment Hyper_Region_Set_Coverage Hyper_Term_Region_Coverage
## 1 2.0920150 0.030425960 0.45454550
## 2 2.0920150 0.030425960 0.45454550
## 3 3.4518260 0.012170390 0.75000000
## 4 3.8353620 0.010141990 0.83333330
## 5 1.8605580 0.038539550 0.40425530
## 6 2.0304860 0.030425960 0.44117650
## 7 2.0304860 0.030425960 0.44117650
## 8 2.2091680 0.024340770 0.48000000
## 9 2.4546320 0.016227180 0.53333330
## 10 1.2316370 0.192697800 0.26760560
## 11 4.6024340 0.006085193 1.00000000
## 12 4.6024340 0.006085193 1.00000000
## 13 4.6024340 0.006085193 1.00000000
## 14 4.6024340 0.006085193 1.00000000
## 15 4.6024340 0.006085193 1.00000000
## 16 4.6024340 0.006085193 1.00000000
## 17 4.6024340 0.006085193 1.00000000
## 18 2.4782340 0.014198780 0.53846150
## 19 2.4782340 0.014198780 0.53846150
## 20 1.9471840 0.022312370 0.42307690
## 21 1.8409740 0.024340770 0.40000000
## 22 2.3012170 0.014198780 0.50000000
## 23 2.3012170 0.014198780 0.50000000
## 24 2.3012170 0.014198780 0.50000000
## 25 3.0682890 0.008113590 0.66666670
## 26 3.0682890 0.008113590 0.66666670
## 27 2.5569080 0.010141990 0.55555560
## 28 2.1478030 0.014198780 0.46666670
## 29 2.1478030 0.014198780 0.46666670
## 30 2.1478030 0.014198780 0.46666670
## 31 1.8409740 0.020283980 0.40000000
## 32 1.8409740 0.020283980 0.40000000
## 33 3.4518260 0.006085193 0.75000000
## 34 3.4518260 0.006085193 0.75000000
## 35 3.4518260 0.006085193 0.75000000
## 36 3.4518260 0.006085193 0.75000000
## 37 3.4518260 0.006085193 0.75000000
## 38 3.4518260 0.006085193 0.75000000
## 39 3.4518260 0.006085193 0.75000000
## 40 3.4518260 0.006085193 0.75000000
## 41 1.6108520 0.028397570 0.35000000
## 42 2.0135650 0.014198780 0.43750000
## 43 2.1242000 0.012170390 0.46153850
## 44 2.1242000 0.012170390 0.46153850
## 45 2.6299620 0.008113590 0.57142860
## 46 2.3012170 0.010141990 0.50000000
## 47 2.3012170 0.010141990 0.50000000
## 48 4.6024340 0.004056795 1.00000000
## 49 4.6024340 0.004056795 1.00000000
## 50 4.6024340 0.004056795 1.00000000
## 51 4.6024340 0.004056795 1.00000000
## 52 4.6024340 0.004056795 1.00000000
## 53 4.6024340 0.004056795 1.00000000
## 54 4.6024340 0.004056795 1.00000000
## 55 4.6024340 0.004056795 1.00000000
## 56 4.6024340 0.004056795 1.00000000
## 57 4.6024340 0.004056795 1.00000000
## 58 4.6024340 0.004056795 1.00000000
## 59 4.6024340 0.004056795 1.00000000
## 60 4.6024340 0.004056795 1.00000000
## 61 4.6024340 0.004056795 1.00000000
## 62 4.6024340 0.004056795 1.00000000
## 63 4.6024340 0.004056795 1.00000000
## 64 4.6024340 0.004056795 1.00000000
## 65 4.6024340 0.004056795 1.00000000
## 66 4.6024340 0.004056795 1.00000000
## 67 4.6024340 0.004056795 1.00000000
## 68 4.6024340 0.004056795 1.00000000
## 69 4.6024340 0.004056795 1.00000000
## 70 4.6024340 0.004056795 1.00000000
## 71 4.6024340 0.004056795 1.00000000
## 72 1.7046050 0.020283980 0.37037040
## 73 1.0897450 0.381338700 0.23677580
## 74 1.9724720 0.012170390 0.42857140
## 75 1.7533080 0.016227180 0.38095240
## 76 2.0920150 0.010141990 0.45454550
## 77 1.4041320 0.036511160 0.30508470
## 78 2.7614600 0.006085193 0.60000000
## 79 2.7614600 0.006085193 0.60000000
## 80 2.7614600 0.006085193 0.60000000
## 81 2.7614600 0.006085193 0.60000000
## 82 2.7614600 0.006085193 0.60000000
## 83 2.7614600 0.006085193 0.60000000
## 84 2.7614600 0.006085193 0.60000000
## 85 2.7614600 0.006085193 0.60000000
## 86 2.7614600 0.006085193 0.60000000
## 87 2.7614600 0.006085193 0.60000000
## 88 2.7614600 0.006085193 0.60000000
## 89 2.7614600 0.006085193 0.60000000
## 90 2.7614600 0.006085193 0.60000000
## 91 2.3012170 0.008113590 0.50000000
## 92 2.3012170 0.008113590 0.50000000
## 93 2.3012170 0.008113590 0.50000000
## 94 1.7898350 0.014198780 0.38888890
## 95 1.5341450 0.022312370 0.33333330
## 96 1.4593080 0.026369170 0.31707320
## 97 1.4318680 0.028397570 0.31111110
## 98 1.6956340 0.014198780 0.36842110
## 99 1.9176810 0.010141990 0.41666670
## 100 1.9176810 0.010141990 0.41666670
## 101 1.9176810 0.010141990 0.41666670
## 102 1.9176810 0.010141990 0.41666670
## 103 1.3807300 0.030425960 0.30000000
## 104 2.0455260 0.008113590 0.44444440
## 105 2.0455260 0.008113590 0.44444440
## 106 2.0455260 0.008113590 0.44444440
## 107 2.0455260 0.008113590 0.44444440
## 108 2.0455260 0.008113590 0.44444440
## 109 2.0455260 0.008113590 0.44444440
## 110 2.3012170 0.006085193 0.50000000
## 111 2.3012170 0.006085193 0.50000000
## 112 2.3012170 0.006085193 0.50000000
## 113 3.0682890 0.004056795 0.66666670
## 114 3.0682890 0.004056795 0.66666670
## 115 3.0682890 0.004056795 0.66666670
## 116 3.0682890 0.004056795 0.66666670
## 117 3.0682890 0.004056795 0.66666670
## 118 3.0682890 0.004056795 0.66666670
## 119 3.0682890 0.004056795 0.66666670
## 120 3.0682890 0.004056795 0.66666670
## 121 3.0682890 0.004056795 0.66666670
## 122 3.0682890 0.004056795 0.66666670
## 123 3.0682890 0.004056795 0.66666670
## 124 3.0682890 0.004056795 0.66666670
## 125 3.0682890 0.004056795 0.66666670
## 126 3.0682890 0.004056795 0.66666670
## 127 3.0682890 0.004056795 0.66666670
## 128 3.0682890 0.004056795 0.66666670
## 129 3.0682890 0.004056795 0.66666670
## 130 3.0682890 0.004056795 0.66666670
## 131 3.0682890 0.004056795 0.66666670
## 132 3.0682890 0.004056795 0.66666670
## 133 3.0682890 0.004056795 0.66666670
## 134 3.0682890 0.004056795 0.66666670
## 135 3.0682890 0.004056795 0.66666670
## 136 3.0682890 0.004056795 0.66666670
## 137 3.0682890 0.004056795 0.66666670
## 138 3.0682890 0.004056795 0.66666670
## 139 3.0682890 0.004056795 0.66666670
## 140 3.0682890 0.004056795 0.66666670
## 141 3.0682890 0.004056795 0.66666670
## 142 3.0682890 0.004056795 0.66666670
## 143 3.0682890 0.004056795 0.66666670
## 144 3.0682890 0.004056795 0.66666670
## 145 3.0682890 0.004056795 0.66666670
## 146 3.0682890 0.004056795 0.66666670
## 147 3.0682890 0.004056795 0.66666670
## 148 3.0682890 0.004056795 0.66666670
## 149 1.2601900 0.046653140 0.27380950
## 150 1.2601900 0.046653140 0.27380950
## 151 1.4382610 0.020283980 0.31250000
## 152 1.3807300 0.024340770 0.30000000
## 153 1.3807300 0.024340770 0.30000000
## 154 1.6243880 0.012170390 0.35294120
## 155 1.6243880 0.012170390 0.35294120
## 156 1.6243880 0.012170390 0.35294120
## 157 1.5341450 0.014198780 0.33333330
## 158 1.8409740 0.008113590 0.40000000
## 159 1.8409740 0.008113590 0.40000000
## 160 1.8409740 0.008113590 0.40000000
## 161 1.8409740 0.008113590 0.40000000
## 162 1.1758040 0.070993910 0.25547450
## 163 1.4727790 0.016227180 0.32000000
## 164 1.4283420 0.018255580 0.31034480
## 165 1.0419810 0.501014200 0.22639780
## 166 1.1140810 0.123732300 0.24206350
## 167 1.1811560 0.058823530 0.25663720
## 168 1.5341450 0.012170390 0.33333330
## 169 1.9724720 0.006085193 0.42857140
## 170 1.9724720 0.006085193 0.42857140
## 171 1.9724720 0.006085193 0.42857140
## 172 1.9724720 0.006085193 0.42857140
## 173 1.9724720 0.006085193 0.42857140
## 174 1.4644110 0.014198780 0.31818180
## 175 1.4644110 0.014198780 0.31818180
## 176 1.0389900 0.505071000 0.22574800
## 177 1.3536570 0.020283980 0.29411760
## 178 1.1593920 0.066937120 0.25190840
## 179 1.6736120 0.008113590 0.36363640
## 180 1.6736120 0.008113590 0.36363640
## 181 1.6736120 0.008113590 0.36363640
## 182 2.3012170 0.004056795 0.50000000
## 183 2.3012170 0.004056795 0.50000000
## 184 2.3012170 0.004056795 0.50000000
## 185 2.3012170 0.004056795 0.50000000
## 186 2.3012170 0.004056795 0.50000000
## 187 2.3012170 0.004056795 0.50000000
## 188 2.3012170 0.004056795 0.50000000
## 189 2.3012170 0.004056795 0.50000000
## 190 2.3012170 0.004056795 0.50000000
## 191 2.3012170 0.004056795 0.50000000
## 192 2.3012170 0.004056795 0.50000000
## 193 2.3012170 0.004056795 0.50000000
## 194 2.3012170 0.004056795 0.50000000
## 195 2.3012170 0.004056795 0.50000000
## 196 2.3012170 0.004056795 0.50000000
## 197 2.3012170 0.004056795 0.50000000
## 198 2.3012170 0.004056795 0.50000000
## 199 2.3012170 0.004056795 0.50000000
## 200 2.3012170 0.004056795 0.50000000
## 201 2.3012170 0.004056795 0.50000000
## 202 2.3012170 0.004056795 0.50000000
## 203 2.3012170 0.004056795 0.50000000
## 204 2.3012170 0.004056795 0.50000000
## 205 2.3012170 0.004056795 0.50000000
## 206 2.3012170 0.004056795 0.50000000
## 207 1.1053880 0.111561900 0.24017470
## 208 1.5341450 0.010141990 0.33333330
## 209 1.3361910 0.018255580 0.29032260
## 210 1.4534000 0.012170390 0.31578950
## 211 1.4007410 0.014198780 0.30434780
## 212 4.6024340 0.002028398 1.00000000
## 213 4.6024340 0.002028398 1.00000000
## 214 4.6024340 0.002028398 1.00000000
## 215 4.6024340 0.002028398 1.00000000
## 216 4.6024340 0.002028398 1.00000000
## 217 4.6024340 0.002028398 1.00000000
## 218 4.6024340 0.002028398 1.00000000
## 219 4.6024340 0.002028398 1.00000000
## 220 4.6024340 0.002028398 1.00000000
## 221 4.6024340 0.002028398 1.00000000
## 222 4.6024340 0.002028398 1.00000000
## 223 4.6024340 0.002028398 1.00000000
## 224 4.6024340 0.002028398 1.00000000
## 225 4.6024340 0.002028398 1.00000000
## 226 4.6024340 0.002028398 1.00000000
## 227 4.6024340 0.002028398 1.00000000
## 228 4.6024340 0.002028398 1.00000000
## 229 4.6024340 0.002028398 1.00000000
## 230 4.6024340 0.002028398 1.00000000
## 231 4.6024340 0.002028398 1.00000000
## 232 4.6024340 0.002028398 1.00000000
## 233 4.6024340 0.002028398 1.00000000
## 234 4.6024340 0.002028398 1.00000000
## 235 4.6024340 0.002028398 1.00000000
## 236 4.6024340 0.002028398 1.00000000
## 237 4.6024340 0.002028398 1.00000000
## 238 4.6024340 0.002028398 1.00000000
## 239 4.6024340 0.002028398 1.00000000
## 240 4.6024340 0.002028398 1.00000000
## 241 4.6024340 0.002028398 1.00000000
## 242 4.6024340 0.002028398 1.00000000
## 243 4.6024340 0.002028398 1.00000000
## 244 4.6024340 0.002028398 1.00000000
## 245 4.6024340 0.002028398 1.00000000
## 246 4.6024340 0.002028398 1.00000000
## 247 4.6024340 0.002028398 1.00000000
## 248 4.6024340 0.002028398 1.00000000
## 249 4.6024340 0.002028398 1.00000000
## 250 4.6024340 0.002028398 1.00000000
## 251 4.6024340 0.002028398 1.00000000
## 252 4.6024340 0.002028398 1.00000000
## 253 4.6024340 0.002028398 1.00000000
## 254 4.6024340 0.002028398 1.00000000
## 255 4.6024340 0.002028398 1.00000000
## 256 4.6024340 0.002028398 1.00000000
## 257 4.6024340 0.002028398 1.00000000
## 258 4.6024340 0.002028398 1.00000000
## 259 4.6024340 0.002028398 1.00000000
## 260 4.6024340 0.002028398 1.00000000
## 261 4.6024340 0.002028398 1.00000000
## 262 4.6024340 0.002028398 1.00000000
## 263 4.6024340 0.002028398 1.00000000
## 264 4.6024340 0.002028398 1.00000000
## 265 4.6024340 0.002028398 1.00000000
## 266 4.6024340 0.002028398 1.00000000
## 267 1.2552090 0.024340770 0.27272730
## 268 1.7259130 0.006085193 0.37500000
## 269 1.7259130 0.006085193 0.37500000
## 270 1.7259130 0.006085193 0.37500000
## 271 1.7259130 0.006085193 0.37500000
## 272 1.7259130 0.006085193 0.37500000
## 273 1.7259130 0.006085193 0.37500000
## 274 1.1644710 0.042596350 0.25301200
## 275 1.3149810 0.016227180 0.28571430
## 276 1.5341450 0.008113590 0.33333330
## 277 1.5341450 0.008113590 0.33333330
## 278 1.5341450 0.008113590 0.33333330
## 279 1.5341450 0.008113590 0.33333330
## 280 1.5341450 0.008113590 0.33333330
## 281 1.2273160 0.024340770 0.26666670
## 282 1.0970920 0.083164300 0.23837210
## 283 1.2053990 0.022312370 0.26190480
## 284 1.3149810 0.012170390 0.28571430
## 285 1.8409740 0.004056795 0.40000000
## 286 1.8409740 0.004056795 0.40000000
## 287 1.8409740 0.004056795 0.40000000
## 288 1.8409740 0.004056795 0.40000000
## 289 1.8409740 0.004056795 0.40000000
## 290 1.8409740 0.004056795 0.40000000
## 291 1.8409740 0.004056795 0.40000000
## 292 1.8409740 0.004056795 0.40000000
## 293 1.8409740 0.004056795 0.40000000
## 294 1.8409740 0.004056795 0.40000000
## 295 1.8409740 0.004056795 0.40000000
## 296 1.8409740 0.004056795 0.40000000
## 297 1.8409740 0.004056795 0.40000000
## 298 1.8409740 0.004056795 0.40000000
## 299 1.8409740 0.004056795 0.40000000
## 300 1.8409740 0.004056795 0.40000000
## 301 1.8409740 0.004056795 0.40000000
## 302 1.3536570 0.010141990 0.29411760
## 303 1.4161340 0.008113590 0.30769230
## 304 1.4161340 0.008113590 0.30769230
## 305 1.4161340 0.008113590 0.30769230
## 306 1.4161340 0.008113590 0.30769230
## 307 1.5341450 0.006085193 0.33333330
## 308 1.5341450 0.006085193 0.33333330
## 309 1.5341450 0.006085193 0.33333330
## 310 1.5341450 0.006085193 0.33333330
## 311 1.5341450 0.006085193 0.33333330
## 312 1.1339330 0.034482760 0.24637680
## 313 1.1329070 0.032454360 0.24615380
## 314 1.1801110 0.020283980 0.25641030
## 315 1.0739010 0.070993910 0.23333330
## 316 1.0640040 0.087221100 0.23118280
## 317 1.0603650 0.095334690 0.23039220
## 318 1.2784540 0.010141990 0.27777780
## 319 1.2784540 0.010141990 0.27777780
## 320 1.2784540 0.010141990 0.27777780
## 321 1.3149810 0.008113590 0.28571430
## 322 1.3149810 0.008113590 0.28571430
## 323 1.3149810 0.008113590 0.28571430
## 324 1.3807300 0.006085193 0.30000000
## 325 1.3807300 0.006085193 0.30000000
## 326 1.3807300 0.006085193 0.30000000
## 327 1.3807300 0.006085193 0.30000000
## 328 1.3807300 0.006085193 0.30000000
## 329 1.3807300 0.006085193 0.30000000
## 330 1.3807300 0.006085193 0.30000000
## 331 1.3807300 0.006085193 0.30000000
## 332 1.3807300 0.006085193 0.30000000
## 333 1.0712560 0.054766730 0.23275860
## 334 1.2006350 0.012170390 0.26086960
## 335 1.1250390 0.022312370 0.24444440
## 336 1.5341450 0.004056795 0.33333330
## 337 1.5341450 0.004056795 0.33333330
## 338 1.5341450 0.004056795 0.33333330
## 339 1.5341450 0.004056795 0.33333330
## 340 1.5341450 0.004056795 0.33333330
## 341 1.5341450 0.004056795 0.33333330
## 342 1.5341450 0.004056795 0.33333330
## 343 1.5341450 0.004056795 0.33333330
## 344 1.5341450 0.004056795 0.33333330
## 345 1.5341450 0.004056795 0.33333330
## 346 1.5341450 0.004056795 0.33333330
## 347 1.5341450 0.004056795 0.33333330
## 348 2.3012170 0.002028398 0.50000000
## 349 2.3012170 0.002028398 0.50000000
## 350 2.3012170 0.002028398 0.50000000
## 351 2.3012170 0.002028398 0.50000000
## 352 2.3012170 0.002028398 0.50000000
## 353 2.3012170 0.002028398 0.50000000
## 354 2.3012170 0.002028398 0.50000000
## 355 2.3012170 0.002028398 0.50000000
## 356 2.3012170 0.002028398 0.50000000
## 357 2.3012170 0.002028398 0.50000000
## 358 2.3012170 0.002028398 0.50000000
## 359 2.3012170 0.002028398 0.50000000
## 360 2.3012170 0.002028398 0.50000000
## 361 2.3012170 0.002028398 0.50000000
## 362 2.3012170 0.002028398 0.50000000
## 363 2.3012170 0.002028398 0.50000000
## 364 2.3012170 0.002028398 0.50000000
## 365 2.3012170 0.002028398 0.50000000
## 366 2.3012170 0.002028398 0.50000000
## 367 2.3012170 0.002028398 0.50000000
## 368 2.3012170 0.002028398 0.50000000
## 369 2.3012170 0.002028398 0.50000000
## 370 2.3012170 0.002028398 0.50000000
## 371 2.3012170 0.002028398 0.50000000
## 372 2.3012170 0.002028398 0.50000000
## 373 2.3012170 0.002028398 0.50000000
## 374 2.3012170 0.002028398 0.50000000
## 375 2.3012170 0.002028398 0.50000000
## 376 2.3012170 0.002028398 0.50000000
## 377 2.3012170 0.002028398 0.50000000
## 378 2.3012170 0.002028398 0.50000000
## 379 2.3012170 0.002028398 0.50000000
## 380 2.3012170 0.002028398 0.50000000
## 381 2.3012170 0.002028398 0.50000000
## 382 2.3012170 0.002028398 0.50000000
## 383 2.3012170 0.002028398 0.50000000
## 384 2.3012170 0.002028398 0.50000000
## 385 2.3012170 0.002028398 0.50000000
## 386 1.2111670 0.010141990 0.26315790
## 387 1.2111670 0.010141990 0.26315790
## 388 1.1045840 0.024340770 0.24000000
## 389 1.1045840 0.024340770 0.24000000
## 390 1.0251360 0.194726200 0.22273780
## 391 1.0921030 0.028397570 0.23728810
## 392 1.0658270 0.044624750 0.23157890
## 393 1.2273160 0.008113590 0.26666670
## 394 1.2273160 0.008113590 0.26666670
## 395 1.0718000 0.034482760 0.23287670
## 396 1.0621000 0.036511160 0.23076920
## 397 1.2552090 0.006085193 0.27272730
## 398 1.0405500 0.052738340 0.22608700
## 399 1.0405500 0.052738340 0.22608700
## 400 1.0405500 0.052738340 0.22608700
## 401 1.0684220 0.026369170 0.23214290
## 402 1.1506090 0.010141990 0.25000000
## 403 1.1109320 0.014198780 0.24137930
## 404 1.1109320 0.014198780 0.24137930
## 405 1.0460080 0.040567950 0.22727270
## 406 1.0355480 0.054766730 0.22500000
## 407 1.0365840 0.050709940 0.22522520
## 408 1.0621000 0.024340770 0.23076920
## 409 1.0829260 0.016227180 0.23529410
## 410 1.0460080 0.030425960 0.22727270
## 411 1.3149810 0.004056795 0.28571430
## 412 1.3149810 0.004056795 0.28571430
## 413 1.3149810 0.004056795 0.28571430
## 414 1.3149810 0.004056795 0.28571430
## 415 1.3149810 0.004056795 0.28571430
## 416 1.3149810 0.004056795 0.28571430
## 417 1.3149810 0.004056795 0.28571430
## 418 1.3149810 0.004056795 0.28571430
## 419 1.3149810 0.004056795 0.28571430
## 420 1.3149810 0.004056795 0.28571430
## 421 1.0180500 0.097363080 0.22119820
## 422 1.1506090 0.008113590 0.25000000
## 423 1.1506090 0.008113590 0.25000000
## 424 1.1506090 0.008113590 0.25000000
## 425 1.0070430 0.245436100 0.21880650
## 426 1.0621000 0.018255580 0.23076920
## 427 1.0739010 0.014198780 0.23333330
## 428 1.0958180 0.010141990 0.23809520
## 429 1.1506090 0.006085193 0.25000000
## 430 1.1506090 0.006085193 0.25000000
## 431 1.1506090 0.006085193 0.25000000
## 432 1.1506090 0.006085193 0.25000000
## 433 1.1506090 0.006085193 0.25000000
## 434 1.1506090 0.006085193 0.25000000
## 435 1.5341450 0.002028398 0.33333330
## 436 1.5341450 0.002028398 0.33333330
## 437 1.5341450 0.002028398 0.33333330
## 438 1.5341450 0.002028398 0.33333330
## 439 1.5341450 0.002028398 0.33333330
## 440 1.5341450 0.002028398 0.33333330
## 441 1.5341450 0.002028398 0.33333330
## 442 1.5341450 0.002028398 0.33333330
## 443 1.5341450 0.002028398 0.33333330
## 444 1.5341450 0.002028398 0.33333330
## 445 1.5341450 0.002028398 0.33333330
## 446 1.5341450 0.002028398 0.33333330
## 447 1.5341450 0.002028398 0.33333330
## 448 1.5341450 0.002028398 0.33333330
## 449 1.5341450 0.002028398 0.33333330
## 450 1.5341450 0.002028398 0.33333330
## 451 1.5341450 0.002028398 0.33333330
## 452 1.5341450 0.002028398 0.33333330
## 453 1.5341450 0.002028398 0.33333330
## 454 1.5341450 0.002028398 0.33333330
## 455 1.5341450 0.002028398 0.33333330
## 456 1.5341450 0.002028398 0.33333330
## 457 1.5341450 0.002028398 0.33333330
## 458 1.5341450 0.002028398 0.33333330
## 459 1.5341450 0.002028398 0.33333330
## 460 1.5341450 0.002028398 0.33333330
## 461 1.5341450 0.002028398 0.33333330
## 462 1.5341450 0.002028398 0.33333330
## 463 1.5341450 0.002028398 0.33333330
## 464 1.5341450 0.002028398 0.33333330
## 465 1.5341450 0.002028398 0.33333330
## 466 1.5341450 0.002028398 0.33333330
## 467 1.5341450 0.002028398 0.33333330
## 468 1.5341450 0.002028398 0.33333330
## 469 1.5341450 0.002028398 0.33333330
## 470 1.5341450 0.002028398 0.33333330
## 471 1.5341450 0.002028398 0.33333330
## 472 1.5341450 0.002028398 0.33333330
## 473 1.5341450 0.002028398 0.33333330
## 474 1.5341450 0.002028398 0.33333330
## 475 1.5341450 0.002028398 0.33333330
## 476 1.5341450 0.002028398 0.33333330
## 477 1.5341450 0.002028398 0.33333330
## 478 1.5341450 0.002028398 0.33333330
## 479 1.5341450 0.002028398 0.33333330
## 480 1.5341450 0.002028398 0.33333330
## 481 1.0829260 0.008113590 0.23529410
## 482 1.0829260 0.008113590 0.23529410
## 483 1.0829260 0.008113590 0.23529410
## 484 1.1506090 0.004056795 0.25000000
## 485 1.1506090 0.004056795 0.25000000
## 486 1.1506090 0.004056795 0.25000000
## 487 1.1506090 0.004056795 0.25000000
## 488 1.1506090 0.004056795 0.25000000
## 489 1.1506090 0.004056795 0.25000000
## 490 1.1506090 0.004056795 0.25000000
## 491 1.1506090 0.004056795 0.25000000
## 492 1.1506090 0.004056795 0.25000000
## 493 1.0227630 0.012170390 0.22222220
## 494 1.0227630 0.012170390 0.22222220
## 495 0.9971941 0.026369170 0.21666670
## 496 1.0621000 0.006085193 0.23076920
## 497 1.0621000 0.006085193 0.23076920
## 498 1.0621000 0.006085193 0.23076920
## 499 1.0621000 0.006085193 0.23076920
## 500 1.0621000 0.006085193 0.23076920
## 501 1.0621000 0.006085193 0.23076920
## 502 1.0621000 0.006085193 0.23076920
## 503 1.0621000 0.006085193 0.23076920
## 504 1.0621000 0.006085193 0.23076920
## 505 1.0067820 0.014198780 0.21875000
## 506 1.0067820 0.014198780 0.21875000
## 507 1.0067820 0.014198780 0.21875000
## 508 0.9912935 0.028397570 0.21538460
## 509 0.9951209 0.016227180 0.21621620
## 510 1.0227630 0.008113590 0.22222220
## 511 1.0227630 0.008113590 0.22222220
## 512 1.0227630 0.008113590 0.22222220
## 513 1.0227630 0.008113590 0.22222220
## 514 1.0227630 0.008113590 0.22222220
## 515 1.0005290 0.010141990 0.21739130
## 516 0.9801480 0.046653140 0.21296300
## 517 0.9862359 0.012170390 0.21428570
## 518 0.9862359 0.012170390 0.21428570
## 519 0.9689335 0.016227180 0.21052630
## 520 0.9979316 0.914807300 0.21682690
## 521 1.0227630 0.004056795 0.22222220
## 522 1.0227630 0.004056795 0.22222220
## 523 1.0227630 0.004056795 0.22222220
## 524 1.0227630 0.004056795 0.22222220
## 525 1.0227630 0.004056795 0.22222220
## 526 1.0227630 0.004056795 0.22222220
## 527 1.0227630 0.004056795 0.22222220
## 528 1.0227630 0.004056795 0.22222220
## 529 1.0227630 0.004056795 0.22222220
## 530 0.9862359 0.006085193 0.21428570
## 531 0.9862359 0.006085193 0.21428570
## 532 0.9862359 0.006085193 0.21428570
## 533 0.9588404 0.020283980 0.20833330
## 534 0.9643195 0.044624750 0.20952380
## 535 0.9689335 0.008113590 0.21052630
## 536 0.9702429 0.079107510 0.21081080
## 537 0.9702429 0.079107510 0.21081080
## 538 0.9588404 0.010141990 0.20833330
## 539 0.9588404 0.010141990 0.20833330
## 540 1.1506090 0.002028398 0.25000000
## 541 1.1506090 0.002028398 0.25000000
## 542 1.1506090 0.002028398 0.25000000
## 543 1.1506090 0.002028398 0.25000000
## 544 1.1506090 0.002028398 0.25000000
## 545 1.1506090 0.002028398 0.25000000
## 546 1.1506090 0.002028398 0.25000000
## 547 1.1506090 0.002028398 0.25000000
## 548 1.1506090 0.002028398 0.25000000
## 549 1.1506090 0.002028398 0.25000000
## 550 1.1506090 0.002028398 0.25000000
## 551 1.1506090 0.002028398 0.25000000
## 552 1.1506090 0.002028398 0.25000000
## 553 1.1506090 0.002028398 0.25000000
## 554 1.1506090 0.002028398 0.25000000
## 555 1.1506090 0.002028398 0.25000000
## 556 1.1506090 0.002028398 0.25000000
## 557 1.1506090 0.002028398 0.25000000
## 558 1.1506090 0.002028398 0.25000000
## 559 1.1506090 0.002028398 0.25000000
## 560 1.1506090 0.002028398 0.25000000
## 561 1.1506090 0.002028398 0.25000000
## 562 1.1506090 0.002028398 0.25000000
## 563 1.1506090 0.002028398 0.25000000
## 564 1.1506090 0.002028398 0.25000000
## 565 1.1506090 0.002028398 0.25000000
## 566 1.1506090 0.002028398 0.25000000
## 567 1.1506090 0.002028398 0.25000000
## 568 1.1506090 0.002028398 0.25000000
## 569 1.1506090 0.002028398 0.25000000
## 570 1.1506090 0.002028398 0.25000000
## 571 1.1506090 0.002028398 0.25000000
## 572 1.1506090 0.002028398 0.25000000
## 573 1.1506090 0.002028398 0.25000000
## 574 1.1506090 0.002028398 0.25000000
## 575 1.1506090 0.002028398 0.25000000
## 576 1.1506090 0.002028398 0.25000000
## 577 1.1506090 0.002028398 0.25000000
## 578 1.1506090 0.002028398 0.25000000
## 579 1.1506090 0.002028398 0.25000000
## 580 1.1506090 0.002028398 0.25000000
## 581 1.1506090 0.002028398 0.25000000
## 582 0.9522277 0.012170390 0.20689660
## 583 0.9522277 0.012170390 0.20689660
## 584 0.9522277 0.024340770 0.20689660
## 585 0.9522277 0.024340770 0.20689660
## 586 0.9475600 0.014198780 0.20588240
## 587 0.9475600 0.014198780 0.20588240
## 588 0.9475600 0.014198780 0.20588240
## 589 0.9475600 0.014198780 0.20588240
## 590 0.9475600 0.014198780 0.20588240
## 591 0.9475600 0.014198780 0.20588240
## 592 0.9730861 0.150101400 0.21142860
## 593 0.9348694 0.026369170 0.20312500
## 594 0.9204868 0.008113590 0.20000000
## 595 0.9204868 0.012170390 0.20000000
## 596 0.9204868 0.012170390 0.20000000
## 597 0.9204868 0.006085193 0.20000000
## 598 0.9204868 0.020283980 0.20000000
## 599 0.9204868 0.004056795 0.20000000
## 600 0.9204868 0.004056795 0.20000000
## 601 0.9204868 0.004056795 0.20000000
## 602 0.9302792 0.038539550 0.20212770
## 603 0.9567784 0.117647100 0.20788530
## 604 0.9453648 0.077079110 0.20540540
## 605 0.9453648 0.077079110 0.20540540
## 606 0.8907937 0.012170390 0.19354840
## 607 0.9577319 0.146044600 0.20809250
## 608 0.9004762 0.018255580 0.19565220
## 609 0.8850835 0.010141990 0.19230770
## 610 0.8850835 0.010141990 0.19230770
## 611 0.8850835 0.010141990 0.19230770
## 612 0.8850835 0.010141990 0.19230770
## 613 0.8766541 0.008113590 0.19047620
## 614 0.8766541 0.008113590 0.19047620
## 615 0.8766541 0.008113590 0.19047620
## 616 0.8766541 0.008113590 0.19047620
## 617 0.8766541 0.008113590 0.19047620
## 618 0.8766541 0.008113590 0.19047620
## 619 0.9204868 0.002028398 0.20000000
## 620 0.9204868 0.002028398 0.20000000
## 621 0.9204868 0.002028398 0.20000000
## 622 0.9204868 0.002028398 0.20000000
## 623 0.9204868 0.002028398 0.20000000
## 624 0.9204868 0.002028398 0.20000000
## 625 0.9204868 0.002028398 0.20000000
## 626 0.9204868 0.002028398 0.20000000
## 627 0.9204868 0.002028398 0.20000000
## 628 0.9204868 0.002028398 0.20000000
## 629 0.9204868 0.002028398 0.20000000
## 630 0.9204868 0.002028398 0.20000000
## 631 0.9204868 0.002028398 0.20000000
## 632 0.9204868 0.002028398 0.20000000
## 633 0.9204868 0.002028398 0.20000000
## 634 0.9204868 0.002028398 0.20000000
## 635 0.9204868 0.002028398 0.20000000
## 636 0.9204868 0.002028398 0.20000000
## 637 0.9204868 0.002028398 0.20000000
## 638 0.9204868 0.002028398 0.20000000
## 639 0.9204868 0.002028398 0.20000000
## 640 0.9204868 0.002028398 0.20000000
## 641 0.9204868 0.002028398 0.20000000
## 642 0.9204868 0.002028398 0.20000000
## 643 0.9204868 0.002028398 0.20000000
## 644 0.9204868 0.002028398 0.20000000
## 645 0.9204868 0.002028398 0.20000000
## 646 0.8629564 0.006085193 0.18750000
## 647 0.8629564 0.006085193 0.18750000
## 648 0.8629564 0.006085193 0.18750000
## 649 0.8629564 0.006085193 0.18750000
## 650 0.8629564 0.006085193 0.18750000
## 651 0.9311283 0.070993910 0.20231210
## 652 0.8850835 0.020283980 0.19230770
## 653 0.8629564 0.012170390 0.18750000
## 654 0.8368062 0.004056795 0.18181820
## 655 0.8368062 0.004056795 0.18181820
## 656 0.8368062 0.004056795 0.18181820
## 657 0.8368062 0.004056795 0.18181820
## 658 0.8368062 0.004056795 0.18181820
## 659 0.8368062 0.004056795 0.18181820
## 660 0.8368062 0.004056795 0.18181820
## 661 0.8368062 0.004056795 0.18181820
## 662 0.9392723 0.101419900 0.20408160
## 663 0.8523026 0.010141990 0.18518520
## 664 0.8523026 0.010141990 0.18518520
## 665 0.8980359 0.032454360 0.19512200
## 666 0.8980359 0.032454360 0.19512200
## 667 0.9297847 0.081135900 0.20202020
## 668 0.9131814 0.050709940 0.19841270
## 669 0.9357646 0.099391480 0.20331950
## 670 0.9357646 0.099391480 0.20331950
## 671 0.8368062 0.008113590 0.18181820
## 672 0.9467864 0.146044600 0.20571430
## 673 0.9467864 0.146044600 0.20571430
## 674 0.8629564 0.018255580 0.18750000
## 675 0.8629564 0.018255580 0.18750000
## 676 0.9363573 0.119675500 0.20344830
## 677 0.8907937 0.036511160 0.19354840
## 678 0.8368062 0.012170390 0.18181820
## 679 0.8368062 0.012170390 0.18181820
## 680 0.8218632 0.010141990 0.17857140
## 681 0.9419489 0.160243400 0.20466320
## 682 0.9419489 0.160243400 0.20466320
## 683 0.9419489 0.160243400 0.20466320
## 684 0.9419489 0.160243400 0.20466320
## 685 0.9419489 0.160243400 0.20466320
## 686 0.8629564 0.024340770 0.18750000
## 687 0.9243382 0.097363080 0.20083680
## 688 0.8766541 0.032454360 0.19047620
## 689 0.8453450 0.018255580 0.18367350
## 690 0.8453450 0.018255580 0.18367350
## 691 0.8453450 0.018255580 0.18367350
## 692 0.8004233 0.008113590 0.17391300
## 693 0.8004233 0.008113590 0.17391300
## 694 0.8004233 0.008113590 0.17391300
## 695 0.8004233 0.008113590 0.17391300
## 696 0.7670723 0.002028398 0.16666670
## 697 0.7670723 0.002028398 0.16666670
## 698 0.7670723 0.002028398 0.16666670
## 699 0.7670723 0.002028398 0.16666670
## 700 0.7670723 0.002028398 0.16666670
## 701 0.7670723 0.002028398 0.16666670
## 702 0.7670723 0.002028398 0.16666670
## 703 0.7670723 0.002028398 0.16666670
## 704 0.7670723 0.002028398 0.16666670
## 705 0.7670723 0.002028398 0.16666670
## 706 0.7670723 0.002028398 0.16666670
## 707 0.7670723 0.002028398 0.16666670
## 708 0.7670723 0.002028398 0.16666670
## 709 0.7670723 0.002028398 0.16666670
## 710 0.7670723 0.002028398 0.16666670
## 711 0.7670723 0.002028398 0.16666670
## 712 0.7670723 0.002028398 0.16666670
## 713 0.7670723 0.002028398 0.16666670
## 714 0.7670723 0.002028398 0.16666670
## 715 0.7670723 0.002028398 0.16666670
## 716 0.7670723 0.002028398 0.16666670
## 717 0.7670723 0.002028398 0.16666670
## 718 0.7670723 0.002028398 0.16666670
## 719 0.7670723 0.004056795 0.16666670
## 720 0.7670723 0.004056795 0.16666670
## 721 0.7670723 0.004056795 0.16666670
## 722 0.7670723 0.004056795 0.16666670
## 723 0.7670723 0.004056795 0.16666670
## 724 0.8368062 0.016227180 0.18181820
## 725 0.8368062 0.016227180 0.18181820
## 726 0.9322879 0.160243400 0.20256410
## 727 0.9322879 0.160243400 0.20256410
## 728 0.9322879 0.160243400 0.20256410
## 729 0.7670723 0.008113590 0.16666670
## 730 0.7080668 0.004056795 0.15384620
## 731 0.7080668 0.004056795 0.15384620
## 732 0.7080668 0.004056795 0.15384620
## 733 0.7080668 0.004056795 0.15384620
## 734 0.7080668 0.004056795 0.15384620
## 735 0.7080668 0.004056795 0.15384620
## 736 0.7080668 0.004056795 0.15384620
## 737 0.7670723 0.010141990 0.16666670
## 738 0.7670723 0.010141990 0.16666670
## 739 0.7267001 0.006085193 0.15789470
## 740 0.6574906 0.002028398 0.14285710
## 741 0.6574906 0.002028398 0.14285710
## 742 0.6574906 0.002028398 0.14285710
## 743 0.6574906 0.002028398 0.14285710
## 744 0.6574906 0.002028398 0.14285710
## 745 0.6574906 0.002028398 0.14285710
## 746 0.6574906 0.002028398 0.14285710
## 747 0.6574906 0.002028398 0.14285710
## 748 0.6574906 0.002028398 0.14285710
## 749 0.6574906 0.002028398 0.14285710
## 750 0.6574906 0.002028398 0.14285710
## 751 0.6574906 0.002028398 0.14285710
## 752 0.6574906 0.002028398 0.14285710
## 753 0.6574906 0.002028398 0.14285710
## 754 0.8930096 0.079107510 0.19402990
## 755 0.9289316 0.178499000 0.20183490
## 756 0.9289316 0.178499000 0.20183490
## 757 0.7363895 0.008113590 0.16000000
## 758 0.7670723 0.012170390 0.16666670
## 759 0.8323551 0.034482760 0.18085110
## 760 0.6574906 0.004056795 0.14285710
## 761 0.6574906 0.004056795 0.14285710
## 762 0.6574906 0.004056795 0.14285710
## 763 0.6903651 0.006085193 0.15000000
## 764 0.9579122 0.436105500 0.20813170
## 765 0.9204868 0.172413800 0.20000000
## 766 0.7463407 0.012170390 0.16216220
## 767 0.7080668 0.008113590 0.15384620
## 768 0.7080668 0.008113590 0.15384620
## 769 0.7080668 0.008113590 0.15384620
## 770 0.5753043 0.002028398 0.12500000
## 771 0.5753043 0.002028398 0.12500000
## 772 0.5753043 0.002028398 0.12500000
## 773 0.5753043 0.002028398 0.12500000
## 774 0.5753043 0.002028398 0.12500000
## 775 0.5753043 0.002028398 0.12500000
## 776 0.5753043 0.002028398 0.12500000
## 777 0.5753043 0.002028398 0.12500000
## 778 0.5753043 0.002028398 0.12500000
## 779 0.5753043 0.002028398 0.12500000
## 780 0.5753043 0.002028398 0.12500000
## 781 0.5753043 0.002028398 0.12500000
## 782 0.5753043 0.002028398 0.12500000
## 783 0.5753043 0.002028398 0.12500000
## 784 0.8486758 0.052738340 0.18439720
## 785 0.8688268 0.075050710 0.18877550
## 786 0.8092192 0.032454360 0.17582420
## 787 0.6818421 0.008113590 0.14814810
## 788 0.8543441 0.062880320 0.18562870
## 789 0.9798731 0.803245400 0.21290320
## 790 0.7322054 0.014198780 0.15909090
## 791 0.7322054 0.014198780 0.15909090
## 792 0.9514429 0.423935100 0.20672600
## 793 0.7872585 0.026369170 0.17105260
## 794 0.8004233 0.032454360 0.17391300
## 795 0.7080668 0.012170390 0.15384620
## 796 0.9187533 0.215010100 0.19962340
## 797 0.6276046 0.006085193 0.13636360
## 798 0.6574906 0.008113590 0.14285710
## 799 0.6574906 0.008113590 0.14285710
## 800 0.6574906 0.008113590 0.14285710
## 801 0.8309950 0.052738340 0.18055560
## 802 0.8309950 0.052738340 0.18055560
## 803 0.8309950 0.052738340 0.18055560
## 804 0.5113816 0.002028398 0.11111110
## 805 0.5113816 0.002028398 0.11111110
## 806 0.5113816 0.002028398 0.11111110
## 807 0.5113816 0.002028398 0.11111110
## 808 0.5113816 0.002028398 0.11111110
## 809 0.5113816 0.002028398 0.11111110
## 810 0.5113816 0.002028398 0.11111110
## 811 0.5113816 0.002028398 0.11111110
## 812 0.5113816 0.002028398 0.11111110
## 813 0.5113816 0.002028398 0.11111110
## 814 0.5113816 0.002028398 0.11111110
## 815 0.5113816 0.002028398 0.11111110
## 816 0.5113816 0.002028398 0.11111110
## 817 0.5113816 0.002028398 0.11111110
## 818 0.5113816 0.002028398 0.11111110
## 819 0.5113816 0.002028398 0.11111110
## 820 0.5113816 0.002028398 0.11111110
## 821 0.5113816 0.002028398 0.11111110
## 822 0.5113816 0.002028398 0.11111110
## 823 0.5113816 0.002028398 0.11111110
## 824 0.8165609 0.044624750 0.17741940
## 825 0.9306160 0.298174400 0.20220080
## 826 0.8314074 0.056795130 0.18064520
## 827 0.6348185 0.008113590 0.13793100
## 828 0.6003175 0.006085193 0.13043480
## 829 0.6003175 0.006085193 0.13043480
## 830 0.7141708 0.018255580 0.15517240
## 831 0.5414628 0.004056795 0.11764710
## 832 0.5414628 0.004056795 0.11764710
## 833 0.4602434 0.002028398 0.10000000
## 834 0.4602434 0.002028398 0.10000000
## 835 0.4602434 0.002028398 0.10000000
## 836 0.4602434 0.002028398 0.10000000
## 837 0.8536773 0.093306290 0.18548390
## 838 0.7586430 0.030425960 0.16483520
## 839 0.6136579 0.008113590 0.13333330
## 840 0.6136579 0.008113590 0.13333330
## 841 0.6136579 0.008113590 0.13333330
## 842 0.9229984 0.298174400 0.20054570
## 843 0.6392270 0.010141990 0.13888890
## 844 0.6711883 0.014198780 0.14583330
## 845 0.8850835 0.162271800 0.19230770
## 846 0.6818421 0.016227180 0.14814810
## 847 0.8938612 0.190669400 0.19421490
## 848 0.5113816 0.004056795 0.11111110
## 849 0.5113816 0.004056795 0.11111110
## 850 0.7935231 0.050709940 0.17241380
## 851 0.6422001 0.012170390 0.13953490
## 852 0.4184031 0.002028398 0.09090909
## 853 0.4184031 0.002028398 0.09090909
## 854 0.4184031 0.002028398 0.09090909
## 855 0.4184031 0.002028398 0.09090909
## 856 0.4184031 0.002028398 0.09090909
## 857 0.4184031 0.002028398 0.09090909
## 858 0.4184031 0.002028398 0.09090909
## 859 0.4184031 0.002028398 0.09090909
## 860 0.5522921 0.006085193 0.12000000
## 861 0.6694450 0.016227180 0.14545450
## 862 0.6443408 0.014198780 0.14000000
## 863 0.6443408 0.014198780 0.14000000
## 864 0.5310501 0.006085193 0.11538460
## 865 0.5310501 0.006085193 0.11538460
## 866 0.7122815 0.026369170 0.15476190
## 867 0.7381262 0.034482760 0.16037740
## 868 0.3835362 0.002028398 0.08333333
## 869 0.3835362 0.002028398 0.08333333
## 870 0.3835362 0.002028398 0.08333333
## 871 0.3835362 0.002028398 0.08333333
## 872 0.3835362 0.002028398 0.08333333
## 873 0.3835362 0.002028398 0.08333333
## 874 0.5900557 0.010141990 0.12820510
## 875 0.8798771 0.184584200 0.19117650
## 876 0.5578708 0.008113590 0.12121210
## 877 0.5578708 0.008113590 0.12121210
## 878 0.5113816 0.006085193 0.11111110
## 879 0.5113816 0.006085193 0.11111110
## 880 0.5113816 0.006085193 0.11111110
## 881 0.8339981 0.109533500 0.18120810
## 882 0.6472173 0.018255580 0.14062500
## 883 0.3540334 0.002028398 0.07692308
## 884 0.3540334 0.002028398 0.07692308
## 885 0.3540334 0.002028398 0.07692308
## 886 0.3540334 0.002028398 0.07692308
## 887 0.3540334 0.002028398 0.07692308
## 888 0.3540334 0.002028398 0.07692308
## 889 0.3540334 0.002028398 0.07692308
## 890 0.3540334 0.002028398 0.07692308
## 891 0.3540334 0.002028398 0.07692308
## 892 0.3540334 0.002028398 0.07692308
## 893 0.7178108 0.034482760 0.15596330
## 894 0.4383271 0.004056795 0.09523810
## 895 0.7977552 0.079107510 0.17333330
## 896 0.3287453 0.002028398 0.07142857
## 897 0.3287453 0.002028398 0.07142857
## 898 0.3287453 0.002028398 0.07142857
## 899 0.5113816 0.008113590 0.11111110
## 900 0.7709661 0.066937120 0.16751270
## 901 0.4002117 0.004056795 0.08695652
## 902 0.4002117 0.004056795 0.08695652
## 903 0.4002117 0.004056795 0.08695652
## 904 0.3068289 0.002028398 0.06666667
## 905 0.3068289 0.002028398 0.06666667
## 906 0.3068289 0.002028398 0.06666667
## 907 0.3068289 0.002028398 0.06666667
## 908 0.3068289 0.002028398 0.06666667
## 909 0.3835362 0.004056795 0.08333333
## 910 0.2876521 0.002028398 0.06250000
## 911 0.5753043 0.016227180 0.12500000
## 912 0.5753043 0.016227180 0.12500000
## 913 0.3681947 0.004056795 0.08000000
## 914 0.3681947 0.004056795 0.08000000
## 915 0.7481789 0.066937120 0.16256160
## 916 0.6443408 0.028397570 0.14000000
## 917 0.6443408 0.028397570 0.14000000
## 918 0.2707314 0.002028398 0.05882353
## 919 0.2707314 0.002028398 0.05882353
## 920 0.6452010 0.030425960 0.14018690
## 921 0.6918692 0.046653140 0.15032680
## 922 0.6947070 0.048681540 0.15094340
## 923 0.3409210 0.004056795 0.07407407
## 924 0.2422334 0.002028398 0.05263158
## 925 0.5522921 0.018255580 0.12000000
## 926 0.3835362 0.006085193 0.08333333
## 927 0.4184031 0.008113590 0.09090909
## 928 0.5545101 0.020283980 0.12048190
## 929 0.4956467 0.014198780 0.10769230
## 930 0.6323955 0.036511160 0.13740460
## 931 0.3068289 0.004056795 0.06666667
## 932 0.2092015 0.002028398 0.04545455
## 933 0.4975604 0.016227180 0.10810810
## 934 0.2001058 0.002028398 0.04347826
## 935 0.2001058 0.002028398 0.04347826
## 936 0.4669136 0.014198780 0.10144930
## 937 0.6924016 0.068965520 0.15044250
## 938 0.2707314 0.004056795 0.05882353
## 939 0.3967616 0.010141990 0.08620690
## 940 0.4474589 0.014198780 0.09722222
## 941 0.6875005 0.073022310 0.14937760
## 942 0.3609752 0.008113590 0.07843137
## 943 0.6999900 0.081135900 0.15209130
## 944 0.6276046 0.048681540 0.13636360
## 945 0.4353654 0.014198780 0.09459459
## 946 0.7031497 0.089249490 0.15277780
## 947 0.1704605 0.002028398 0.03703704
## 948 0.6170861 0.048681540 0.13407820
## 949 0.6219506 0.050709940 0.13513510
## 950 0.2707314 0.006085193 0.05882353
## 951 0.5844361 0.048681540 0.12698410
## 952 0.3068289 0.008113590 0.06666667
## 953 0.1353657 0.002028398 0.02941176
## 954 0.6075213 0.066937120 0.13200000
## 955 0.5986906 0.064908720 0.13008130
## 956 0.1150609 0.002028398 0.02500000
## 957 0.5777114 0.060851930 0.12552300
## 958 0.2950278 0.010141990 0.06410256
## 959 0.2060791 0.006085193 0.04477612
## 960 0.0000000 0.000000000 0.00000000
## 961 0.0000000 0.000000000 0.00000000
## 962 0.0000000 0.000000000 0.00000000
## 963 0.0000000 0.000000000 0.00000000
## 964 0.0000000 0.000000000 0.00000000
## 965 0.0000000 0.000000000 0.00000000
## 966 0.0000000 0.000000000 0.00000000
## 967 0.0000000 0.000000000 0.00000000
## 968 0.0000000 0.000000000 0.00000000
## 969 0.0000000 0.000000000 0.00000000
## 970 0.0000000 0.000000000 0.00000000
## 971 0.0000000 0.000000000 0.00000000
## 972 0.0000000 0.000000000 0.00000000
## 973 0.0000000 0.000000000 0.00000000
## 974 0.0000000 0.000000000 0.00000000
## 975 0.0000000 0.000000000 0.00000000
## 976 0.0000000 0.000000000 0.00000000
## 977 0.0000000 0.000000000 0.00000000
## 978 0.0000000 0.000000000 0.00000000
## 979 0.0000000 0.000000000 0.00000000
## 980 0.0000000 0.000000000 0.00000000
## 981 0.0000000 0.000000000 0.00000000
## 982 0.0000000 0.000000000 0.00000000
## 983 0.0000000 0.000000000 0.00000000
## 984 0.0000000 0.000000000 0.00000000
## 985 0.0000000 0.000000000 0.00000000
## 986 0.0000000 0.000000000 0.00000000
## 987 0.0000000 0.000000000 0.00000000
## 988 0.0000000 0.000000000 0.00000000
## 989 0.0000000 0.000000000 0.00000000
## 990 0.0000000 0.000000000 0.00000000
## 991 0.0000000 0.000000000 0.00000000
## 992 0.0000000 0.000000000 0.00000000
## 993 0.0000000 0.000000000 0.00000000
## 994 0.0000000 0.000000000 0.00000000
## 995 0.0000000 0.000000000 0.00000000
## 996 0.0000000 0.000000000 0.00000000
## 997 0.0000000 0.000000000 0.00000000
## 998 0.0000000 0.000000000 0.00000000
## 999 0.0000000 0.000000000 0.00000000
## 1000 0.0000000 0.000000000 0.00000000
## 1001 0.0000000 0.000000000 0.00000000
## 1002 0.0000000 0.000000000 0.00000000
## 1003 0.0000000 0.000000000 0.00000000
## 1004 0.0000000 0.000000000 0.00000000
## 1005 0.0000000 0.000000000 0.00000000
## 1006 0.0000000 0.000000000 0.00000000
## 1007 0.0000000 0.000000000 0.00000000
## 1008 0.0000000 0.000000000 0.00000000
## 1009 0.0000000 0.000000000 0.00000000
## 1010 0.0000000 0.000000000 0.00000000
## 1011 0.0000000 0.000000000 0.00000000
## 1012 0.0000000 0.000000000 0.00000000
## 1013 0.0000000 0.000000000 0.00000000
## 1014 0.0000000 0.000000000 0.00000000
## 1015 0.0000000 0.000000000 0.00000000
## 1016 0.0000000 0.000000000 0.00000000
## 1017 0.0000000 0.000000000 0.00000000
## 1018 0.0000000 0.000000000 0.00000000
## 1019 0.0000000 0.000000000 0.00000000
## 1020 0.0000000 0.000000000 0.00000000
## 1021 0.0000000 0.000000000 0.00000000
## 1022 0.0000000 0.000000000 0.00000000
## 1023 0.0000000 0.000000000 0.00000000
## 1024 0.0000000 0.000000000 0.00000000
## 1025 0.0000000 0.000000000 0.00000000
## 1026 0.0000000 0.000000000 0.00000000
## 1027 0.0000000 0.000000000 0.00000000
## 1028 0.0000000 0.000000000 0.00000000
## 1029 0.0000000 0.000000000 0.00000000
## 1030 0.0000000 0.000000000 0.00000000
## 1031 0.0000000 0.000000000 0.00000000
## 1032 0.0000000 0.000000000 0.00000000
## 1033 0.0000000 0.000000000 0.00000000
## 1034 0.0000000 0.000000000 0.00000000
## 1035 0.0000000 0.000000000 0.00000000
## 1036 0.0000000 0.000000000 0.00000000
## 1037 0.0000000 0.000000000 0.00000000
## 1038 0.0000000 0.000000000 0.00000000
## 1039 0.0000000 0.000000000 0.00000000
## 1040 0.0000000 0.000000000 0.00000000
## 1041 0.0000000 0.000000000 0.00000000
## 1042 0.0000000 0.000000000 0.00000000
## 1043 0.0000000 0.000000000 0.00000000
## 1044 0.0000000 0.000000000 0.00000000
## 1045 0.0000000 0.000000000 0.00000000
## 1046 0.0000000 0.000000000 0.00000000
## 1047 0.0000000 0.000000000 0.00000000
## 1048 0.0000000 0.000000000 0.00000000
## 1049 0.0000000 0.000000000 0.00000000
## 1050 0.0000000 0.000000000 0.00000000
## 1051 0.0000000 0.000000000 0.00000000
## 1052 0.0000000 0.000000000 0.00000000
## 1053 0.0000000 0.000000000 0.00000000
## 1054 0.0000000 0.000000000 0.00000000
## 1055 0.0000000 0.000000000 0.00000000
## 1056 0.0000000 0.000000000 0.00000000
## 1057 0.0000000 0.000000000 0.00000000
## 1058 0.0000000 0.000000000 0.00000000
## 1059 0.0000000 0.000000000 0.00000000
## 1060 0.0000000 0.000000000 0.00000000
## 1061 0.0000000 0.000000000 0.00000000
## 1062 0.0000000 0.000000000 0.00000000
## 1063 0.0000000 0.000000000 0.00000000
## 1064 0.0000000 0.000000000 0.00000000
## 1065 0.0000000 0.000000000 0.00000000
## 1066 0.0000000 0.000000000 0.00000000
## 1067 0.0000000 0.000000000 0.00000000
## 1068 0.0000000 0.000000000 0.00000000
## 1069 0.0000000 0.000000000 0.00000000
## 1070 0.0000000 0.000000000 0.00000000
## 1071 0.0000000 0.000000000 0.00000000
## 1072 0.0000000 0.000000000 0.00000000
## 1073 0.0000000 0.000000000 0.00000000
## 1074 0.0000000 0.000000000 0.00000000
## 1075 0.0000000 0.000000000 0.00000000
## 1076 0.0000000 0.000000000 0.00000000
## 1077 0.0000000 0.000000000 0.00000000
## 1078 0.0000000 0.000000000 0.00000000
## 1079 0.0000000 0.000000000 0.00000000
## 1080 0.0000000 0.000000000 0.00000000
## 1081 0.0000000 0.000000000 0.00000000
## 1082 0.0000000 0.000000000 0.00000000
## 1083 0.0000000 0.000000000 0.00000000
## 1084 0.0000000 0.000000000 0.00000000
## 1085 0.0000000 0.000000000 0.00000000
## 1086 0.0000000 0.000000000 0.00000000
## 1087 0.0000000 0.000000000 0.00000000
## 1088 0.0000000 0.000000000 0.00000000
## 1089 0.0000000 0.000000000 0.00000000
## 1090 0.0000000 0.000000000 0.00000000
## 1091 0.0000000 0.000000000 0.00000000
## 1092 0.0000000 0.000000000 0.00000000
## 1093 0.0000000 0.000000000 0.00000000
## 1094 0.0000000 0.000000000 0.00000000
## 1095 0.0000000 0.000000000 0.00000000
## 1096 0.0000000 0.000000000 0.00000000
## 1097 0.0000000 0.000000000 0.00000000
## 1098 0.0000000 0.000000000 0.00000000
## 1099 0.0000000 0.000000000 0.00000000
## 1100 0.0000000 0.000000000 0.00000000
## 1101 0.0000000 0.000000000 0.00000000
## 1102 0.0000000 0.000000000 0.00000000
## 1103 0.0000000 0.000000000 0.00000000
## 1104 0.0000000 0.000000000 0.00000000
## 1105 0.0000000 0.000000000 0.00000000
## 1106 0.0000000 0.000000000 0.00000000
## 1107 0.0000000 0.000000000 0.00000000
## 1108 0.0000000 0.000000000 0.00000000
## 1109 0.0000000 0.000000000 0.00000000
## 1110 0.0000000 0.000000000 0.00000000
## 1111 0.0000000 0.000000000 0.00000000
## 1112 0.0000000 0.000000000 0.00000000
## 1113 0.0000000 0.000000000 0.00000000
## 1114 0.0000000 0.000000000 0.00000000
## 1115 0.0000000 0.000000000 0.00000000
## 1116 0.0000000 0.000000000 0.00000000
## 1117 0.0000000 0.000000000 0.00000000
## 1118 0.0000000 0.000000000 0.00000000
## 1119 0.0000000 0.000000000 0.00000000
## 1120 0.0000000 0.000000000 0.00000000
## 1121 0.0000000 0.000000000 0.00000000
## 1122 0.0000000 0.000000000 0.00000000
## 1123 0.0000000 0.000000000 0.00000000
## 1124 0.0000000 0.000000000 0.00000000
## 1125 0.0000000 0.000000000 0.00000000
## 1126 0.0000000 0.000000000 0.00000000
## 1127 0.0000000 0.000000000 0.00000000
## 1128 0.0000000 0.000000000 0.00000000
## 1129 0.0000000 0.000000000 0.00000000
## 1130 0.0000000 0.000000000 0.00000000
## 1131 0.0000000 0.000000000 0.00000000
## 1132 0.0000000 0.000000000 0.00000000
## 1133 0.0000000 0.000000000 0.00000000
## 1134 0.0000000 0.000000000 0.00000000
## 1135 0.0000000 0.000000000 0.00000000
## 1136 0.0000000 0.000000000 0.00000000
## 1137 0.0000000 0.000000000 0.00000000
## 1138 0.0000000 0.000000000 0.00000000
## 1139 0.0000000 0.000000000 0.00000000
## 1140 0.0000000 0.000000000 0.00000000
## 1141 0.0000000 0.000000000 0.00000000
## 1142 0.0000000 0.000000000 0.00000000
## 1143 0.0000000 0.000000000 0.00000000
## 1144 0.0000000 0.000000000 0.00000000
## 1145 0.0000000 0.000000000 0.00000000
## 1146 0.0000000 0.000000000 0.00000000
## 1147 0.0000000 0.000000000 0.00000000
## 1148 0.0000000 0.000000000 0.00000000
## 1149 0.0000000 0.000000000 0.00000000
## 1150 0.0000000 0.000000000 0.00000000
## 1151 0.0000000 0.000000000 0.00000000
## 1152 0.0000000 0.000000000 0.00000000
## 1153 0.0000000 0.000000000 0.00000000
## 1154 0.0000000 0.000000000 0.00000000
## 1155 0.0000000 0.000000000 0.00000000
## 1156 0.0000000 0.000000000 0.00000000
## 1157 0.0000000 0.000000000 0.00000000
## 1158 0.0000000 0.000000000 0.00000000
## 1159 0.0000000 0.000000000 0.00000000
## 1160 0.0000000 0.000000000 0.00000000
## 1161 0.0000000 0.000000000 0.00000000
## 1162 0.0000000 0.000000000 0.00000000
## 1163 0.0000000 0.000000000 0.00000000
## 1164 0.0000000 0.000000000 0.00000000
## 1165 0.0000000 0.000000000 0.00000000
## 1166 0.0000000 0.000000000 0.00000000
## 1167 0.0000000 0.000000000 0.00000000
## 1168 0.0000000 0.000000000 0.00000000
## 1169 0.0000000 0.000000000 0.00000000
## 1170 0.0000000 0.000000000 0.00000000
## 1171 0.0000000 0.000000000 0.00000000
## 1172 0.0000000 0.000000000 0.00000000
## 1173 0.0000000 0.000000000 0.00000000
## 1174 0.0000000 0.000000000 0.00000000
## 1175 0.0000000 0.000000000 0.00000000
## 1176 0.0000000 0.000000000 0.00000000
## 1177 0.0000000 0.000000000 0.00000000
## 1178 0.0000000 0.000000000 0.00000000
## 1179 0.0000000 0.000000000 0.00000000
## 1180 0.0000000 0.000000000 0.00000000
## 1181 0.0000000 0.000000000 0.00000000
## 1182 0.0000000 0.000000000 0.00000000
## 1183 0.0000000 0.000000000 0.00000000
## 1184 0.0000000 0.000000000 0.00000000
## 1185 0.0000000 0.000000000 0.00000000
## 1186 0.0000000 0.000000000 0.00000000
## 1187 0.0000000 0.000000000 0.00000000
## 1188 0.0000000 0.000000000 0.00000000
## 1189 0.0000000 0.000000000 0.00000000
## 1190 0.0000000 0.000000000 0.00000000
## 1191 0.0000000 0.000000000 0.00000000
## 1192 0.0000000 0.000000000 0.00000000
## 1193 0.0000000 0.000000000 0.00000000
## 1194 0.0000000 0.000000000 0.00000000
## 1195 0.0000000 0.000000000 0.00000000
## 1196 0.0000000 0.000000000 0.00000000
## 1197 0.0000000 0.000000000 0.00000000
## 1198 0.0000000 0.000000000 0.00000000
## 1199 0.0000000 0.000000000 0.00000000
## 1200 0.0000000 0.000000000 0.00000000
## 1201 0.0000000 0.000000000 0.00000000
## 1202 0.0000000 0.000000000 0.00000000
## 1203 0.0000000 0.000000000 0.00000000
## 1204 0.0000000 0.000000000 0.00000000
## 1205 0.0000000 0.000000000 0.00000000
## 1206 0.0000000 0.000000000 0.00000000
## 1207 0.0000000 0.000000000 0.00000000
## 1208 0.0000000 0.000000000 0.00000000
## 1209 0.0000000 0.000000000 0.00000000
## 1210 0.0000000 0.000000000 0.00000000
## 1211 0.0000000 0.000000000 0.00000000
## 1212 0.0000000 0.000000000 0.00000000
## 1213 0.0000000 0.000000000 0.00000000
## 1214 0.0000000 0.000000000 0.00000000
## 1215 0.0000000 0.000000000 0.00000000
## 1216 0.0000000 0.000000000 0.00000000
## 1217 0.0000000 0.000000000 0.00000000
## 1218 0.0000000 0.000000000 0.00000000
## 1219 0.0000000 0.000000000 0.00000000
## 1220 0.0000000 0.000000000 0.00000000
## 1221 0.0000000 0.000000000 0.00000000
## 1222 0.0000000 0.000000000 0.00000000
## 1223 0.0000000 0.000000000 0.00000000
## 1224 0.0000000 0.000000000 0.00000000
## 1225 0.0000000 0.000000000 0.00000000
## 1226 0.0000000 0.000000000 0.00000000
## 1227 0.0000000 0.000000000 0.00000000
## 1228 0.0000000 0.000000000 0.00000000
## 1229 0.0000000 0.000000000 0.00000000
## 1230 0.0000000 0.000000000 0.00000000
## 1231 0.0000000 0.000000000 0.00000000
## 1232 0.0000000 0.000000000 0.00000000
## 1233 0.0000000 0.000000000 0.00000000
## 1234 0.0000000 0.000000000 0.00000000
## 1235 0.0000000 0.000000000 0.00000000
## 1236 0.0000000 0.000000000 0.00000000
## 1237 0.0000000 0.000000000 0.00000000
## 1238 0.0000000 0.000000000 0.00000000
## 1239 0.0000000 0.000000000 0.00000000
## 1240 0.0000000 0.000000000 0.00000000
## 1241 0.0000000 0.000000000 0.00000000
## 1242 0.0000000 0.000000000 0.00000000
## 1243 0.0000000 0.000000000 0.00000000
## 1244 0.0000000 0.000000000 0.00000000
## 1245 0.0000000 0.000000000 0.00000000
## 1246 0.0000000 0.000000000 0.00000000
## 1247 0.0000000 0.000000000 0.00000000
## 1248 0.0000000 0.000000000 0.00000000
## 1249 0.0000000 0.000000000 0.00000000
## 1250 0.0000000 0.000000000 0.00000000
## 1251 0.0000000 0.000000000 0.00000000
## 1252 0.0000000 0.000000000 0.00000000
## 1253 0.0000000 0.000000000 0.00000000
## 1254 0.0000000 0.000000000 0.00000000
## 1255 0.0000000 0.000000000 0.00000000
## 1256 0.0000000 0.000000000 0.00000000
## 1257 0.0000000 0.000000000 0.00000000
## 1258 0.0000000 0.000000000 0.00000000
## 1259 0.0000000 0.000000000 0.00000000
## 1260 0.0000000 0.000000000 0.00000000
## 1261 0.0000000 0.000000000 0.00000000
## 1262 0.0000000 0.000000000 0.00000000
## 1263 0.0000000 0.000000000 0.00000000
## 1264 0.0000000 0.000000000 0.00000000
## 1265 0.0000000 0.000000000 0.00000000
## 1266 0.0000000 0.000000000 0.00000000
## 1267 0.0000000 0.000000000 0.00000000
## 1268 0.0000000 0.000000000 0.00000000
## 1269 0.0000000 0.000000000 0.00000000
## 1270 0.0000000 0.000000000 0.00000000
## 1271 0.0000000 0.000000000 0.00000000
## 1272 0.0000000 0.000000000 0.00000000
## 1273 0.0000000 0.000000000 0.00000000
## 1274 0.0000000 0.000000000 0.00000000
## 1275 0.0000000 0.000000000 0.00000000
## 1276 0.0000000 0.000000000 0.00000000
## 1277 0.0000000 0.000000000 0.00000000
## 1278 0.0000000 0.000000000 0.00000000
## 1279 0.0000000 0.000000000 0.00000000
## 1280 0.0000000 0.000000000 0.00000000
## 1281 0.0000000 0.000000000 0.00000000
## 1282 0.0000000 0.000000000 0.00000000
## 1283 0.0000000 0.000000000 0.00000000
## 1284 0.0000000 0.000000000 0.00000000
## 1285 0.0000000 0.000000000 0.00000000
## 1286 0.0000000 0.000000000 0.00000000
## 1287 0.0000000 0.000000000 0.00000000
## 1288 0.0000000 0.000000000 0.00000000
## 1289 0.0000000 0.000000000 0.00000000
## 1290 0.0000000 0.000000000 0.00000000
## 1291 0.0000000 0.000000000 0.00000000
## 1292 0.0000000 0.000000000 0.00000000
## 1293 0.0000000 0.000000000 0.00000000
## 1294 0.0000000 0.000000000 0.00000000
## 1295 0.0000000 0.000000000 0.00000000
## 1296 0.0000000 0.000000000 0.00000000
## 1297 0.0000000 0.000000000 0.00000000
## 1298 0.0000000 0.000000000 0.00000000
## 1299 0.0000000 0.000000000 0.00000000
## 1300 0.0000000 0.000000000 0.00000000
## 1301 0.0000000 0.000000000 0.00000000
## 1302 0.0000000 0.000000000 0.00000000
## 1303 0.0000000 0.000000000 0.00000000
## 1304 0.0000000 0.000000000 0.00000000
## 1305 0.0000000 0.000000000 0.00000000
## 1306 0.0000000 0.000000000 0.00000000
## 1307 0.0000000 0.000000000 0.00000000
## 1308 0.0000000 0.000000000 0.00000000
## 1309 0.0000000 0.000000000 0.00000000
## 1310 0.0000000 0.000000000 0.00000000
## 1311 0.0000000 0.000000000 0.00000000
## 1312 0.0000000 0.000000000 0.00000000
## 1313 0.0000000 0.000000000 0.00000000
## 1314 0.0000000 0.000000000 0.00000000
## 1315 0.0000000 0.000000000 0.00000000
## 1316 0.0000000 0.000000000 0.00000000
## 1317 0.0000000 0.000000000 0.00000000
## 1318 0.0000000 0.000000000 0.00000000
## 1319 0.0000000 0.000000000 0.00000000
## 1320 0.0000000 0.000000000 0.00000000
## 1321 0.0000000 0.000000000 0.00000000
## 1322 0.0000000 0.000000000 0.00000000
## 1323 0.0000000 0.000000000 0.00000000
## 1324 0.0000000 0.000000000 0.00000000
## 1325 0.0000000 0.000000000 0.00000000
## 1326 0.0000000 0.000000000 0.00000000
## 1327 0.0000000 0.000000000 0.00000000
## 1328 0.0000000 0.000000000 0.00000000
## 1329 0.0000000 0.000000000 0.00000000
## 1330 0.0000000 0.000000000 0.00000000
## 1331 0.0000000 0.000000000 0.00000000
## 1332 0.0000000 0.000000000 0.00000000
## 1333 0.0000000 0.000000000 0.00000000
## 1334 0.0000000 0.000000000 0.00000000
## 1335 0.0000000 0.000000000 0.00000000
## 1336 0.0000000 0.000000000 0.00000000
## 1337 0.0000000 0.000000000 0.00000000
## 1338 0.0000000 0.000000000 0.00000000
## 1339 0.0000000 0.000000000 0.00000000
## 1340 0.0000000 0.000000000 0.00000000
## 1341 0.0000000 0.000000000 0.00000000
## 1342 0.0000000 0.000000000 0.00000000
## 1343 0.0000000 0.000000000 0.00000000
## 1344 0.0000000 0.000000000 0.00000000
## 1345 0.0000000 0.000000000 0.00000000
## 1346 0.0000000 0.000000000 0.00000000
## 1347 0.0000000 0.000000000 0.00000000
## 1348 0.0000000 0.000000000 0.00000000
## 1349 0.0000000 0.000000000 0.00000000
## 1350 0.0000000 0.000000000 0.00000000
## 1351 0.0000000 0.000000000 0.00000000
## 1352 0.0000000 0.000000000 0.00000000
## 1353 0.0000000 0.000000000 0.00000000
## 1354 0.0000000 0.000000000 0.00000000
## 1355 0.0000000 0.000000000 0.00000000
## 1356 0.0000000 0.000000000 0.00000000
## 1357 0.0000000 0.000000000 0.00000000
## 1358 0.0000000 0.000000000 0.00000000
## 1359 0.0000000 0.000000000 0.00000000
## 1360 0.0000000 0.000000000 0.00000000
## 1361 0.0000000 0.000000000 0.00000000
## 1362 0.0000000 0.000000000 0.00000000
## 1363 0.0000000 0.000000000 0.00000000
## 1364 0.0000000 0.000000000 0.00000000
## 1365 0.0000000 0.000000000 0.00000000
## 1366 0.0000000 0.000000000 0.00000000
## 1367 0.0000000 0.000000000 0.00000000
## 1368 0.0000000 0.000000000 0.00000000
## 1369 0.0000000 0.000000000 0.00000000
## 1370 0.0000000 0.000000000 0.00000000
## 1371 0.0000000 0.000000000 0.00000000
## 1372 0.0000000 0.000000000 0.00000000
## 1373 0.0000000 0.000000000 0.00000000
## 1374 0.0000000 0.000000000 0.00000000
## 1375 0.0000000 0.000000000 0.00000000
## 1376 0.0000000 0.000000000 0.00000000
## 1377 0.0000000 0.000000000 0.00000000
## 1378 0.0000000 0.000000000 0.00000000
## 1379 0.0000000 0.000000000 0.00000000
## 1380 0.0000000 0.000000000 0.00000000
## 1381 0.0000000 0.000000000 0.00000000
## 1382 0.0000000 0.000000000 0.00000000
## 1383 0.0000000 0.000000000 0.00000000
## 1384 0.0000000 0.000000000 0.00000000
## 1385 0.0000000 0.000000000 0.00000000
## 1386 0.0000000 0.000000000 0.00000000
## 1387 0.0000000 0.000000000 0.00000000
## 1388 0.0000000 0.000000000 0.00000000
## 1389 0.0000000 0.000000000 0.00000000
## 1390 0.0000000 0.000000000 0.00000000
## 1391 0.0000000 0.000000000 0.00000000
## 1392 0.0000000 0.000000000 0.00000000
## 1393 0.0000000 0.000000000 0.00000000
## 1394 0.0000000 0.000000000 0.00000000
## 1395 0.0000000 0.000000000 0.00000000
## 1396 0.0000000 0.000000000 0.00000000
## 1397 0.0000000 0.000000000 0.00000000
## 1398 0.0000000 0.000000000 0.00000000
## 1399 0.0000000 0.000000000 0.00000000
## 1400 0.0000000 0.000000000 0.00000000
## 1401 0.0000000 0.000000000 0.00000000
## 1402 0.0000000 0.000000000 0.00000000
## 1403 0.0000000 0.000000000 0.00000000
## 1404 0.0000000 0.000000000 0.00000000
## 1405 0.0000000 0.000000000 0.00000000
## 1406 0.0000000 0.000000000 0.00000000
## 1407 0.0000000 0.000000000 0.00000000
## 1408 0.0000000 0.000000000 0.00000000
## 1409 0.0000000 0.000000000 0.00000000
## 1410 0.0000000 0.000000000 0.00000000
## 1411 0.0000000 0.000000000 0.00000000
## 1412 0.0000000 0.000000000 0.00000000
## 1413 0.0000000 0.000000000 0.00000000
## 1414 0.0000000 0.000000000 0.00000000
## 1415 0.0000000 0.000000000 0.00000000
## 1416 0.0000000 0.000000000 0.00000000
## 1417 0.0000000 0.000000000 0.00000000
## 1418 0.0000000 0.000000000 0.00000000
## 1419 0.0000000 0.000000000 0.00000000
## 1420 0.0000000 0.000000000 0.00000000
## 1421 0.0000000 0.000000000 0.00000000
## 1422 0.0000000 0.000000000 0.00000000
## 1423 0.0000000 0.000000000 0.00000000
## 1424 0.0000000 0.000000000 0.00000000
## 1425 0.0000000 0.000000000 0.00000000
## 1426 0.0000000 0.000000000 0.00000000
## 1427 0.0000000 0.000000000 0.00000000
## 1428 0.0000000 0.000000000 0.00000000
## 1429 0.0000000 0.000000000 0.00000000
## 1430 0.0000000 0.000000000 0.00000000
## 1431 0.0000000 0.000000000 0.00000000
## 1432 0.0000000 0.000000000 0.00000000
## 1433 0.0000000 0.000000000 0.00000000
## 1434 0.0000000 0.000000000 0.00000000
## 1435 0.0000000 0.000000000 0.00000000
## 1436 0.0000000 0.000000000 0.00000000
## 1437 0.0000000 0.000000000 0.00000000
## 1438 0.0000000 0.000000000 0.00000000
## 1439 0.0000000 0.000000000 0.00000000
## 1440 0.0000000 0.000000000 0.00000000
## 1441 0.0000000 0.000000000 0.00000000
## 1442 0.0000000 0.000000000 0.00000000
## 1443 0.0000000 0.000000000 0.00000000
## 1444 0.0000000 0.000000000 0.00000000
## 1445 0.0000000 0.000000000 0.00000000
## 1446 0.0000000 0.000000000 0.00000000
## 1447 0.0000000 0.000000000 0.00000000
## 1448 0.0000000 0.000000000 0.00000000
## 1449 0.0000000 0.000000000 0.00000000
## 1450 0.0000000 0.000000000 0.00000000
## 1451 0.0000000 0.000000000 0.00000000
## 1452 0.0000000 0.000000000 0.00000000
## 1453 0.0000000 0.000000000 0.00000000
## 1454 0.0000000 0.000000000 0.00000000
## 1455 0.0000000 0.000000000 0.00000000
## 1456 0.0000000 0.000000000 0.00000000
## 1457 0.0000000 0.000000000 0.00000000
## 1458 0.0000000 0.000000000 0.00000000
## 1459 0.0000000 0.000000000 0.00000000
## 1460 0.0000000 0.000000000 0.00000000
## 1461 0.0000000 0.000000000 0.00000000
## 1462 0.0000000 0.000000000 0.00000000
## 1463 0.0000000 0.000000000 0.00000000
## 1464 0.0000000 0.000000000 0.00000000
## 1465 0.0000000 0.000000000 0.00000000
## 1466 0.0000000 0.000000000 0.00000000
## 1467 0.0000000 0.000000000 0.00000000
## 1468 0.0000000 0.000000000 0.00000000
## 1469 0.0000000 0.000000000 0.00000000
## 1470 0.0000000 0.000000000 0.00000000
## 1471 0.0000000 0.000000000 0.00000000
## 1472 0.0000000 0.000000000 0.00000000
## 1473 0.0000000 0.000000000 0.00000000
## 1474 0.0000000 0.000000000 0.00000000
## 1475 0.0000000 0.000000000 0.00000000
## 1476 0.0000000 0.000000000 0.00000000
## 1477 0.0000000 0.000000000 0.00000000
## 1478 0.0000000 0.000000000 0.00000000
## 1479 0.0000000 0.000000000 0.00000000
## 1480 0.0000000 0.000000000 0.00000000
## 1481 0.0000000 0.000000000 0.00000000
## 1482 0.0000000 0.000000000 0.00000000
## 1483 0.0000000 0.000000000 0.00000000
## 1484 0.0000000 0.000000000 0.00000000
## 1485 0.0000000 0.000000000 0.00000000
## 1486 0.0000000 0.000000000 0.00000000
## 1487 0.0000000 0.000000000 0.00000000
## 1488 0.0000000 0.000000000 0.00000000
## 1489 0.0000000 0.000000000 0.00000000
## 1490 0.0000000 0.000000000 0.00000000
## 1491 0.0000000 0.000000000 0.00000000
## 1492 0.0000000 0.000000000 0.00000000
## 1493 0.0000000 0.000000000 0.00000000
## 1494 0.0000000 0.000000000 0.00000000
## 1495 0.0000000 0.000000000 0.00000000
## 1496 0.0000000 0.000000000 0.00000000
## 1497 0.0000000 0.000000000 0.00000000
## 1498 0.0000000 0.000000000 0.00000000
## 1499 0.0000000 0.000000000 0.00000000
## 1500 0.0000000 0.000000000 0.00000000
## 1501 0.0000000 0.000000000 0.00000000
## 1502 0.0000000 0.000000000 0.00000000
## 1503 0.0000000 0.000000000 0.00000000
## 1504 0.0000000 0.000000000 0.00000000
## 1505 0.0000000 0.000000000 0.00000000
## 1506 0.0000000 0.000000000 0.00000000
## 1507 0.0000000 0.000000000 0.00000000
## 1508 0.0000000 0.000000000 0.00000000
## 1509 0.0000000 0.000000000 0.00000000
## 1510 0.0000000 0.000000000 0.00000000
## 1511 0.0000000 0.000000000 0.00000000
## 1512 0.0000000 0.000000000 0.00000000
## 1513 0.0000000 0.000000000 0.00000000
## 1514 0.0000000 0.000000000 0.00000000
## 1515 0.0000000 0.000000000 0.00000000
## 1516 0.0000000 0.000000000 0.00000000
## 1517 0.0000000 0.000000000 0.00000000
## 1518 0.0000000 0.000000000 0.00000000
## 1519 0.0000000 0.000000000 0.00000000
## 1520 0.0000000 0.000000000 0.00000000
## 1521 0.0000000 0.000000000 0.00000000
## 1522 0.0000000 0.000000000 0.00000000
## 1523 0.0000000 0.000000000 0.00000000
## 1524 0.0000000 0.000000000 0.00000000
## 1525 0.0000000 0.000000000 0.00000000
## 1526 0.0000000 0.000000000 0.00000000
## 1527 0.0000000 0.000000000 0.00000000
## 1528 0.0000000 0.000000000 0.00000000
## 1529 0.0000000 0.000000000 0.00000000
## 1530 0.0000000 0.000000000 0.00000000
## 1531 0.0000000 0.000000000 0.00000000
## 1532 0.0000000 0.000000000 0.00000000
## 1533 0.0000000 0.000000000 0.00000000
## 1534 0.0000000 0.000000000 0.00000000
## 1535 0.0000000 0.000000000 0.00000000
## 1536 0.0000000 0.000000000 0.00000000
## 1537 0.0000000 0.000000000 0.00000000
## 1538 0.0000000 0.000000000 0.00000000
## 1539 0.0000000 0.000000000 0.00000000
## 1540 0.0000000 0.000000000 0.00000000
## 1541 0.0000000 0.000000000 0.00000000
## 1542 0.0000000 0.000000000 0.00000000
## 1543 0.0000000 0.000000000 0.00000000
## 1544 0.0000000 0.000000000 0.00000000
## 1545 0.0000000 0.000000000 0.00000000
## 1546 0.0000000 0.000000000 0.00000000
## 1547 0.0000000 0.000000000 0.00000000
## 1548 0.0000000 0.000000000 0.00000000
## 1549 0.0000000 0.000000000 0.00000000
## 1550 0.0000000 0.000000000 0.00000000
## 1551 0.0000000 0.000000000 0.00000000
## 1552 0.0000000 0.000000000 0.00000000
## 1553 0.0000000 0.000000000 0.00000000
## 1554 0.0000000 0.000000000 0.00000000
## 1555 0.0000000 0.000000000 0.00000000
## 1556 0.0000000 0.000000000 0.00000000
## 1557 0.0000000 0.000000000 0.00000000
## 1558 0.0000000 0.000000000 0.00000000
## 1559 0.0000000 0.000000000 0.00000000
## 1560 0.0000000 0.000000000 0.00000000
## 1561 0.0000000 0.000000000 0.00000000
## 1562 0.0000000 0.000000000 0.00000000
## 1563 0.0000000 0.000000000 0.00000000
## 1564 0.0000000 0.000000000 0.00000000
## 1565 0.0000000 0.000000000 0.00000000
## 1566 0.0000000 0.000000000 0.00000000
## 1567 0.0000000 0.000000000 0.00000000
## 1568 0.0000000 0.000000000 0.00000000
## 1569 0.0000000 0.000000000 0.00000000
## 1570 0.0000000 0.000000000 0.00000000
## 1571 0.0000000 0.000000000 0.00000000
## 1572 0.0000000 0.000000000 0.00000000
## 1573 0.0000000 0.000000000 0.00000000
## 1574 0.0000000 0.000000000 0.00000000
## 1575 0.0000000 0.000000000 0.00000000
## 1576 0.0000000 0.000000000 0.00000000
## 1577 0.0000000 0.000000000 0.00000000
## 1578 0.0000000 0.000000000 0.00000000
## 1579 0.0000000 0.000000000 0.00000000
## 1580 0.0000000 0.000000000 0.00000000
## 1581 0.0000000 0.000000000 0.00000000
## 1582 0.0000000 0.000000000 0.00000000
## 1583 0.0000000 0.000000000 0.00000000
## 1584 0.0000000 0.000000000 0.00000000
## 1585 0.0000000 0.000000000 0.00000000
## 1586 0.0000000 0.000000000 0.00000000
## 1587 0.0000000 0.000000000 0.00000000
## 1588 0.0000000 0.000000000 0.00000000
## 1589 0.0000000 0.000000000 0.00000000
## 1590 0.0000000 0.000000000 0.00000000
## 1591 0.0000000 0.000000000 0.00000000
## 1592 0.0000000 0.000000000 0.00000000
## 1593 0.0000000 0.000000000 0.00000000
## 1594 0.0000000 0.000000000 0.00000000
## 1595 0.0000000 0.000000000 0.00000000
## 1596 0.0000000 0.000000000 0.00000000
## 1597 0.0000000 0.000000000 0.00000000
## 1598 0.0000000 0.000000000 0.00000000
## 1599 0.0000000 0.000000000 0.00000000
## 1600 0.0000000 0.000000000 0.00000000
## 1601 0.0000000 0.000000000 0.00000000
## 1602 0.0000000 0.000000000 0.00000000
## 1603 0.0000000 0.000000000 0.00000000
## 1604 0.0000000 0.000000000 0.00000000
## 1605 0.0000000 0.000000000 0.00000000
## 1606 0.0000000 0.000000000 0.00000000
## 1607 0.0000000 0.000000000 0.00000000
## 1608 0.0000000 0.000000000 0.00000000
## 1609 0.0000000 0.000000000 0.00000000
## 1610 0.0000000 0.000000000 0.00000000
## 1611 0.0000000 0.000000000 0.00000000
## 1612 0.0000000 0.000000000 0.00000000
## 1613 0.0000000 0.000000000 0.00000000
## 1614 0.0000000 0.000000000 0.00000000
## 1615 0.0000000 0.000000000 0.00000000
## 1616 0.0000000 0.000000000 0.00000000
## 1617 0.0000000 0.000000000 0.00000000
## 1618 0.0000000 0.000000000 0.00000000
## 1619 0.0000000 0.000000000 0.00000000
## 1620 0.0000000 0.000000000 0.00000000
## 1621 0.0000000 0.000000000 0.00000000
## 1622 0.0000000 0.000000000 0.00000000
## 1623 0.0000000 0.000000000 0.00000000
## 1624 0.0000000 0.000000000 0.00000000
## 1625 0.0000000 0.000000000 0.00000000
## 1626 0.0000000 0.000000000 0.00000000
## 1627 0.0000000 0.000000000 0.00000000
## 1628 0.0000000 0.000000000 0.00000000
## 1629 0.0000000 0.000000000 0.00000000
## 1630 0.0000000 0.000000000 0.00000000
## 1631 0.0000000 0.000000000 0.00000000
## 1632 0.0000000 0.000000000 0.00000000
## 1633 0.0000000 0.000000000 0.00000000
## 1634 0.0000000 0.000000000 0.00000000
## 1635 0.0000000 0.000000000 0.00000000
## 1636 0.0000000 0.000000000 0.00000000
## 1637 0.0000000 0.000000000 0.00000000
## 1638 0.0000000 0.000000000 0.00000000
## 1639 0.0000000 0.000000000 0.00000000
## 1640 0.0000000 0.000000000 0.00000000
## 1641 0.0000000 0.000000000 0.00000000
## 1642 0.0000000 0.000000000 0.00000000
## 1643 0.0000000 0.000000000 0.00000000
## 1644 0.0000000 0.000000000 0.00000000
## 1645 0.0000000 0.000000000 0.00000000
## 1646 0.0000000 0.000000000 0.00000000
## 1647 0.0000000 0.000000000 0.00000000
## 1648 0.0000000 0.000000000 0.00000000
## 1649 0.0000000 0.000000000 0.00000000
## 1650 0.0000000 0.000000000 0.00000000
## 1651 0.0000000 0.000000000 0.00000000
## 1652 0.0000000 0.000000000 0.00000000
## 1653 0.0000000 0.000000000 0.00000000
## 1654 0.0000000 0.000000000 0.00000000
## 1655 0.0000000 0.000000000 0.00000000
## 1656 0.0000000 0.000000000 0.00000000
## 1657 0.0000000 0.000000000 0.00000000
## 1658 0.0000000 0.000000000 0.00000000
## 1659 0.0000000 0.000000000 0.00000000
## 1660 0.0000000 0.000000000 0.00000000
## 1661 0.0000000 0.000000000 0.00000000
## 1662 0.0000000 0.000000000 0.00000000
## 1663 0.0000000 0.000000000 0.00000000
## 1664 0.0000000 0.000000000 0.00000000
## 1665 0.0000000 0.000000000 0.00000000
## 1666 0.0000000 0.000000000 0.00000000
## 1667 0.0000000 0.000000000 0.00000000
## 1668 0.0000000 0.000000000 0.00000000
## 1669 0.0000000 0.000000000 0.00000000
## 1670 0.0000000 0.000000000 0.00000000
## 1671 0.0000000 0.000000000 0.00000000
## 1672 0.0000000 0.000000000 0.00000000
## 1673 0.0000000 0.000000000 0.00000000
## 1674 0.0000000 0.000000000 0.00000000
## 1675 0.0000000 0.000000000 0.00000000
## 1676 0.0000000 0.000000000 0.00000000
## 1677 0.0000000 0.000000000 0.00000000
## 1678 0.0000000 0.000000000 0.00000000
## 1679 0.0000000 0.000000000 0.00000000
## 1680 0.0000000 0.000000000 0.00000000
## 1681 0.0000000 0.000000000 0.00000000
## 1682 0.0000000 0.000000000 0.00000000
## 1683 0.0000000 0.000000000 0.00000000
## 1684 0.0000000 0.000000000 0.00000000
## 1685 0.0000000 0.000000000 0.00000000
## 1686 0.0000000 0.000000000 0.00000000
## 1687 0.0000000 0.000000000 0.00000000
## 1688 0.0000000 0.000000000 0.00000000
## 1689 0.0000000 0.000000000 0.00000000
## 1690 0.0000000 0.000000000 0.00000000
## 1691 0.0000000 0.000000000 0.00000000
## 1692 0.0000000 0.000000000 0.00000000
## 1693 0.0000000 0.000000000 0.00000000
## 1694 0.0000000 0.000000000 0.00000000
## 1695 0.0000000 0.000000000 0.00000000
## 1696 0.0000000 0.000000000 0.00000000
## 1697 0.0000000 0.000000000 0.00000000
## 1698 0.0000000 0.000000000 0.00000000
## 1699 0.0000000 0.000000000 0.00000000
## 1700 0.0000000 0.000000000 0.00000000
## 1701 0.0000000 0.000000000 0.00000000
## 1702 0.0000000 0.000000000 0.00000000
## 1703 0.0000000 0.000000000 0.00000000
## 1704 0.0000000 0.000000000 0.00000000
## 1705 0.0000000 0.000000000 0.00000000
## 1706 0.0000000 0.000000000 0.00000000
## 1707 0.0000000 0.000000000 0.00000000
## 1708 0.0000000 0.000000000 0.00000000
## 1709 0.0000000 0.000000000 0.00000000
## 1710 0.0000000 0.000000000 0.00000000
## 1711 0.0000000 0.000000000 0.00000000
## 1712 0.0000000 0.000000000 0.00000000
## 1713 0.0000000 0.000000000 0.00000000
## 1714 0.0000000 0.000000000 0.00000000
## 1715 0.0000000 0.000000000 0.00000000
## 1716 0.0000000 0.000000000 0.00000000
## 1717 0.0000000 0.000000000 0.00000000
## 1718 0.0000000 0.000000000 0.00000000
## 1719 0.0000000 0.000000000 0.00000000
## 1720 0.0000000 0.000000000 0.00000000
## 1721 0.0000000 0.000000000 0.00000000
## 1722 0.0000000 0.000000000 0.00000000
## 1723 0.0000000 0.000000000 0.00000000
## 1724 0.0000000 0.000000000 0.00000000
## 1725 0.0000000 0.000000000 0.00000000
## 1726 0.0000000 0.000000000 0.00000000
## 1727 0.0000000 0.000000000 0.00000000
## 1728 0.0000000 0.000000000 0.00000000
## 1729 0.0000000 0.000000000 0.00000000
## 1730 0.0000000 0.000000000 0.00000000
## 1731 0.0000000 0.000000000 0.00000000
## 1732 0.0000000 0.000000000 0.00000000
## 1733 0.0000000 0.000000000 0.00000000
## 1734 0.0000000 0.000000000 0.00000000
## 1735 0.0000000 0.000000000 0.00000000
## 1736 0.0000000 0.000000000 0.00000000
## 1737 0.0000000 0.000000000 0.00000000
## 1738 0.0000000 0.000000000 0.00000000
## 1739 0.0000000 0.000000000 0.00000000
## 1740 0.0000000 0.000000000 0.00000000
## 1741 0.0000000 0.000000000 0.00000000
## 1742 0.0000000 0.000000000 0.00000000
## 1743 0.0000000 0.000000000 0.00000000
## 1744 0.0000000 0.000000000 0.00000000
## 1745 0.0000000 0.000000000 0.00000000
## 1746 0.0000000 0.000000000 0.00000000
## 1747 0.0000000 0.000000000 0.00000000
## 1748 0.0000000 0.000000000 0.00000000
## 1749 0.0000000 0.000000000 0.00000000
## 1750 0.0000000 0.000000000 0.00000000
## 1751 0.0000000 0.000000000 0.00000000
## 1752 0.0000000 0.000000000 0.00000000
## 1753 0.0000000 0.000000000 0.00000000
## 1754 0.0000000 0.000000000 0.00000000
## 1755 0.0000000 0.000000000 0.00000000
## 1756 0.0000000 0.000000000 0.00000000
## 1757 0.0000000 0.000000000 0.00000000
## 1758 0.0000000 0.000000000 0.00000000
## 1759 0.0000000 0.000000000 0.00000000
## 1760 0.0000000 0.000000000 0.00000000
## 1761 0.0000000 0.000000000 0.00000000
## 1762 0.0000000 0.000000000 0.00000000
## 1763 0.0000000 0.000000000 0.00000000
## 1764 0.0000000 0.000000000 0.00000000
## 1765 0.0000000 0.000000000 0.00000000
## 1766 0.0000000 0.000000000 0.00000000
## 1767 0.0000000 0.000000000 0.00000000
## 1768 0.0000000 0.000000000 0.00000000
## 1769 0.0000000 0.000000000 0.00000000
## 1770 0.0000000 0.000000000 0.00000000
## 1771 0.0000000 0.000000000 0.00000000
## 1772 0.0000000 0.000000000 0.00000000
## 1773 0.0000000 0.000000000 0.00000000
## 1774 0.0000000 0.000000000 0.00000000
## 1775 0.0000000 0.000000000 0.00000000
## 1776 0.0000000 0.000000000 0.00000000
## 1777 0.0000000 0.000000000 0.00000000
## 1778 0.0000000 0.000000000 0.00000000
## 1779 0.0000000 0.000000000 0.00000000
## 1780 0.0000000 0.000000000 0.00000000
## 1781 0.0000000 0.000000000 0.00000000
## 1782 0.0000000 0.000000000 0.00000000
## 1783 0.0000000 0.000000000 0.00000000
## 1784 0.0000000 0.000000000 0.00000000
## 1785 0.0000000 0.000000000 0.00000000
## 1786 0.0000000 0.000000000 0.00000000
## 1787 0.0000000 0.000000000 0.00000000
## 1788 0.0000000 0.000000000 0.00000000
## 1789 0.0000000 0.000000000 0.00000000
## 1790 0.0000000 0.000000000 0.00000000
## 1791 0.0000000 0.000000000 0.00000000
## 1792 0.0000000 0.000000000 0.00000000
## 1793 0.0000000 0.000000000 0.00000000
## 1794 0.0000000 0.000000000 0.00000000
## 1795 0.0000000 0.000000000 0.00000000
## 1796 0.0000000 0.000000000 0.00000000
## 1797 0.0000000 0.000000000 0.00000000
## 1798 0.0000000 0.000000000 0.00000000
## 1799 0.0000000 0.000000000 0.00000000
## 1800 0.0000000 0.000000000 0.00000000
## 1801 0.0000000 0.000000000 0.00000000
## 1802 0.0000000 0.000000000 0.00000000
## 1803 0.0000000 0.000000000 0.00000000
## 1804 0.0000000 0.000000000 0.00000000
## 1805 0.0000000 0.000000000 0.00000000
## 1806 0.0000000 0.000000000 0.00000000
## 1807 0.0000000 0.000000000 0.00000000
## 1808 0.0000000 0.000000000 0.00000000
## 1809 0.0000000 0.000000000 0.00000000
## 1810 0.0000000 0.000000000 0.00000000
## 1811 0.0000000 0.000000000 0.00000000
## 1812 0.0000000 0.000000000 0.00000000
## 1813 0.0000000 0.000000000 0.00000000
## 1814 0.0000000 0.000000000 0.00000000
## 1815 0.0000000 0.000000000 0.00000000
## 1816 0.0000000 0.000000000 0.00000000
## 1817 0.0000000 0.000000000 0.00000000
## 1818 0.0000000 0.000000000 0.00000000
## 1819 0.0000000 0.000000000 0.00000000
## 1820 0.0000000 0.000000000 0.00000000
## 1821 0.0000000 0.000000000 0.00000000
## 1822 0.0000000 0.000000000 0.00000000
## 1823 0.0000000 0.000000000 0.00000000
## 1824 0.0000000 0.000000000 0.00000000
## 1825 0.0000000 0.000000000 0.00000000
## 1826 0.0000000 0.000000000 0.00000000
## 1827 0.0000000 0.000000000 0.00000000
## 1828 0.0000000 0.000000000 0.00000000
## 1829 0.0000000 0.000000000 0.00000000
## 1830 0.0000000 0.000000000 0.00000000
## 1831 0.0000000 0.000000000 0.00000000
## 1832 0.0000000 0.000000000 0.00000000
## 1833 0.0000000 0.000000000 0.00000000
## 1834 0.0000000 0.000000000 0.00000000
## 1835 0.0000000 0.000000000 0.00000000
## 1836 0.0000000 0.000000000 0.00000000
## 1837 0.0000000 0.000000000 0.00000000
## 1838 0.0000000 0.000000000 0.00000000
## 1839 0.0000000 0.000000000 0.00000000
## 1840 0.0000000 0.000000000 0.00000000
## 1841 0.0000000 0.000000000 0.00000000
## 1842 0.0000000 0.000000000 0.00000000
## 1843 0.0000000 0.000000000 0.00000000
## 1844 0.0000000 0.000000000 0.00000000
## 1845 0.0000000 0.000000000 0.00000000
## 1846 0.0000000 0.000000000 0.00000000
## 1847 0.0000000 0.000000000 0.00000000
## 1848 0.0000000 0.000000000 0.00000000
## 1849 0.0000000 0.000000000 0.00000000
## 1850 0.0000000 0.000000000 0.00000000
## 1851 0.0000000 0.000000000 0.00000000
## 1852 0.0000000 0.000000000 0.00000000
## 1853 0.0000000 0.000000000 0.00000000
## 1854 0.0000000 0.000000000 0.00000000
## 1855 0.0000000 0.000000000 0.00000000
## 1856 0.0000000 0.000000000 0.00000000
## 1857 0.0000000 0.000000000 0.00000000
## 1858 0.0000000 0.000000000 0.00000000
## 1859 0.0000000 0.000000000 0.00000000
## 1860 0.0000000 0.000000000 0.00000000
## 1861 0.0000000 0.000000000 0.00000000
## 1862 0.0000000 0.000000000 0.00000000
## 1863 0.0000000 0.000000000 0.00000000
## 1864 0.0000000 0.000000000 0.00000000
## 1865 0.0000000 0.000000000 0.00000000
## 1866 0.0000000 0.000000000 0.00000000
## 1867 0.0000000 0.000000000 0.00000000
## 1868 0.0000000 0.000000000 0.00000000
## 1869 0.0000000 0.000000000 0.00000000
## 1870 0.0000000 0.000000000 0.00000000
## 1871 0.0000000 0.000000000 0.00000000
## 1872 0.0000000 0.000000000 0.00000000
## 1873 0.0000000 0.000000000 0.00000000
## 1874 0.0000000 0.000000000 0.00000000
## 1875 0.0000000 0.000000000 0.00000000
## 1876 0.0000000 0.000000000 0.00000000
## 1877 0.0000000 0.000000000 0.00000000
## 1878 0.0000000 0.000000000 0.00000000
## 1879 0.0000000 0.000000000 0.00000000
## 1880 0.0000000 0.000000000 0.00000000
## 1881 0.0000000 0.000000000 0.00000000
## 1882 0.0000000 0.000000000 0.00000000
## 1883 0.0000000 0.000000000 0.00000000
## 1884 0.0000000 0.000000000 0.00000000
## 1885 0.0000000 0.000000000 0.00000000
## 1886 0.0000000 0.000000000 0.00000000
## 1887 0.0000000 0.000000000 0.00000000
## 1888 0.0000000 0.000000000 0.00000000
## 1889 0.0000000 0.000000000 0.00000000
## 1890 0.0000000 0.000000000 0.00000000
## 1891 0.0000000 0.000000000 0.00000000
## 1892 0.0000000 0.000000000 0.00000000
## 1893 0.0000000 0.000000000 0.00000000
## 1894 0.0000000 0.000000000 0.00000000
## 1895 0.0000000 0.000000000 0.00000000
## 1896 0.0000000 0.000000000 0.00000000
## 1897 0.0000000 0.000000000 0.00000000
## 1898 0.0000000 0.000000000 0.00000000
## 1899 0.0000000 0.000000000 0.00000000
## 1900 0.0000000 0.000000000 0.00000000
## 1901 0.0000000 0.000000000 0.00000000
## 1902 0.0000000 0.000000000 0.00000000
## 1903 0.0000000 0.000000000 0.00000000
## 1904 0.0000000 0.000000000 0.00000000
## 1905 0.0000000 0.000000000 0.00000000
## 1906 0.0000000 0.000000000 0.00000000
## 1907 0.0000000 0.000000000 0.00000000
## 1908 0.0000000 0.000000000 0.00000000
## 1909 0.0000000 0.000000000 0.00000000
## 1910 0.0000000 0.000000000 0.00000000
## 1911 0.0000000 0.000000000 0.00000000
## 1912 0.0000000 0.000000000 0.00000000
## 1913 0.0000000 0.000000000 0.00000000
## 1914 0.0000000 0.000000000 0.00000000
## 1915 0.0000000 0.000000000 0.00000000
## 1916 0.0000000 0.000000000 0.00000000
## 1917 0.0000000 0.000000000 0.00000000
## 1918 0.0000000 0.000000000 0.00000000
## 1919 0.0000000 0.000000000 0.00000000
## 1920 0.0000000 0.000000000 0.00000000
## 1921 0.0000000 0.000000000 0.00000000
## 1922 0.0000000 0.000000000 0.00000000
## 1923 0.0000000 0.000000000 0.00000000
## 1924 0.0000000 0.000000000 0.00000000
## 1925 0.0000000 0.000000000 0.00000000
## 1926 0.0000000 0.000000000 0.00000000
## 1927 0.0000000 0.000000000 0.00000000
## 1928 0.0000000 0.000000000 0.00000000
## 1929 0.0000000 0.000000000 0.00000000
## 1930 0.0000000 0.000000000 0.00000000
## 1931 0.0000000 0.000000000 0.00000000
## 1932 0.0000000 0.000000000 0.00000000
## 1933 0.0000000 0.000000000 0.00000000
## 1934 0.0000000 0.000000000 0.00000000
## 1935 0.0000000 0.000000000 0.00000000
## 1936 0.0000000 0.000000000 0.00000000
## 1937 0.0000000 0.000000000 0.00000000
## 1938 0.0000000 0.000000000 0.00000000
## 1939 0.0000000 0.000000000 0.00000000
## 1940 0.0000000 0.000000000 0.00000000
## 1941 0.0000000 0.000000000 0.00000000
## 1942 0.0000000 0.000000000 0.00000000
## 1943 0.0000000 0.000000000 0.00000000
## 1944 0.0000000 0.000000000 0.00000000
## 1945 0.0000000 0.000000000 0.00000000
## 1946 0.0000000 0.000000000 0.00000000
## 1947 0.0000000 0.000000000 0.00000000
## 1948 0.0000000 0.000000000 0.00000000
## 1949 0.0000000 0.000000000 0.00000000
## 1950 0.0000000 0.000000000 0.00000000
## 1951 0.0000000 0.000000000 0.00000000
## 1952 0.0000000 0.000000000 0.00000000
## 1953 0.0000000 0.000000000 0.00000000
## 1954 0.0000000 0.000000000 0.00000000
## 1955 0.0000000 0.000000000 0.00000000
## 1956 0.0000000 0.000000000 0.00000000
## 1957 0.0000000 0.000000000 0.00000000
## 1958 0.0000000 0.000000000 0.00000000
## 1959 0.0000000 0.000000000 0.00000000
## 1960 0.0000000 0.000000000 0.00000000
## 1961 0.0000000 0.000000000 0.00000000
## 1962 0.0000000 0.000000000 0.00000000
## 1963 0.0000000 0.000000000 0.00000000
## 1964 0.0000000 0.000000000 0.00000000
## 1965 0.0000000 0.000000000 0.00000000
## 1966 0.0000000 0.000000000 0.00000000
## 1967 0.0000000 0.000000000 0.00000000
## 1968 0.0000000 0.000000000 0.00000000
## 1969 0.0000000 0.000000000 0.00000000
## 1970 0.0000000 0.000000000 0.00000000
## 1971 0.0000000 0.000000000 0.00000000
## 1972 0.0000000 0.000000000 0.00000000
## 1973 0.0000000 0.000000000 0.00000000
## 1974 0.0000000 0.000000000 0.00000000
## 1975 0.0000000 0.000000000 0.00000000
## 1976 0.0000000 0.000000000 0.00000000
## 1977 0.0000000 0.000000000 0.00000000
## 1978 0.0000000 0.000000000 0.00000000
## 1979 0.0000000 0.000000000 0.00000000
## 1980 0.0000000 0.000000000 0.00000000
## 1981 0.0000000 0.000000000 0.00000000
## 1982 0.0000000 0.000000000 0.00000000
## 1983 0.0000000 0.000000000 0.00000000
## 1984 0.0000000 0.000000000 0.00000000
## 1985 0.0000000 0.000000000 0.00000000
## 1986 0.0000000 0.000000000 0.00000000
## 1987 0.0000000 0.000000000 0.00000000
## 1988 0.0000000 0.000000000 0.00000000
## 1989 0.0000000 0.000000000 0.00000000
## 1990 0.0000000 0.000000000 0.00000000
## 1991 0.0000000 0.000000000 0.00000000
## 1992 0.0000000 0.000000000 0.00000000
## 1993 0.0000000 0.000000000 0.00000000
## 1994 0.0000000 0.000000000 0.00000000
## 1995 0.0000000 0.000000000 0.00000000
## 1996 0.0000000 0.000000000 0.00000000
## 1997 0.0000000 0.000000000 0.00000000
## 1998 0.0000000 0.000000000 0.00000000
## 1999 0.0000000 0.000000000 0.00000000
## 2000 0.0000000 0.000000000 0.00000000
## 2001 0.0000000 0.000000000 0.00000000
## 2002 0.0000000 0.000000000 0.00000000
## 2003 0.0000000 0.000000000 0.00000000
## 2004 0.0000000 0.000000000 0.00000000
## 2005 0.0000000 0.000000000 0.00000000
## 2006 0.0000000 0.000000000 0.00000000
## 2007 0.0000000 0.000000000 0.00000000
## 2008 0.0000000 0.000000000 0.00000000
## 2009 0.0000000 0.000000000 0.00000000
## 2010 0.0000000 0.000000000 0.00000000
## 2011 0.0000000 0.000000000 0.00000000
## 2012 0.0000000 0.000000000 0.00000000
## 2013 0.0000000 0.000000000 0.00000000
## 2014 0.0000000 0.000000000 0.00000000
## 2015 0.0000000 0.000000000 0.00000000
## 2016 0.0000000 0.000000000 0.00000000
## 2017 0.0000000 0.000000000 0.00000000
## 2018 0.0000000 0.000000000 0.00000000
## 2019 0.0000000 0.000000000 0.00000000
## 2020 0.0000000 0.000000000 0.00000000
## 2021 0.0000000 0.000000000 0.00000000
## 2022 0.0000000 0.000000000 0.00000000
## 2023 0.0000000 0.000000000 0.00000000
## 2024 0.0000000 0.000000000 0.00000000
## 2025 0.0000000 0.000000000 0.00000000
## 2026 0.0000000 0.000000000 0.00000000
## 2027 0.0000000 0.000000000 0.00000000
## 2028 0.0000000 0.000000000 0.00000000
## 2029 0.0000000 0.000000000 0.00000000
## 2030 0.0000000 0.000000000 0.00000000
## 2031 0.0000000 0.000000000 0.00000000
## 2032 0.0000000 0.000000000 0.00000000
## 2033 0.0000000 0.000000000 0.00000000
## 2034 0.0000000 0.000000000 0.00000000
## 2035 0.0000000 0.000000000 0.00000000
## 2036 0.0000000 0.000000000 0.00000000
## 2037 0.0000000 0.000000000 0.00000000
## 2038 0.0000000 0.000000000 0.00000000
## 2039 0.0000000 0.000000000 0.00000000
## 2040 0.0000000 0.000000000 0.00000000
## 2041 0.0000000 0.000000000 0.00000000
## 2042 0.0000000 0.000000000 0.00000000
## 2043 0.0000000 0.000000000 0.00000000
## 2044 0.0000000 0.000000000 0.00000000
## 2045 0.0000000 0.000000000 0.00000000
## 2046 0.0000000 0.000000000 0.00000000
## 2047 0.0000000 0.000000000 0.00000000
## 2048 0.0000000 0.000000000 0.00000000
## 2049 0.0000000 0.000000000 0.00000000
## 2050 0.0000000 0.000000000 0.00000000
## 2051 0.0000000 0.000000000 0.00000000
## 2052 0.0000000 0.000000000 0.00000000
## 2053 0.0000000 0.000000000 0.00000000
## 2054 0.0000000 0.000000000 0.00000000
## 2055 0.0000000 0.000000000 0.00000000
## 2056 0.0000000 0.000000000 0.00000000
## 2057 0.0000000 0.000000000 0.00000000
## 2058 0.0000000 0.000000000 0.00000000
## 2059 0.0000000 0.000000000 0.00000000
## 2060 0.0000000 0.000000000 0.00000000
## 2061 0.0000000 0.000000000 0.00000000
## 2062 0.0000000 0.000000000 0.00000000
## 2063 0.0000000 0.000000000 0.00000000
## 2064 0.0000000 0.000000000 0.00000000
## 2065 0.0000000 0.000000000 0.00000000
## 2066 0.0000000 0.000000000 0.00000000
## 2067 0.0000000 0.000000000 0.00000000
## 2068 0.0000000 0.000000000 0.00000000
## 2069 0.0000000 0.000000000 0.00000000
## 2070 0.0000000 0.000000000 0.00000000
## 2071 0.0000000 0.000000000 0.00000000
## 2072 0.0000000 0.000000000 0.00000000
## 2073 0.0000000 0.000000000 0.00000000
## 2074 0.0000000 0.000000000 0.00000000
## 2075 0.0000000 0.000000000 0.00000000
## 2076 0.0000000 0.000000000 0.00000000
## 2077 0.0000000 0.000000000 0.00000000
## 2078 0.0000000 0.000000000 0.00000000
## 2079 0.0000000 0.000000000 0.00000000
## 2080 0.0000000 0.000000000 0.00000000
## 2081 0.0000000 0.000000000 0.00000000
## 2082 0.0000000 0.000000000 0.00000000
## 2083 0.0000000 0.000000000 0.00000000
## 2084 0.0000000 0.000000000 0.00000000
## 2085 0.0000000 0.000000000 0.00000000
## 2086 0.0000000 0.000000000 0.00000000
## 2087 0.0000000 0.000000000 0.00000000
## 2088 0.0000000 0.000000000 0.00000000
## 2089 0.0000000 0.000000000 0.00000000
## 2090 0.0000000 0.000000000 0.00000000
## 2091 0.0000000 0.000000000 0.00000000
## 2092 0.0000000 0.000000000 0.00000000
## 2093 0.0000000 0.000000000 0.00000000
## 2094 0.0000000 0.000000000 0.00000000
## 2095 0.0000000 0.000000000 0.00000000
## 2096 0.0000000 0.000000000 0.00000000
## 2097 0.0000000 0.000000000 0.00000000
## 2098 0.0000000 0.000000000 0.00000000
## 2099 0.0000000 0.000000000 0.00000000
## 2100 0.0000000 0.000000000 0.00000000
## 2101 0.0000000 0.000000000 0.00000000
## 2102 0.0000000 0.000000000 0.00000000
## 2103 0.0000000 0.000000000 0.00000000
## 2104 0.0000000 0.000000000 0.00000000
## 2105 0.0000000 0.000000000 0.00000000
## 2106 0.0000000 0.000000000 0.00000000
## 2107 0.0000000 0.000000000 0.00000000
## 2108 0.0000000 0.000000000 0.00000000
## 2109 0.0000000 0.000000000 0.00000000
## 2110 0.0000000 0.000000000 0.00000000
## 2111 0.0000000 0.000000000 0.00000000
## 2112 0.0000000 0.000000000 0.00000000
## 2113 0.0000000 0.000000000 0.00000000
## 2114 0.0000000 0.000000000 0.00000000
## 2115 0.0000000 0.000000000 0.00000000
## 2116 0.0000000 0.000000000 0.00000000
## 2117 0.0000000 0.000000000 0.00000000
## 2118 0.0000000 0.000000000 0.00000000
## 2119 0.0000000 0.000000000 0.00000000
## 2120 0.0000000 0.000000000 0.00000000
## 2121 0.0000000 0.000000000 0.00000000
## 2122 0.0000000 0.000000000 0.00000000
## 2123 0.0000000 0.000000000 0.00000000
## 2124 0.0000000 0.000000000 0.00000000
## 2125 0.0000000 0.000000000 0.00000000
## 2126 0.0000000 0.000000000 0.00000000
## 2127 0.0000000 0.000000000 0.00000000
## 2128 0.0000000 0.000000000 0.00000000
## 2129 0.0000000 0.000000000 0.00000000
## 2130 0.0000000 0.000000000 0.00000000
## 2131 0.0000000 0.000000000 0.00000000
## 2132 0.0000000 0.000000000 0.00000000
## 2133 0.0000000 0.000000000 0.00000000
## 2134 0.0000000 0.000000000 0.00000000
## 2135 0.0000000 0.000000000 0.00000000
## 2136 0.0000000 0.000000000 0.00000000
## 2137 0.0000000 0.000000000 0.00000000
## 2138 0.0000000 0.000000000 0.00000000
## 2139 0.0000000 0.000000000 0.00000000
## 2140 0.0000000 0.000000000 0.00000000
## 2141 0.0000000 0.000000000 0.00000000
## 2142 0.0000000 0.000000000 0.00000000
## 2143 0.0000000 0.000000000 0.00000000
## 2144 0.0000000 0.000000000 0.00000000
## 2145 0.0000000 0.000000000 0.00000000
## 2146 0.0000000 0.000000000 0.00000000
## 2147 0.0000000 0.000000000 0.00000000
## 2148 0.0000000 0.000000000 0.00000000
## 2149 0.0000000 0.000000000 0.00000000
## 2150 0.0000000 0.000000000 0.00000000
## 2151 0.0000000 0.000000000 0.00000000
## 2152 0.0000000 0.000000000 0.00000000
## 2153 0.0000000 0.000000000 0.00000000
## 2154 0.0000000 0.000000000 0.00000000
## 2155 0.0000000 0.000000000 0.00000000
## 2156 0.0000000 0.000000000 0.00000000
## 2157 0.0000000 0.000000000 0.00000000
## 2158 0.0000000 0.000000000 0.00000000
## 2159 0.0000000 0.000000000 0.00000000
## 2160 0.0000000 0.000000000 0.00000000
## 2161 0.0000000 0.000000000 0.00000000
## 2162 0.0000000 0.000000000 0.00000000
## 2163 0.0000000 0.000000000 0.00000000
## 2164 0.0000000 0.000000000 0.00000000
## 2165 0.0000000 0.000000000 0.00000000
## 2166 0.0000000 0.000000000 0.00000000
## 2167 0.0000000 0.000000000 0.00000000
## 2168 0.0000000 0.000000000 0.00000000
## 2169 0.0000000 0.000000000 0.00000000
## 2170 0.0000000 0.000000000 0.00000000
## 2171 0.0000000 0.000000000 0.00000000
## 2172 0.0000000 0.000000000 0.00000000
## 2173 0.0000000 0.000000000 0.00000000
## 2174 0.0000000 0.000000000 0.00000000
## 2175 0.0000000 0.000000000 0.00000000
## 2176 0.0000000 0.000000000 0.00000000
## 2177 0.0000000 0.000000000 0.00000000
## 2178 0.0000000 0.000000000 0.00000000
## 2179 0.0000000 0.000000000 0.00000000
## 2180 0.0000000 0.000000000 0.00000000
## 2181 0.0000000 0.000000000 0.00000000
## 2182 0.0000000 0.000000000 0.00000000
## 2183 0.0000000 0.000000000 0.00000000
## 2184 0.0000000 0.000000000 0.00000000
## 2185 0.0000000 0.000000000 0.00000000
## 2186 0.0000000 0.000000000 0.00000000
## 2187 0.0000000 0.000000000 0.00000000
## 2188 0.0000000 0.000000000 0.00000000
## 2189 0.0000000 0.000000000 0.00000000
## 2190 0.0000000 0.000000000 0.00000000
## 2191 0.0000000 0.000000000 0.00000000
## 2192 0.0000000 0.000000000 0.00000000
## 2193 0.0000000 0.000000000 0.00000000
## 2194 0.0000000 0.000000000 0.00000000
## 2195 0.0000000 0.000000000 0.00000000
## 2196 0.0000000 0.000000000 0.00000000
## 2197 0.0000000 0.000000000 0.00000000
## 2198 0.0000000 0.000000000 0.00000000
## 2199 0.0000000 0.000000000 0.00000000
## 2200 0.0000000 0.000000000 0.00000000
## 2201 0.0000000 0.000000000 0.00000000
## 2202 0.0000000 0.000000000 0.00000000
## 2203 0.0000000 0.000000000 0.00000000
## 2204 0.0000000 0.000000000 0.00000000
## 2205 0.0000000 0.000000000 0.00000000
## 2206 0.0000000 0.000000000 0.00000000
## 2207 0.0000000 0.000000000 0.00000000
## 2208 0.0000000 0.000000000 0.00000000
## 2209 0.0000000 0.000000000 0.00000000
## 2210 0.0000000 0.000000000 0.00000000
## 2211 0.0000000 0.000000000 0.00000000
## 2212 0.0000000 0.000000000 0.00000000
## 2213 0.0000000 0.000000000 0.00000000
## 2214 0.0000000 0.000000000 0.00000000
## 2215 0.0000000 0.000000000 0.00000000
## 2216 0.0000000 0.000000000 0.00000000
## 2217 0.0000000 0.000000000 0.00000000
## 2218 0.0000000 0.000000000 0.00000000
## 2219 0.0000000 0.000000000 0.00000000
## 2220 0.0000000 0.000000000 0.00000000
## 2221 0.0000000 0.000000000 0.00000000
## 2222 0.0000000 0.000000000 0.00000000
## 2223 0.0000000 0.000000000 0.00000000
## 2224 0.0000000 0.000000000 0.00000000
## 2225 0.0000000 0.000000000 0.00000000
## 2226 0.0000000 0.000000000 0.00000000
## 2227 0.0000000 0.000000000 0.00000000
## 2228 0.0000000 0.000000000 0.00000000
## 2229 0.0000000 0.000000000 0.00000000
## 2230 0.0000000 0.000000000 0.00000000
## 2231 0.0000000 0.000000000 0.00000000
## 2232 0.0000000 0.000000000 0.00000000
## 2233 0.0000000 0.000000000 0.00000000
## 2234 0.0000000 0.000000000 0.00000000
## 2235 0.0000000 0.000000000 0.00000000
## 2236 0.0000000 0.000000000 0.00000000
## 2237 0.0000000 0.000000000 0.00000000
## 2238 0.0000000 0.000000000 0.00000000
## 2239 0.0000000 0.000000000 0.00000000
## 2240 0.0000000 0.000000000 0.00000000
## 2241 0.0000000 0.000000000 0.00000000
## 2242 0.0000000 0.000000000 0.00000000
## 2243 0.0000000 0.000000000 0.00000000
## 2244 0.0000000 0.000000000 0.00000000
## 2245 0.0000000 0.000000000 0.00000000
## 2246 0.0000000 0.000000000 0.00000000
## 2247 0.0000000 0.000000000 0.00000000
## 2248 0.0000000 0.000000000 0.00000000
## 2249 0.0000000 0.000000000 0.00000000
## 2250 0.0000000 0.000000000 0.00000000
## 2251 0.0000000 0.000000000 0.00000000
## 2252 0.0000000 0.000000000 0.00000000
## 2253 0.0000000 0.000000000 0.00000000
## 2254 0.0000000 0.000000000 0.00000000
## 2255 0.0000000 0.000000000 0.00000000
## 2256 0.0000000 0.000000000 0.00000000
## 2257 0.0000000 0.000000000 0.00000000
## 2258 0.0000000 0.000000000 0.00000000
## 2259 0.0000000 0.000000000 0.00000000
## 2260 0.0000000 0.000000000 0.00000000
## 2261 0.0000000 0.000000000 0.00000000
## 2262 0.0000000 0.000000000 0.00000000
## 2263 0.0000000 0.000000000 0.00000000
## 2264 0.0000000 0.000000000 0.00000000
## 2265 0.0000000 0.000000000 0.00000000
## 2266 0.0000000 0.000000000 0.00000000
## 2267 0.0000000 0.000000000 0.00000000
## 2268 0.0000000 0.000000000 0.00000000
## 2269 0.0000000 0.000000000 0.00000000
## 2270 0.0000000 0.000000000 0.00000000
## 2271 0.0000000 0.000000000 0.00000000
## 2272 0.0000000 0.000000000 0.00000000
## 2273 0.0000000 0.000000000 0.00000000
## 2274 0.0000000 0.000000000 0.00000000
## 2275 0.0000000 0.000000000 0.00000000
## 2276 0.0000000 0.000000000 0.00000000
## 2277 0.0000000 0.000000000 0.00000000
## 2278 0.0000000 0.000000000 0.00000000
## 2279 0.0000000 0.000000000 0.00000000
## 2280 0.0000000 0.000000000 0.00000000
## 2281 0.0000000 0.000000000 0.00000000
## 2282 0.0000000 0.000000000 0.00000000
## 2283 0.0000000 0.000000000 0.00000000
## 2284 0.0000000 0.000000000 0.00000000
## 2285 0.0000000 0.000000000 0.00000000
## 2286 0.0000000 0.000000000 0.00000000
## 2287 0.0000000 0.000000000 0.00000000
## 2288 0.0000000 0.000000000 0.00000000
## 2289 0.0000000 0.000000000 0.00000000
## 2290 0.0000000 0.000000000 0.00000000
## 2291 0.0000000 0.000000000 0.00000000
## 2292 0.0000000 0.000000000 0.00000000
## 2293 0.0000000 0.000000000 0.00000000
## 2294 0.0000000 0.000000000 0.00000000
## 2295 0.0000000 0.000000000 0.00000000
## 2296 0.0000000 0.000000000 0.00000000
## 2297 0.0000000 0.000000000 0.00000000
## 2298 0.0000000 0.000000000 0.00000000
## 2299 0.0000000 0.000000000 0.00000000
## 2300 0.0000000 0.000000000 0.00000000
## 2301 0.0000000 0.000000000 0.00000000
## 2302 0.0000000 0.000000000 0.00000000
## 2303 0.0000000 0.000000000 0.00000000
## 2304 0.0000000 0.000000000 0.00000000
## 2305 0.0000000 0.000000000 0.00000000
## 2306 0.0000000 0.000000000 0.00000000
## 2307 0.0000000 0.000000000 0.00000000
## 2308 0.0000000 0.000000000 0.00000000
## 2309 0.0000000 0.000000000 0.00000000
## 2310 0.0000000 0.000000000 0.00000000
## 2311 0.0000000 0.000000000 0.00000000
## 2312 0.0000000 0.000000000 0.00000000
## 2313 0.0000000 0.000000000 0.00000000
## 2314 0.0000000 0.000000000 0.00000000
## 2315 0.0000000 0.000000000 0.00000000
## 2316 0.0000000 0.000000000 0.00000000
## 2317 0.0000000 0.000000000 0.00000000
## 2318 0.0000000 0.000000000 0.00000000
## 2319 0.0000000 0.000000000 0.00000000
## 2320 0.0000000 0.000000000 0.00000000
## 2321 0.0000000 0.000000000 0.00000000
## 2322 0.0000000 0.000000000 0.00000000
## 2323 0.0000000 0.000000000 0.00000000
## 2324 0.0000000 0.000000000 0.00000000
## 2325 0.0000000 0.000000000 0.00000000
## 2326 0.0000000 0.000000000 0.00000000
## 2327 0.0000000 0.000000000 0.00000000
## 2328 0.0000000 0.000000000 0.00000000
## 2329 0.0000000 0.000000000 0.00000000
## 2330 0.0000000 0.000000000 0.00000000
## 2331 0.0000000 0.000000000 0.00000000
## 2332 0.0000000 0.000000000 0.00000000
## 2333 0.0000000 0.000000000 0.00000000
## 2334 0.0000000 0.000000000 0.00000000
## 2335 0.0000000 0.000000000 0.00000000
## 2336 0.0000000 0.000000000 0.00000000
## 2337 0.0000000 0.000000000 0.00000000
## 2338 0.0000000 0.000000000 0.00000000
## 2339 0.0000000 0.000000000 0.00000000
## 2340 0.0000000 0.000000000 0.00000000
## 2341 0.0000000 0.000000000 0.00000000
## 2342 0.0000000 0.000000000 0.00000000
## 2343 0.0000000 0.000000000 0.00000000
## 2344 0.0000000 0.000000000 0.00000000
## 2345 0.0000000 0.000000000 0.00000000
## 2346 0.0000000 0.000000000 0.00000000
## 2347 0.0000000 0.000000000 0.00000000
## 2348 0.0000000 0.000000000 0.00000000
## 2349 0.0000000 0.000000000 0.00000000
## 2350 0.0000000 0.000000000 0.00000000
## 2351 0.0000000 0.000000000 0.00000000
## 2352 0.0000000 0.000000000 0.00000000
## 2353 0.0000000 0.000000000 0.00000000
## 2354 0.0000000 0.000000000 0.00000000
## 2355 0.0000000 0.000000000 0.00000000
## 2356 0.0000000 0.000000000 0.00000000
## 2357 0.0000000 0.000000000 0.00000000
## 2358 0.0000000 0.000000000 0.00000000
## 2359 0.0000000 0.000000000 0.00000000
## 2360 0.0000000 0.000000000 0.00000000
## 2361 0.0000000 0.000000000 0.00000000
## 2362 0.0000000 0.000000000 0.00000000
## 2363 0.0000000 0.000000000 0.00000000
## 2364 0.0000000 0.000000000 0.00000000
## 2365 0.0000000 0.000000000 0.00000000
## 2366 0.0000000 0.000000000 0.00000000
## 2367 0.0000000 0.000000000 0.00000000
## 2368 0.0000000 0.000000000 0.00000000
## 2369 0.0000000 0.000000000 0.00000000
## 2370 0.0000000 0.000000000 0.00000000
## 2371 0.0000000 0.000000000 0.00000000
## 2372 0.0000000 0.000000000 0.00000000
## 2373 0.0000000 0.000000000 0.00000000
## 2374 0.0000000 0.000000000 0.00000000
## 2375 0.0000000 0.000000000 0.00000000
## 2376 0.0000000 0.000000000 0.00000000
## 2377 0.0000000 0.000000000 0.00000000
## 2378 0.0000000 0.000000000 0.00000000
## 2379 0.0000000 0.000000000 0.00000000
## 2380 0.0000000 0.000000000 0.00000000
## 2381 0.0000000 0.000000000 0.00000000
## 2382 0.0000000 0.000000000 0.00000000
## 2383 0.0000000 0.000000000 0.00000000
## 2384 0.0000000 0.000000000 0.00000000
## 2385 0.0000000 0.000000000 0.00000000
## 2386 0.0000000 0.000000000 0.00000000
## 2387 0.0000000 0.000000000 0.00000000
## 2388 0.0000000 0.000000000 0.00000000
## 2389 0.0000000 0.000000000 0.00000000
## 2390 0.0000000 0.000000000 0.00000000
## 2391 0.0000000 0.000000000 0.00000000
## 2392 0.0000000 0.000000000 0.00000000
## 2393 0.0000000 0.000000000 0.00000000
## 2394 0.0000000 0.000000000 0.00000000
## 2395 0.0000000 0.000000000 0.00000000
## 2396 0.0000000 0.000000000 0.00000000
## 2397 0.0000000 0.000000000 0.00000000
## 2398 0.0000000 0.000000000 0.00000000
## 2399 0.0000000 0.000000000 0.00000000
## 2400 0.0000000 0.000000000 0.00000000
## 2401 0.0000000 0.000000000 0.00000000
## 2402 0.0000000 0.000000000 0.00000000
## 2403 0.0000000 0.000000000 0.00000000
## 2404 0.0000000 0.000000000 0.00000000
## 2405 0.0000000 0.000000000 0.00000000
## 2406 0.0000000 0.000000000 0.00000000
## 2407 0.0000000 0.000000000 0.00000000
## 2408 0.0000000 0.000000000 0.00000000
## 2409 0.0000000 0.000000000 0.00000000
## 2410 0.0000000 0.000000000 0.00000000
## 2411 0.0000000 0.000000000 0.00000000
## 2412 0.0000000 0.000000000 0.00000000
## 2413 0.0000000 0.000000000 0.00000000
## 2414 0.0000000 0.000000000 0.00000000
## 2415 0.0000000 0.000000000 0.00000000
## 2416 0.0000000 0.000000000 0.00000000
## 2417 0.0000000 0.000000000 0.00000000
## 2418 0.0000000 0.000000000 0.00000000
## 2419 0.0000000 0.000000000 0.00000000
## 2420 0.0000000 0.000000000 0.00000000
## 2421 0.0000000 0.000000000 0.00000000
## 2422 0.0000000 0.000000000 0.00000000
## 2423 0.0000000 0.000000000 0.00000000
## 2424 0.0000000 0.000000000 0.00000000
## 2425 0.0000000 0.000000000 0.00000000
## 2426 0.0000000 0.000000000 0.00000000
## 2427 0.0000000 0.000000000 0.00000000
## 2428 0.0000000 0.000000000 0.00000000
## 2429 0.0000000 0.000000000 0.00000000
## 2430 0.0000000 0.000000000 0.00000000
## 2431 0.0000000 0.000000000 0.00000000
## 2432 0.0000000 0.000000000 0.00000000
## 2433 0.0000000 0.000000000 0.00000000
## 2434 0.0000000 0.000000000 0.00000000
## 2435 0.0000000 0.000000000 0.00000000
## 2436 0.0000000 0.000000000 0.00000000
## 2437 0.0000000 0.000000000 0.00000000
## 2438 0.0000000 0.000000000 0.00000000
## 2439 0.0000000 0.000000000 0.00000000
## 2440 0.0000000 0.000000000 0.00000000
## 2441 0.0000000 0.000000000 0.00000000
## 2442 0.0000000 0.000000000 0.00000000
## 2443 0.0000000 0.000000000 0.00000000
## 2444 0.0000000 0.000000000 0.00000000
## 2445 0.0000000 0.000000000 0.00000000
## 2446 0.0000000 0.000000000 0.00000000
## 2447 0.0000000 0.000000000 0.00000000
## 2448 0.0000000 0.000000000 0.00000000
## 2449 0.0000000 0.000000000 0.00000000
## 2450 0.0000000 0.000000000 0.00000000
## 2451 0.0000000 0.000000000 0.00000000
## 2452 0.0000000 0.000000000 0.00000000
## 2453 0.0000000 0.000000000 0.00000000
## 2454 0.0000000 0.000000000 0.00000000
## 2455 0.0000000 0.000000000 0.00000000
## 2456 0.0000000 0.000000000 0.00000000
## 2457 0.0000000 0.000000000 0.00000000
## 2458 0.0000000 0.000000000 0.00000000
## 2459 0.0000000 0.000000000 0.00000000
## 2460 0.0000000 0.000000000 0.00000000
## 2461 0.0000000 0.000000000 0.00000000
## 2462 0.0000000 0.000000000 0.00000000
## 2463 0.0000000 0.000000000 0.00000000
## 2464 0.0000000 0.000000000 0.00000000
## 2465 0.0000000 0.000000000 0.00000000
## 2466 0.0000000 0.000000000 0.00000000
## 2467 0.0000000 0.000000000 0.00000000
## 2468 0.0000000 0.000000000 0.00000000
## 2469 0.0000000 0.000000000 0.00000000
## 2470 0.0000000 0.000000000 0.00000000
## 2471 0.0000000 0.000000000 0.00000000
## 2472 0.0000000 0.000000000 0.00000000
## 2473 0.0000000 0.000000000 0.00000000
## 2474 0.0000000 0.000000000 0.00000000
## 2475 0.0000000 0.000000000 0.00000000
## 2476 0.0000000 0.000000000 0.00000000
## 2477 0.0000000 0.000000000 0.00000000
## 2478 0.0000000 0.000000000 0.00000000
## 2479 0.0000000 0.000000000 0.00000000
## 2480 0.0000000 0.000000000 0.00000000
## 2481 0.0000000 0.000000000 0.00000000
## 2482 0.0000000 0.000000000 0.00000000
## 2483 0.0000000 0.000000000 0.00000000
## 2484 0.0000000 0.000000000 0.00000000
## 2485 0.0000000 0.000000000 0.00000000
## 2486 0.0000000 0.000000000 0.00000000
## 2487 0.0000000 0.000000000 0.00000000
## 2488 0.0000000 0.000000000 0.00000000
## 2489 0.0000000 0.000000000 0.00000000
## 2490 0.0000000 0.000000000 0.00000000
## 2491 0.0000000 0.000000000 0.00000000
## 2492 0.0000000 0.000000000 0.00000000
## 2493 0.0000000 0.000000000 0.00000000
## 2494 0.0000000 0.000000000 0.00000000
## 2495 0.0000000 0.000000000 0.00000000
## 2496 0.0000000 0.000000000 0.00000000
## 2497 0.0000000 0.000000000 0.00000000
## 2498 0.0000000 0.000000000 0.00000000
## 2499 0.0000000 0.000000000 0.00000000
## 2500 0.0000000 0.000000000 0.00000000
## 2501 0.0000000 0.000000000 0.00000000
## 2502 0.0000000 0.000000000 0.00000000
## 2503 0.0000000 0.000000000 0.00000000
## 2504 0.0000000 0.000000000 0.00000000
## 2505 0.0000000 0.000000000 0.00000000
## 2506 0.0000000 0.000000000 0.00000000
## 2507 0.0000000 0.000000000 0.00000000
## 2508 0.0000000 0.000000000 0.00000000
## 2509 0.0000000 0.000000000 0.00000000
## 2510 0.0000000 0.000000000 0.00000000
## 2511 0.0000000 0.000000000 0.00000000
## 2512 0.0000000 0.000000000 0.00000000
## 2513 0.0000000 0.000000000 0.00000000
## 2514 0.0000000 0.000000000 0.00000000
## 2515 0.0000000 0.000000000 0.00000000
## 2516 0.0000000 0.000000000 0.00000000
## 2517 0.0000000 0.000000000 0.00000000
## 2518 0.0000000 0.000000000 0.00000000
## 2519 0.0000000 0.000000000 0.00000000
## 2520 0.0000000 0.000000000 0.00000000
## 2521 0.0000000 0.000000000 0.00000000
## 2522 0.0000000 0.000000000 0.00000000
## 2523 0.0000000 0.000000000 0.00000000
## 2524 0.0000000 0.000000000 0.00000000
## 2525 0.0000000 0.000000000 0.00000000
## 2526 0.0000000 0.000000000 0.00000000
## 2527 0.0000000 0.000000000 0.00000000
## 2528 0.0000000 0.000000000 0.00000000
## 2529 0.0000000 0.000000000 0.00000000
## 2530 0.0000000 0.000000000 0.00000000
## 2531 0.0000000 0.000000000 0.00000000
## 2532 0.0000000 0.000000000 0.00000000
## 2533 0.0000000 0.000000000 0.00000000
## 2534 0.0000000 0.000000000 0.00000000
## 2535 0.0000000 0.000000000 0.00000000
## 2536 0.0000000 0.000000000 0.00000000
## 2537 0.0000000 0.000000000 0.00000000
## 2538 0.0000000 0.000000000 0.00000000
## 2539 0.0000000 0.000000000 0.00000000
## 2540 0.0000000 0.000000000 0.00000000
## 2541 0.0000000 0.000000000 0.00000000
## 2542 0.0000000 0.000000000 0.00000000
## 2543 0.0000000 0.000000000 0.00000000
## 2544 0.0000000 0.000000000 0.00000000
## 2545 0.0000000 0.000000000 0.00000000
## 2546 0.0000000 0.000000000 0.00000000
## 2547 0.0000000 0.000000000 0.00000000
## 2548 0.0000000 0.000000000 0.00000000
## 2549 0.0000000 0.000000000 0.00000000
## 2550 0.0000000 0.000000000 0.00000000
## 2551 0.0000000 0.000000000 0.00000000
## 2552 0.0000000 0.000000000 0.00000000
## 2553 0.0000000 0.000000000 0.00000000
## 2554 0.0000000 0.000000000 0.00000000
## 2555 0.0000000 0.000000000 0.00000000
## 2556 0.0000000 0.000000000 0.00000000
## 2557 0.0000000 0.000000000 0.00000000
## 2558 0.0000000 0.000000000 0.00000000
## 2559 0.0000000 0.000000000 0.00000000
## 2560 0.0000000 0.000000000 0.00000000
## 2561 0.0000000 0.000000000 0.00000000
## 2562 0.0000000 0.000000000 0.00000000
## 2563 0.0000000 0.000000000 0.00000000
## 2564 0.0000000 0.000000000 0.00000000
## 2565 0.0000000 0.000000000 0.00000000
## 2566 0.0000000 0.000000000 0.00000000
## 2567 0.0000000 0.000000000 0.00000000
## 2568 0.0000000 0.000000000 0.00000000
## 2569 0.0000000 0.000000000 0.00000000
## 2570 0.0000000 0.000000000 0.00000000
## 2571 0.0000000 0.000000000 0.00000000
## 2572 0.0000000 0.000000000 0.00000000
## 2573 0.0000000 0.000000000 0.00000000
## 2574 0.0000000 0.000000000 0.00000000
## 2575 0.0000000 0.000000000 0.00000000
## 2576 0.0000000 0.000000000 0.00000000
## 2577 0.0000000 0.000000000 0.00000000
## 2578 0.0000000 0.000000000 0.00000000
## 2579 0.0000000 0.000000000 0.00000000
## 2580 0.0000000 0.000000000 0.00000000
## 2581 0.0000000 0.000000000 0.00000000
## 2582 0.0000000 0.000000000 0.00000000
## 2583 0.0000000 0.000000000 0.00000000
## 2584 0.0000000 0.000000000 0.00000000
## 2585 0.0000000 0.000000000 0.00000000
## 2586 0.0000000 0.000000000 0.00000000
## 2587 0.0000000 0.000000000 0.00000000
## 2588 0.0000000 0.000000000 0.00000000
## 2589 0.0000000 0.000000000 0.00000000
## 2590 0.0000000 0.000000000 0.00000000
## 2591 0.0000000 0.000000000 0.00000000
## 2592 0.0000000 0.000000000 0.00000000
## 2593 0.0000000 0.000000000 0.00000000
## 2594 0.0000000 0.000000000 0.00000000
## 2595 0.0000000 0.000000000 0.00000000
## 2596 0.0000000 0.000000000 0.00000000
## 2597 0.0000000 0.000000000 0.00000000
## 2598 0.0000000 0.000000000 0.00000000
## 2599 0.0000000 0.000000000 0.00000000
## 2600 0.0000000 0.000000000 0.00000000
## 2601 0.0000000 0.000000000 0.00000000
## 2602 0.0000000 0.000000000 0.00000000
## 2603 0.0000000 0.000000000 0.00000000
## 2604 0.0000000 0.000000000 0.00000000
## 2605 0.0000000 0.000000000 0.00000000
## 2606 0.0000000 0.000000000 0.00000000
## 2607 0.0000000 0.000000000 0.00000000
## 2608 0.0000000 0.000000000 0.00000000
## 2609 0.0000000 0.000000000 0.00000000
## 2610 0.0000000 0.000000000 0.00000000
## 2611 0.0000000 0.000000000 0.00000000
## 2612 0.0000000 0.000000000 0.00000000
## 2613 0.0000000 0.000000000 0.00000000
## 2614 0.0000000 0.000000000 0.00000000
## 2615 0.0000000 0.000000000 0.00000000
## 2616 0.0000000 0.000000000 0.00000000
## 2617 0.0000000 0.000000000 0.00000000
## 2618 0.0000000 0.000000000 0.00000000
## 2619 0.0000000 0.000000000 0.00000000
## 2620 0.0000000 0.000000000 0.00000000
## 2621 0.0000000 0.000000000 0.00000000
## 2622 0.0000000 0.000000000 0.00000000
## 2623 0.0000000 0.000000000 0.00000000
## 2624 0.0000000 0.000000000 0.00000000
## 2625 0.0000000 0.000000000 0.00000000
## 2626 0.0000000 0.000000000 0.00000000
## 2627 0.0000000 0.000000000 0.00000000
## 2628 0.0000000 0.000000000 0.00000000
## 2629 0.0000000 0.000000000 0.00000000
## 2630 0.0000000 0.000000000 0.00000000
## 2631 0.0000000 0.000000000 0.00000000
## 2632 0.0000000 0.000000000 0.00000000
## 2633 0.0000000 0.000000000 0.00000000
## 2634 0.0000000 0.000000000 0.00000000
## 2635 0.0000000 0.000000000 0.00000000
## 2636 0.0000000 0.000000000 0.00000000
## 2637 0.0000000 0.000000000 0.00000000
## 2638 0.0000000 0.000000000 0.00000000
## 2639 0.0000000 0.000000000 0.00000000
## 2640 0.0000000 0.000000000 0.00000000
## 2641 0.0000000 0.000000000 0.00000000
## 2642 0.0000000 0.000000000 0.00000000
## 2643 0.0000000 0.000000000 0.00000000
## 2644 0.0000000 0.000000000 0.00000000
## 2645 0.0000000 0.000000000 0.00000000
## 2646 0.0000000 0.000000000 0.00000000
## 2647 0.0000000 0.000000000 0.00000000
## 2648 0.0000000 0.000000000 0.00000000
## 2649 0.0000000 0.000000000 0.00000000
## 2650 0.0000000 0.000000000 0.00000000
## 2651 0.0000000 0.000000000 0.00000000
## 2652 0.0000000 0.000000000 0.00000000
## 2653 0.0000000 0.000000000 0.00000000
## 2654 0.0000000 0.000000000 0.00000000
## 2655 0.0000000 0.000000000 0.00000000
## 2656 0.0000000 0.000000000 0.00000000
## 2657 0.0000000 0.000000000 0.00000000
## 2658 0.0000000 0.000000000 0.00000000
## 2659 0.0000000 0.000000000 0.00000000
## 2660 0.0000000 0.000000000 0.00000000
## 2661 0.0000000 0.000000000 0.00000000
## 2662 0.0000000 0.000000000 0.00000000
## 2663 0.0000000 0.000000000 0.00000000
## 2664 0.0000000 0.000000000 0.00000000
## 2665 0.0000000 0.000000000 0.00000000
## 2666 0.0000000 0.000000000 0.00000000
## 2667 0.0000000 0.000000000 0.00000000
## 2668 0.0000000 0.000000000 0.00000000
## 2669 0.0000000 0.000000000 0.00000000
## 2670 0.0000000 0.000000000 0.00000000
## 2671 0.0000000 0.000000000 0.00000000
## 2672 0.0000000 0.000000000 0.00000000
## 2673 0.0000000 0.000000000 0.00000000
## 2674 0.0000000 0.000000000 0.00000000
## 2675 0.0000000 0.000000000 0.00000000
## 2676 0.0000000 0.000000000 0.00000000
## 2677 0.0000000 0.000000000 0.00000000
## 2678 0.0000000 0.000000000 0.00000000
## 2679 0.0000000 0.000000000 0.00000000
## 2680 0.0000000 0.000000000 0.00000000
## 2681 0.0000000 0.000000000 0.00000000
## 2682 0.0000000 0.000000000 0.00000000
## 2683 0.0000000 0.000000000 0.00000000
## 2684 0.0000000 0.000000000 0.00000000
## 2685 0.0000000 0.000000000 0.00000000
## 2686 0.0000000 0.000000000 0.00000000
## 2687 0.0000000 0.000000000 0.00000000
## 2688 0.0000000 0.000000000 0.00000000
## 2689 0.0000000 0.000000000 0.00000000
## 2690 0.0000000 0.000000000 0.00000000
## 2691 0.0000000 0.000000000 0.00000000
## 2692 0.0000000 0.000000000 0.00000000
## 2693 0.0000000 0.000000000 0.00000000
## 2694 0.0000000 0.000000000 0.00000000
## 2695 0.0000000 0.000000000 0.00000000
## 2696 0.0000000 0.000000000 0.00000000
## 2697 0.0000000 0.000000000 0.00000000
## 2698 0.0000000 0.000000000 0.00000000
## 2699 0.0000000 0.000000000 0.00000000
## 2700 0.0000000 0.000000000 0.00000000
## 2701 0.0000000 0.000000000 0.00000000
## 2702 0.0000000 0.000000000 0.00000000
## 2703 0.0000000 0.000000000 0.00000000
## 2704 0.0000000 0.000000000 0.00000000
## 2705 0.0000000 0.000000000 0.00000000
## 2706 0.0000000 0.000000000 0.00000000
## 2707 0.0000000 0.000000000 0.00000000
## 2708 0.0000000 0.000000000 0.00000000
## 2709 0.0000000 0.000000000 0.00000000
## 2710 0.0000000 0.000000000 0.00000000
## 2711 0.0000000 0.000000000 0.00000000
## 2712 0.0000000 0.000000000 0.00000000
## 2713 0.0000000 0.000000000 0.00000000
## 2714 0.0000000 0.000000000 0.00000000
## 2715 0.0000000 0.000000000 0.00000000
## 2716 0.0000000 0.000000000 0.00000000
## 2717 0.0000000 0.000000000 0.00000000
## 2718 0.0000000 0.000000000 0.00000000
## 2719 0.0000000 0.000000000 0.00000000
## 2720 0.0000000 0.000000000 0.00000000
## 2721 0.0000000 0.000000000 0.00000000
## 2722 0.0000000 0.000000000 0.00000000
## 2723 0.0000000 0.000000000 0.00000000
## 2724 0.0000000 0.000000000 0.00000000
## 2725 0.0000000 0.000000000 0.00000000
## 2726 0.0000000 0.000000000 0.00000000
## 2727 0.0000000 0.000000000 0.00000000
## 2728 0.0000000 0.000000000 0.00000000
## 2729 0.0000000 0.000000000 0.00000000
## 2730 0.0000000 0.000000000 0.00000000
## 2731 0.0000000 0.000000000 0.00000000
## 2732 0.0000000 0.000000000 0.00000000
## 2733 0.0000000 0.000000000 0.00000000
## 2734 0.0000000 0.000000000 0.00000000
## 2735 0.0000000 0.000000000 0.00000000
## 2736 0.0000000 0.000000000 0.00000000
## 2737 0.0000000 0.000000000 0.00000000
## 2738 0.0000000 0.000000000 0.00000000
## 2739 0.0000000 0.000000000 0.00000000
## 2740 0.0000000 0.000000000 0.00000000
## 2741 0.0000000 0.000000000 0.00000000
## 2742 0.0000000 0.000000000 0.00000000
## 2743 0.0000000 0.000000000 0.00000000
## 2744 0.0000000 0.000000000 0.00000000
## 2745 0.0000000 0.000000000 0.00000000
## 2746 0.0000000 0.000000000 0.00000000
## 2747 0.0000000 0.000000000 0.00000000
## 2748 0.0000000 0.000000000 0.00000000
## 2749 0.0000000 0.000000000 0.00000000
## 2750 0.0000000 0.000000000 0.00000000
## 2751 0.0000000 0.000000000 0.00000000
## 2752 0.0000000 0.000000000 0.00000000
## 2753 0.0000000 0.000000000 0.00000000
## 2754 0.0000000 0.000000000 0.00000000
## 2755 0.0000000 0.000000000 0.00000000
## 2756 0.0000000 0.000000000 0.00000000
## 2757 0.0000000 0.000000000 0.00000000
## 2758 0.0000000 0.000000000 0.00000000
## 2759 0.0000000 0.000000000 0.00000000
## 2760 0.0000000 0.000000000 0.00000000
## 2761 0.0000000 0.000000000 0.00000000
## 2762 0.0000000 0.000000000 0.00000000
## 2763 0.0000000 0.000000000 0.00000000
## 2764 0.0000000 0.000000000 0.00000000
## 2765 0.0000000 0.000000000 0.00000000
## 2766 0.0000000 0.000000000 0.00000000
## 2767 0.0000000 0.000000000 0.00000000
## 2768 0.0000000 0.000000000 0.00000000
## 2769 0.0000000 0.000000000 0.00000000
## 2770 0.0000000 0.000000000 0.00000000
## 2771 0.0000000 0.000000000 0.00000000
## 2772 0.0000000 0.000000000 0.00000000
## 2773 0.0000000 0.000000000 0.00000000
## 2774 0.0000000 0.000000000 0.00000000
## 2775 0.0000000 0.000000000 0.00000000
## 2776 0.0000000 0.000000000 0.00000000
## 2777 0.0000000 0.000000000 0.00000000
## 2778 0.0000000 0.000000000 0.00000000
## 2779 0.0000000 0.000000000 0.00000000
## 2780 0.0000000 0.000000000 0.00000000
## 2781 0.0000000 0.000000000 0.00000000
## 2782 0.0000000 0.000000000 0.00000000
## 2783 0.0000000 0.000000000 0.00000000
## 2784 0.0000000 0.000000000 0.00000000
## 2785 0.0000000 0.000000000 0.00000000
## 2786 0.0000000 0.000000000 0.00000000
## 2787 0.0000000 0.000000000 0.00000000
## 2788 0.0000000 0.000000000 0.00000000
## 2789 0.0000000 0.000000000 0.00000000
## 2790 0.0000000 0.000000000 0.00000000
## 2791 0.0000000 0.000000000 0.00000000
## 2792 0.0000000 0.000000000 0.00000000
## 2793 0.0000000 0.000000000 0.00000000
## 2794 0.0000000 0.000000000 0.00000000
## 2795 0.0000000 0.000000000 0.00000000
## 2796 0.0000000 0.000000000 0.00000000
## 2797 0.0000000 0.000000000 0.00000000
## 2798 0.0000000 0.000000000 0.00000000
## 2799 0.0000000 0.000000000 0.00000000
## 2800 0.0000000 0.000000000 0.00000000
## 2801 0.0000000 0.000000000 0.00000000
## 2802 0.0000000 0.000000000 0.00000000
## 2803 0.0000000 0.000000000 0.00000000
## 2804 0.0000000 0.000000000 0.00000000
## 2805 0.0000000 0.000000000 0.00000000
## 2806 0.0000000 0.000000000 0.00000000
## 2807 0.0000000 0.000000000 0.00000000
## 2808 0.0000000 0.000000000 0.00000000
## 2809 0.0000000 0.000000000 0.00000000
## 2810 0.0000000 0.000000000 0.00000000
## 2811 0.0000000 0.000000000 0.00000000
## 2812 0.0000000 0.000000000 0.00000000
## 2813 0.0000000 0.000000000 0.00000000
## 2814 0.0000000 0.000000000 0.00000000
## 2815 0.0000000 0.000000000 0.00000000
## 2816 0.0000000 0.000000000 0.00000000
## 2817 0.0000000 0.000000000 0.00000000
## 2818 0.0000000 0.000000000 0.00000000
## 2819 0.0000000 0.000000000 0.00000000
## 2820 0.0000000 0.000000000 0.00000000
## 2821 0.0000000 0.000000000 0.00000000
## 2822 0.0000000 0.000000000 0.00000000
## 2823 0.0000000 0.000000000 0.00000000
## 2824 0.0000000 0.000000000 0.00000000
## 2825 0.0000000 0.000000000 0.00000000
## 2826 0.0000000 0.000000000 0.00000000
## 2827 0.0000000 0.000000000 0.00000000
## 2828 0.0000000 0.000000000 0.00000000
## 2829 0.0000000 0.000000000 0.00000000
## 2830 0.0000000 0.000000000 0.00000000
## 2831 0.0000000 0.000000000 0.00000000
## 2832 0.0000000 0.000000000 0.00000000
## 2833 0.0000000 0.000000000 0.00000000
## 2834 0.0000000 0.000000000 0.00000000
## 2835 0.0000000 0.000000000 0.00000000
## 2836 0.0000000 0.000000000 0.00000000
## 2837 0.0000000 0.000000000 0.00000000
## 2838 0.0000000 0.000000000 0.00000000
## 2839 0.0000000 0.000000000 0.00000000
## 2840 0.0000000 0.000000000 0.00000000
## 2841 0.0000000 0.000000000 0.00000000
## 2842 0.0000000 0.000000000 0.00000000
## 2843 0.0000000 0.000000000 0.00000000
## 2844 0.0000000 0.000000000 0.00000000
## 2845 0.0000000 0.000000000 0.00000000
## 2846 0.0000000 0.000000000 0.00000000
## 2847 0.0000000 0.000000000 0.00000000
## 2848 0.0000000 0.000000000 0.00000000
## 2849 0.0000000 0.000000000 0.00000000
## 2850 0.0000000 0.000000000 0.00000000
## 2851 0.0000000 0.000000000 0.00000000
## 2852 0.0000000 0.000000000 0.00000000
## 2853 0.0000000 0.000000000 0.00000000
## 2854 0.0000000 0.000000000 0.00000000
## 2855 0.0000000 0.000000000 0.00000000
## 2856 0.0000000 0.000000000 0.00000000
## 2857 0.0000000 0.000000000 0.00000000
## 2858 0.0000000 0.000000000 0.00000000
## 2859 0.0000000 0.000000000 0.00000000
## 2860 0.0000000 0.000000000 0.00000000
## 2861 0.0000000 0.000000000 0.00000000
## 2862 0.0000000 0.000000000 0.00000000
## 2863 0.0000000 0.000000000 0.00000000
## 2864 0.0000000 0.000000000 0.00000000
## 2865 0.0000000 0.000000000 0.00000000
## 2866 0.0000000 0.000000000 0.00000000
## 2867 0.0000000 0.000000000 0.00000000
## 2868 0.0000000 0.000000000 0.00000000
## 2869 0.0000000 0.000000000 0.00000000
## 2870 0.0000000 0.000000000 0.00000000
## 2871 0.0000000 0.000000000 0.00000000
## 2872 0.0000000 0.000000000 0.00000000
## 2873 0.0000000 0.000000000 0.00000000
## 2874 0.0000000 0.000000000 0.00000000
## 2875 0.0000000 0.000000000 0.00000000
## 2876 0.0000000 0.000000000 0.00000000
## 2877 0.0000000 0.000000000 0.00000000
## 2878 0.0000000 0.000000000 0.00000000
## 2879 0.0000000 0.000000000 0.00000000
## 2880 0.0000000 0.000000000 0.00000000
## 2881 0.0000000 0.000000000 0.00000000
## 2882 0.0000000 0.000000000 0.00000000
## 2883 0.0000000 0.000000000 0.00000000
## 2884 0.0000000 0.000000000 0.00000000
## 2885 0.0000000 0.000000000 0.00000000
## 2886 0.0000000 0.000000000 0.00000000
## 2887 0.0000000 0.000000000 0.00000000
## 2888 0.0000000 0.000000000 0.00000000
## 2889 0.0000000 0.000000000 0.00000000
## 2890 0.0000000 0.000000000 0.00000000
## 2891 0.0000000 0.000000000 0.00000000
## 2892 0.0000000 0.000000000 0.00000000
## 2893 0.0000000 0.000000000 0.00000000
## 2894 0.0000000 0.000000000 0.00000000
## 2895 0.0000000 0.000000000 0.00000000
## 2896 0.0000000 0.000000000 0.00000000
## 2897 0.0000000 0.000000000 0.00000000
## 2898 0.0000000 0.000000000 0.00000000
## 2899 0.0000000 0.000000000 0.00000000
## 2900 0.0000000 0.000000000 0.00000000
## 2901 0.0000000 0.000000000 0.00000000
## 2902 0.0000000 0.000000000 0.00000000
## 2903 0.0000000 0.000000000 0.00000000
## 2904 0.0000000 0.000000000 0.00000000
## 2905 0.0000000 0.000000000 0.00000000
## 2906 0.0000000 0.000000000 0.00000000
## 2907 0.0000000 0.000000000 0.00000000
## 2908 0.0000000 0.000000000 0.00000000
## 2909 0.0000000 0.000000000 0.00000000
## 2910 0.0000000 0.000000000 0.00000000
## 2911 0.0000000 0.000000000 0.00000000
## 2912 0.0000000 0.000000000 0.00000000
## 2913 0.0000000 0.000000000 0.00000000
## 2914 0.0000000 0.000000000 0.00000000
## 2915 0.0000000 0.000000000 0.00000000
## 2916 0.0000000 0.000000000 0.00000000
## 2917 0.0000000 0.000000000 0.00000000
## 2918 0.0000000 0.000000000 0.00000000
## 2919 0.0000000 0.000000000 0.00000000
## 2920 0.0000000 0.000000000 0.00000000
## 2921 0.0000000 0.000000000 0.00000000
## 2922 0.0000000 0.000000000 0.00000000
## 2923 0.0000000 0.000000000 0.00000000
## 2924 0.0000000 0.000000000 0.00000000
## 2925 0.0000000 0.000000000 0.00000000
## 2926 0.0000000 0.000000000 0.00000000
## 2927 0.0000000 0.000000000 0.00000000
## 2928 0.0000000 0.000000000 0.00000000
## 2929 0.0000000 0.000000000 0.00000000
## 2930 0.0000000 0.000000000 0.00000000
## 2931 0.0000000 0.000000000 0.00000000
## 2932 0.0000000 0.000000000 0.00000000
## 2933 0.0000000 0.000000000 0.00000000
## 2934 0.0000000 0.000000000 0.00000000
## 2935 0.0000000 0.000000000 0.00000000
## 2936 0.0000000 0.000000000 0.00000000
## 2937 0.0000000 0.000000000 0.00000000
## 2938 0.0000000 0.000000000 0.00000000
## 2939 0.0000000 0.000000000 0.00000000
## 2940 0.0000000 0.000000000 0.00000000
## 2941 0.0000000 0.000000000 0.00000000
## 2942 0.0000000 0.000000000 0.00000000
## 2943 0.0000000 0.000000000 0.00000000
## 2944 0.0000000 0.000000000 0.00000000
## 2945 0.0000000 0.000000000 0.00000000
## 2946 0.0000000 0.000000000 0.00000000
## 2947 0.0000000 0.000000000 0.00000000
## 2948 0.0000000 0.000000000 0.00000000
## 2949 0.0000000 0.000000000 0.00000000
## 2950 0.0000000 0.000000000 0.00000000
## 2951 0.0000000 0.000000000 0.00000000
## 2952 0.0000000 0.000000000 0.00000000
## 2953 0.0000000 0.000000000 0.00000000
## 2954 0.0000000 0.000000000 0.00000000
## 2955 0.0000000 0.000000000 0.00000000
## 2956 0.0000000 0.000000000 0.00000000
## 2957 0.0000000 0.000000000 0.00000000
## 2958 0.0000000 0.000000000 0.00000000
## 2959 0.0000000 0.000000000 0.00000000
## 2960 0.0000000 0.000000000 0.00000000
## 2961 0.0000000 0.000000000 0.00000000
## 2962 0.0000000 0.000000000 0.00000000
## 2963 0.0000000 0.000000000 0.00000000
## 2964 0.0000000 0.000000000 0.00000000
## 2965 0.0000000 0.000000000 0.00000000
## 2966 0.0000000 0.000000000 0.00000000
## 2967 0.0000000 0.000000000 0.00000000
## 2968 0.0000000 0.000000000 0.00000000
## 2969 0.0000000 0.000000000 0.00000000
## 2970 0.0000000 0.000000000 0.00000000
## 2971 0.0000000 0.000000000 0.00000000
## 2972 0.0000000 0.000000000 0.00000000
## 2973 0.0000000 0.000000000 0.00000000
## 2974 0.0000000 0.000000000 0.00000000
## 2975 0.0000000 0.000000000 0.00000000
## 2976 0.0000000 0.000000000 0.00000000
## 2977 0.0000000 0.000000000 0.00000000
## 2978 0.0000000 0.000000000 0.00000000
## 2979 0.0000000 0.000000000 0.00000000
## 2980 0.0000000 0.000000000 0.00000000
## 2981 0.0000000 0.000000000 0.00000000
## 2982 0.0000000 0.000000000 0.00000000
## 2983 0.0000000 0.000000000 0.00000000
## 2984 0.0000000 0.000000000 0.00000000
## 2985 0.0000000 0.000000000 0.00000000
## 2986 0.0000000 0.000000000 0.00000000
## 2987 0.0000000 0.000000000 0.00000000
## 2988 0.0000000 0.000000000 0.00000000
## 2989 0.0000000 0.000000000 0.00000000
## 2990 0.0000000 0.000000000 0.00000000
## 2991 0.0000000 0.000000000 0.00000000
## 2992 0.0000000 0.000000000 0.00000000
## 2993 0.0000000 0.000000000 0.00000000
## 2994 0.0000000 0.000000000 0.00000000
## 2995 0.0000000 0.000000000 0.00000000
## 2996 0.0000000 0.000000000 0.00000000
## 2997 0.0000000 0.000000000 0.00000000
## 2998 0.0000000 0.000000000 0.00000000
## 2999 0.0000000 0.000000000 0.00000000
## 3000 0.0000000 0.000000000 0.00000000
## 3001 0.0000000 0.000000000 0.00000000
## 3002 0.0000000 0.000000000 0.00000000
## 3003 0.0000000 0.000000000 0.00000000
## 3004 0.0000000 0.000000000 0.00000000
## 3005 0.0000000 0.000000000 0.00000000
## 3006 0.0000000 0.000000000 0.00000000
## 3007 0.0000000 0.000000000 0.00000000
## 3008 0.0000000 0.000000000 0.00000000
## 3009 0.0000000 0.000000000 0.00000000
## 3010 0.0000000 0.000000000 0.00000000
## 3011 0.0000000 0.000000000 0.00000000
## 3012 0.0000000 0.000000000 0.00000000
## 3013 0.0000000 0.000000000 0.00000000
## 3014 0.0000000 0.000000000 0.00000000
## 3015 0.0000000 0.000000000 0.00000000
## 3016 0.0000000 0.000000000 0.00000000
## 3017 0.0000000 0.000000000 0.00000000
## 3018 0.0000000 0.000000000 0.00000000
## 3019 0.0000000 0.000000000 0.00000000
## 3020 0.0000000 0.000000000 0.00000000
## 3021 0.0000000 0.000000000 0.00000000
## 3022 0.0000000 0.000000000 0.00000000
## 3023 0.0000000 0.000000000 0.00000000
## 3024 0.0000000 0.000000000 0.00000000
## 3025 0.0000000 0.000000000 0.00000000
## 3026 0.0000000 0.000000000 0.00000000
## 3027 0.0000000 0.000000000 0.00000000
## 3028 0.0000000 0.000000000 0.00000000
## 3029 0.0000000 0.000000000 0.00000000
## 3030 0.0000000 0.000000000 0.00000000
## 3031 0.0000000 0.000000000 0.00000000
## 3032 0.0000000 0.000000000 0.00000000
## 3033 0.0000000 0.000000000 0.00000000
## 3034 0.0000000 0.000000000 0.00000000
## 3035 0.0000000 0.000000000 0.00000000
## 3036 0.0000000 0.000000000 0.00000000
## 3037 0.0000000 0.000000000 0.00000000
## 3038 0.0000000 0.000000000 0.00000000
## 3039 0.0000000 0.000000000 0.00000000
## 3040 0.0000000 0.000000000 0.00000000
## 3041 0.0000000 0.000000000 0.00000000
## 3042 0.0000000 0.000000000 0.00000000
## 3043 0.0000000 0.000000000 0.00000000
## 3044 0.0000000 0.000000000 0.00000000
## 3045 0.0000000 0.000000000 0.00000000
## 3046 0.0000000 0.000000000 0.00000000
## 3047 0.0000000 0.000000000 0.00000000
## 3048 0.0000000 0.000000000 0.00000000
## 3049 0.0000000 0.000000000 0.00000000
## 3050 0.0000000 0.000000000 0.00000000
## 3051 0.0000000 0.000000000 0.00000000
## 3052 0.0000000 0.000000000 0.00000000
## 3053 0.0000000 0.000000000 0.00000000
## 3054 0.0000000 0.000000000 0.00000000
## 3055 0.0000000 0.000000000 0.00000000
## 3056 0.0000000 0.000000000 0.00000000
## 3057 0.0000000 0.000000000 0.00000000
## 3058 0.0000000 0.000000000 0.00000000
## 3059 0.0000000 0.000000000 0.00000000
## 3060 0.0000000 0.000000000 0.00000000
## 3061 0.0000000 0.000000000 0.00000000
## 3062 0.0000000 0.000000000 0.00000000
## 3063 0.0000000 0.000000000 0.00000000
## 3064 0.0000000 0.000000000 0.00000000
## 3065 0.0000000 0.000000000 0.00000000
## 3066 0.0000000 0.000000000 0.00000000
## 3067 0.0000000 0.000000000 0.00000000
## 3068 0.0000000 0.000000000 0.00000000
## 3069 0.0000000 0.000000000 0.00000000
## 3070 0.0000000 0.000000000 0.00000000
## 3071 0.0000000 0.000000000 0.00000000
## 3072 0.0000000 0.000000000 0.00000000
## 3073 0.0000000 0.000000000 0.00000000
## 3074 0.0000000 0.000000000 0.00000000
## 3075 0.0000000 0.000000000 0.00000000
## 3076 0.0000000 0.000000000 0.00000000
## 3077 0.0000000 0.000000000 0.00000000
## 3078 0.0000000 0.000000000 0.00000000
## 3079 0.0000000 0.000000000 0.00000000
## 3080 0.0000000 0.000000000 0.00000000
## 3081 0.0000000 0.000000000 0.00000000
## 3082 0.0000000 0.000000000 0.00000000
## 3083 0.0000000 0.000000000 0.00000000
## 3084 0.0000000 0.000000000 0.00000000
## 3085 0.0000000 0.000000000 0.00000000
## 3086 0.0000000 0.000000000 0.00000000
## 3087 0.0000000 0.000000000 0.00000000
## 3088 0.0000000 0.000000000 0.00000000
## 3089 0.0000000 0.000000000 0.00000000
## 3090 0.0000000 0.000000000 0.00000000
## 3091 0.0000000 0.000000000 0.00000000
## 3092 0.0000000 0.000000000 0.00000000
## 3093 0.0000000 0.000000000 0.00000000
## 3094 0.0000000 0.000000000 0.00000000
## 3095 0.0000000 0.000000000 0.00000000
## 3096 0.0000000 0.000000000 0.00000000
## 3097 0.0000000 0.000000000 0.00000000
## 3098 0.0000000 0.000000000 0.00000000
## 3099 0.0000000 0.000000000 0.00000000
## 3100 0.0000000 0.000000000 0.00000000
## 3101 0.0000000 0.000000000 0.00000000
## 3102 0.0000000 0.000000000 0.00000000
## 3103 0.0000000 0.000000000 0.00000000
## 3104 0.0000000 0.000000000 0.00000000
## 3105 0.0000000 0.000000000 0.00000000
## 3106 0.0000000 0.000000000 0.00000000
## 3107 0.0000000 0.000000000 0.00000000
## 3108 0.0000000 0.000000000 0.00000000
## 3109 0.0000000 0.000000000 0.00000000
## 3110 0.0000000 0.000000000 0.00000000
## 3111 0.0000000 0.000000000 0.00000000
## 3112 0.0000000 0.000000000 0.00000000
## 3113 0.0000000 0.000000000 0.00000000
## 3114 0.0000000 0.000000000 0.00000000
## 3115 0.0000000 0.000000000 0.00000000
## 3116 0.0000000 0.000000000 0.00000000
## 3117 0.0000000 0.000000000 0.00000000
## 3118 0.0000000 0.000000000 0.00000000
## 3119 0.0000000 0.000000000 0.00000000
## 3120 0.0000000 0.000000000 0.00000000
## 3121 0.0000000 0.000000000 0.00000000
## 3122 0.0000000 0.000000000 0.00000000
## 3123 0.0000000 0.000000000 0.00000000
## 3124 0.0000000 0.000000000 0.00000000
## 3125 0.0000000 0.000000000 0.00000000
## 3126 0.0000000 0.000000000 0.00000000
## 3127 0.0000000 0.000000000 0.00000000
## 3128 0.0000000 0.000000000 0.00000000
## 3129 0.0000000 0.000000000 0.00000000
## 3130 0.0000000 0.000000000 0.00000000
## 3131 0.0000000 0.000000000 0.00000000
## 3132 0.0000000 0.000000000 0.00000000
## 3133 0.0000000 0.000000000 0.00000000
## 3134 0.0000000 0.000000000 0.00000000
## 3135 0.0000000 0.000000000 0.00000000
## 3136 0.0000000 0.000000000 0.00000000
## 3137 0.0000000 0.000000000 0.00000000
## 3138 0.0000000 0.000000000 0.00000000
## 3139 0.0000000 0.000000000 0.00000000
## 3140 0.0000000 0.000000000 0.00000000
## 3141 0.0000000 0.000000000 0.00000000
## 3142 0.0000000 0.000000000 0.00000000
## 3143 0.0000000 0.000000000 0.00000000
## 3144 0.0000000 0.000000000 0.00000000
## 3145 0.0000000 0.000000000 0.00000000
## 3146 0.0000000 0.000000000 0.00000000
## 3147 0.0000000 0.000000000 0.00000000
## 3148 0.0000000 0.000000000 0.00000000
## 3149 0.0000000 0.000000000 0.00000000
## 3150 0.0000000 0.000000000 0.00000000
## 3151 0.0000000 0.000000000 0.00000000
## 3152 0.0000000 0.000000000 0.00000000
## 3153 0.0000000 0.000000000 0.00000000
## 3154 0.0000000 0.000000000 0.00000000
## 3155 0.0000000 0.000000000 0.00000000
## 3156 0.0000000 0.000000000 0.00000000
## 3157 0.0000000 0.000000000 0.00000000
## 3158 0.0000000 0.000000000 0.00000000
## 3159 0.0000000 0.000000000 0.00000000
## 3160 0.0000000 0.000000000 0.00000000
## 3161 0.0000000 0.000000000 0.00000000
## 3162 0.0000000 0.000000000 0.00000000
## 3163 0.0000000 0.000000000 0.00000000
## 3164 0.0000000 0.000000000 0.00000000
## 3165 0.0000000 0.000000000 0.00000000
## 3166 0.0000000 0.000000000 0.00000000
## 3167 0.0000000 0.000000000 0.00000000
## 3168 0.0000000 0.000000000 0.00000000
## 3169 0.0000000 0.000000000 0.00000000
## 3170 0.0000000 0.000000000 0.00000000
## 3171 0.0000000 0.000000000 0.00000000
## 3172 0.0000000 0.000000000 0.00000000
## 3173 0.0000000 0.000000000 0.00000000
## 3174 0.0000000 0.000000000 0.00000000
## 3175 0.0000000 0.000000000 0.00000000
## 3176 0.0000000 0.000000000 0.00000000
## 3177 0.0000000 0.000000000 0.00000000
## 3178 0.0000000 0.000000000 0.00000000
## 3179 0.0000000 0.000000000 0.00000000
## 3180 0.0000000 0.000000000 0.00000000
## 3181 0.0000000 0.000000000 0.00000000
## 3182 0.0000000 0.000000000 0.00000000
## 3183 0.0000000 0.000000000 0.00000000
## 3184 0.0000000 0.000000000 0.00000000
## 3185 0.0000000 0.000000000 0.00000000
## 3186 0.0000000 0.000000000 0.00000000
## 3187 0.0000000 0.000000000 0.00000000
## 3188 0.0000000 0.000000000 0.00000000
## 3189 0.0000000 0.000000000 0.00000000
## 3190 0.0000000 0.000000000 0.00000000
## 3191 0.0000000 0.000000000 0.00000000
## 3192 0.0000000 0.000000000 0.00000000
## 3193 0.0000000 0.000000000 0.00000000
## 3194 0.0000000 0.000000000 0.00000000
## 3195 0.0000000 0.000000000 0.00000000
## 3196 0.0000000 0.000000000 0.00000000
## 3197 0.0000000 0.000000000 0.00000000
## 3198 0.0000000 0.000000000 0.00000000
## 3199 0.0000000 0.000000000 0.00000000
## 3200 0.0000000 0.000000000 0.00000000
## 3201 0.0000000 0.000000000 0.00000000
## 3202 0.0000000 0.000000000 0.00000000
## 3203 0.0000000 0.000000000 0.00000000
## 3204 0.0000000 0.000000000 0.00000000
## 3205 0.0000000 0.000000000 0.00000000
## 3206 0.0000000 0.000000000 0.00000000
## 3207 0.0000000 0.000000000 0.00000000
## 3208 0.0000000 0.000000000 0.00000000
## 3209 0.0000000 0.000000000 0.00000000
## 3210 0.0000000 0.000000000 0.00000000
## 3211 0.0000000 0.000000000 0.00000000
## 3212 0.0000000 0.000000000 0.00000000
## 3213 0.0000000 0.000000000 0.00000000
## 3214 0.0000000 0.000000000 0.00000000
## 3215 0.0000000 0.000000000 0.00000000
## 3216 0.0000000 0.000000000 0.00000000
## 3217 0.0000000 0.000000000 0.00000000
## 3218 0.0000000 0.000000000 0.00000000
## 3219 0.0000000 0.000000000 0.00000000
## 3220 0.0000000 0.000000000 0.00000000
## 3221 0.0000000 0.000000000 0.00000000
## 3222 0.0000000 0.000000000 0.00000000
## 3223 0.0000000 0.000000000 0.00000000
## 3224 0.0000000 0.000000000 0.00000000
## 3225 0.0000000 0.000000000 0.00000000
## 3226 0.0000000 0.000000000 0.00000000
## 3227 0.0000000 0.000000000 0.00000000
## 3228 0.0000000 0.000000000 0.00000000
## 3229 0.0000000 0.000000000 0.00000000
## 3230 0.0000000 0.000000000 0.00000000
## 3231 0.0000000 0.000000000 0.00000000
## 3232 0.0000000 0.000000000 0.00000000
## 3233 0.0000000 0.000000000 0.00000000
## 3234 0.0000000 0.000000000 0.00000000
## 3235 0.0000000 0.000000000 0.00000000
## 3236 0.0000000 0.000000000 0.00000000
## 3237 0.0000000 0.000000000 0.00000000
## 3238 0.0000000 0.000000000 0.00000000
## 3239 0.0000000 0.000000000 0.00000000
## 3240 0.0000000 0.000000000 0.00000000
## 3241 0.0000000 0.000000000 0.00000000
## 3242 0.0000000 0.000000000 0.00000000
## 3243 0.0000000 0.000000000 0.00000000
## 3244 0.0000000 0.000000000 0.00000000
## 3245 0.0000000 0.000000000 0.00000000
## 3246 0.0000000 0.000000000 0.00000000
## 3247 0.0000000 0.000000000 0.00000000
## 3248 0.0000000 0.000000000 0.00000000
## 3249 0.0000000 0.000000000 0.00000000
## 3250 0.0000000 0.000000000 0.00000000
## 3251 0.0000000 0.000000000 0.00000000
## 3252 0.0000000 0.000000000 0.00000000
## 3253 0.0000000 0.000000000 0.00000000
## 3254 0.0000000 0.000000000 0.00000000
## 3255 0.0000000 0.000000000 0.00000000
## 3256 0.0000000 0.000000000 0.00000000
## 3257 0.0000000 0.000000000 0.00000000
## 3258 0.0000000 0.000000000 0.00000000
## 3259 0.0000000 0.000000000 0.00000000
## 3260 0.0000000 0.000000000 0.00000000
## 3261 0.0000000 0.000000000 0.00000000
## 3262 0.0000000 0.000000000 0.00000000
## 3263 0.0000000 0.000000000 0.00000000
## 3264 0.0000000 0.000000000 0.00000000
## 3265 0.0000000 0.000000000 0.00000000
## 3266 0.0000000 0.000000000 0.00000000
## 3267 0.0000000 0.000000000 0.00000000
## 3268 0.0000000 0.000000000 0.00000000
## 3269 0.0000000 0.000000000 0.00000000
## 3270 0.0000000 0.000000000 0.00000000
## 3271 0.0000000 0.000000000 0.00000000
## 3272 0.0000000 0.000000000 0.00000000
## 3273 0.0000000 0.000000000 0.00000000
## 3274 0.0000000 0.000000000 0.00000000
## 3275 0.0000000 0.000000000 0.00000000
## 3276 0.0000000 0.000000000 0.00000000
## 3277 0.0000000 0.000000000 0.00000000
## 3278 0.0000000 0.000000000 0.00000000
## 3279 0.0000000 0.000000000 0.00000000
## 3280 0.0000000 0.000000000 0.00000000
## 3281 0.0000000 0.000000000 0.00000000
## 3282 0.0000000 0.000000000 0.00000000
## 3283 0.0000000 0.000000000 0.00000000
## 3284 0.0000000 0.000000000 0.00000000
## 3285 0.0000000 0.000000000 0.00000000
## 3286 0.0000000 0.000000000 0.00000000
## 3287 0.0000000 0.000000000 0.00000000
## 3288 0.0000000 0.000000000 0.00000000
## 3289 0.0000000 0.000000000 0.00000000
## 3290 0.0000000 0.000000000 0.00000000
## 3291 0.0000000 0.000000000 0.00000000
## 3292 0.0000000 0.000000000 0.00000000
## 3293 0.0000000 0.000000000 0.00000000
## 3294 0.0000000 0.000000000 0.00000000
## 3295 0.0000000 0.000000000 0.00000000
## 3296 0.0000000 0.000000000 0.00000000
## 3297 0.0000000 0.000000000 0.00000000
## 3298 0.0000000 0.000000000 0.00000000
## 3299 0.0000000 0.000000000 0.00000000
## 3300 0.0000000 0.000000000 0.00000000
## 3301 0.0000000 0.000000000 0.00000000
## 3302 0.0000000 0.000000000 0.00000000
## 3303 0.0000000 0.000000000 0.00000000
## 3304 0.0000000 0.000000000 0.00000000
## 3305 0.0000000 0.000000000 0.00000000
## 3306 0.0000000 0.000000000 0.00000000
## 3307 0.0000000 0.000000000 0.00000000
## 3308 0.0000000 0.000000000 0.00000000
## 3309 0.0000000 0.000000000 0.00000000
## 3310 0.0000000 0.000000000 0.00000000
## 3311 0.0000000 0.000000000 0.00000000
## 3312 0.0000000 0.000000000 0.00000000
## 3313 0.0000000 0.000000000 0.00000000
## 3314 0.0000000 0.000000000 0.00000000
## 3315 0.0000000 0.000000000 0.00000000
## 3316 0.0000000 0.000000000 0.00000000
## 3317 0.0000000 0.000000000 0.00000000
## 3318 0.0000000 0.000000000 0.00000000
## 3319 0.0000000 0.000000000 0.00000000
## 3320 0.0000000 0.000000000 0.00000000
## 3321 0.0000000 0.000000000 0.00000000
## 3322 0.0000000 0.000000000 0.00000000
## 3323 0.0000000 0.000000000 0.00000000
## 3324 0.0000000 0.000000000 0.00000000
## 3325 0.0000000 0.000000000 0.00000000
## 3326 0.0000000 0.000000000 0.00000000
## 3327 0.0000000 0.000000000 0.00000000
## 3328 0.0000000 0.000000000 0.00000000
## 3329 0.0000000 0.000000000 0.00000000
## 3330 0.0000000 0.000000000 0.00000000
## 3331 0.0000000 0.000000000 0.00000000
## 3332 0.0000000 0.000000000 0.00000000
## 3333 0.0000000 0.000000000 0.00000000
## 3334 0.0000000 0.000000000 0.00000000
## 3335 0.0000000 0.000000000 0.00000000
## 3336 0.0000000 0.000000000 0.00000000
## 3337 0.0000000 0.000000000 0.00000000
## 3338 0.0000000 0.000000000 0.00000000
## 3339 0.0000000 0.000000000 0.00000000
## 3340 0.0000000 0.000000000 0.00000000
## 3341 0.0000000 0.000000000 0.00000000
## 3342 0.0000000 0.000000000 0.00000000
## 3343 0.0000000 0.000000000 0.00000000
## 3344 0.0000000 0.000000000 0.00000000
## 3345 0.0000000 0.000000000 0.00000000
## 3346 0.0000000 0.000000000 0.00000000
## 3347 0.0000000 0.000000000 0.00000000
## 3348 0.0000000 0.000000000 0.00000000
## 3349 0.0000000 0.000000000 0.00000000
## 3350 0.0000000 0.000000000 0.00000000
## 3351 0.0000000 0.000000000 0.00000000
## 3352 0.0000000 0.000000000 0.00000000
## 3353 0.0000000 0.000000000 0.00000000
## 3354 0.0000000 0.000000000 0.00000000
## 3355 0.0000000 0.000000000 0.00000000
## 3356 0.0000000 0.000000000 0.00000000
## 3357 0.0000000 0.000000000 0.00000000
## 3358 0.0000000 0.000000000 0.00000000
## 3359 0.0000000 0.000000000 0.00000000
## 3360 0.0000000 0.000000000 0.00000000
## 3361 0.0000000 0.000000000 0.00000000
## 3362 0.0000000 0.000000000 0.00000000
## 3363 0.0000000 0.000000000 0.00000000
## 3364 0.0000000 0.000000000 0.00000000
## 3365 0.0000000 0.000000000 0.00000000
## 3366 0.0000000 0.000000000 0.00000000
## 3367 0.0000000 0.000000000 0.00000000
## 3368 0.0000000 0.000000000 0.00000000
## 3369 0.0000000 0.000000000 0.00000000
## 3370 0.0000000 0.000000000 0.00000000
## 3371 0.0000000 0.000000000 0.00000000
## 3372 0.0000000 0.000000000 0.00000000
## 3373 0.0000000 0.000000000 0.00000000
## 3374 0.0000000 0.000000000 0.00000000
## 3375 0.0000000 0.000000000 0.00000000
## 3376 0.0000000 0.000000000 0.00000000
## 3377 0.0000000 0.000000000 0.00000000
## 3378 0.0000000 0.000000000 0.00000000
## 3379 0.0000000 0.000000000 0.00000000
## 3380 0.0000000 0.000000000 0.00000000
## 3381 0.0000000 0.000000000 0.00000000
## 3382 0.0000000 0.000000000 0.00000000
## 3383 0.0000000 0.000000000 0.00000000
## 3384 0.0000000 0.000000000 0.00000000
## 3385 0.0000000 0.000000000 0.00000000
## 3386 0.0000000 0.000000000 0.00000000
## 3387 0.0000000 0.000000000 0.00000000
## 3388 0.0000000 0.000000000 0.00000000
## 3389 0.0000000 0.000000000 0.00000000
## 3390 0.0000000 0.000000000 0.00000000
## 3391 0.0000000 0.000000000 0.00000000
## 3392 0.0000000 0.000000000 0.00000000
## 3393 0.0000000 0.000000000 0.00000000
## 3394 0.0000000 0.000000000 0.00000000
## 3395 0.0000000 0.000000000 0.00000000
## 3396 0.0000000 0.000000000 0.00000000
## 3397 0.0000000 0.000000000 0.00000000
## 3398 0.0000000 0.000000000 0.00000000
## 3399 0.0000000 0.000000000 0.00000000
## 3400 0.0000000 0.000000000 0.00000000
## 3401 0.0000000 0.000000000 0.00000000
## 3402 0.0000000 0.000000000 0.00000000
## 3403 0.0000000 0.000000000 0.00000000
## 3404 0.0000000 0.000000000 0.00000000
## 3405 0.0000000 0.000000000 0.00000000
## 3406 0.0000000 0.000000000 0.00000000
## 3407 0.0000000 0.000000000 0.00000000
## 3408 0.0000000 0.000000000 0.00000000
## 3409 0.0000000 0.000000000 0.00000000
## 3410 0.0000000 0.000000000 0.00000000
## 3411 0.0000000 0.000000000 0.00000000
## 3412 0.0000000 0.000000000 0.00000000
## 3413 0.0000000 0.000000000 0.00000000
## 3414 0.0000000 0.000000000 0.00000000
## 3415 0.0000000 0.000000000 0.00000000
## 3416 0.0000000 0.000000000 0.00000000
## 3417 0.0000000 0.000000000 0.00000000
## 3418 0.0000000 0.000000000 0.00000000
## 3419 0.0000000 0.000000000 0.00000000
## 3420 0.0000000 0.000000000 0.00000000
## 3421 0.0000000 0.000000000 0.00000000
## 3422 0.0000000 0.000000000 0.00000000
## 3423 0.0000000 0.000000000 0.00000000
## 3424 0.0000000 0.000000000 0.00000000
## 3425 0.0000000 0.000000000 0.00000000
## 3426 0.0000000 0.000000000 0.00000000
## 3427 0.0000000 0.000000000 0.00000000
## 3428 0.0000000 0.000000000 0.00000000
## 3429 0.0000000 0.000000000 0.00000000
## 3430 0.0000000 0.000000000 0.00000000
## 3431 0.0000000 0.000000000 0.00000000
## 3432 0.0000000 0.000000000 0.00000000
## 3433 0.0000000 0.000000000 0.00000000
## 3434 0.0000000 0.000000000 0.00000000
## 3435 0.0000000 0.000000000 0.00000000
## 3436 0.0000000 0.000000000 0.00000000
## 3437 0.0000000 0.000000000 0.00000000
## 3438 0.0000000 0.000000000 0.00000000
## 3439 0.0000000 0.000000000 0.00000000
## 3440 0.0000000 0.000000000 0.00000000
## 3441 0.0000000 0.000000000 0.00000000
## 3442 0.0000000 0.000000000 0.00000000
## 3443 0.0000000 0.000000000 0.00000000
## 3444 0.0000000 0.000000000 0.00000000
## 3445 0.0000000 0.000000000 0.00000000
## 3446 0.0000000 0.000000000 0.00000000
## 3447 0.0000000 0.000000000 0.00000000
## 3448 0.0000000 0.000000000 0.00000000
## 3449 0.0000000 0.000000000 0.00000000
## 3450 0.0000000 0.000000000 0.00000000
## 3451 0.0000000 0.000000000 0.00000000
## 3452 0.0000000 0.000000000 0.00000000
## 3453 0.0000000 0.000000000 0.00000000
## 3454 0.0000000 0.000000000 0.00000000
## 3455 0.0000000 0.000000000 0.00000000
## 3456 0.0000000 0.000000000 0.00000000
## 3457 0.0000000 0.000000000 0.00000000
## 3458 0.0000000 0.000000000 0.00000000
## 3459 0.0000000 0.000000000 0.00000000
## 3460 0.0000000 0.000000000 0.00000000
## 3461 0.0000000 0.000000000 0.00000000
## 3462 0.0000000 0.000000000 0.00000000
## 3463 0.0000000 0.000000000 0.00000000
## 3464 0.0000000 0.000000000 0.00000000
## 3465 0.0000000 0.000000000 0.00000000
## 3466 0.0000000 0.000000000 0.00000000
## 3467 0.0000000 0.000000000 0.00000000
## 3468 0.0000000 0.000000000 0.00000000
## 3469 0.0000000 0.000000000 0.00000000
## 3470 0.0000000 0.000000000 0.00000000
## 3471 0.0000000 0.000000000 0.00000000
## 3472 0.0000000 0.000000000 0.00000000
## 3473 0.0000000 0.000000000 0.00000000
## 3474 0.0000000 0.000000000 0.00000000
## 3475 0.0000000 0.000000000 0.00000000
## 3476 0.0000000 0.000000000 0.00000000
## 3477 0.0000000 0.000000000 0.00000000
## 3478 0.0000000 0.000000000 0.00000000
## 3479 0.0000000 0.000000000 0.00000000
## 3480 0.0000000 0.000000000 0.00000000
## 3481 0.0000000 0.000000000 0.00000000
## 3482 0.0000000 0.000000000 0.00000000
## 3483 0.0000000 0.000000000 0.00000000
## 3484 0.0000000 0.000000000 0.00000000
## 3485 0.0000000 0.000000000 0.00000000
## 3486 0.0000000 0.000000000 0.00000000
## 3487 0.0000000 0.000000000 0.00000000
## 3488 0.0000000 0.000000000 0.00000000
## 3489 0.0000000 0.000000000 0.00000000
## 3490 0.0000000 0.000000000 0.00000000
## 3491 0.0000000 0.000000000 0.00000000
## 3492 0.0000000 0.000000000 0.00000000
## 3493 0.0000000 0.000000000 0.00000000
## 3494 0.0000000 0.000000000 0.00000000
## 3495 0.0000000 0.000000000 0.00000000
## 3496 0.0000000 0.000000000 0.00000000
## 3497 0.0000000 0.000000000 0.00000000
## 3498 0.0000000 0.000000000 0.00000000
## 3499 0.0000000 0.000000000 0.00000000
## 3500 0.0000000 0.000000000 0.00000000
## 3501 0.0000000 0.000000000 0.00000000
## 3502 0.0000000 0.000000000 0.00000000
## 3503 0.0000000 0.000000000 0.00000000
## 3504 0.0000000 0.000000000 0.00000000
## 3505 0.0000000 0.000000000 0.00000000
## 3506 0.0000000 0.000000000 0.00000000
## 3507 0.0000000 0.000000000 0.00000000
## 3508 0.0000000 0.000000000 0.00000000
## 3509 0.0000000 0.000000000 0.00000000
## 3510 0.0000000 0.000000000 0.00000000
## 3511 0.0000000 0.000000000 0.00000000
## 3512 0.0000000 0.000000000 0.00000000
## 3513 0.0000000 0.000000000 0.00000000
## 3514 0.0000000 0.000000000 0.00000000
## 3515 0.0000000 0.000000000 0.00000000
## 3516 0.0000000 0.000000000 0.00000000
## 3517 0.0000000 0.000000000 0.00000000
## 3518 0.0000000 0.000000000 0.00000000
## 3519 0.0000000 0.000000000 0.00000000
## 3520 0.0000000 0.000000000 0.00000000
## 3521 0.0000000 0.000000000 0.00000000
## 3522 0.0000000 0.000000000 0.00000000
## 3523 0.0000000 0.000000000 0.00000000
## 3524 0.0000000 0.000000000 0.00000000
## 3525 0.0000000 0.000000000 0.00000000
## 3526 0.0000000 0.000000000 0.00000000
## 3527 0.0000000 0.000000000 0.00000000
## 3528 0.0000000 0.000000000 0.00000000
## 3529 0.0000000 0.000000000 0.00000000
## 3530 0.0000000 0.000000000 0.00000000
## 3531 0.0000000 0.000000000 0.00000000
## 3532 0.0000000 0.000000000 0.00000000
## 3533 0.0000000 0.000000000 0.00000000
## 3534 0.0000000 0.000000000 0.00000000
## 3535 0.0000000 0.000000000 0.00000000
## 3536 0.0000000 0.000000000 0.00000000
## 3537 0.0000000 0.000000000 0.00000000
## 3538 0.0000000 0.000000000 0.00000000
## 3539 0.0000000 0.000000000 0.00000000
## 3540 0.0000000 0.000000000 0.00000000
## 3541 0.0000000 0.000000000 0.00000000
## 3542 0.0000000 0.000000000 0.00000000
## 3543 0.0000000 0.000000000 0.00000000
## 3544 0.0000000 0.000000000 0.00000000
## 3545 0.0000000 0.000000000 0.00000000
## 3546 0.0000000 0.000000000 0.00000000
## 3547 0.0000000 0.000000000 0.00000000
## 3548 0.0000000 0.000000000 0.00000000
## 3549 0.0000000 0.000000000 0.00000000
## 3550 0.0000000 0.000000000 0.00000000
## 3551 0.0000000 0.000000000 0.00000000
## 3552 0.0000000 0.000000000 0.00000000
## 3553 0.0000000 0.000000000 0.00000000
## 3554 0.0000000 0.000000000 0.00000000
## 3555 0.0000000 0.000000000 0.00000000
## 3556 0.0000000 0.000000000 0.00000000
## 3557 0.0000000 0.000000000 0.00000000
## 3558 0.0000000 0.000000000 0.00000000
## 3559 0.0000000 0.000000000 0.00000000
## 3560 0.0000000 0.000000000 0.00000000
## 3561 0.0000000 0.000000000 0.00000000
## 3562 0.0000000 0.000000000 0.00000000
## 3563 0.0000000 0.000000000 0.00000000
## 3564 0.0000000 0.000000000 0.00000000
## 3565 0.0000000 0.000000000 0.00000000
## 3566 0.0000000 0.000000000 0.00000000
## 3567 0.0000000 0.000000000 0.00000000
## 3568 0.0000000 0.000000000 0.00000000
## 3569 0.0000000 0.000000000 0.00000000
## 3570 0.0000000 0.000000000 0.00000000
## 3571 0.0000000 0.000000000 0.00000000
## 3572 0.0000000 0.000000000 0.00000000
## 3573 0.0000000 0.000000000 0.00000000
## 3574 0.0000000 0.000000000 0.00000000
## 3575 0.0000000 0.000000000 0.00000000
## 3576 0.0000000 0.000000000 0.00000000
## 3577 0.0000000 0.000000000 0.00000000
## 3578 0.0000000 0.000000000 0.00000000
## 3579 0.0000000 0.000000000 0.00000000
## 3580 0.0000000 0.000000000 0.00000000
## 3581 0.0000000 0.000000000 0.00000000
## 3582 0.0000000 0.000000000 0.00000000
## 3583 0.0000000 0.000000000 0.00000000
## 3584 0.0000000 0.000000000 0.00000000
## 3585 0.0000000 0.000000000 0.00000000
## 3586 0.0000000 0.000000000 0.00000000
## 3587 0.0000000 0.000000000 0.00000000
## 3588 0.0000000 0.000000000 0.00000000
## 3589 0.0000000 0.000000000 0.00000000
## 3590 0.0000000 0.000000000 0.00000000
## 3591 0.0000000 0.000000000 0.00000000
## 3592 0.0000000 0.000000000 0.00000000
## 3593 0.0000000 0.000000000 0.00000000
## 3594 0.0000000 0.000000000 0.00000000
## 3595 0.0000000 0.000000000 0.00000000
## 3596 0.0000000 0.000000000 0.00000000
## 3597 0.0000000 0.000000000 0.00000000
## 3598 0.0000000 0.000000000 0.00000000
## 3599 0.0000000 0.000000000 0.00000000
## 3600 0.0000000 0.000000000 0.00000000
## 3601 0.0000000 0.000000000 0.00000000
## 3602 0.0000000 0.000000000 0.00000000
## 3603 0.0000000 0.000000000 0.00000000
## 3604 0.0000000 0.000000000 0.00000000
## 3605 0.0000000 0.000000000 0.00000000
## 3606 0.0000000 0.000000000 0.00000000
## 3607 0.0000000 0.000000000 0.00000000
## 3608 0.0000000 0.000000000 0.00000000
## 3609 0.0000000 0.000000000 0.00000000
## 3610 0.0000000 0.000000000 0.00000000
## 3611 0.0000000 0.000000000 0.00000000
## 3612 0.0000000 0.000000000 0.00000000
## 3613 0.0000000 0.000000000 0.00000000
## 3614 0.0000000 0.000000000 0.00000000
## 3615 0.0000000 0.000000000 0.00000000
## 3616 0.0000000 0.000000000 0.00000000
## 3617 0.0000000 0.000000000 0.00000000
## 3618 0.0000000 0.000000000 0.00000000
## 3619 0.0000000 0.000000000 0.00000000
## 3620 0.0000000 0.000000000 0.00000000
## 3621 0.0000000 0.000000000 0.00000000
## 3622 0.0000000 0.000000000 0.00000000
## 3623 0.0000000 0.000000000 0.00000000
## 3624 0.0000000 0.000000000 0.00000000
## 3625 0.0000000 0.000000000 0.00000000
## 3626 0.0000000 0.000000000 0.00000000
## 3627 0.0000000 0.000000000 0.00000000
## 3628 0.0000000 0.000000000 0.00000000
## 3629 0.0000000 0.000000000 0.00000000
## 3630 0.0000000 0.000000000 0.00000000
## 3631 0.0000000 0.000000000 0.00000000
## 3632 0.0000000 0.000000000 0.00000000
## 3633 0.0000000 0.000000000 0.00000000
## 3634 0.0000000 0.000000000 0.00000000
## 3635 0.0000000 0.000000000 0.00000000
## 3636 0.0000000 0.000000000 0.00000000
## 3637 0.0000000 0.000000000 0.00000000
## 3638 0.0000000 0.000000000 0.00000000
## 3639 0.0000000 0.000000000 0.00000000
## 3640 0.0000000 0.000000000 0.00000000
## 3641 0.0000000 0.000000000 0.00000000
## 3642 0.0000000 0.000000000 0.00000000
## 3643 0.0000000 0.000000000 0.00000000
## 3644 0.0000000 0.000000000 0.00000000
## 3645 0.0000000 0.000000000 0.00000000
## 3646 0.0000000 0.000000000 0.00000000
## 3647 0.0000000 0.000000000 0.00000000
## 3648 0.0000000 0.000000000 0.00000000
## 3649 0.0000000 0.000000000 0.00000000
## 3650 0.0000000 0.000000000 0.00000000
## 3651 0.0000000 0.000000000 0.00000000
## 3652 0.0000000 0.000000000 0.00000000
## 3653 0.0000000 0.000000000 0.00000000
## 3654 0.0000000 0.000000000 0.00000000
## 3655 0.0000000 0.000000000 0.00000000
## 3656 0.0000000 0.000000000 0.00000000
## 3657 0.0000000 0.000000000 0.00000000
## 3658 0.0000000 0.000000000 0.00000000
## 3659 0.0000000 0.000000000 0.00000000
## 3660 0.0000000 0.000000000 0.00000000
## 3661 0.0000000 0.000000000 0.00000000
## 3662 0.0000000 0.000000000 0.00000000
## 3663 0.0000000 0.000000000 0.00000000
## 3664 0.0000000 0.000000000 0.00000000
## 3665 0.0000000 0.000000000 0.00000000
## 3666 0.0000000 0.000000000 0.00000000
## 3667 0.0000000 0.000000000 0.00000000
## 3668 0.0000000 0.000000000 0.00000000
## 3669 0.0000000 0.000000000 0.00000000
## 3670 0.0000000 0.000000000 0.00000000
## 3671 0.0000000 0.000000000 0.00000000
## 3672 0.0000000 0.000000000 0.00000000
## 3673 0.0000000 0.000000000 0.00000000
## 3674 0.0000000 0.000000000 0.00000000
## 3675 0.0000000 0.000000000 0.00000000
## 3676 0.0000000 0.000000000 0.00000000
## 3677 0.0000000 0.000000000 0.00000000
## 3678 0.0000000 0.000000000 0.00000000
## 3679 0.0000000 0.000000000 0.00000000
## 3680 0.0000000 0.000000000 0.00000000
## 3681 0.0000000 0.000000000 0.00000000
## 3682 0.0000000 0.000000000 0.00000000
## 3683 0.0000000 0.000000000 0.00000000
## 3684 0.0000000 0.000000000 0.00000000
## 3685 0.0000000 0.000000000 0.00000000
## 3686 0.0000000 0.000000000 0.00000000
## 3687 0.0000000 0.000000000 0.00000000
## 3688 0.0000000 0.000000000 0.00000000
## 3689 0.0000000 0.000000000 0.00000000
## 3690 0.0000000 0.000000000 0.00000000
## 3691 0.0000000 0.000000000 0.00000000
## 3692 0.0000000 0.000000000 0.00000000
## 3693 0.0000000 0.000000000 0.00000000
## 3694 0.0000000 0.000000000 0.00000000
## 3695 0.0000000 0.000000000 0.00000000
## 3696 0.0000000 0.000000000 0.00000000
## 3697 0.0000000 0.000000000 0.00000000
## 3698 0.0000000 0.000000000 0.00000000
## 3699 0.0000000 0.000000000 0.00000000
## 3700 0.0000000 0.000000000 0.00000000
## 3701 0.0000000 0.000000000 0.00000000
## 3702 0.0000000 0.000000000 0.00000000
## 3703 0.0000000 0.000000000 0.00000000
## 3704 0.0000000 0.000000000 0.00000000
## 3705 0.0000000 0.000000000 0.00000000
## 3706 0.0000000 0.000000000 0.00000000
## 3707 0.0000000 0.000000000 0.00000000
## 3708 0.0000000 0.000000000 0.00000000
## 3709 0.0000000 0.000000000 0.00000000
## 3710 0.0000000 0.000000000 0.00000000
## 3711 0.0000000 0.000000000 0.00000000
## 3712 0.0000000 0.000000000 0.00000000
## 3713 0.0000000 0.000000000 0.00000000
## 3714 0.0000000 0.000000000 0.00000000
## 3715 0.0000000 0.000000000 0.00000000
## 3716 0.0000000 0.000000000 0.00000000
## 3717 0.0000000 0.000000000 0.00000000
## 3718 0.0000000 0.000000000 0.00000000
## 3719 0.0000000 0.000000000 0.00000000
## 3720 0.0000000 0.000000000 0.00000000
## 3721 0.0000000 0.000000000 0.00000000
## 3722 0.0000000 0.000000000 0.00000000
## 3723 0.0000000 0.000000000 0.00000000
## 3724 0.0000000 0.000000000 0.00000000
## 3725 0.0000000 0.000000000 0.00000000
## 3726 0.0000000 0.000000000 0.00000000
## 3727 0.0000000 0.000000000 0.00000000
## 3728 0.0000000 0.000000000 0.00000000
## 3729 0.0000000 0.000000000 0.00000000
## 3730 0.0000000 0.000000000 0.00000000
## 3731 0.0000000 0.000000000 0.00000000
## 3732 0.0000000 0.000000000 0.00000000
## 3733 0.0000000 0.000000000 0.00000000
## 3734 0.0000000 0.000000000 0.00000000
## 3735 0.0000000 0.000000000 0.00000000
## 3736 0.0000000 0.000000000 0.00000000
## 3737 0.0000000 0.000000000 0.00000000
## 3738 0.0000000 0.000000000 0.00000000
## 3739 0.0000000 0.000000000 0.00000000
## 3740 0.0000000 0.000000000 0.00000000
## 3741 0.0000000 0.000000000 0.00000000
## 3742 0.0000000 0.000000000 0.00000000
## 3743 0.0000000 0.000000000 0.00000000
## 3744 0.0000000 0.000000000 0.00000000
## 3745 0.0000000 0.000000000 0.00000000
## 3746 0.0000000 0.000000000 0.00000000
## 3747 0.0000000 0.000000000 0.00000000
## 3748 0.0000000 0.000000000 0.00000000
## 3749 0.0000000 0.000000000 0.00000000
## 3750 0.0000000 0.000000000 0.00000000
## 3751 0.0000000 0.000000000 0.00000000
## 3752 0.0000000 0.000000000 0.00000000
## 3753 0.0000000 0.000000000 0.00000000
## 3754 0.0000000 0.000000000 0.00000000
## 3755 0.0000000 0.000000000 0.00000000
## 3756 0.0000000 0.000000000 0.00000000
## 3757 0.0000000 0.000000000 0.00000000
## 3758 0.0000000 0.000000000 0.00000000
## 3759 0.0000000 0.000000000 0.00000000
## 3760 0.0000000 0.000000000 0.00000000
## 3761 0.0000000 0.000000000 0.00000000
## 3762 0.0000000 0.000000000 0.00000000
## 3763 0.0000000 0.000000000 0.00000000
## 3764 0.0000000 0.000000000 0.00000000
## 3765 0.0000000 0.000000000 0.00000000
## 3766 0.0000000 0.000000000 0.00000000
## 3767 0.0000000 0.000000000 0.00000000
## 3768 0.0000000 0.000000000 0.00000000
## 3769 0.0000000 0.000000000 0.00000000
## 3770 0.0000000 0.000000000 0.00000000
## 3771 0.0000000 0.000000000 0.00000000
## 3772 0.0000000 0.000000000 0.00000000
## 3773 0.0000000 0.000000000 0.00000000
## 3774 0.0000000 0.000000000 0.00000000
## 3775 0.0000000 0.000000000 0.00000000
## 3776 0.0000000 0.000000000 0.00000000
## 3777 0.0000000 0.000000000 0.00000000
## 3778 0.0000000 0.000000000 0.00000000
## 3779 0.0000000 0.000000000 0.00000000
## 3780 0.0000000 0.000000000 0.00000000
## 3781 0.0000000 0.000000000 0.00000000
## 3782 0.0000000 0.000000000 0.00000000
## 3783 0.0000000 0.000000000 0.00000000
## 3784 0.0000000 0.000000000 0.00000000
## 3785 0.0000000 0.000000000 0.00000000
## 3786 0.0000000 0.000000000 0.00000000
## 3787 0.0000000 0.000000000 0.00000000
## 3788 0.0000000 0.000000000 0.00000000
## 3789 0.0000000 0.000000000 0.00000000
## 3790 0.0000000 0.000000000 0.00000000
## 3791 0.0000000 0.000000000 0.00000000
## 3792 0.0000000 0.000000000 0.00000000
## 3793 0.0000000 0.000000000 0.00000000
## 3794 0.0000000 0.000000000 0.00000000
## 3795 0.0000000 0.000000000 0.00000000
## 3796 0.0000000 0.000000000 0.00000000
## 3797 0.0000000 0.000000000 0.00000000
## 3798 0.0000000 0.000000000 0.00000000
## 3799 0.0000000 0.000000000 0.00000000
## 3800 0.0000000 0.000000000 0.00000000
## 3801 0.0000000 0.000000000 0.00000000
## 3802 0.0000000 0.000000000 0.00000000
## 3803 0.0000000 0.000000000 0.00000000
## 3804 0.0000000 0.000000000 0.00000000
## 3805 0.0000000 0.000000000 0.00000000
## 3806 0.0000000 0.000000000 0.00000000
## 3807 0.0000000 0.000000000 0.00000000
## 3808 0.0000000 0.000000000 0.00000000
## 3809 0.0000000 0.000000000 0.00000000
## 3810 0.0000000 0.000000000 0.00000000
## 3811 0.0000000 0.000000000 0.00000000
## 3812 0.0000000 0.000000000 0.00000000
## 3813 0.0000000 0.000000000 0.00000000
## 3814 0.0000000 0.000000000 0.00000000
## 3815 0.0000000 0.000000000 0.00000000
## 3816 0.0000000 0.000000000 0.00000000
## 3817 0.0000000 0.000000000 0.00000000
## 3818 0.0000000 0.000000000 0.00000000
## 3819 0.0000000 0.000000000 0.00000000
## 3820 0.0000000 0.000000000 0.00000000
## 3821 0.0000000 0.000000000 0.00000000
## 3822 0.0000000 0.000000000 0.00000000
## 3823 0.0000000 0.000000000 0.00000000
## 3824 0.0000000 0.000000000 0.00000000
## 3825 0.0000000 0.000000000 0.00000000
## 3826 0.0000000 0.000000000 0.00000000
## 3827 0.0000000 0.000000000 0.00000000
## 3828 0.0000000 0.000000000 0.00000000
## 3829 0.0000000 0.000000000 0.00000000
## 3830 0.0000000 0.000000000 0.00000000
## 3831 0.0000000 0.000000000 0.00000000
## 3832 0.0000000 0.000000000 0.00000000
## 3833 0.0000000 0.000000000 0.00000000
## 3834 0.0000000 0.000000000 0.00000000
## 3835 0.0000000 0.000000000 0.00000000
## 3836 0.0000000 0.000000000 0.00000000
## 3837 0.0000000 0.000000000 0.00000000
## 3838 0.0000000 0.000000000 0.00000000
## 3839 0.0000000 0.000000000 0.00000000
## 3840 0.0000000 0.000000000 0.00000000
## 3841 0.0000000 0.000000000 0.00000000
## 3842 0.0000000 0.000000000 0.00000000
## 3843 0.0000000 0.000000000 0.00000000
## 3844 0.0000000 0.000000000 0.00000000
## 3845 0.0000000 0.000000000 0.00000000
## 3846 0.0000000 0.000000000 0.00000000
## 3847 0.0000000 0.000000000 0.00000000
## 3848 0.0000000 0.000000000 0.00000000
## 3849 0.0000000 0.000000000 0.00000000
## 3850 0.0000000 0.000000000 0.00000000
## 3851 0.0000000 0.000000000 0.00000000
## 3852 0.0000000 0.000000000 0.00000000
## 3853 0.0000000 0.000000000 0.00000000
## 3854 0.0000000 0.000000000 0.00000000
## 3855 0.0000000 0.000000000 0.00000000
## 3856 0.0000000 0.000000000 0.00000000
## 3857 0.0000000 0.000000000 0.00000000
## 3858 0.0000000 0.000000000 0.00000000
## 3859 0.0000000 0.000000000 0.00000000
## 3860 0.0000000 0.000000000 0.00000000
## 3861 0.0000000 0.000000000 0.00000000
## 3862 0.0000000 0.000000000 0.00000000
## 3863 0.0000000 0.000000000 0.00000000
## 3864 0.0000000 0.000000000 0.00000000
## 3865 0.0000000 0.000000000 0.00000000
## 3866 0.0000000 0.000000000 0.00000000
## 3867 0.0000000 0.000000000 0.00000000
## 3868 0.0000000 0.000000000 0.00000000
## 3869 0.0000000 0.000000000 0.00000000
## 3870 0.0000000 0.000000000 0.00000000
## 3871 0.0000000 0.000000000 0.00000000
## 3872 0.0000000 0.000000000 0.00000000
## 3873 0.0000000 0.000000000 0.00000000
## 3874 0.0000000 0.000000000 0.00000000
## 3875 0.0000000 0.000000000 0.00000000
## 3876 0.0000000 0.000000000 0.00000000
## 3877 0.0000000 0.000000000 0.00000000
## 3878 0.0000000 0.000000000 0.00000000
## 3879 0.0000000 0.000000000 0.00000000
## 3880 0.0000000 0.000000000 0.00000000
## 3881 0.0000000 0.000000000 0.00000000
## 3882 0.0000000 0.000000000 0.00000000
## 3883 0.0000000 0.000000000 0.00000000
## 3884 0.0000000 0.000000000 0.00000000
## 3885 0.0000000 0.000000000 0.00000000
## 3886 0.0000000 0.000000000 0.00000000
## 3887 0.0000000 0.000000000 0.00000000
## 3888 0.0000000 0.000000000 0.00000000
## 3889 0.0000000 0.000000000 0.00000000
## 3890 0.0000000 0.000000000 0.00000000
## 3891 0.0000000 0.000000000 0.00000000
## 3892 0.0000000 0.000000000 0.00000000
## 3893 0.0000000 0.000000000 0.00000000
## 3894 0.0000000 0.000000000 0.00000000
## 3895 0.0000000 0.000000000 0.00000000
## 3896 0.0000000 0.000000000 0.00000000
## 3897 0.0000000 0.000000000 0.00000000
## 3898 0.0000000 0.000000000 0.00000000
## 3899 0.0000000 0.000000000 0.00000000
## 3900 0.0000000 0.000000000 0.00000000
## 3901 0.0000000 0.000000000 0.00000000
## 3902 0.0000000 0.000000000 0.00000000
## 3903 0.0000000 0.000000000 0.00000000
## 3904 0.0000000 0.000000000 0.00000000
## 3905 0.0000000 0.000000000 0.00000000
## 3906 0.0000000 0.000000000 0.00000000
## 3907 0.0000000 0.000000000 0.00000000
## 3908 0.0000000 0.000000000 0.00000000
## 3909 0.0000000 0.000000000 0.00000000
## 3910 0.0000000 0.000000000 0.00000000
## 3911 0.0000000 0.000000000 0.00000000
## 3912 0.0000000 0.000000000 0.00000000
## 3913 0.0000000 0.000000000 0.00000000
## 3914 0.0000000 0.000000000 0.00000000
## 3915 0.0000000 0.000000000 0.00000000
## 3916 0.0000000 0.000000000 0.00000000
## 3917 0.0000000 0.000000000 0.00000000
## 3918 0.0000000 0.000000000 0.00000000
## 3919 0.0000000 0.000000000 0.00000000
## 3920 0.0000000 0.000000000 0.00000000
## 3921 0.0000000 0.000000000 0.00000000
## 3922 0.0000000 0.000000000 0.00000000
## 3923 0.0000000 0.000000000 0.00000000
## 3924 0.0000000 0.000000000 0.00000000
## 3925 0.0000000 0.000000000 0.00000000
## 3926 0.0000000 0.000000000 0.00000000
## 3927 0.0000000 0.000000000 0.00000000
## 3928 0.0000000 0.000000000 0.00000000
## 3929 0.0000000 0.000000000 0.00000000
## 3930 0.0000000 0.000000000 0.00000000
## 3931 0.0000000 0.000000000 0.00000000
## 3932 0.0000000 0.000000000 0.00000000
## 3933 0.0000000 0.000000000 0.00000000
## 3934 0.0000000 0.000000000 0.00000000
## 3935 0.0000000 0.000000000 0.00000000
## 3936 0.0000000 0.000000000 0.00000000
## 3937 0.0000000 0.000000000 0.00000000
## 3938 0.0000000 0.000000000 0.00000000
## 3939 0.0000000 0.000000000 0.00000000
## 3940 0.0000000 0.000000000 0.00000000
## 3941 0.0000000 0.000000000 0.00000000
## 3942 0.0000000 0.000000000 0.00000000
## 3943 0.0000000 0.000000000 0.00000000
## 3944 0.0000000 0.000000000 0.00000000
## 3945 0.0000000 0.000000000 0.00000000
## 3946 0.0000000 0.000000000 0.00000000
## 3947 0.0000000 0.000000000 0.00000000
## 3948 0.0000000 0.000000000 0.00000000
## 3949 0.0000000 0.000000000 0.00000000
## 3950 0.0000000 0.000000000 0.00000000
## 3951 0.0000000 0.000000000 0.00000000
## 3952 0.0000000 0.000000000 0.00000000
## 3953 0.0000000 0.000000000 0.00000000
## 3954 0.0000000 0.000000000 0.00000000
## 3955 0.0000000 0.000000000 0.00000000
## 3956 0.0000000 0.000000000 0.00000000
## 3957 0.0000000 0.000000000 0.00000000
## 3958 0.0000000 0.000000000 0.00000000
## 3959 0.0000000 0.000000000 0.00000000
## 3960 0.0000000 0.000000000 0.00000000
## 3961 0.0000000 0.000000000 0.00000000
## 3962 0.0000000 0.000000000 0.00000000
## 3963 0.0000000 0.000000000 0.00000000
## 3964 0.0000000 0.000000000 0.00000000
## 3965 0.0000000 0.000000000 0.00000000
## 3966 0.0000000 0.000000000 0.00000000
## 3967 0.0000000 0.000000000 0.00000000
## 3968 0.0000000 0.000000000 0.00000000
## 3969 0.0000000 0.000000000 0.00000000
## 3970 0.0000000 0.000000000 0.00000000
## 3971 0.0000000 0.000000000 0.00000000
## 3972 0.0000000 0.000000000 0.00000000
## 3973 0.0000000 0.000000000 0.00000000
## 3974 0.0000000 0.000000000 0.00000000
## 3975 0.0000000 0.000000000 0.00000000
## 3976 0.0000000 0.000000000 0.00000000
## 3977 0.0000000 0.000000000 0.00000000
## 3978 0.0000000 0.000000000 0.00000000
## 3979 0.0000000 0.000000000 0.00000000
## 3980 0.0000000 0.000000000 0.00000000
## 3981 0.0000000 0.000000000 0.00000000
## 3982 0.0000000 0.000000000 0.00000000
## 3983 0.0000000 0.000000000 0.00000000
## 3984 0.0000000 0.000000000 0.00000000
## 3985 0.0000000 0.000000000 0.00000000
## 3986 0.0000000 0.000000000 0.00000000
## 3987 0.0000000 0.000000000 0.00000000
## 3988 0.0000000 0.000000000 0.00000000
## 3989 0.0000000 0.000000000 0.00000000
## 3990 0.0000000 0.000000000 0.00000000
## 3991 0.0000000 0.000000000 0.00000000
## 3992 0.0000000 0.000000000 0.00000000
## 3993 0.0000000 0.000000000 0.00000000
## 3994 0.0000000 0.000000000 0.00000000
## 3995 0.0000000 0.000000000 0.00000000
## 3996 0.0000000 0.000000000 0.00000000
## 3997 0.0000000 0.000000000 0.00000000
## 3998 0.0000000 0.000000000 0.00000000
## 3999 0.0000000 0.000000000 0.00000000
## 4000 0.0000000 0.000000000 0.00000000
## 4001 0.0000000 0.000000000 0.00000000
## 4002 0.0000000 0.000000000 0.00000000
## 4003 0.0000000 0.000000000 0.00000000
## 4004 0.0000000 0.000000000 0.00000000
## 4005 0.0000000 0.000000000 0.00000000
## 4006 0.0000000 0.000000000 0.00000000
## 4007 0.0000000 0.000000000 0.00000000
## 4008 0.0000000 0.000000000 0.00000000
## 4009 0.0000000 0.000000000 0.00000000
## 4010 0.0000000 0.000000000 0.00000000
## 4011 0.0000000 0.000000000 0.00000000
## 4012 0.0000000 0.000000000 0.00000000
## 4013 0.0000000 0.000000000 0.00000000
## 4014 0.0000000 0.000000000 0.00000000
## 4015 0.0000000 0.000000000 0.00000000
## 4016 0.0000000 0.000000000 0.00000000
## 4017 0.0000000 0.000000000 0.00000000
## 4018 0.0000000 0.000000000 0.00000000
## 4019 0.0000000 0.000000000 0.00000000
## 4020 0.0000000 0.000000000 0.00000000
## 4021 0.0000000 0.000000000 0.00000000
## 4022 0.0000000 0.000000000 0.00000000
## 4023 0.0000000 0.000000000 0.00000000
## 4024 0.0000000 0.000000000 0.00000000
## 4025 0.0000000 0.000000000 0.00000000
## 4026 0.0000000 0.000000000 0.00000000
## 4027 0.0000000 0.000000000 0.00000000
## 4028 0.0000000 0.000000000 0.00000000
## 4029 0.0000000 0.000000000 0.00000000
## 4030 0.0000000 0.000000000 0.00000000
## 4031 0.0000000 0.000000000 0.00000000
## 4032 0.0000000 0.000000000 0.00000000
## 4033 0.0000000 0.000000000 0.00000000
## 4034 0.0000000 0.000000000 0.00000000
## 4035 0.0000000 0.000000000 0.00000000
## 4036 0.0000000 0.000000000 0.00000000
## 4037 0.0000000 0.000000000 0.00000000
## 4038 0.0000000 0.000000000 0.00000000
## 4039 0.0000000 0.000000000 0.00000000
## 4040 0.0000000 0.000000000 0.00000000
## 4041 0.0000000 0.000000000 0.00000000
## 4042 0.0000000 0.000000000 0.00000000
## 4043 0.0000000 0.000000000 0.00000000
## 4044 0.0000000 0.000000000 0.00000000
## 4045 0.0000000 0.000000000 0.00000000
## 4046 0.0000000 0.000000000 0.00000000
## 4047 0.0000000 0.000000000 0.00000000
## 4048 0.0000000 0.000000000 0.00000000
## 4049 0.0000000 0.000000000 0.00000000
## 4050 0.0000000 0.000000000 0.00000000
## 4051 0.0000000 0.000000000 0.00000000
## 4052 0.0000000 0.000000000 0.00000000
## 4053 0.0000000 0.000000000 0.00000000
## 4054 0.0000000 0.000000000 0.00000000
## 4055 0.0000000 0.000000000 0.00000000
## 4056 0.0000000 0.000000000 0.00000000
## 4057 0.0000000 0.000000000 0.00000000
## 4058 0.0000000 0.000000000 0.00000000
## 4059 0.0000000 0.000000000 0.00000000
## 4060 0.0000000 0.000000000 0.00000000
## 4061 0.0000000 0.000000000 0.00000000
## 4062 0.0000000 0.000000000 0.00000000
## 4063 0.0000000 0.000000000 0.00000000
## 4064 0.0000000 0.000000000 0.00000000
## 4065 0.0000000 0.000000000 0.00000000
## 4066 0.0000000 0.000000000 0.00000000
## 4067 0.0000000 0.000000000 0.00000000
## 4068 0.0000000 0.000000000 0.00000000
## 4069 0.0000000 0.000000000 0.00000000
## 4070 0.0000000 0.000000000 0.00000000
## 4071 0.0000000 0.000000000 0.00000000
## 4072 0.0000000 0.000000000 0.00000000
## 4073 0.0000000 0.000000000 0.00000000
## 4074 0.0000000 0.000000000 0.00000000
## 4075 0.0000000 0.000000000 0.00000000
## 4076 0.0000000 0.000000000 0.00000000
## 4077 0.0000000 0.000000000 0.00000000
## 4078 0.0000000 0.000000000 0.00000000
## 4079 0.0000000 0.000000000 0.00000000
## 4080 0.0000000 0.000000000 0.00000000
## 4081 0.0000000 0.000000000 0.00000000
## 4082 0.0000000 0.000000000 0.00000000
## 4083 0.0000000 0.000000000 0.00000000
## 4084 0.0000000 0.000000000 0.00000000
## 4085 0.0000000 0.000000000 0.00000000
## 4086 0.0000000 0.000000000 0.00000000
## 4087 0.0000000 0.000000000 0.00000000
## 4088 0.0000000 0.000000000 0.00000000
## 4089 0.0000000 0.000000000 0.00000000
## 4090 0.0000000 0.000000000 0.00000000
## 4091 0.0000000 0.000000000 0.00000000
## 4092 0.0000000 0.000000000 0.00000000
## 4093 0.0000000 0.000000000 0.00000000
## 4094 0.0000000 0.000000000 0.00000000
## 4095 0.0000000 0.000000000 0.00000000
## 4096 0.0000000 0.000000000 0.00000000
## 4097 0.0000000 0.000000000 0.00000000
## 4098 0.0000000 0.000000000 0.00000000
## 4099 0.0000000 0.000000000 0.00000000
## 4100 0.0000000 0.000000000 0.00000000
## 4101 0.0000000 0.000000000 0.00000000
## 4102 0.0000000 0.000000000 0.00000000
## 4103 0.0000000 0.000000000 0.00000000
## 4104 0.0000000 0.000000000 0.00000000
## 4105 0.0000000 0.000000000 0.00000000
## 4106 0.0000000 0.000000000 0.00000000
## 4107 0.0000000 0.000000000 0.00000000
## 4108 0.0000000 0.000000000 0.00000000
## 4109 0.0000000 0.000000000 0.00000000
## 4110 0.0000000 0.000000000 0.00000000
## 4111 0.0000000 0.000000000 0.00000000
## 4112 0.0000000 0.000000000 0.00000000
## 4113 0.0000000 0.000000000 0.00000000
## 4114 0.0000000 0.000000000 0.00000000
## 4115 0.0000000 0.000000000 0.00000000
## 4116 0.0000000 0.000000000 0.00000000
## 4117 0.0000000 0.000000000 0.00000000
## 4118 0.0000000 0.000000000 0.00000000
## 4119 0.0000000 0.000000000 0.00000000
## 4120 0.0000000 0.000000000 0.00000000
## 4121 0.0000000 0.000000000 0.00000000
## 4122 0.0000000 0.000000000 0.00000000
## 4123 0.0000000 0.000000000 0.00000000
## 4124 0.0000000 0.000000000 0.00000000
## 4125 0.0000000 0.000000000 0.00000000
## 4126 0.0000000 0.000000000 0.00000000
## 4127 0.0000000 0.000000000 0.00000000
## 4128 0.0000000 0.000000000 0.00000000
## 4129 0.0000000 0.000000000 0.00000000
## 4130 0.0000000 0.000000000 0.00000000
## 4131 0.0000000 0.000000000 0.00000000
## 4132 0.0000000 0.000000000 0.00000000
## 4133 0.0000000 0.000000000 0.00000000
## 4134 0.0000000 0.000000000 0.00000000
## 4135 0.0000000 0.000000000 0.00000000
## 4136 0.0000000 0.000000000 0.00000000
## 4137 0.0000000 0.000000000 0.00000000
## 4138 0.0000000 0.000000000 0.00000000
## 4139 0.0000000 0.000000000 0.00000000
## 4140 0.0000000 0.000000000 0.00000000
## 4141 0.0000000 0.000000000 0.00000000
## 4142 0.0000000 0.000000000 0.00000000
## 4143 0.0000000 0.000000000 0.00000000
## 4144 0.0000000 0.000000000 0.00000000
## 4145 0.0000000 0.000000000 0.00000000
## 4146 0.0000000 0.000000000 0.00000000
## 4147 0.0000000 0.000000000 0.00000000
## 4148 0.0000000 0.000000000 0.00000000
## 4149 0.0000000 0.000000000 0.00000000
## 4150 0.0000000 0.000000000 0.00000000
## 4151 0.0000000 0.000000000 0.00000000
## 4152 0.0000000 0.000000000 0.00000000
## 4153 0.0000000 0.000000000 0.00000000
## 4154 0.0000000 0.000000000 0.00000000
## 4155 0.0000000 0.000000000 0.00000000
## 4156 0.0000000 0.000000000 0.00000000
## 4157 0.0000000 0.000000000 0.00000000
## 4158 0.0000000 0.000000000 0.00000000
## 4159 0.0000000 0.000000000 0.00000000
## 4160 0.0000000 0.000000000 0.00000000
## 4161 0.0000000 0.000000000 0.00000000
## 4162 0.0000000 0.000000000 0.00000000
## 4163 0.0000000 0.000000000 0.00000000
## 4164 0.0000000 0.000000000 0.00000000
## 4165 0.0000000 0.000000000 0.00000000
## 4166 0.0000000 0.000000000 0.00000000
## 4167 0.0000000 0.000000000 0.00000000
## 4168 0.0000000 0.000000000 0.00000000
## 4169 0.0000000 0.000000000 0.00000000
## 4170 0.0000000 0.000000000 0.00000000
## 4171 0.0000000 0.000000000 0.00000000
## 4172 0.0000000 0.000000000 0.00000000
## 4173 0.0000000 0.000000000 0.00000000
## 4174 0.0000000 0.000000000 0.00000000
## 4175 0.0000000 0.000000000 0.00000000
## 4176 0.0000000 0.000000000 0.00000000
## 4177 0.0000000 0.000000000 0.00000000
## 4178 0.0000000 0.000000000 0.00000000
## 4179 0.0000000 0.000000000 0.00000000
## 4180 0.0000000 0.000000000 0.00000000
## 4181 0.0000000 0.000000000 0.00000000
## 4182 0.0000000 0.000000000 0.00000000
## 4183 0.0000000 0.000000000 0.00000000
## 4184 0.0000000 0.000000000 0.00000000
## 4185 0.0000000 0.000000000 0.00000000
## 4186 0.0000000 0.000000000 0.00000000
## 4187 0.0000000 0.000000000 0.00000000
## 4188 0.0000000 0.000000000 0.00000000
## 4189 0.0000000 0.000000000 0.00000000
## 4190 0.0000000 0.000000000 0.00000000
## 4191 0.0000000 0.000000000 0.00000000
## 4192 0.0000000 0.000000000 0.00000000
## 4193 0.0000000 0.000000000 0.00000000
## 4194 0.0000000 0.000000000 0.00000000
## 4195 0.0000000 0.000000000 0.00000000
## 4196 0.0000000 0.000000000 0.00000000
## 4197 0.0000000 0.000000000 0.00000000
## 4198 0.0000000 0.000000000 0.00000000
## 4199 0.0000000 0.000000000 0.00000000
## 4200 0.0000000 0.000000000 0.00000000
## 4201 0.0000000 0.000000000 0.00000000
## 4202 0.0000000 0.000000000 0.00000000
## 4203 0.0000000 0.000000000 0.00000000
## 4204 0.0000000 0.000000000 0.00000000
## 4205 0.0000000 0.000000000 0.00000000
## 4206 0.0000000 0.000000000 0.00000000
## 4207 0.0000000 0.000000000 0.00000000
## 4208 0.0000000 0.000000000 0.00000000
## 4209 0.0000000 0.000000000 0.00000000
## 4210 0.0000000 0.000000000 0.00000000
## 4211 0.0000000 0.000000000 0.00000000
## 4212 0.0000000 0.000000000 0.00000000
## 4213 0.0000000 0.000000000 0.00000000
## 4214 0.0000000 0.000000000 0.00000000
## 4215 0.0000000 0.000000000 0.00000000
## 4216 0.0000000 0.000000000 0.00000000
## 4217 0.0000000 0.000000000 0.00000000
## 4218 0.0000000 0.000000000 0.00000000
## 4219 0.0000000 0.000000000 0.00000000
## 4220 0.0000000 0.000000000 0.00000000
## 4221 0.0000000 0.000000000 0.00000000
## 4222 0.0000000 0.000000000 0.00000000
## Hyper_Foreground_Gene_Hits Hyper_Background_Gene_Hits
## 1 7 12
## 2 7 12
## 3 3 3
## 4 1 1
## 5 9 17
## 6 5 11
## 7 5 11
## 8 7 8
## 9 5 7
## 10 68 152
## 11 1 1
## 12 1 1
## 13 1 1
## 14 1 1
## 15 1 1
## 16 1 1
## 17 1 1
## 18 4 5
## 19 2 3
## 20 4 8
## 21 5 9
## 22 3 3
## 23 2 4
## 24 3 3
## 25 1 1
## 26 1 1
## 27 2 2
## 28 3 5
## 29 3 4
## 30 3 5
## 31 5 9
## 32 3 7
## 33 1 1
## 34 2 3
## 35 1 1
## 36 1 1
## 37 1 1
## 38 2 3
## 39 1 1
## 40 1 1
## 41 8 17
## 42 2 2
## 43 2 3
## 44 2 3
## 45 3 4
## 46 1 1
## 47 1 1
## 48 1 1
## 49 1 1
## 50 1 1
## 51 1 1
## 52 1 1
## 53 1 1
## 54 1 1
## 55 1 1
## 56 1 1
## 57 1 1
## 58 1 1
## 59 1 1
## 60 1 1
## 61 1 1
## 62 1 1
## 63 1 1
## 64 1 1
## 65 1 1
## 66 1 1
## 67 1 1
## 68 1 1
## 69 1 1
## 70 1 1
## 71 1 1
## 72 6 8
## 73 132 328
## 74 4 8
## 75 4 6
## 76 2 2
## 77 10 24
## 78 1 2
## 79 2 2
## 80 2 2
## 81 1 1
## 82 1 1
## 83 1 1
## 84 1 1
## 85 1 1
## 86 1 1
## 87 1 1
## 88 1 1
## 89 1 1
## 90 1 1
## 91 1 1
## 92 3 3
## 93 2 3
## 94 2 7
## 95 4 8
## 96 6 14
## 97 6 20
## 98 5 7
## 99 1 3
## 100 1 2
## 101 3 5
## 102 2 4
## 103 8 15
## 104 2 2
## 105 1 2
## 106 1 1
## 107 1 1
## 108 2 2
## 109 1 1
## 110 1 2
## 111 1 3
## 112 1 3
## 113 1 1
## 114 1 1
## 115 1 1
## 116 1 2
## 117 1 1
## 118 1 1
## 119 1 1
## 120 2 2
## 121 1 1
## 122 1 1
## 123 1 1
## 124 1 1
## 125 1 1
## 126 1 1
## 127 1 1
## 128 1 1
## 129 1 1
## 130 1 1
## 131 1 1
## 132 1 1
## 133 1 1
## 134 1 1
## 135 1 1
## 136 1 1
## 137 1 1
## 138 1 2
## 139 1 1
## 140 1 2
## 141 1 1
## 142 1 1
## 143 1 1
## 144 1 1
## 145 1 1
## 146 1 1
## 147 1 1
## 148 1 1
## 149 16 33
## 150 16 33
## 151 4 7
## 152 5 13
## 153 4 10
## 154 4 7
## 155 4 6
## 156 4 4
## 157 5 7
## 158 2 2
## 159 3 4
## 160 3 4
## 161 2 3
## 162 21 37
## 163 3 8
## 164 3 6
## 165 185 465
## 166 43 103
## 167 20 36
## 168 3 8
## 169 1 1
## 170 3 5
## 171 2 4
## 172 1 3
## 173 2 2
## 174 4 9
## 175 4 9
## 176 186 470
## 177 5 11
## 178 14 42
## 179 2 5
## 180 2 2
## 181 1 2
## 182 2 3
## 183 2 2
## 184 1 1
## 185 1 2
## 186 1 2
## 187 1 1
## 188 1 1
## 189 1 1
## 190 1 1
## 191 2 3
## 192 1 1
## 193 1 1
## 194 1 1
## 195 2 2
## 196 1 1
## 197 1 2
## 198 2 3
## 199 1 1
## 200 1 1
## 201 1 2
## 202 1 1
## 203 1 2
## 204 2 2
## 205 1 1
## 206 1 2
## 207 34 72
## 208 1 3
## 209 4 10
## 210 4 9
## 211 5 12
## 212 1 1
## 213 1 1
## 214 1 1
## 215 1 1
## 216 1 1
## 217 1 1
## 218 1 1
## 219 1 1
## 220 1 1
## 221 1 1
## 222 1 1
## 223 1 1
## 224 1 1
## 225 1 1
## 226 1 1
## 227 1 1
## 228 1 1
## 229 1 1
## 230 1 1
## 231 1 1
## 232 1 1
## 233 1 1
## 234 1 1
## 235 1 1
## 236 1 1
## 237 1 1
## 238 1 1
## 239 1 1
## 240 1 1
## 241 1 1
## 242 1 1
## 243 1 1
## 244 1 1
## 245 1 1
## 246 1 1
## 247 1 1
## 248 1 1
## 249 1 1
## 250 1 1
## 251 1 1
## 252 1 1
## 253 1 1
## 254 1 1
## 255 1 1
## 256 1 1
## 257 1 1
## 258 1 1
## 259 1 1
## 260 1 1
## 261 1 1
## 262 1 1
## 263 1 1
## 264 1 1
## 265 1 1
## 266 1 1
## 267 8 17
## 268 1 2
## 269 1 2
## 270 3 5
## 271 2 3
## 272 1 2
## 273 1 4
## 274 12 26
## 275 5 13
## 276 2 4
## 277 2 4
## 278 4 8
## 279 4 7
## 280 3 7
## 281 7 17
## 282 26 52
## 283 6 13
## 284 4 10
## 285 2 3
## 286 1 3
## 287 1 2
## 288 1 2
## 289 2 3
## 290 1 1
## 291 1 2
## 292 1 2
## 293 1 2
## 294 2 3
## 295 1 1
## 296 1 1
## 297 1 2
## 298 2 3
## 299 1 1
## 300 2 3
## 301 1 2
## 302 2 7
## 303 1 4
## 304 1 4
## 305 1 4
## 306 2 5
## 307 1 4
## 308 3 5
## 309 2 3
## 310 2 3
## 311 1 2
## 312 12 24
## 313 9 20
## 314 5 10
## 315 23 48
## 316 32 74
## 317 31 66
## 318 3 10
## 319 1 4
## 320 1 5
## 321 2 3
## 322 3 5
## 323 3 3
## 324 1 4
## 325 2 3
## 326 2 3
## 327 2 3
## 328 2 5
## 329 2 3
## 330 2 3
## 331 3 6
## 332 2 3
## 333 19 40
## 334 3 8
## 335 6 12
## 336 2 4
## 337 1 2
## 338 2 2
## 339 1 1
## 340 1 1
## 341 2 4
## 342 2 4
## 343 1 1
## 344 1 2
## 345 1 1
## 346 1 5
## 347 2 2
## 348 1 1
## 349 1 1
## 350 1 2
## 351 1 2
## 352 1 1
## 353 1 1
## 354 1 1
## 355 1 1
## 356 1 1
## 357 1 1
## 358 1 2
## 359 1 1
## 360 1 2
## 361 1 2
## 362 1 2
## 363 1 2
## 364 1 1
## 365 1 2
## 366 1 1
## 367 1 1
## 368 1 2
## 369 1 1
## 370 1 1
## 371 1 1
## 372 1 1
## 373 1 1
## 374 1 1
## 375 1 1
## 376 1 1
## 377 1 2
## 378 1 1
## 379 1 1
## 380 1 1
## 381 1 1
## 382 1 2
## 383 1 2
## 384 1 1
## 385 1 1
## 386 2 6
## 387 4 7
## 388 8 18
## 389 7 14
## 390 67 154
## 391 6 13
## 392 16 39
## 393 2 5
## 394 4 7
## 395 12 33
## 396 12 27
## 397 2 3
## 398 16 34
## 399 16 34
## 400 16 34
## 401 8 20
## 402 5 7
## 403 3 6
## 404 5 12
## 405 13 22
## 406 21 52
## 407 17 48
## 408 10 22
## 409 5 10
## 410 10 26
## 411 1 1
## 412 2 5
## 413 2 3
## 414 1 4
## 415 1 5
## 416 1 5
## 417 1 2
## 418 1 1
## 419 1 2
## 420 2 3
## 421 30 65
## 422 3 6
## 423 2 3
## 424 2 3
## 425 81 203
## 426 8 18
## 427 4 11
## 428 3 6
## 429 2 6
## 430 2 3
## 431 1 1
## 432 3 7
## 433 3 3
## 434 1 1
## 435 1 2
## 436 1 1
## 437 1 1
## 438 1 2
## 439 1 2
## 440 1 1
## 441 1 1
## 442 1 2
## 443 1 1
## 444 1 2
## 445 1 1
## 446 1 1
## 447 1 2
## 448 1 1
## 449 1 1
## 450 1 1
## 451 1 1
## 452 1 1
## 453 1 2
## 454 1 2
## 455 1 1
## 456 1 2
## 457 1 1
## 458 1 1
## 459 1 1
## 460 1 1
## 461 1 1
## 462 1 1
## 463 1 1
## 464 1 3
## 465 1 1
## 466 1 2
## 467 1 1
## 468 1 1
## 469 1 1
## 470 1 1
## 471 1 1
## 472 1 1
## 473 1 1
## 474 1 1
## 475 1 3
## 476 1 3
## 477 1 1
## 478 1 1
## 479 1 1
## 480 1 3
## 481 3 5
## 482 3 7
## 483 3 8
## 484 2 5
## 485 1 4
## 486 1 4
## 487 1 2
## 488 2 5
## 489 1 4
## 490 2 4
## 491 2 4
## 492 1 2
## 493 6 14
## 494 3 11
## 495 8 21
## 496 1 1
## 497 2 4
## 498 1 2
## 499 1 1
## 500 1 1
## 501 1 1
## 502 3 6
## 503 1 1
## 504 2 4
## 505 4 11
## 506 4 8
## 507 4 8
## 508 8 24
## 509 6 16
## 510 2 5
## 511 2 4
## 512 2 6
## 513 4 8
## 514 2 6
## 515 3 11
## 516 16 43
## 517 3 9
## 518 3 5
## 519 5 9
## 520 400 1119
## 521 1 1
## 522 1 5
## 523 1 3
## 524 1 2
## 525 1 3
## 526 2 3
## 527 1 5
## 528 2 4
## 529 1 5
## 530 1 2
## 531 1 2
## 532 3 7
## 533 6 20
## 534 15 45
## 535 2 4
## 536 28 58
## 537 28 58
## 538 3 7
## 539 3 12
## 540 1 1
## 541 1 1
## 542 1 2
## 543 1 2
## 544 1 2
## 545 1 3
## 546 1 2
## 547 1 3
## 548 1 2
## 549 1 1
## 550 1 1
## 551 1 2
## 552 1 2
## 553 1 2
## 554 1 2
## 555 1 2
## 556 1 2
## 557 1 4
## 558 1 1
## 559 1 2
## 560 1 2
## 561 1 1
## 562 1 1
## 563 1 1
## 564 1 2
## 565 1 1
## 566 1 1
## 567 1 1
## 568 1 2
## 569 1 2
## 570 1 1
## 571 1 1
## 572 1 3
## 573 1 1
## 574 1 1
## 575 1 1
## 576 1 3
## 577 1 3
## 578 1 1
## 579 1 1
## 580 1 1
## 581 1 1
## 582 3 7
## 583 3 7
## 584 8 21
## 585 8 21
## 586 5 12
## 587 4 12
## 588 3 12
## 589 4 12
## 590 3 12
## 591 4 12
## 592 50 127
## 593 8 18
## 594 3 7
## 595 3 8
## 596 4 12
## 597 2 4
## 598 6 16
## 599 1 2
## 600 1 6
## 601 1 4
## 602 16 39
## 603 41 97
## 604 25 56
## 605 25 56
## 606 3 8
## 607 48 124
## 608 4 10
## 609 3 9
## 610 5 13
## 611 4 10
## 612 3 9
## 613 2 7
## 614 2 7
## 615 3 5
## 616 2 2
## 617 2 8
## 618 4 12
## 619 1 1
## 620 1 1
## 621 1 1
## 622 1 1
## 623 1 1
## 624 1 3
## 625 1 3
## 626 1 3
## 627 1 3
## 628 1 1
## 629 1 3
## 630 1 1
## 631 1 1
## 632 1 3
## 633 1 2
## 634 1 2
## 635 1 2
## 636 1 1
## 637 1 1
## 638 1 3
## 639 1 1
## 640 1 2
## 641 1 3
## 642 1 3
## 643 1 1
## 644 1 1
## 645 1 3
## 646 1 3
## 647 1 2
## 648 2 5
## 649 2 5
## 650 2 6
## 651 26 56
## 652 5 15
## 653 4 12
## 654 1 1
## 655 2 2
## 656 1 2
## 657 2 2
## 658 2 4
## 659 2 3
## 660 2 2
## 661 1 3
## 662 40 98
## 663 3 11
## 664 2 7
## 665 9 23
## 666 12 23
## 667 30 81
## 668 21 50
## 669 32 76
## 670 32 76
## 671 2 8
## 672 48 126
## 673 48 126
## 674 8 18
## 675 8 18
## 676 40 96
## 677 15 38
## 678 4 12
## 679 5 14
## 680 3 6
## 681 55 146
## 682 55 146
## 683 55 146
## 684 55 146
## 685 55 146
## 686 8 14
## 687 31 75
## 688 10 23
## 689 8 23
## 690 8 23
## 691 8 23
## 692 3 8
## 693 2 3
## 694 2 3
## 695 2 3
## 696 1 3
## 697 1 4
## 698 1 1
## 699 1 1
## 700 1 2
## 701 1 2
## 702 1 1
## 703 1 1
## 704 1 2
## 705 1 2
## 706 1 3
## 707 1 2
## 708 1 2
## 709 1 1
## 710 1 5
## 711 1 1
## 712 1 1
## 713 1 1
## 714 1 2
## 715 1 1
## 716 1 1
## 717 1 2
## 718 1 1
## 719 2 3
## 720 2 5
## 721 2 7
## 722 2 2
## 723 2 3
## 724 4 13
## 725 7 17
## 726 55 148
## 727 55 148
## 728 55 148
## 729 3 13
## 730 1 6
## 731 1 2
## 732 1 3
## 733 2 9
## 734 1 2
## 735 1 6
## 736 2 7
## 737 3 9
## 738 3 11
## 739 3 7
## 740 1 3
## 741 1 2
## 742 1 8
## 743 1 2
## 744 1 4
## 745 1 5
## 746 1 5
## 747 1 2
## 748 1 4
## 749 1 1
## 750 1 3
## 751 1 4
## 752 1 2
## 753 1 4
## 754 26 60
## 755 62 168
## 756 62 168
## 757 3 9
## 758 4 13
## 759 13 32
## 760 2 3
## 761 1 3
## 762 2 8
## 763 1 1
## 764 162 444
## 765 60 170
## 766 4 11
## 767 2 7
## 768 2 7
## 769 2 7
## 770 1 4
## 771 1 2
## 772 1 4
## 773 1 4
## 774 1 1
## 775 1 5
## 776 1 2
## 777 1 2
## 778 1 2
## 779 1 5
## 780 1 3
## 781 1 1
## 782 1 3
## 783 1 3
## 784 20 57
## 785 25 58
## 786 9 25
## 787 2 8
## 788 25 60
## 789 336 922
## 790 5 11
## 791 4 17
## 792 162 453
## 793 8 23
## 794 13 28
## 795 5 18
## 796 75 211
## 797 1 4
## 798 2 9
## 799 2 10
## 800 3 6
## 801 21 59
## 802 21 59
## 803 21 59
## 804 1 1
## 805 1 6
## 806 1 6
## 807 1 6
## 808 1 2
## 809 1 4
## 810 1 6
## 811 1 2
## 812 1 1
## 813 1 2
## 814 1 3
## 815 1 2
## 816 1 5
## 817 1 1
## 818 1 2
## 819 1 1
## 820 1 6
## 821 1 4
## 822 1 2
## 823 1 6
## 824 14 34
## 825 107 289
## 826 19 57
## 827 3 8
## 828 1 3
## 829 3 6
## 830 7 17
## 831 1 7
## 832 2 8
## 833 1 3
## 834 1 2
## 835 1 2
## 836 1 3
## 837 28 82
## 838 9 36
## 839 3 12
## 840 2 10
## 841 4 9
## 842 107 291
## 843 4 11
## 844 5 10
## 845 62 184
## 846 8 23
## 847 67 192
## 848 2 7
## 849 2 7
## 850 22 63
## 851 4 10
## 852 1 4
## 853 1 4
## 854 1 7
## 855 1 3
## 856 1 6
## 857 1 7
## 858 1 5
## 859 1 5
## 860 2 4
## 861 6 25
## 862 4 10
## 863 5 18
## 864 3 13
## 865 3 15
## 866 9 23
## 867 11 41
## 868 1 3
## 869 1 6
## 870 1 3
## 871 1 3
## 872 1 6
## 873 1 1
## 874 3 11
## 875 65 184
## 876 3 5
## 877 3 8
## 878 3 14
## 879 3 8
## 880 3 8
## 881 33 110
## 882 6 23
## 883 1 2
## 884 1 6
## 885 1 2
## 886 1 3
## 887 1 8
## 888 1 4
## 889 1 2
## 890 1 2
## 891 1 2
## 892 1 5
## 893 13 44
## 894 2 3
## 895 23 70
## 896 1 8
## 897 1 5
## 898 1 4
## 899 3 16
## 900 20 60
## 901 2 8
## 902 2 12
## 903 2 8
## 904 1 5
## 905 1 8
## 906 1 4
## 907 1 3
## 908 1 4
## 909 2 11
## 910 1 6
## 911 6 20
## 912 6 20
## 913 2 7
## 914 2 7
## 915 22 70
## 916 10 37
## 917 10 37
## 918 1 3
## 919 1 4
## 920 12 42
## 921 15 49
## 922 18 59
## 923 2 12
## 924 1 5
## 925 7 33
## 926 2 17
## 927 3 20
## 928 10 34
## 929 7 25
## 930 12 52
## 931 2 15
## 932 1 5
## 933 6 32
## 934 1 7
## 935 1 8
## 936 5 26
## 937 21 81
## 938 1 9
## 939 5 17
## 940 6 30
## 941 23 85
## 942 3 22
## 943 26 95
## 944 17 75
## 945 7 28
## 946 30 106
## 947 1 15
## 948 16 70
## 949 18 79
## 950 3 21
## 951 17 86
## 952 3 26
## 953 1 17
## 954 24 104
## 955 23 97
## 956 1 14
## 957 22 108
## 958 4 35
## 959 2 20
## 960 0 0
## 961 0 0
## 962 0 0
## 963 0 0
## 964 0 2
## 965 0 0
## 966 0 0
## 967 0 0
## 968 0 0
## 969 0 0
## 970 0 0
## 971 0 0
## 972 0 0
## 973 0 0
## 974 0 0
## 975 0 2
## 976 0 0
## 977 0 0
## 978 0 1
## 979 0 0
## 980 0 1
## 981 0 0
## 982 0 0
## 983 0 0
## 984 0 0
## 985 0 0
## 986 0 0
## 987 0 0
## 988 0 0
## 989 0 1
## 990 0 0
## 991 0 1
## 992 0 0
## 993 0 0
## 994 0 0
## 995 0 1
## 996 0 0
## 997 0 2
## 998 0 0
## 999 0 1
## 1000 0 0
## 1001 0 0
## 1002 0 0
## 1003 0 0
## 1004 0 0
## 1005 0 0
## 1006 0 0
## 1007 0 0
## 1008 0 0
## 1009 0 0
## 1010 0 0
## 1011 0 0
## 1012 0 1
## 1013 0 0
## 1014 0 0
## 1015 0 0
## 1016 0 0
## 1017 0 0
## 1018 0 0
## 1019 0 0
## 1020 0 0
## 1021 0 0
## 1022 0 0
## 1023 0 0
## 1024 0 0
## 1025 0 0
## 1026 0 0
## 1027 0 0
## 1028 0 0
## 1029 0 0
## 1030 0 0
## 1031 0 0
## 1032 0 1
## 1033 0 1
## 1034 0 0
## 1035 0 1
## 1036 0 1
## 1037 0 1
## 1038 0 0
## 1039 0 0
## 1040 0 0
## 1041 0 0
## 1042 0 1
## 1043 0 0
## 1044 0 0
## 1045 0 0
## 1046 0 0
## 1047 0 1
## 1048 0 0
## 1049 0 2
## 1050 0 5
## 1051 0 0
## 1052 0 0
## 1053 0 0
## 1054 0 0
## 1055 0 0
## 1056 0 0
## 1057 0 1
## 1058 0 1
## 1059 0 1
## 1060 0 0
## 1061 0 0
## 1062 0 0
## 1063 0 0
## 1064 0 0
## 1065 0 0
## 1066 0 1
## 1067 0 0
## 1068 0 0
## 1069 0 0
## 1070 0 0
## 1071 0 0
## 1072 0 0
## 1073 0 2
## 1074 0 0
## 1075 0 0
## 1076 0 0
## 1077 0 0
## 1078 0 1
## 1079 0 0
## 1080 0 0
## 1081 0 0
## 1082 0 0
## 1083 0 0
## 1084 0 0
## 1085 0 0
## 1086 0 0
## 1087 0 1
## 1088 0 1
## 1089 0 0
## 1090 0 0
## 1091 0 0
## 1092 0 0
## 1093 0 0
## 1094 0 0
## 1095 0 1
## 1096 0 0
## 1097 0 0
## 1098 0 18
## 1099 0 0
## 1100 0 0
## 1101 0 0
## 1102 0 1
## 1103 0 0
## 1104 0 0
## 1105 0 0
## 1106 0 0
## 1107 0 0
## 1108 0 0
## 1109 0 0
## 1110 0 3
## 1111 0 0
## 1112 0 1
## 1113 0 1
## 1114 0 1
## 1115 0 0
## 1116 0 0
## 1117 0 1
## 1118 0 1
## 1119 0 0
## 1120 0 1
## 1121 0 0
## 1122 0 1
## 1123 0 0
## 1124 0 2
## 1125 0 3
## 1126 0 0
## 1127 0 1
## 1128 0 0
## 1129 0 0
## 1130 0 0
## 1131 0 0
## 1132 0 0
## 1133 0 0
## 1134 0 0
## 1135 0 0
## 1136 0 0
## 1137 0 0
## 1138 0 0
## 1139 0 1
## 1140 0 0
## 1141 0 1
## 1142 0 0
## 1143 0 0
## 1144 0 0
## 1145 0 0
## 1146 0 1
## 1147 0 0
## 1148 0 1
## 1149 0 6
## 1150 0 1
## 1151 0 0
## 1152 0 0
## 1153 0 1
## 1154 0 0
## 1155 0 0
## 1156 0 1
## 1157 0 0
## 1158 0 0
## 1159 0 0
## 1160 0 0
## 1161 0 0
## 1162 0 0
## 1163 0 0
## 1164 0 2
## 1165 0 0
## 1166 0 0
## 1167 0 0
## 1168 0 0
## 1169 0 1
## 1170 0 0
## 1171 0 1
## 1172 0 0
## 1173 0 1
## 1174 0 0
## 1175 0 0
## 1176 0 0
## 1177 0 0
## 1178 0 0
## 1179 0 0
## 1180 0 0
## 1181 0 0
## 1182 0 0
## 1183 0 0
## 1184 0 0
## 1185 0 0
## 1186 0 0
## 1187 0 1
## 1188 0 0
## 1189 0 0
## 1190 0 0
## 1191 0 0
## 1192 0 0
## 1193 0 0
## 1194 0 0
## 1195 0 0
## 1196 0 0
## 1197 0 0
## 1198 0 0
## 1199 0 0
## 1200 0 1
## 1201 0 0
## 1202 0 0
## 1203 0 0
## 1204 0 1
## 1205 0 0
## 1206 0 0
## 1207 0 0
## 1208 0 0
## 1209 0 0
## 1210 0 0
## 1211 0 0
## 1212 0 0
## 1213 0 2
## 1214 0 0
## 1215 0 0
## 1216 0 0
## 1217 0 0
## 1218 0 0
## 1219 0 0
## 1220 0 0
## 1221 0 0
## 1222 0 0
## 1223 0 1
## 1224 0 0
## 1225 0 0
## 1226 0 1
## 1227 0 0
## 1228 0 0
## 1229 0 1
## 1230 0 0
## 1231 0 0
## 1232 0 0
## 1233 0 0
## 1234 0 0
## 1235 0 0
## 1236 0 0
## 1237 0 0
## 1238 0 0
## 1239 0 1
## 1240 0 0
## 1241 0 1
## 1242 0 0
## 1243 0 0
## 1244 0 0
## 1245 0 0
## 1246 0 1
## 1247 0 0
## 1248 0 0
## 1249 0 0
## 1250 0 0
## 1251 0 0
## 1252 0 0
## 1253 0 0
## 1254 0 0
## 1255 0 0
## 1256 0 0
## 1257 0 0
## 1258 0 1
## 1259 0 0
## 1260 0 0
## 1261 0 0
## 1262 0 0
## 1263 0 0
## 1264 0 0
## 1265 0 0
## 1266 0 0
## 1267 0 0
## 1268 0 0
## 1269 0 0
## 1270 0 0
## 1271 0 0
## 1272 0 0
## 1273 0 0
## 1274 0 0
## 1275 0 0
## 1276 0 0
## 1277 0 0
## 1278 0 0
## 1279 0 0
## 1280 0 0
## 1281 0 0
## 1282 0 0
## 1283 0 0
## 1284 0 0
## 1285 0 0
## 1286 0 0
## 1287 0 0
## 1288 0 0
## 1289 0 0
## 1290 0 0
## 1291 0 0
## 1292 0 0
## 1293 0 0
## 1294 0 0
## 1295 0 0
## 1296 0 0
## 1297 0 0
## 1298 0 0
## 1299 0 1
## 1300 0 0
## 1301 0 0
## 1302 0 1
## 1303 0 0
## 1304 0 0
## 1305 0 0
## 1306 0 0
## 1307 0 0
## 1308 0 0
## 1309 0 0
## 1310 0 0
## 1311 0 0
## 1312 0 1
## 1313 0 0
## 1314 0 1
## 1315 0 1
## 1316 0 0
## 1317 0 0
## 1318 0 0
## 1319 0 0
## 1320 0 0
## 1321 0 1
## 1322 0 0
## 1323 0 0
## 1324 0 0
## 1325 0 1
## 1326 0 1
## 1327 0 0
## 1328 0 0
## 1329 0 0
## 1330 0 0
## 1331 0 0
## 1332 0 0
## 1333 0 0
## 1334 0 0
## 1335 0 0
## 1336 0 0
## 1337 0 0
## 1338 0 0
## 1339 0 0
## 1340 0 0
## 1341 0 0
## 1342 0 0
## 1343 0 1
## 1344 0 0
## 1345 0 0
## 1346 0 0
## 1347 0 0
## 1348 0 0
## 1349 0 0
## 1350 0 0
## 1351 0 0
## 1352 0 1
## 1353 0 0
## 1354 0 0
## 1355 0 3
## 1356 0 0
## 1357 0 1
## 1358 0 0
## 1359 0 0
## 1360 0 0
## 1361 0 0
## 1362 0 0
## 1363 0 0
## 1364 0 1
## 1365 0 1
## 1366 0 0
## 1367 0 0
## 1368 0 0
## 1369 0 0
## 1370 0 0
## 1371 0 0
## 1372 0 0
## 1373 0 0
## 1374 0 0
## 1375 0 0
## 1376 0 0
## 1377 0 0
## 1378 0 0
## 1379 0 0
## 1380 0 0
## 1381 0 0
## 1382 0 0
## 1383 0 0
## 1384 0 0
## 1385 0 0
## 1386 0 0
## 1387 0 0
## 1388 0 1
## 1389 0 0
## 1390 0 0
## 1391 0 1
## 1392 0 0
## 1393 0 0
## 1394 0 0
## 1395 0 0
## 1396 0 1
## 1397 0 0
## 1398 0 0
## 1399 0 0
## 1400 0 0
## 1401 0 0
## 1402 0 4
## 1403 0 0
## 1404 0 0
## 1405 0 0
## 1406 0 0
## 1407 0 0
## 1408 0 0
## 1409 0 0
## 1410 0 0
## 1411 0 0
## 1412 0 1
## 1413 0 0
## 1414 0 0
## 1415 0 0
## 1416 0 0
## 1417 0 0
## 1418 0 0
## 1419 0 0
## 1420 0 2
## 1421 0 0
## 1422 0 1
## 1423 0 0
## 1424 0 0
## 1425 0 0
## 1426 0 5
## 1427 0 0
## 1428 0 0
## 1429 0 0
## 1430 0 0
## 1431 0 0
## 1432 0 1
## 1433 0 0
## 1434 0 1
## 1435 0 0
## 1436 0 0
## 1437 0 1
## 1438 0 1
## 1439 0 0
## 1440 0 0
## 1441 0 0
## 1442 0 0
## 1443 0 0
## 1444 0 0
## 1445 0 0
## 1446 0 0
## 1447 0 0
## 1448 0 0
## 1449 0 0
## 1450 0 0
## 1451 0 0
## 1452 0 1
## 1453 0 0
## 1454 0 0
## 1455 0 1
## 1456 0 0
## 1457 0 0
## 1458 0 1
## 1459 0 0
## 1460 0 0
## 1461 0 0
## 1462 0 0
## 1463 0 0
## 1464 0 0
## 1465 0 0
## 1466 0 0
## 1467 0 0
## 1468 0 0
## 1469 0 0
## 1470 0 0
## 1471 0 0
## 1472 0 0
## 1473 0 0
## 1474 0 0
## 1475 0 0
## 1476 0 0
## 1477 0 0
## 1478 0 0
## 1479 0 0
## 1480 0 0
## 1481 0 0
## 1482 0 5
## 1483 0 0
## 1484 0 1
## 1485 0 0
## 1486 0 1
## 1487 0 0
## 1488 0 0
## 1489 0 0
## 1490 0 0
## 1491 0 0
## 1492 0 0
## 1493 0 0
## 1494 0 0
## 1495 0 0
## 1496 0 0
## 1497 0 0
## 1498 0 0
## 1499 0 2
## 1500 0 0
## 1501 0 0
## 1502 0 0
## 1503 0 0
## 1504 0 0
## 1505 0 0
## 1506 0 0
## 1507 0 1
## 1508 0 0
## 1509 0 1
## 1510 0 0
## 1511 0 0
## 1512 0 0
## 1513 0 0
## 1514 0 0
## 1515 0 0
## 1516 0 0
## 1517 0 0
## 1518 0 0
## 1519 0 0
## 1520 0 0
## 1521 0 0
## 1522 0 0
## 1523 0 0
## 1524 0 0
## 1525 0 0
## 1526 0 1
## 1527 0 0
## 1528 0 1
## 1529 0 0
## 1530 0 1
## 1531 0 1
## 1532 0 1
## 1533 0 0
## 1534 0 0
## 1535 0 0
## 1536 0 0
## 1537 0 0
## 1538 0 0
## 1539 0 1
## 1540 0 0
## 1541 0 0
## 1542 0 0
## 1543 0 0
## 1544 0 0
## 1545 0 0
## 1546 0 0
## 1547 0 0
## 1548 0 0
## 1549 0 0
## 1550 0 0
## 1551 0 0
## 1552 0 0
## 1553 0 1
## 1554 0 0
## 1555 0 0
## 1556 0 1
## 1557 0 0
## 1558 0 0
## 1559 0 1
## 1560 0 0
## 1561 0 0
## 1562 0 0
## 1563 0 0
## 1564 0 0
## 1565 0 0
## 1566 0 0
## 1567 0 0
## 1568 0 0
## 1569 0 0
## 1570 0 0
## 1571 0 0
## 1572 0 1
## 1573 0 0
## 1574 0 0
## 1575 0 0
## 1576 0 0
## 1577 0 0
## 1578 0 0
## 1579 0 0
## 1580 0 0
## 1581 0 0
## 1582 0 0
## 1583 0 0
## 1584 0 1
## 1585 0 2
## 1586 0 0
## 1587 0 0
## 1588 0 1
## 1589 0 0
## 1590 0 0
## 1591 0 0
## 1592 0 1
## 1593 0 1
## 1594 0 0
## 1595 0 2
## 1596 0 0
## 1597 0 0
## 1598 0 0
## 1599 0 1
## 1600 0 0
## 1601 0 0
## 1602 0 0
## 1603 0 0
## 1604 0 0
## 1605 0 0
## 1606 0 1
## 1607 0 0
## 1608 0 4
## 1609 0 0
## 1610 0 0
## 1611 0 0
## 1612 0 0
## 1613 0 0
## 1614 0 0
## 1615 0 0
## 1616 0 0
## 1617 0 0
## 1618 0 2
## 1619 0 0
## 1620 0 0
## 1621 0 0
## 1622 0 0
## 1623 0 0
## 1624 0 0
## 1625 0 0
## 1626 0 0
## 1627 0 0
## 1628 0 0
## 1629 0 0
## 1630 0 0
## 1631 0 0
## 1632 0 0
## 1633 0 0
## 1634 0 0
## 1635 0 0
## 1636 0 1
## 1637 0 0
## 1638 0 0
## 1639 0 0
## 1640 0 0
## 1641 0 0
## 1642 0 0
## 1643 0 0
## 1644 0 0
## 1645 0 0
## 1646 0 0
## 1647 0 0
## 1648 0 0
## 1649 0 0
## 1650 0 0
## 1651 0 0
## 1652 0 0
## 1653 0 0
## 1654 0 0
## 1655 0 0
## 1656 0 0
## 1657 0 0
## 1658 0 0
## 1659 0 0
## 1660 0 0
## 1661 0 0
## 1662 0 0
## 1663 0 0
## 1664 0 0
## 1665 0 1
## 1666 0 0
## 1667 0 0
## 1668 0 0
## 1669 0 0
## 1670 0 0
## 1671 0 0
## 1672 0 0
## 1673 0 1
## 1674 0 0
## 1675 0 0
## 1676 0 0
## 1677 0 0
## 1678 0 1
## 1679 0 1
## 1680 0 0
## 1681 0 0
## 1682 0 0
## 1683 0 0
## 1684 0 0
## 1685 0 0
## 1686 0 0
## 1687 0 0
## 1688 0 1
## 1689 0 0
## 1690 0 0
## 1691 0 0
## 1692 0 2
## 1693 0 0
## 1694 0 1
## 1695 0 0
## 1696 0 0
## 1697 0 1
## 1698 0 1
## 1699 0 0
## 1700 0 1
## 1701 0 0
## 1702 0 3
## 1703 0 1
## 1704 0 1
## 1705 0 1
## 1706 0 0
## 1707 0 1
## 1708 0 0
## 1709 0 0
## 1710 0 0
## 1711 0 0
## 1712 0 0
## 1713 0 0
## 1714 0 0
## 1715 0 0
## 1716 0 0
## 1717 0 0
## 1718 0 0
## 1719 0 1
## 1720 0 0
## 1721 0 0
## 1722 0 0
## 1723 0 0
## 1724 0 0
## 1725 0 0
## 1726 0 0
## 1727 0 0
## 1728 0 0
## 1729 0 0
## 1730 0 0
## 1731 0 0
## 1732 0 0
## 1733 0 0
## 1734 0 0
## 1735 0 0
## 1736 0 1
## 1737 0 0
## 1738 0 0
## 1739 0 0
## 1740 0 1
## 1741 0 0
## 1742 0 0
## 1743 0 1
## 1744 0 2
## 1745 0 2
## 1746 0 2
## 1747 0 0
## 1748 0 1
## 1749 0 1
## 1750 0 0
## 1751 0 0
## 1752 0 0
## 1753 0 0
## 1754 0 0
## 1755 0 0
## 1756 0 0
## 1757 0 0
## 1758 0 1
## 1759 0 1
## 1760 0 0
## 1761 0 0
## 1762 0 0
## 1763 0 0
## 1764 0 0
## 1765 0 0
## 1766 0 0
## 1767 0 0
## 1768 0 0
## 1769 0 0
## 1770 0 0
## 1771 0 0
## 1772 0 1
## 1773 0 1
## 1774 0 0
## 1775 0 0
## 1776 0 0
## 1777 0 0
## 1778 0 0
## 1779 0 0
## 1780 0 1
## 1781 0 2
## 1782 0 1
## 1783 0 3
## 1784 0 0
## 1785 0 0
## 1786 0 0
## 1787 0 0
## 1788 0 0
## 1789 0 0
## 1790 0 0
## 1791 0 0
## 1792 0 0
## 1793 0 0
## 1794 0 0
## 1795 0 1
## 1796 0 0
## 1797 0 0
## 1798 0 1
## 1799 0 0
## 1800 0 1
## 1801 0 0
## 1802 0 2
## 1803 0 0
## 1804 0 0
## 1805 0 0
## 1806 0 0
## 1807 0 0
## 1808 0 0
## 1809 0 0
## 1810 0 1
## 1811 0 0
## 1812 0 0
## 1813 0 3
## 1814 0 0
## 1815 0 0
## 1816 0 1
## 1817 0 0
## 1818 0 0
## 1819 0 3
## 1820 0 0
## 1821 0 0
## 1822 0 0
## 1823 0 0
## 1824 0 2
## 1825 0 0
## 1826 0 1
## 1827 0 0
## 1828 0 0
## 1829 0 0
## 1830 0 0
## 1831 0 0
## 1832 0 1
## 1833 0 0
## 1834 0 0
## 1835 0 0
## 1836 0 0
## 1837 0 0
## 1838 0 0
## 1839 0 1
## 1840 0 0
## 1841 0 0
## 1842 0 1
## 1843 0 0
## 1844 0 1
## 1845 0 0
## 1846 0 0
## 1847 0 0
## 1848 0 0
## 1849 0 0
## 1850 0 0
## 1851 0 0
## 1852 0 1
## 1853 0 1
## 1854 0 5
## 1855 0 0
## 1856 0 0
## 1857 0 3
## 1858 0 0
## 1859 0 0
## 1860 0 0
## 1861 0 1
## 1862 0 0
## 1863 0 0
## 1864 0 0
## 1865 0 0
## 1866 0 0
## 1867 0 0
## 1868 0 2
## 1869 0 0
## 1870 0 0
## 1871 0 0
## 1872 0 0
## 1873 0 0
## 1874 0 1
## 1875 0 0
## 1876 0 0
## 1877 0 2
## 1878 0 1
## 1879 0 1
## 1880 0 1
## 1881 0 0
## 1882 0 1
## 1883 0 1
## 1884 0 3
## 1885 0 0
## 1886 0 0
## 1887 0 0
## 1888 0 0
## 1889 0 0
## 1890 0 0
## 1891 0 0
## 1892 0 0
## 1893 0 0
## 1894 0 0
## 1895 0 0
## 1896 0 0
## 1897 0 0
## 1898 0 0
## 1899 0 2
## 1900 0 1
## 1901 0 1
## 1902 0 0
## 1903 0 0
## 1904 0 0
## 1905 0 0
## 1906 0 0
## 1907 0 0
## 1908 0 0
## 1909 0 0
## 1910 0 0
## 1911 0 0
## 1912 0 1
## 1913 0 2
## 1914 0 0
## 1915 0 0
## 1916 0 1
## 1917 0 1
## 1918 0 0
## 1919 0 2
## 1920 0 1
## 1921 0 1
## 1922 0 0
## 1923 0 0
## 1924 0 0
## 1925 0 0
## 1926 0 0
## 1927 0 0
## 1928 0 1
## 1929 0 2
## 1930 0 0
## 1931 0 1
## 1932 0 0
## 1933 0 0
## 1934 0 0
## 1935 0 0
## 1936 0 0
## 1937 0 0
## 1938 0 0
## 1939 0 0
## 1940 0 1
## 1941 0 1
## 1942 0 0
## 1943 0 0
## 1944 0 0
## 1945 0 0
## 1946 0 0
## 1947 0 0
## 1948 0 0
## 1949 0 1
## 1950 0 0
## 1951 0 0
## 1952 0 0
## 1953 0 0
## 1954 0 2
## 1955 0 0
## 1956 0 0
## 1957 0 0
## 1958 0 0
## 1959 0 0
## 1960 0 3
## 1961 0 1
## 1962 0 1
## 1963 0 0
## 1964 0 1
## 1965 0 1
## 1966 0 1
## 1967 0 0
## 1968 0 1
## 1969 0 0
## 1970 0 1
## 1971 0 2
## 1972 0 0
## 1973 0 0
## 1974 0 0
## 1975 0 0
## 1976 0 0
## 1977 0 0
## 1978 0 0
## 1979 0 0
## 1980 0 0
## 1981 0 0
## 1982 0 0
## 1983 0 0
## 1984 0 0
## 1985 0 0
## 1986 0 0
## 1987 0 0
## 1988 0 2
## 1989 0 1
## 1990 0 0
## 1991 0 1
## 1992 0 0
## 1993 0 0
## 1994 0 0
## 1995 0 0
## 1996 0 1
## 1997 0 0
## 1998 0 0
## 1999 0 0
## 2000 0 0
## 2001 0 0
## 2002 0 0
## 2003 0 2
## 2004 0 0
## 2005 0 0
## 2006 0 1
## 2007 0 0
## 2008 0 0
## 2009 0 0
## 2010 0 0
## 2011 0 0
## 2012 0 0
## 2013 0 0
## 2014 0 0
## 2015 0 0
## 2016 0 0
## 2017 0 0
## 2018 0 1
## 2019 0 0
## 2020 0 1
## 2021 0 0
## 2022 0 0
## 2023 0 0
## 2024 0 0
## 2025 0 0
## 2026 0 0
## 2027 0 0
## 2028 0 0
## 2029 0 2
## 2030 0 3
## 2031 0 0
## 2032 0 1
## 2033 0 0
## 2034 0 0
## 2035 0 0
## 2036 0 0
## 2037 0 0
## 2038 0 0
## 2039 0 0
## 2040 0 0
## 2041 0 0
## 2042 0 2
## 2043 0 0
## 2044 0 0
## 2045 0 0
## 2046 0 0
## 2047 0 0
## 2048 0 0
## 2049 0 1
## 2050 0 1
## 2051 0 0
## 2052 0 0
## 2053 0 0
## 2054 0 0
## 2055 0 0
## 2056 0 0
## 2057 0 0
## 2058 0 0
## 2059 0 0
## 2060 0 1
## 2061 0 0
## 2062 0 0
## 2063 0 0
## 2064 0 0
## 2065 0 0
## 2066 0 0
## 2067 0 1
## 2068 0 0
## 2069 0 0
## 2070 0 0
## 2071 0 0
## 2072 0 0
## 2073 0 0
## 2074 0 0
## 2075 0 0
## 2076 0 0
## 2077 0 0
## 2078 0 0
## 2079 0 0
## 2080 0 0
## 2081 0 0
## 2082 0 0
## 2083 0 0
## 2084 0 0
## 2085 0 0
## 2086 0 1
## 2087 0 0
## 2088 0 3
## 2089 0 1
## 2090 0 0
## 2091 0 0
## 2092 0 1
## 2093 0 0
## 2094 0 0
## 2095 0 0
## 2096 0 1
## 2097 0 0
## 2098 0 0
## 2099 0 0
## 2100 0 0
## 2101 0 0
## 2102 0 0
## 2103 0 0
## 2104 0 0
## 2105 0 1
## 2106 0 0
## 2107 0 0
## 2108 0 0
## 2109 0 1
## 2110 0 0
## 2111 0 0
## 2112 0 0
## 2113 0 0
## 2114 0 0
## 2115 0 1
## 2116 0 0
## 2117 0 7
## 2118 0 0
## 2119 0 0
## 2120 0 0
## 2121 0 0
## 2122 0 0
## 2123 0 2
## 2124 0 0
## 2125 0 0
## 2126 0 0
## 2127 0 0
## 2128 0 1
## 2129 0 0
## 2130 0 0
## 2131 0 0
## 2132 0 0
## 2133 0 3
## 2134 0 0
## 2135 0 1
## 2136 0 0
## 2137 0 0
## 2138 0 0
## 2139 0 0
## 2140 0 0
## 2141 0 0
## 2142 0 0
## 2143 0 0
## 2144 0 0
## 2145 0 0
## 2146 0 0
## 2147 0 0
## 2148 0 0
## 2149 0 2
## 2150 0 0
## 2151 0 1
## 2152 0 0
## 2153 0 0
## 2154 0 0
## 2155 0 0
## 2156 0 0
## 2157 0 0
## 2158 0 1
## 2159 0 0
## 2160 0 1
## 2161 0 1
## 2162 0 0
## 2163 0 0
## 2164 0 0
## 2165 0 0
## 2166 0 0
## 2167 0 0
## 2168 0 0
## 2169 0 0
## 2170 0 0
## 2171 0 0
## 2172 0 0
## 2173 0 0
## 2174 0 0
## 2175 0 0
## 2176 0 0
## 2177 0 0
## 2178 0 0
## 2179 0 0
## 2180 0 0
## 2181 0 0
## 2182 0 0
## 2183 0 0
## 2184 0 0
## 2185 0 0
## 2186 0 1
## 2187 0 0
## 2188 0 0
## 2189 0 0
## 2190 0 0
## 2191 0 0
## 2192 0 0
## 2193 0 0
## 2194 0 0
## 2195 0 0
## 2196 0 0
## 2197 0 0
## 2198 0 1
## 2199 0 0
## 2200 0 0
## 2201 0 0
## 2202 0 0
## 2203 0 0
## 2204 0 0
## 2205 0 0
## 2206 0 0
## 2207 0 0
## 2208 0 0
## 2209 0 0
## 2210 0 0
## 2211 0 0
## 2212 0 0
## 2213 0 0
## 2214 0 1
## 2215 0 1
## 2216 0 0
## 2217 0 0
## 2218 0 1
## 2219 0 0
## 2220 0 0
## 2221 0 0
## 2222 0 1
## 2223 0 0
## 2224 0 0
## 2225 0 0
## 2226 0 0
## 2227 0 0
## 2228 0 0
## 2229 0 0
## 2230 0 1
## 2231 0 0
## 2232 0 0
## 2233 0 0
## 2234 0 0
## 2235 0 0
## 2236 0 2
## 2237 0 1
## 2238 0 0
## 2239 0 0
## 2240 0 0
## 2241 0 0
## 2242 0 0
## 2243 0 0
## 2244 0 0
## 2245 0 0
## 2246 0 0
## 2247 0 0
## 2248 0 0
## 2249 0 0
## 2250 0 0
## 2251 0 0
## 2252 0 1
## 2253 0 0
## 2254 0 2
## 2255 0 0
## 2256 0 1
## 2257 0 0
## 2258 0 0
## 2259 0 1
## 2260 0 1
## 2261 0 0
## 2262 0 0
## 2263 0 0
## 2264 0 0
## 2265 0 0
## 2266 0 0
## 2267 0 0
## 2268 0 0
## 2269 0 0
## 2270 0 0
## 2271 0 0
## 2272 0 2
## 2273 0 0
## 2274 0 0
## 2275 0 0
## 2276 0 0
## 2277 0 0
## 2278 0 0
## 2279 0 0
## 2280 0 0
## 2281 0 0
## 2282 0 0
## 2283 0 1
## 2284 0 0
## 2285 0 0
## 2286 0 1
## 2287 0 0
## 2288 0 0
## 2289 0 0
## 2290 0 1
## 2291 0 2
## 2292 0 1
## 2293 0 1
## 2294 0 1
## 2295 0 2
## 2296 0 0
## 2297 0 0
## 2298 0 0
## 2299 0 0
## 2300 0 0
## 2301 0 1
## 2302 0 1
## 2303 0 0
## 2304 0 1
## 2305 0 0
## 2306 0 0
## 2307 0 0
## 2308 0 2
## 2309 0 3
## 2310 0 1
## 2311 0 0
## 2312 0 1
## 2313 0 0
## 2314 0 0
## 2315 0 0
## 2316 0 0
## 2317 0 2
## 2318 0 1
## 2319 0 0
## 2320 0 0
## 2321 0 0
## 2322 0 0
## 2323 0 0
## 2324 0 0
## 2325 0 0
## 2326 0 0
## 2327 0 0
## 2328 0 0
## 2329 0 0
## 2330 0 0
## 2331 0 0
## 2332 0 0
## 2333 0 0
## 2334 0 0
## 2335 0 0
## 2336 0 0
## 2337 0 0
## 2338 0 0
## 2339 0 1
## 2340 0 0
## 2341 0 0
## 2342 0 0
## 2343 0 0
## 2344 0 0
## 2345 0 0
## 2346 0 0
## 2347 0 0
## 2348 0 1
## 2349 0 1
## 2350 0 2
## 2351 0 2
## 2352 0 0
## 2353 0 0
## 2354 0 0
## 2355 0 0
## 2356 0 1
## 2357 0 1
## 2358 0 0
## 2359 0 2
## 2360 0 0
## 2361 0 0
## 2362 0 0
## 2363 0 0
## 2364 0 1
## 2365 0 1
## 2366 0 0
## 2367 0 0
## 2368 0 0
## 2369 0 0
## 2370 0 1
## 2371 0 0
## 2372 0 4
## 2373 0 0
## 2374 0 1
## 2375 0 2
## 2376 0 0
## 2377 0 0
## 2378 0 0
## 2379 0 0
## 2380 0 0
## 2381 0 0
## 2382 0 0
## 2383 0 0
## 2384 0 0
## 2385 0 1
## 2386 0 0
## 2387 0 0
## 2388 0 0
## 2389 0 0
## 2390 0 1
## 2391 0 0
## 2392 0 2
## 2393 0 0
## 2394 0 0
## 2395 0 0
## 2396 0 0
## 2397 0 0
## 2398 0 0
## 2399 0 2
## 2400 0 0
## 2401 0 1
## 2402 0 1
## 2403 0 0
## 2404 0 0
## 2405 0 0
## 2406 0 0
## 2407 0 0
## 2408 0 0
## 2409 0 0
## 2410 0 0
## 2411 0 0
## 2412 0 0
## 2413 0 0
## 2414 0 0
## 2415 0 0
## 2416 0 0
## 2417 0 0
## 2418 0 1
## 2419 0 1
## 2420 0 3
## 2421 0 0
## 2422 0 1
## 2423 0 1
## 2424 0 1
## 2425 0 0
## 2426 0 0
## 2427 0 0
## 2428 0 0
## 2429 0 0
## 2430 0 0
## 2431 0 0
## 2432 0 0
## 2433 0 0
## 2434 0 0
## 2435 0 0
## 2436 0 0
## 2437 0 0
## 2438 0 0
## 2439 0 0
## 2440 0 0
## 2441 0 1
## 2442 0 0
## 2443 0 0
## 2444 0 0
## 2445 0 0
## 2446 0 0
## 2447 0 0
## 2448 0 0
## 2449 0 0
## 2450 0 0
## 2451 0 0
## 2452 0 0
## 2453 0 1
## 2454 0 1
## 2455 0 0
## 2456 0 0
## 2457 0 1
## 2458 0 0
## 2459 0 1
## 2460 0 0
## 2461 0 0
## 2462 0 1
## 2463 0 0
## 2464 0 0
## 2465 0 0
## 2466 0 0
## 2467 0 1
## 2468 0 0
## 2469 0 0
## 2470 0 0
## 2471 0 0
## 2472 0 0
## 2473 0 0
## 2474 0 3
## 2475 0 0
## 2476 0 2
## 2477 0 1
## 2478 0 0
## 2479 0 0
## 2480 0 0
## 2481 0 0
## 2482 0 0
## 2483 0 0
## 2484 0 0
## 2485 0 0
## 2486 0 0
## 2487 0 0
## 2488 0 1
## 2489 0 0
## 2490 0 2
## 2491 0 0
## 2492 0 0
## 2493 0 1
## 2494 0 0
## 2495 0 0
## 2496 0 0
## 2497 0 1
## 2498 0 0
## 2499 0 0
## 2500 0 0
## 2501 0 2
## 2502 0 0
## 2503 0 0
## 2504 0 0
## 2505 0 0
## 2506 0 0
## 2507 0 1
## 2508 0 1
## 2509 0 0
## 2510 0 0
## 2511 0 1
## 2512 0 0
## 2513 0 3
## 2514 0 0
## 2515 0 0
## 2516 0 0
## 2517 0 0
## 2518 0 1
## 2519 0 0
## 2520 0 1
## 2521 0 2
## 2522 0 0
## 2523 0 1
## 2524 0 0
## 2525 0 0
## 2526 0 0
## 2527 0 1
## 2528 0 0
## 2529 0 0
## 2530 0 0
## 2531 0 0
## 2532 0 0
## 2533 0 0
## 2534 0 0
## 2535 0 1
## 2536 0 0
## 2537 0 0
## 2538 0 0
## 2539 0 0
## 2540 0 0
## 2541 0 4
## 2542 0 0
## 2543 0 1
## 2544 0 0
## 2545 0 0
## 2546 0 0
## 2547 0 1
## 2548 0 0
## 2549 0 0
## 2550 0 1
## 2551 0 0
## 2552 0 0
## 2553 0 0
## 2554 0 0
## 2555 0 2
## 2556 0 0
## 2557 0 2
## 2558 0 0
## 2559 0 0
## 2560 0 0
## 2561 0 0
## 2562 0 1
## 2563 0 0
## 2564 0 0
## 2565 0 0
## 2566 0 0
## 2567 0 0
## 2568 0 0
## 2569 0 0
## 2570 0 0
## 2571 0 0
## 2572 0 0
## 2573 0 0
## 2574 0 1
## 2575 0 1
## 2576 0 1
## 2577 0 0
## 2578 0 1
## 2579 0 0
## 2580 0 0
## 2581 0 0
## 2582 0 1
## 2583 0 0
## 2584 0 0
## 2585 0 0
## 2586 0 0
## 2587 0 0
## 2588 0 1
## 2589 0 0
## 2590 0 0
## 2591 0 0
## 2592 0 0
## 2593 0 0
## 2594 0 0
## 2595 0 0
## 2596 0 0
## 2597 0 0
## 2598 0 0
## 2599 0 1
## 2600 0 0
## 2601 0 1
## 2602 0 0
## 2603 0 0
## 2604 0 0
## 2605 0 0
## 2606 0 0
## 2607 0 0
## 2608 0 0
## 2609 0 0
## 2610 0 0
## 2611 0 0
## 2612 0 0
## 2613 0 1
## 2614 0 0
## 2615 0 1
## 2616 0 5
## 2617 0 0
## 2618 0 1
## 2619 0 0
## 2620 0 1
## 2621 0 2
## 2622 0 0
## 2623 0 0
## 2624 0 0
## 2625 0 0
## 2626 0 0
## 2627 0 0
## 2628 0 0
## 2629 0 0
## 2630 0 0
## 2631 0 0
## 2632 0 1
## 2633 0 0
## 2634 0 0
## 2635 0 1
## 2636 0 0
## 2637 0 0
## 2638 0 0
## 2639 0 0
## 2640 0 0
## 2641 0 0
## 2642 0 2
## 2643 0 0
## 2644 0 0
## 2645 0 0
## 2646 0 1
## 2647 0 1
## 2648 0 0
## 2649 0 0
## 2650 0 0
## 2651 0 1
## 2652 0 1
## 2653 0 0
## 2654 0 0
## 2655 0 1
## 2656 0 1
## 2657 0 0
## 2658 0 0
## 2659 0 0
## 2660 0 0
## 2661 0 1
## 2662 0 0
## 2663 0 0
## 2664 0 0
## 2665 0 0
## 2666 0 1
## 2667 0 0
## 2668 0 0
## 2669 0 0
## 2670 0 1
## 2671 0 0
## 2672 0 0
## 2673 0 0
## 2674 0 0
## 2675 0 0
## 2676 0 1
## 2677 0 0
## 2678 0 1
## 2679 0 0
## 2680 0 0
## 2681 0 0
## 2682 0 0
## 2683 0 1
## 2684 0 0
## 2685 0 0
## 2686 0 0
## 2687 0 0
## 2688 0 0
## 2689 0 0
## 2690 0 1
## 2691 0 0
## 2692 0 1
## 2693 0 0
## 2694 0 0
## 2695 0 0
## 2696 0 0
## 2697 0 0
## 2698 0 0
## 2699 0 1
## 2700 0 1
## 2701 0 0
## 2702 0 1
## 2703 0 3
## 2704 0 0
## 2705 0 0
## 2706 0 0
## 2707 0 0
## 2708 0 0
## 2709 0 0
## 2710 0 0
## 2711 0 1
## 2712 0 5
## 2713 0 0
## 2714 0 0
## 2715 0 0
## 2716 0 0
## 2717 0 0
## 2718 0 0
## 2719 0 0
## 2720 0 0
## 2721 0 0
## 2722 0 0
## 2723 0 0
## 2724 0 0
## 2725 0 0
## 2726 0 0
## 2727 0 0
## 2728 0 1
## 2729 0 0
## 2730 0 0
## 2731 0 0
## 2732 0 0
## 2733 0 0
## 2734 0 0
## 2735 0 0
## 2736 0 0
## 2737 0 0
## 2738 0 0
## 2739 0 0
## 2740 0 1
## 2741 0 0
## 2742 0 0
## 2743 0 0
## 2744 0 0
## 2745 0 0
## 2746 0 0
## 2747 0 0
## 2748 0 0
## 2749 0 2
## 2750 0 1
## 2751 0 1
## 2752 0 0
## 2753 0 0
## 2754 0 0
## 2755 0 2
## 2756 0 2
## 2757 0 0
## 2758 0 0
## 2759 0 4
## 2760 0 1
## 2761 0 0
## 2762 0 0
## 2763 0 0
## 2764 0 0
## 2765 0 0
## 2766 0 0
## 2767 0 0
## 2768 0 0
## 2769 0 1
## 2770 0 0
## 2771 0 1
## 2772 0 0
## 2773 0 2
## 2774 0 0
## 2775 0 0
## 2776 0 0
## 2777 0 0
## 2778 0 0
## 2779 0 0
## 2780 0 0
## 2781 0 0
## 2782 0 1
## 2783 0 1
## 2784 0 1
## 2785 0 0
## 2786 0 0
## 2787 0 0
## 2788 0 0
## 2789 0 0
## 2790 0 0
## 2791 0 0
## 2792 0 0
## 2793 0 0
## 2794 0 0
## 2795 0 1
## 2796 0 1
## 2797 0 0
## 2798 0 0
## 2799 0 0
## 2800 0 0
## 2801 0 1
## 2802 0 0
## 2803 0 0
## 2804 0 2
## 2805 0 0
## 2806 0 1
## 2807 0 0
## 2808 0 0
## 2809 0 0
## 2810 0 0
## 2811 0 0
## 2812 0 0
## 2813 0 0
## 2814 0 0
## 2815 0 1
## 2816 0 0
## 2817 0 0
## 2818 0 0
## 2819 0 0
## 2820 0 1
## 2821 0 0
## 2822 0 0
## 2823 0 0
## 2824 0 0
## 2825 0 0
## 2826 0 0
## 2827 0 0
## 2828 0 0
## 2829 0 0
## 2830 0 0
## 2831 0 0
## 2832 0 0
## 2833 0 0
## 2834 0 1
## 2835 0 1
## 2836 0 0
## 2837 0 0
## 2838 0 1
## 2839 0 0
## 2840 0 1
## 2841 0 0
## 2842 0 0
## 2843 0 0
## 2844 0 0
## 2845 0 0
## 2846 0 0
## 2847 0 0
## 2848 0 0
## 2849 0 0
## 2850 0 0
## 2851 0 0
## 2852 0 2
## 2853 0 0
## 2854 0 0
## 2855 0 0
## 2856 0 0
## 2857 0 0
## 2858 0 0
## 2859 0 0
## 2860 0 0
## 2861 0 0
## 2862 0 0
## 2863 0 0
## 2864 0 0
## 2865 0 0
## 2866 0 0
## 2867 0 0
## 2868 0 0
## 2869 0 0
## 2870 0 0
## 2871 0 0
## 2872 0 0
## 2873 0 1
## 2874 0 0
## 2875 0 0
## 2876 0 0
## 2877 0 0
## 2878 0 0
## 2879 0 0
## 2880 0 0
## 2881 0 0
## 2882 0 1
## 2883 0 0
## 2884 0 0
## 2885 0 0
## 2886 0 0
## 2887 0 0
## 2888 0 0
## 2889 0 0
## 2890 0 0
## 2891 0 0
## 2892 0 0
## 2893 0 0
## 2894 0 0
## 2895 0 0
## 2896 0 0
## 2897 0 0
## 2898 0 0
## 2899 0 0
## 2900 0 0
## 2901 0 0
## 2902 0 0
## 2903 0 0
## 2904 0 0
## 2905 0 1
## 2906 0 0
## 2907 0 0
## 2908 0 0
## 2909 0 0
## 2910 0 2
## 2911 0 0
## 2912 0 0
## 2913 0 0
## 2914 0 0
## 2915 0 1
## 2916 0 0
## 2917 0 0
## 2918 0 0
## 2919 0 0
## 2920 0 0
## 2921 0 0
## 2922 0 0
## 2923 0 0
## 2924 0 0
## 2925 0 0
## 2926 0 0
## 2927 0 0
## 2928 0 0
## 2929 0 0
## 2930 0 0
## 2931 0 0
## 2932 0 0
## 2933 0 0
## 2934 0 0
## 2935 0 0
## 2936 0 0
## 2937 0 1
## 2938 0 0
## 2939 0 0
## 2940 0 0
## 2941 0 0
## 2942 0 0
## 2943 0 0
## 2944 0 0
## 2945 0 0
## 2946 0 0
## 2947 0 0
## 2948 0 2
## 2949 0 0
## 2950 0 1
## 2951 0 0
## 2952 0 0
## 2953 0 0
## 2954 0 0
## 2955 0 0
## 2956 0 0
## 2957 0 0
## 2958 0 0
## 2959 0 1
## 2960 0 0
## 2961 0 0
## 2962 0 4
## 2963 0 0
## 2964 0 2
## 2965 0 0
## 2966 0 0
## 2967 0 1
## 2968 0 1
## 2969 0 0
## 2970 0 0
## 2971 0 0
## 2972 0 0
## 2973 0 0
## 2974 0 0
## 2975 0 0
## 2976 0 5
## 2977 0 0
## 2978 0 0
## 2979 0 0
## 2980 0 0
## 2981 0 2
## 2982 0 0
## 2983 0 0
## 2984 0 1
## 2985 0 0
## 2986 0 0
## 2987 0 0
## 2988 0 0
## 2989 0 0
## 2990 0 0
## 2991 0 0
## 2992 0 0
## 2993 0 2
## 2994 0 0
## 2995 0 0
## 2996 0 0
## 2997 0 0
## 2998 0 0
## 2999 0 1
## 3000 0 0
## 3001 0 0
## 3002 0 0
## 3003 0 0
## 3004 0 0
## 3005 0 0
## 3006 0 0
## 3007 0 0
## 3008 0 0
## 3009 0 0
## 3010 0 0
## 3011 0 0
## 3012 0 0
## 3013 0 0
## 3014 0 0
## 3015 0 0
## 3016 0 0
## 3017 0 0
## 3018 0 1
## 3019 0 0
## 3020 0 0
## 3021 0 0
## 3022 0 0
## 3023 0 0
## 3024 0 0
## 3025 0 0
## 3026 0 0
## 3027 0 0
## 3028 0 0
## 3029 0 2
## 3030 0 0
## 3031 0 0
## 3032 0 1
## 3033 0 0
## 3034 0 1
## 3035 0 0
## 3036 0 0
## 3037 0 0
## 3038 0 0
## 3039 0 0
## 3040 0 0
## 3041 0 0
## 3042 0 1
## 3043 0 0
## 3044 0 0
## 3045 0 1
## 3046 0 0
## 3047 0 0
## 3048 0 0
## 3049 0 0
## 3050 0 0
## 3051 0 0
## 3052 0 0
## 3053 0 0
## 3054 0 0
## 3055 0 0
## 3056 0 0
## 3057 0 0
## 3058 0 1
## 3059 0 0
## 3060 0 0
## 3061 0 0
## 3062 0 0
## 3063 0 0
## 3064 0 1
## 3065 0 0
## 3066 0 1
## 3067 0 0
## 3068 0 0
## 3069 0 0
## 3070 0 1
## 3071 0 0
## 3072 0 1
## 3073 0 1
## 3074 0 1
## 3075 0 1
## 3076 0 0
## 3077 0 0
## 3078 0 0
## 3079 0 0
## 3080 0 1
## 3081 0 0
## 3082 0 1
## 3083 0 1
## 3084 0 0
## 3085 0 0
## 3086 0 0
## 3087 0 1
## 3088 0 1
## 3089 0 0
## 3090 0 0
## 3091 0 0
## 3092 0 0
## 3093 0 1
## 3094 0 0
## 3095 0 1
## 3096 0 1
## 3097 0 0
## 3098 0 0
## 3099 0 0
## 3100 0 0
## 3101 0 0
## 3102 0 0
## 3103 0 0
## 3104 0 0
## 3105 0 0
## 3106 0 0
## 3107 0 0
## 3108 0 0
## 3109 0 0
## 3110 0 0
## 3111 0 0
## 3112 0 0
## 3113 0 0
## 3114 0 0
## 3115 0 0
## 3116 0 2
## 3117 0 0
## 3118 0 0
## 3119 0 0
## 3120 0 0
## 3121 0 0
## 3122 0 1
## 3123 0 0
## 3124 0 1
## 3125 0 0
## 3126 0 0
## 3127 0 0
## 3128 0 0
## 3129 0 0
## 3130 0 1
## 3131 0 0
## 3132 0 0
## 3133 0 0
## 3134 0 0
## 3135 0 0
## 3136 0 0
## 3137 0 0
## 3138 0 0
## 3139 0 0
## 3140 0 0
## 3141 0 0
## 3142 0 0
## 3143 0 0
## 3144 0 0
## 3145 0 0
## 3146 0 1
## 3147 0 1
## 3148 0 0
## 3149 0 0
## 3150 0 2
## 3151 0 0
## 3152 0 0
## 3153 0 0
## 3154 0 0
## 3155 0 0
## 3156 0 0
## 3157 0 0
## 3158 0 0
## 3159 0 0
## 3160 0 0
## 3161 0 0
## 3162 0 0
## 3163 0 0
## 3164 0 0
## 3165 0 0
## 3166 0 0
## 3167 0 0
## 3168 0 0
## 3169 0 0
## 3170 0 0
## 3171 0 0
## 3172 0 0
## 3173 0 0
## 3174 0 0
## 3175 0 1
## 3176 0 0
## 3177 0 0
## 3178 0 0
## 3179 0 0
## 3180 0 0
## 3181 0 1
## 3182 0 3
## 3183 0 1
## 3184 0 1
## 3185 0 0
## 3186 0 0
## 3187 0 0
## 3188 0 0
## 3189 0 0
## 3190 0 0
## 3191 0 1
## 3192 0 1
## 3193 0 0
## 3194 0 0
## 3195 0 0
## 3196 0 0
## 3197 0 0
## 3198 0 0
## 3199 0 0
## 3200 0 1
## 3201 0 0
## 3202 0 0
## 3203 0 0
## 3204 0 0
## 3205 0 0
## 3206 0 0
## 3207 0 0
## 3208 0 0
## 3209 0 0
## 3210 0 0
## 3211 0 0
## 3212 0 0
## 3213 0 0
## 3214 0 1
## 3215 0 1
## 3216 0 1
## 3217 0 0
## 3218 0 0
## 3219 0 0
## 3220 0 1
## 3221 0 0
## 3222 0 0
## 3223 0 0
## 3224 0 0
## 3225 0 2
## 3226 0 1
## 3227 0 0
## 3228 0 0
## 3229 0 0
## 3230 0 0
## 3231 0 0
## 3232 0 0
## 3233 0 0
## 3234 0 0
## 3235 0 4
## 3236 0 1
## 3237 0 0
## 3238 0 2
## 3239 0 0
## 3240 0 0
## 3241 0 1
## 3242 0 1
## 3243 0 1
## 3244 0 0
## 3245 0 0
## 3246 0 0
## 3247 0 0
## 3248 0 0
## 3249 0 1
## 3250 0 0
## 3251 0 0
## 3252 0 0
## 3253 0 0
## 3254 0 0
## 3255 0 0
## 3256 0 0
## 3257 0 0
## 3258 0 1
## 3259 0 1
## 3260 0 2
## 3261 0 0
## 3262 0 2
## 3263 0 1
## 3264 0 2
## 3265 0 0
## 3266 0 0
## 3267 0 0
## 3268 0 0
## 3269 0 0
## 3270 0 0
## 3271 0 0
## 3272 0 5
## 3273 0 0
## 3274 0 0
## 3275 0 0
## 3276 0 0
## 3277 0 0
## 3278 0 0
## 3279 0 2
## 3280 0 0
## 3281 0 0
## 3282 0 0
## 3283 0 0
## 3284 0 1
## 3285 0 0
## 3286 0 2
## 3287 0 1
## 3288 0 0
## 3289 0 0
## 3290 0 1
## 3291 0 0
## 3292 0 0
## 3293 0 1
## 3294 0 1
## 3295 0 0
## 3296 0 0
## 3297 0 0
## 3298 0 0
## 3299 0 0
## 3300 0 1
## 3301 0 0
## 3302 0 0
## 3303 0 0
## 3304 0 0
## 3305 0 0
## 3306 0 0
## 3307 0 0
## 3308 0 0
## 3309 0 0
## 3310 0 0
## 3311 0 0
## 3312 0 0
## 3313 0 0
## 3314 0 0
## 3315 0 0
## 3316 0 0
## 3317 0 1
## 3318 0 0
## 3319 0 0
## 3320 0 0
## 3321 0 0
## 3322 0 0
## 3323 0 0
## 3324 0 0
## 3325 0 0
## 3326 0 0
## 3327 0 0
## 3328 0 0
## 3329 0 0
## 3330 0 0
## 3331 0 0
## 3332 0 0
## 3333 0 0
## 3334 0 0
## 3335 0 0
## 3336 0 0
## 3337 0 1
## 3338 0 0
## 3339 0 0
## 3340 0 0
## 3341 0 0
## 3342 0 1
## 3343 0 1
## 3344 0 0
## 3345 0 0
## 3346 0 0
## 3347 0 0
## 3348 0 0
## 3349 0 0
## 3350 0 0
## 3351 0 0
## 3352 0 0
## 3353 0 0
## 3354 0 1
## 3355 0 0
## 3356 0 0
## 3357 0 0
## 3358 0 0
## 3359 0 0
## 3360 0 0
## 3361 0 0
## 3362 0 4
## 3363 0 0
## 3364 0 0
## 3365 0 1
## 3366 0 1
## 3367 0 0
## 3368 0 0
## 3369 0 0
## 3370 0 0
## 3371 0 0
## 3372 0 0
## 3373 0 0
## 3374 0 0
## 3375 0 0
## 3376 0 0
## 3377 0 0
## 3378 0 0
## 3379 0 1
## 3380 0 0
## 3381 0 0
## 3382 0 0
## 3383 0 0
## 3384 0 0
## 3385 0 0
## 3386 0 0
## 3387 0 0
## 3388 0 0
## 3389 0 1
## 3390 0 0
## 3391 0 0
## 3392 0 0
## 3393 0 0
## 3394 0 0
## 3395 0 0
## 3396 0 0
## 3397 0 0
## 3398 0 0
## 3399 0 1
## 3400 0 0
## 3401 0 0
## 3402 0 0
## 3403 0 1
## 3404 0 1
## 3405 0 0
## 3406 0 1
## 3407 0 0
## 3408 0 0
## 3409 0 0
## 3410 0 0
## 3411 0 2
## 3412 0 0
## 3413 0 0
## 3414 0 0
## 3415 0 0
## 3416 0 0
## 3417 0 0
## 3418 0 0
## 3419 0 0
## 3420 0 0
## 3421 0 1
## 3422 0 0
## 3423 0 0
## 3424 0 0
## 3425 0 0
## 3426 0 0
## 3427 0 0
## 3428 0 0
## 3429 0 0
## 3430 0 0
## 3431 0 0
## 3432 0 0
## 3433 0 0
## 3434 0 0
## 3435 0 0
## 3436 0 0
## 3437 0 0
## 3438 0 0
## 3439 0 0
## 3440 0 0
## 3441 0 0
## 3442 0 0
## 3443 0 0
## 3444 0 0
## 3445 0 0
## 3446 0 0
## 3447 0 0
## 3448 0 0
## 3449 0 0
## 3450 0 0
## 3451 0 1
## 3452 0 0
## 3453 0 0
## 3454 0 0
## 3455 0 0
## 3456 0 0
## 3457 0 0
## 3458 0 0
## 3459 0 0
## 3460 0 0
## 3461 0 0
## 3462 0 0
## 3463 0 0
## 3464 0 0
## 3465 0 0
## 3466 0 0
## 3467 0 0
## 3468 0 0
## 3469 0 1
## 3470 0 0
## 3471 0 0
## 3472 0 0
## 3473 0 0
## 3474 0 0
## 3475 0 0
## 3476 0 0
## 3477 0 0
## 3478 0 0
## 3479 0 0
## 3480 0 0
## 3481 0 1
## 3482 0 0
## 3483 0 0
## 3484 0 0
## 3485 0 0
## 3486 0 0
## 3487 0 0
## 3488 0 0
## 3489 0 0
## 3490 0 0
## 3491 0 0
## 3492 0 0
## 3493 0 2
## 3494 0 0
## 3495 0 0
## 3496 0 0
## 3497 0 0
## 3498 0 0
## 3499 0 0
## 3500 0 0
## 3501 0 0
## 3502 0 0
## 3503 0 0
## 3504 0 0
## 3505 0 0
## 3506 0 0
## 3507 0 0
## 3508 0 0
## 3509 0 0
## 3510 0 0
## 3511 0 0
## 3512 0 0
## 3513 0 0
## 3514 0 0
## 3515 0 0
## 3516 0 0
## 3517 0 0
## 3518 0 0
## 3519 0 0
## 3520 0 0
## 3521 0 0
## 3522 0 0
## 3523 0 0
## 3524 0 0
## 3525 0 0
## 3526 0 0
## 3527 0 0
## 3528 0 0
## 3529 0 0
## 3530 0 1
## 3531 0 0
## 3532 0 0
## 3533 0 0
## 3534 0 0
## 3535 0 0
## 3536 0 0
## 3537 0 0
## 3538 0 0
## 3539 0 0
## 3540 0 0
## 3541 0 0
## 3542 0 0
## 3543 0 1
## 3544 0 1
## 3545 0 0
## 3546 0 0
## 3547 0 0
## 3548 0 0
## 3549 0 0
## 3550 0 0
## 3551 0 0
## 3552 0 0
## 3553 0 0
## 3554 0 1
## 3555 0 0
## 3556 0 3
## 3557 0 0
## 3558 0 2
## 3559 0 1
## 3560 0 0
## 3561 0 0
## 3562 0 0
## 3563 0 1
## 3564 0 0
## 3565 0 0
## 3566 0 0
## 3567 0 0
## 3568 0 0
## 3569 0 0
## 3570 0 0
## 3571 0 1
## 3572 0 0
## 3573 0 0
## 3574 0 0
## 3575 0 0
## 3576 0 0
## 3577 0 1
## 3578 0 0
## 3579 0 0
## 3580 0 0
## 3581 0 0
## 3582 0 0
## 3583 0 0
## 3584 0 0
## 3585 0 0
## 3586 0 0
## 3587 0 0
## 3588 0 0
## 3589 0 0
## 3590 0 0
## 3591 0 0
## 3592 0 0
## 3593 0 0
## 3594 0 1
## 3595 0 0
## 3596 0 0
## 3597 0 0
## 3598 0 0
## 3599 0 0
## 3600 0 0
## 3601 0 1
## 3602 0 0
## 3603 0 0
## 3604 0 1
## 3605 0 0
## 3606 0 0
## 3607 0 1
## 3608 0 0
## 3609 0 0
## 3610 0 0
## 3611 0 0
## 3612 0 0
## 3613 0 0
## 3614 0 0
## 3615 0 0
## 3616 0 0
## 3617 0 0
## 3618 0 0
## 3619 0 1
## 3620 0 0
## 3621 0 0
## 3622 0 0
## 3623 0 0
## 3624 0 0
## 3625 0 0
## 3626 0 0
## 3627 0 0
## 3628 0 1
## 3629 0 0
## 3630 0 0
## 3631 0 0
## 3632 0 0
## 3633 0 1
## 3634 0 1
## 3635 0 1
## 3636 0 0
## 3637 0 0
## 3638 0 0
## 3639 0 0
## 3640 0 0
## 3641 0 0
## 3642 0 1
## 3643 0 0
## 3644 0 0
## 3645 0 0
## 3646 0 0
## 3647 0 0
## 3648 0 0
## 3649 0 1
## 3650 0 0
## 3651 0 1
## 3652 0 1
## 3653 0 1
## 3654 0 0
## 3655 0 2
## 3656 0 0
## 3657 0 0
## 3658 0 0
## 3659 0 2
## 3660 0 0
## 3661 0 0
## 3662 0 0
## 3663 0 1
## 3664 0 0
## 3665 0 2
## 3666 0 1
## 3667 0 0
## 3668 0 0
## 3669 0 0
## 3670 0 2
## 3671 0 0
## 3672 0 0
## 3673 0 0
## 3674 0 0
## 3675 0 1
## 3676 0 0
## 3677 0 0
## 3678 0 0
## 3679 0 0
## 3680 0 0
## 3681 0 0
## 3682 0 1
## 3683 0 1
## 3684 0 0
## 3685 0 0
## 3686 0 0
## 3687 0 0
## 3688 0 0
## 3689 0 0
## 3690 0 1
## 3691 0 0
## 3692 0 0
## 3693 0 2
## 3694 0 1
## 3695 0 0
## 3696 0 0
## 3697 0 0
## 3698 0 0
## 3699 0 1
## 3700 0 0
## 3701 0 0
## 3702 0 0
## 3703 0 1
## 3704 0 0
## 3705 0 0
## 3706 0 0
## 3707 0 1
## 3708 0 1
## 3709 0 0
## 3710 0 1
## 3711 0 0
## 3712 0 0
## 3713 0 1
## 3714 0 0
## 3715 0 0
## 3716 0 0
## 3717 0 1
## 3718 0 1
## 3719 0 0
## 3720 0 0
## 3721 0 0
## 3722 0 0
## 3723 0 0
## 3724 0 0
## 3725 0 0
## 3726 0 0
## 3727 0 0
## 3728 0 0
## 3729 0 1
## 3730 0 0
## 3731 0 0
## 3732 0 0
## 3733 0 0
## 3734 0 0
## 3735 0 0
## 3736 0 0
## 3737 0 0
## 3738 0 0
## 3739 0 0
## 3740 0 0
## 3741 0 0
## 3742 0 0
## 3743 0 0
## 3744 0 0
## 3745 0 0
## 3746 0 0
## 3747 0 0
## 3748 0 0
## 3749 0 0
## 3750 0 0
## 3751 0 0
## 3752 0 0
## 3753 0 0
## 3754 0 0
## 3755 0 0
## 3756 0 0
## 3757 0 0
## 3758 0 0
## 3759 0 0
## 3760 0 0
## 3761 0 0
## 3762 0 0
## 3763 0 0
## 3764 0 0
## 3765 0 0
## 3766 0 0
## 3767 0 0
## 3768 0 0
## 3769 0 0
## 3770 0 0
## 3771 0 0
## 3772 0 0
## 3773 0 0
## 3774 0 0
## 3775 0 0
## 3776 0 0
## 3777 0 0
## 3778 0 0
## 3779 0 0
## 3780 0 0
## 3781 0 0
## 3782 0 0
## 3783 0 0
## 3784 0 0
## 3785 0 0
## 3786 0 0
## 3787 0 0
## 3788 0 0
## 3789 0 0
## 3790 0 0
## 3791 0 0
## 3792 0 0
## 3793 0 0
## 3794 0 0
## 3795 0 0
## 3796 0 0
## 3797 0 0
## 3798 0 0
## 3799 0 0
## 3800 0 0
## 3801 0 0
## 3802 0 0
## 3803 0 0
## 3804 0 1
## 3805 0 2
## 3806 0 0
## 3807 0 0
## 3808 0 0
## 3809 0 0
## 3810 0 0
## 3811 0 0
## 3812 0 0
## 3813 0 0
## 3814 0 0
## 3815 0 0
## 3816 0 0
## 3817 0 0
## 3818 0 0
## 3819 0 0
## 3820 0 0
## 3821 0 0
## 3822 0 0
## 3823 0 0
## 3824 0 0
## 3825 0 0
## 3826 0 1
## 3827 0 0
## 3828 0 0
## 3829 0 0
## 3830 0 0
## 3831 0 0
## 3832 0 0
## 3833 0 0
## 3834 0 0
## 3835 0 0
## 3836 0 0
## 3837 0 0
## 3838 0 0
## 3839 0 0
## 3840 0 1
## 3841 0 0
## 3842 0 0
## 3843 0 0
## 3844 0 2
## 3845 0 0
## 3846 0 0
## 3847 0 0
## 3848 0 0
## 3849 0 0
## 3850 0 0
## 3851 0 0
## 3852 0 0
## 3853 0 0
## 3854 0 0
## 3855 0 0
## 3856 0 1
## 3857 0 0
## 3858 0 0
## 3859 0 0
## 3860 0 0
## 3861 0 0
## 3862 0 0
## 3863 0 1
## 3864 0 0
## 3865 0 0
## 3866 0 0
## 3867 0 0
## 3868 0 1
## 3869 0 1
## 3870 0 0
## 3871 0 0
## 3872 0 0
## 3873 0 1
## 3874 0 0
## 3875 0 0
## 3876 0 0
## 3877 0 0
## 3878 0 0
## 3879 0 1
## 3880 0 0
## 3881 0 0
## 3882 0 0
## 3883 0 2
## 3884 0 0
## 3885 0 0
## 3886 0 1
## 3887 0 2
## 3888 0 0
## 3889 0 0
## 3890 0 0
## 3891 0 0
## 3892 0 0
## 3893 0 0
## 3894 0 0
## 3895 0 0
## 3896 0 0
## 3897 0 0
## 3898 0 0
## 3899 0 1
## 3900 0 0
## 3901 0 0
## 3902 0 1
## 3903 0 0
## 3904 0 1
## 3905 0 1
## 3906 0 1
## 3907 0 0
## 3908 0 0
## 3909 0 0
## 3910 0 0
## 3911 0 0
## 3912 0 3
## 3913 0 0
## 3914 0 0
## 3915 0 0
## 3916 0 0
## 3917 0 0
## 3918 0 0
## 3919 0 1
## 3920 0 1
## 3921 0 0
## 3922 0 0
## 3923 0 0
## 3924 0 0
## 3925 0 0
## 3926 0 0
## 3927 0 2
## 3928 0 0
## 3929 0 0
## 3930 0 0
## 3931 0 2
## 3932 0 1
## 3933 0 0
## 3934 0 1
## 3935 0 0
## 3936 0 1
## 3937 0 1
## 3938 0 0
## 3939 0 0
## 3940 0 0
## 3941 0 0
## 3942 0 1
## 3943 0 4
## 3944 0 1
## 3945 0 1
## 3946 0 0
## 3947 0 0
## 3948 0 2
## 3949 0 0
## 3950 0 0
## 3951 0 0
## 3952 0 0
## 3953 0 0
## 3954 0 0
## 3955 0 0
## 3956 0 0
## 3957 0 0
## 3958 0 0
## 3959 0 1
## 3960 0 0
## 3961 0 0
## 3962 0 0
## 3963 0 0
## 3964 0 0
## 3965 0 0
## 3966 0 1
## 3967 0 0
## 3968 0 0
## 3969 0 0
## 3970 0 1
## 3971 0 0
## 3972 0 1
## 3973 0 0
## 3974 0 0
## 3975 0 0
## 3976 0 2
## 3977 0 0
## 3978 0 3
## 3979 0 0
## 3980 0 0
## 3981 0 0
## 3982 0 0
## 3983 0 0
## 3984 0 0
## 3985 0 0
## 3986 0 0
## 3987 0 0
## 3988 0 0
## 3989 0 0
## 3990 0 0
## 3991 0 0
## 3992 0 0
## 3993 0 0
## 3994 0 0
## 3995 0 0
## 3996 0 0
## 3997 0 0
## 3998 0 0
## 3999 0 2
## 4000 0 0
## 4001 0 0
## 4002 0 0
## 4003 0 0
## 4004 0 0
## 4005 0 0
## 4006 0 0
## 4007 0 1
## 4008 0 0
## 4009 0 0
## 4010 0 0
## 4011 0 0
## 4012 0 0
## 4013 0 0
## 4014 0 0
## 4015 0 0
## 4016 0 0
## 4017 0 0
## 4018 0 0
## 4019 0 0
## 4020 0 0
## 4021 0 0
## 4022 0 0
## 4023 0 0
## 4024 0 0
## 4025 0 1
## 4026 0 0
## 4027 0 0
## 4028 0 0
## 4029 0 0
## 4030 0 0
## 4031 0 0
## 4032 0 0
## 4033 0 0
## 4034 0 0
## 4035 0 0
## 4036 0 1
## 4037 0 1
## 4038 0 0
## 4039 0 0
## 4040 0 0
## 4041 0 0
## 4042 0 1
## 4043 0 0
## 4044 0 0
## 4045 0 0
## 4046 0 0
## 4047 0 1
## 4048 0 0
## 4049 0 0
## 4050 0 1
## 4051 0 0
## 4052 0 0
## 4053 0 1
## 4054 0 0
## 4055 0 0
## 4056 0 0
## 4057 0 0
## 4058 0 0
## 4059 0 0
## 4060 0 0
## 4061 0 0
## 4062 0 0
## 4063 0 0
## 4064 0 0
## 4065 0 1
## 4066 0 0
## 4067 0 0
## 4068 0 2
## 4069 0 1
## 4070 0 0
## 4071 0 0
## 4072 0 0
## 4073 0 0
## 4074 0 0
## 4075 0 0
## 4076 0 0
## 4077 0 0
## 4078 0 0
## 4079 0 0
## 4080 0 0
## 4081 0 0
## 4082 0 1
## 4083 0 0
## 4084 0 0
## 4085 0 1
## 4086 0 0
## 4087 0 1
## 4088 0 0
## 4089 0 0
## 4090 0 0
## 4091 0 0
## 4092 0 0
## 4093 0 0
## 4094 0 0
## 4095 0 0
## 4096 0 0
## 4097 0 0
## 4098 0 0
## 4099 0 0
## 4100 0 0
## 4101 0 0
## 4102 0 1
## 4103 0 0
## 4104 0 0
## 4105 0 0
## 4106 0 1
## 4107 0 0
## 4108 0 0
## 4109 0 0
## 4110 0 0
## 4111 0 0
## 4112 0 0
## 4113 0 0
## 4114 0 0
## 4115 0 0
## 4116 0 0
## 4117 0 1
## 4118 0 1
## 4119 0 1
## 4120 0 0
## 4121 0 0
## 4122 0 0
## 4123 0 0
## 4124 0 0
## 4125 0 0
## 4126 0 0
## 4127 0 0
## 4128 0 0
## 4129 0 0
## 4130 0 0
## 4131 0 0
## 4132 0 0
## 4133 0 0
## 4134 0 0
## 4135 0 1
## 4136 0 0
## 4137 0 0
## 4138 0 0
## 4139 0 0
## 4140 0 2
## 4141 0 2
## 4142 0 0
## 4143 0 0
## 4144 0 0
## 4145 0 0
## 4146 0 0
## 4147 0 1
## 4148 0 0
## 4149 0 0
## 4150 0 0
## 4151 0 0
## 4152 0 0
## 4153 0 0
## 4154 0 0
## 4155 0 0
## 4156 0 0
## 4157 0 0
## 4158 0 0
## 4159 0 0
## 4160 0 0
## 4161 0 0
## 4162 0 0
## 4163 0 0
## 4164 0 0
## 4165 0 0
## 4166 0 0
## 4167 0 0
## 4168 0 0
## 4169 0 0
## 4170 0 0
## 4171 0 0
## 4172 0 0
## 4173 0 0
## 4174 0 0
## 4175 0 0
## 4176 0 0
## 4177 0 0
## 4178 0 0
## 4179 0 0
## 4180 0 0
## 4181 0 0
## 4182 0 0
## 4183 0 0
## 4184 0 0
## 4185 0 0
## 4186 0 0
## 4187 0 0
## 4188 0 0
## 4189 0 0
## 4190 0 0
## 4191 0 1
## 4192 0 0
## 4193 0 0
## 4194 0 0
## 4195 0 0
## 4196 0 1
## 4197 0 0
## 4198 0 0
## 4199 0 0
## 4200 0 0
## 4201 0 0
## 4202 0 0
## 4203 0 0
## 4204 0 0
## 4205 0 0
## 4206 0 0
## 4207 0 0
## 4208 0 0
## 4209 0 0
## 4210 0 0
## 4211 0 0
## 4212 0 0
## 4213 0 0
## 4214 0 0
## 4215 0 0
## 4216 0 0
## 4217 0 0
## 4218 0 0
## 4219 0 0
## 4220 0 0
## 4221 0 0
## 4222 0 0
## Total_Genes_Annotated Hyper_Raw_PValue Hyper_Adjp_BH
## 1 121 0.001892007 1
## 2 103 0.001892007 1
## 3 29 0.001914967 1
## 4 4 0.002345881 1
## 5 193 0.002669516 1
## 6 104 0.002722739 1
## 7 139 0.002722739 1
## 8 101 0.003074480 1
## 9 66 0.007046942 1
## 10 1638 0.008334794 1
## 11 4 0.010208560 1
## 12 5 0.010208560 1
## 13 7 0.010208560 1
## 14 10 0.010208560 1
## 15 9 0.010208560 1
## 16 1 0.010208560 1
## 17 2 0.010208560 1
## 18 38 0.011006740 1
## 19 21 0.011006740 1
## 20 45 0.014314410 1
## 21 66 0.017559660 1
## 22 15 0.017966480 1
## 23 24 0.017966480 1
## 24 22 0.017966480 1
## 25 11 0.022701700 1
## 26 8 0.022701700 1
## 27 17 0.027417390 1
## 28 23 0.027521080 1
## 29 24 0.027521080 1
## 30 38 0.027521080 1
## 31 81 0.029288990 1
## 32 46 0.029288990 1
## 33 1 0.034211740 1
## 34 43 0.034211740 1
## 35 1 0.034211740 1
## 36 6 0.034211740 1
## 37 7 0.034211740 1
## 38 45 0.034211740 1
## 39 12 0.034211740 1
## 40 3 0.034211740 1
## 41 150 0.036347740 1
## 42 4 0.040011860 1
## 43 35 0.043247360 1
## 44 36 0.043247360 1
## 45 82 0.043978010 1
## 46 3 0.045233650 1
## 47 2 0.045233650 1
## 48 2 0.047134020 1
## 49 6 0.047134020 1
## 50 4 0.047134020 1
## 51 11 0.047134020 1
## 52 31 0.047134020 1
## 53 12 0.047134020 1
## 54 7 0.047134020 1
## 55 6 0.047134020 1
## 56 1 0.047134020 1
## 57 21 0.047134020 1
## 58 18 0.047134020 1
## 59 3 0.047134020 1
## 60 18 0.047134020 1
## 61 74 0.047134020 1
## 62 1 0.047134020 1
## 63 30 0.047134020 1
## 64 3 0.047134020 1
## 65 1 0.047134020 1
## 66 1 0.047134020 1
## 67 4 0.047134020 1
## 68 4 0.047134020 1
## 69 15 0.047134020 1
## 70 10 0.047134020 1
## 71 23 0.047134020 1
## 72 91 0.049879730 1
## 73 4032 0.055377580 1
## 74 189 0.062208010 1
## 75 78 0.065286480 1
## 76 4 0.068512840 1
## 77 324 0.070952440 1
## 78 13 0.071832610 1
## 79 49 0.071832610 1
## 80 35 0.071832610 1
## 81 7 0.071832610 1
## 82 7 0.071832610 1
## 83 4 0.071832610 1
## 84 29 0.071832610 1
## 85 38 0.071832610 1
## 86 2 0.071832610 1
## 87 8 0.071832610 1
## 88 1 0.071832610 1
## 89 6 0.071832610 1
## 90 8 0.071832610 1
## 91 11 0.073162400 1
## 92 8 0.073162400 1
## 93 10 0.073162400 1
## 94 52 0.074682110 1
## 95 79 0.082760350 1
## 96 186 0.088646340 1
## 97 198 0.090526350 1
## 98 83 0.097024200 1
## 99 32 0.097188380 1
## 100 10 0.097188380 1
## 101 50 0.097188380 1
## 102 33 0.097188380 1
## 103 133 0.106240500 1
## 104 5 0.109758400 1
## 105 35 0.109758400 1
## 106 4 0.109758400 1
## 107 9 0.109758400 1
## 108 5 0.109758400 1
## 109 9 0.109758400 1
## 110 53 0.120963500 1
## 111 37 0.120963500 1
## 112 10 0.120963500 1
## 113 2 0.120984900 1
## 114 15 0.120984900 1
## 115 2 0.120984900 1
## 116 27 0.120984900 1
## 117 6 0.120984900 1
## 118 5 0.120984900 1
## 119 3 0.120984900 1
## 120 22 0.120984900 1
## 121 3 0.120984900 1
## 122 3 0.120984900 1
## 123 2 0.120984900 1
## 124 1 0.120984900 1
## 125 2 0.120984900 1
## 126 1 0.120984900 1
## 127 9 0.120984900 1
## 128 8 0.120984900 1
## 129 1 0.120984900 1
## 130 1 0.120984900 1
## 131 1 0.120984900 1
## 132 13 0.120984900 1
## 133 7 0.120984900 1
## 134 13 0.120984900 1
## 135 5 0.120984900 1
## 136 2 0.120984900 1
## 137 1 0.120984900 1
## 138 27 0.120984900 1
## 139 10 0.120984900 1
## 140 29 0.120984900 1
## 141 4 0.120984900 1
## 142 4 0.120984900 1
## 143 3 0.120984900 1
## 144 13 0.120984900 1
## 145 6 0.120984900 1
## 146 1 0.120984900 1
## 147 16 0.120984900 1
## 148 1 0.120984900 1
## 149 301 0.127171500 1
## 150 315 0.127171500 1
## 151 51 0.136746100 1
## 152 168 0.139396800 1
## 153 66 0.139396800 1
## 154 76 0.143528200 1
## 155 24 0.143528200 1
## 156 20 0.143528200 1
## 157 58 0.151294000 1
## 158 20 0.152774900 1
## 159 71 0.152774900 1
## 160 52 0.152774900 1
## 161 14 0.152774900 1
## 162 400 0.155843000 1
## 163 92 0.156044900 1
## 164 57 0.158812500 1
## 165 5925 0.167770500 1
## 166 1453 0.175486200 1
## 167 410 0.176935800 1
## 168 43 0.177951200 1
## 169 1 0.178702700 1
## 170 50 0.178702700 1
## 171 13 0.178702700 1
## 172 10 0.178702700 1
## 173 42 0.178702700 1
## 174 42 0.182753500 1
## 175 44 0.182753500 1
## 176 6009 0.183838700 1
## 177 176 0.185520700 1
## 178 503 0.187990100 1
## 179 51 0.200924700 1
## 180 21 0.200924700 1
## 181 25 0.200924700 1
## 182 30 0.207758100 1
## 183 4 0.207758100 1
## 184 12 0.207758100 1
## 185 33 0.207758100 1
## 186 16 0.207758100 1
## 187 12 0.207758100 1
## 188 3 0.207758100 1
## 189 26 0.207758100 1
## 190 18 0.207758100 1
## 191 50 0.207758100 1
## 192 8 0.207758100 1
## 193 55 0.207758100 1
## 194 2 0.207758100 1
## 195 7 0.207758100 1
## 196 7 0.207758100 1
## 197 15 0.207758100 1
## 198 32 0.207758100 1
## 199 3 0.207758100 1
## 200 4 0.207758100 1
## 201 13 0.207758100 1
## 202 7 0.207758100 1
## 203 56 0.207758100 1
## 204 9 0.207758100 1
## 205 1 0.207758100 1
## 206 3 0.207758100 1
## 207 809 0.210060400 1
## 208 36 0.210930600 1
## 209 130 0.214720100 1
## 210 150 0.215302200 1
## 211 134 0.216654500 1
## 212 30 0.217276300 1
## 213 2 0.217276300 1
## 214 3 0.217276300 1
## 215 7 0.217276300 1
## 216 6 0.217276300 1
## 217 21 0.217276300 1
## 218 2 0.217276300 1
## 219 1 0.217276300 1
## 220 13 0.217276300 1
## 221 1 0.217276300 1
## 222 2 0.217276300 1
## 223 3 0.217276300 1
## 224 2 0.217276300 1
## 225 5 0.217276300 1
## 226 3 0.217276300 1
## 227 13 0.217276300 1
## 228 3 0.217276300 1
## 229 3 0.217276300 1
## 230 56 0.217276300 1
## 231 8 0.217276300 1
## 232 5 0.217276300 1
## 233 2 0.217276300 1
## 234 13 0.217276300 1
## 235 9 0.217276300 1
## 236 6 0.217276300 1
## 237 4 0.217276300 1
## 238 12 0.217276300 1
## 239 4 0.217276300 1
## 240 3 0.217276300 1
## 241 11 0.217276300 1
## 242 3 0.217276300 1
## 243 37 0.217276300 1
## 244 9 0.217276300 1
## 245 15 0.217276300 1
## 246 8 0.217276300 1
## 247 26 0.217276300 1
## 248 2 0.217276300 1
## 249 1 0.217276300 1
## 250 40 0.217276300 1
## 251 1 0.217276300 1
## 252 14 0.217276300 1
## 253 6 0.217276300 1
## 254 13 0.217276300 1
## 255 1 0.217276300 1
## 256 12 0.217276300 1
## 257 5 0.217276300 1
## 258 6 0.217276300 1
## 259 13 0.217276300 1
## 260 8 0.217276300 1
## 261 2 0.217276300 1
## 262 3 0.217276300 1
## 263 10 0.217276300 1
## 264 14 0.217276300 1
## 265 2 0.217276300 1
## 266 1 0.217276300 1
## 267 180 0.231985900 1
## 268 14 0.242026800 1
## 269 19 0.242026800 1
## 270 81 0.242026800 1
## 271 88 0.242026800 1
## 272 6 0.242026800 1
## 273 22 0.242026800 1
## 274 402 0.247730000 1
## 275 115 0.249191400 1
## 276 20 0.252792800 1
## 277 17 0.252792800 1
## 278 45 0.252792800 1
## 279 60 0.252792800 1
## 280 71 0.252792800 1
## 281 250 0.258301900 1
## 282 531 0.270479500 1
## 283 176 0.293346800 1
## 284 212 0.296511800 1
## 285 55 0.298375200 1
## 286 30 0.298375200 1
## 287 25 0.298375200 1
## 288 19 0.298375200 1
## 289 83 0.298375200 1
## 290 12 0.298375200 1
## 291 13 0.298375200 1
## 292 81 0.298375200 1
## 293 33 0.298375200 1
## 294 65 0.298375200 1
## 295 19 0.298375200 1
## 296 3 0.298375200 1
## 297 17 0.298375200 1
## 298 27 0.298375200 1
## 299 2 0.298375200 1
## 300 57 0.298375200 1
## 301 2 0.298375200 1
## 302 36 0.302382100 1
## 303 21 0.306966700 1
## 304 24 0.306966700 1
## 305 22 0.306966700 1
## 306 48 0.306966700 1
## 307 56 0.308161000 1
## 308 16 0.308161000 1
## 309 56 0.308161000 1
## 310 37 0.308161000 1
## 311 20 0.308161000 1
## 312 393 0.320001400 1
## 313 226 0.329171300 1
## 314 116 0.333109100 1
## 315 649 0.342724600 1
## 316 1020 0.344764700 1
## 317 766 0.345040800 1
## 318 99 0.350240100 1
## 319 64 0.350240100 1
## 320 50 0.350240100 1
## 321 28 0.362127500 1
## 322 45 0.362127500 1
## 323 48 0.362127500 1
## 324 72 0.374755100 1
## 325 16 0.374755100 1
## 326 8 0.374755100 1
## 327 113 0.374755100 1
## 328 97 0.374755100 1
## 329 17 0.374755100 1
## 330 10 0.374755100 1
## 331 37 0.374755100 1
## 332 67 0.374755100 1
## 333 567 0.375560900 1
## 334 85 0.382412400 1
## 335 112 0.384253300 1
## 336 34 0.387081000 1
## 337 35 0.387081000 1
## 338 11 0.387081000 1
## 339 5 0.387081000 1
## 340 1 0.387081000 1
## 341 100 0.387081000 1
## 342 101 0.387081000 1
## 343 14 0.387081000 1
## 344 28 0.387081000 1
## 345 11 0.387081000 1
## 346 29 0.387081000 1
## 347 5 0.387081000 1
## 348 4 0.387418600 1
## 349 2 0.387418600 1
## 350 13 0.387418600 1
## 351 47 0.387418600 1
## 352 3 0.387418600 1
## 353 5 0.387418600 1
## 354 4 0.387418600 1
## 355 2 0.387418600 1
## 356 15 0.387418600 1
## 357 28 0.387418600 1
## 358 45 0.387418600 1
## 359 8 0.387418600 1
## 360 6 0.387418600 1
## 361 10 0.387418600 1
## 362 58 0.387418600 1
## 363 52 0.387418600 1
## 364 22 0.387418600 1
## 365 9 0.387418600 1
## 366 14 0.387418600 1
## 367 1 0.387418600 1
## 368 34 0.387418600 1
## 369 3 0.387418600 1
## 370 7 0.387418600 1
## 371 22 0.387418600 1
## 372 1 0.387418600 1
## 373 13 0.387418600 1
## 374 4 0.387418600 1
## 375 8 0.387418600 1
## 376 5 0.387418600 1
## 377 4 0.387418600 1
## 378 21 0.387418600 1
## 379 1 0.387418600 1
## 380 1 0.387418600 1
## 381 1 0.387418600 1
## 382 9 0.387418600 1
## 383 20 0.387418600 1
## 384 1 0.387418600 1
## 385 4 0.387418600 1
## 386 24 0.398432200 1
## 387 137 0.398432200 1
## 388 199 0.401222200 1
## 389 158 0.401222200 1
## 390 1895 0.402185400 1
## 391 123 0.403296700 1
## 392 512 0.405536000 1
## 393 47 0.417108300 1
## 394 60 0.417108300 1
## 395 415 0.417308500 1
## 396 330 0.429262000 1
## 397 15 0.439941500 1
## 398 361 0.444934600 1
## 399 376 0.444934600 1
## 400 379 0.444934600 1
## 401 277 0.445025200 1
## 402 105 0.446235900 1
## 403 55 0.447512000 1
## 404 79 0.447512000 1
## 405 274 0.451122900 1
## 406 727 0.453793600 1
## 407 646 0.456144200 1
## 408 265 0.460469100 1
## 409 161 0.465754700 1
## 410 434 0.469950300 1
## 411 20 0.470432300 1
## 412 23 0.470432300 1
## 413 42 0.470432300 1
## 414 54 0.470432300 1
## 415 45 0.470432300 1
## 416 56 0.470432300 1
## 417 40 0.470432300 1
## 418 2 0.470432300 1
## 419 43 0.470432300 1
## 420 6 0.470432300 1
## 421 731 0.470538300 1
## 422 17 0.470924200 1
## 423 16 0.470924200 1
## 424 34 0.470924200 1
## 425 2476 0.481349400 1
## 426 184 0.481464400 1
## 427 144 0.486569600 1
## 428 58 0.493024700 1
## 429 131 0.502324400 1
## 430 23 0.502324400 1
## 431 6 0.502324400 1
## 432 138 0.502324400 1
## 433 217 0.502324400 1
## 434 3 0.502324400 1
## 435 6 0.520635500 1
## 436 1 0.520635500 1
## 437 20 0.520635500 1
## 438 7 0.520635500 1
## 439 6 0.520635500 1
## 440 8 0.520635500 1
## 441 7 0.520635500 1
## 442 2 0.520635500 1
## 443 18 0.520635500 1
## 444 30 0.520635500 1
## 445 56 0.520635500 1
## 446 7 0.520635500 1
## 447 106 0.520635500 1
## 448 1 0.520635500 1
## 449 1 0.520635500 1
## 450 10 0.520635500 1
## 451 5 0.520635500 1
## 452 4 0.520635500 1
## 453 10 0.520635500 1
## 454 9 0.520635500 1
## 455 15 0.520635500 1
## 456 20 0.520635500 1
## 457 27 0.520635500 1
## 458 13 0.520635500 1
## 459 27 0.520635500 1
## 460 4 0.520635500 1
## 461 2 0.520635500 1
## 462 18 0.520635500 1
## 463 3 0.520635500 1
## 464 11 0.520635500 1
## 465 4 0.520635500 1
## 466 35 0.520635500 1
## 467 11 0.520635500 1
## 468 22 0.520635500 1
## 469 1 0.520635500 1
## 470 6 0.520635500 1
## 471 9 0.520635500 1
## 472 11 0.520635500 1
## 473 19 0.520635500 1
## 474 30 0.520635500 1
## 475 29 0.520635500 1
## 476 30 0.520635500 1
## 477 6 0.520635500 1
## 478 1 0.520635500 1
## 479 18 0.520635500 1
## 480 12 0.520635500 1
## 481 42 0.522783400 1
## 482 80 0.522783400 1
## 483 133 0.522783400 1
## 484 52 0.546567500 1
## 485 68 0.546567500 1
## 486 67 0.546567500 1
## 487 16 0.546567500 1
## 488 66 0.546567500 1
## 489 68 0.546567500 1
## 490 82 0.546567500 1
## 491 17 0.546567500 1
## 492 25 0.546567500 1
## 493 162 0.550983700 1
## 494 138 0.550983700 1
## 495 298 0.556477100 1
## 496 18 0.560931700 1
## 497 42 0.560931700 1
## 498 13 0.560931700 1
## 499 13 0.560931700 1
## 500 14 0.560931700 1
## 501 6 0.560931700 1
## 502 59 0.560931700 1
## 503 9 0.560931700 1
## 504 76 0.560931700 1
## 505 84 0.561899900 1
## 506 130 0.561899900 1
## 507 106 0.561899900 1
## 508 233 0.564862100 1
## 509 212 0.571558700 1
## 510 25 0.572081500 1
## 511 44 0.572081500 1
## 512 25 0.572081500 1
## 513 75 0.572081500 1
## 514 60 0.572081500 1
## 515 115 0.581571000 1
## 516 510 0.583647000 1
## 517 49 0.589992300 1
## 518 65 0.589992300 1
## 519 73 0.604713400 1
## 520 14398 0.609369600 1
## 521 2 0.614683600 1
## 522 95 0.614683600 1
## 523 8 0.614683600 1
## 524 40 0.614683600 1
## 525 48 0.614683600 1
## 526 25 0.614683600 1
## 527 99 0.614683600 1
## 528 89 0.614683600 1
## 529 46 0.614683600 1
## 530 17 0.615151000 1
## 531 40 0.615151000 1
## 532 137 0.615151000 1
## 533 281 0.617519200 1
## 534 624 0.617645100 1
## 535 28 0.618387900 1
## 536 608 0.618699800 1
## 537 600 0.618699800 1
## 538 70 0.622593800 1
## 539 187 0.622593800 1
## 540 4 0.624928000 1
## 541 3 0.624928000 1
## 542 2 0.624928000 1
## 543 2 0.624928000 1
## 544 5 0.624928000 1
## 545 122 0.624928000 1
## 546 14 0.624928000 1
## 547 65 0.624928000 1
## 548 28 0.624928000 1
## 549 11 0.624928000 1
## 550 15 0.624928000 1
## 551 6 0.624928000 1
## 552 34 0.624928000 1
## 553 20 0.624928000 1
## 554 13 0.624928000 1
## 555 11 0.624928000 1
## 556 30 0.624928000 1
## 557 109 0.624928000 1
## 558 2 0.624928000 1
## 559 16 0.624928000 1
## 560 37 0.624928000 1
## 561 6 0.624928000 1
## 562 23 0.624928000 1
## 563 16 0.624928000 1
## 564 34 0.624928000 1
## 565 2 0.624928000 1
## 566 4 0.624928000 1
## 567 2 0.624928000 1
## 568 25 0.624928000 1
## 569 12 0.624928000 1
## 570 10 0.624928000 1
## 571 6 0.624928000 1
## 572 65 0.624928000 1
## 573 2 0.624928000 1
## 574 4 0.624928000 1
## 575 3 0.624928000 1
## 576 56 0.624928000 1
## 577 41 0.624928000 1
## 578 6 0.624928000 1
## 579 2 0.624928000 1
## 580 2 0.624928000 1
## 581 1 0.624928000 1
## 582 28 0.627161000 1
## 583 35 0.627161000 1
## 584 210 0.629001000 1
## 585 221 0.629001000 1
## 586 105 0.631840800 1
## 587 134 0.631840800 1
## 588 167 0.631840800 1
## 589 125 0.631840800 1
## 590 168 0.631840800 1
## 591 126 0.631840800 1
## 592 1603 0.637136700 1
## 593 199 0.658727500 1
## 594 100 0.661425900 1
## 595 41 0.662308900 1
## 596 135 0.662308900 1
## 597 54 0.664661700 1
## 598 151 0.672679000 1
## 599 36 0.674665700 1
## 600 108 0.674665700 1
## 601 27 0.674665700 1
## 602 462 0.682292200 1
## 603 1245 0.682627200 1
## 604 611 0.688035400 1
## 605 613 0.688035400 1
## 606 50 0.695312400 1
## 607 1481 0.696331600 1
## 608 98 0.696821100 1
## 609 151 0.697011200 1
## 610 57 0.697011200 1
## 611 129 0.697011200 1
## 612 142 0.697011200 1
## 613 135 0.701049800 1
## 614 120 0.701049800 1
## 615 141 0.701049800 1
## 616 9 0.701049800 1
## 617 40 0.701049800 1
## 618 141 0.701049800 1
## 619 2 0.706566200 1
## 620 17 0.706566200 1
## 621 10 0.706566200 1
## 622 2 0.706566200 1
## 623 1 0.706566200 1
## 624 34 0.706566200 1
## 625 45 0.706566200 1
## 626 11 0.706566200 1
## 627 35 0.706566200 1
## 628 22 0.706566200 1
## 629 23 0.706566200 1
## 630 19 0.706566200 1
## 631 16 0.706566200 1
## 632 30 0.706566200 1
## 633 11 0.706566200 1
## 634 6 0.706566200 1
## 635 23 0.706566200 1
## 636 2 0.706566200 1
## 637 6 0.706566200 1
## 638 13 0.706566200 1
## 639 1 0.706566200 1
## 640 13 0.706566200 1
## 641 21 0.706566200 1
## 642 26 0.706566200 1
## 643 12 0.706566200 1
## 644 1 0.706566200 1
## 645 60 0.706566200 1
## 646 21 0.709370400 1
## 647 8 0.709370400 1
## 648 134 0.709370400 1
## 649 79 0.709370400 1
## 650 138 0.709370400 1
## 651 534 0.719806700 1
## 652 180 0.722898100 1
## 653 101 0.726099900 1
## 654 19 0.726826600 1
## 655 173 0.726826600 1
## 656 33 0.726826600 1
## 657 181 0.726826600 1
## 658 38 0.726826600 1
## 659 13 0.726826600 1
## 660 179 0.726826600 1
## 661 54 0.726826600 1
## 662 1261 0.727248800 1
## 663 117 0.730199300 1
## 664 54 0.730199300 1
## 665 272 0.731357300 1
## 666 304 0.731357300 1
## 667 1066 0.734496300 1
## 668 704 0.735030100 1
## 669 848 0.735949500 1
## 670 849 0.735949500 1
## 671 41 0.737221800 1
## 672 1526 0.737380400 1
## 673 1516 0.737380400 1
## 674 227 0.746762200 1
## 675 232 0.746762200 1
## 676 1045 0.752349400 1
## 677 439 0.752712900 1
## 678 93 0.754645000 1
## 679 219 0.754645000 1
## 680 58 0.760679100 1
## 681 1841 0.765259500 1
## 682 1834 0.765259500 1
## 683 1834 0.765259500 1
## 684 1831 0.765259500 1
## 685 1822 0.765259500 1
## 686 156 0.766301800 1
## 687 846 0.766895300 1
## 688 167 0.767542400 1
## 689 375 0.769504800 1
## 690 396 0.769504800 1
## 691 395 0.769504800 1
## 692 104 0.769990400 1
## 693 18 0.769990400 1
## 694 12 0.769990400 1
## 695 21 0.769990400 1
## 696 64 0.770463200 1
## 697 64 0.770463200 1
## 698 1 0.770463200 1
## 699 1 0.770463200 1
## 700 5 0.770463200 1
## 701 19 0.770463200 1
## 702 4 0.770463200 1
## 703 57 0.770463200 1
## 704 21 0.770463200 1
## 705 12 0.770463200 1
## 706 27 0.770463200 1
## 707 8 0.770463200 1
## 708 22 0.770463200 1
## 709 11 0.770463200 1
## 710 59 0.770463200 1
## 711 15 0.770463200 1
## 712 25 0.770463200 1
## 713 42 0.770463200 1
## 714 10 0.770463200 1
## 715 1 0.770463200 1
## 716 1 0.770463200 1
## 717 6 0.770463200 1
## 718 1 0.770463200 1
## 719 20 0.771727100 1
## 720 124 0.771727100 1
## 721 105 0.771727100 1
## 722 11 0.771727100 1
## 723 23 0.771727100 1
## 724 106 0.772030200 1
## 725 313 0.772030200 1
## 726 1878 0.799324100 1
## 727 1881 0.799324100 1
## 728 1866 0.799324100 1
## 729 108 0.799469700 1
## 730 35 0.810053500 1
## 731 21 0.810053500 1
## 732 8 0.810053500 1
## 733 150 0.810053500 1
## 734 21 0.810053500 1
## 735 44 0.810053500 1
## 736 70 0.810053500 1
## 737 72 0.813732700 1
## 738 200 0.813732700 1
## 739 110 0.816011400 1
## 740 23 0.820468300 1
## 741 24 0.820468300 1
## 742 357 0.820468300 1
## 743 15 0.820468300 1
## 744 61 0.820468300 1
## 745 102 0.820468300 1
## 746 10 0.820468300 1
## 747 53 0.820468300 1
## 748 58 0.820468300 1
## 749 8 0.820468300 1
## 750 46 0.820468300 1
## 751 64 0.820468300 1
## 752 25 0.820468300 1
## 753 37 0.820468300 1
## 754 692 0.822477300 1
## 755 2109 0.824733700 1
## 756 2110 0.824733700 1
## 757 77 0.825821900 1
## 758 238 0.827104300 1
## 759 463 0.842108800 1
## 760 39 0.842537200 1
## 761 30 0.842537200 1
## 762 136 0.842537200 1
## 763 3 0.843291200 1
## 764 6102 0.845372400 1
## 765 2191 0.847015000 1
## 766 96 0.847094000 1
## 767 61 0.849242100 1
## 768 60 0.849242100 1
## 769 47 0.849242100 1
## 770 98 0.859597000 1
## 771 12 0.859597000 1
## 772 27 0.859597000 1
## 773 18 0.859597000 1
## 774 1 0.859597000 1
## 775 129 0.859597000 1
## 776 7 0.859597000 1
## 777 8 0.859597000 1
## 778 4 0.859597000 1
## 779 30 0.859597000 1
## 780 28 0.859597000 1
## 781 18 0.859597000 1
## 782 38 0.859597000 1
## 783 31 0.859597000 1
## 784 815 0.861427800 1
## 785 693 0.865738600 1
## 786 366 0.867567000 1
## 787 59 0.869945100 1
## 788 778 0.871364800 1
## 789 11170 0.873103700 1
## 790 99 0.873351100 1
## 791 208 0.873351100 1
## 792 5832 0.873696400 1
## 793 220 0.873807700 1
## 794 301 0.878629400 1
## 795 219 0.881429700 1
## 796 2698 0.882944500 1
## 797 27 0.887489100 1
## 798 146 0.888156100 1
## 799 80 0.888156100 1
## 800 74 0.888156100 1
## 801 855 0.888346200 1
## 802 860 0.888346200 1
## 803 857 0.888346200 1
## 804 19 0.890211200 1
## 805 187 0.890211200 1
## 806 111 0.890211200 1
## 807 159 0.890211200 1
## 808 9 0.890211200 1
## 809 18 0.890211200 1
## 810 19 0.890211200 1
## 811 16 0.890211200 1
## 812 28 0.890211200 1
## 813 10 0.890211200 1
## 814 13 0.890211200 1
## 815 7 0.890211200 1
## 816 34 0.890211200 1
## 817 20 0.890211200 1
## 818 66 0.890211200 1
## 819 9 0.890211200 1
## 820 17 0.890211200 1
## 821 50 0.890211200 1
## 822 69 0.890211200 1
## 823 89 0.890211200 1
## 824 449 0.890590800 1
## 825 4096 0.894790700 1
## 826 748 0.895643300 1
## 827 133 0.904101900 1
## 828 45 0.905114000 1
## 829 66 0.905114000 1
## 830 269 0.911600300 1
## 831 92 0.911966900 1
## 832 78 0.911966900 1
## 833 108 0.914160700 1
## 834 26 0.914160700 1
## 835 14 0.914160700 1
## 836 28 0.914160700 1
## 837 1003 0.916151700 1
## 838 450 0.917972600 1
## 839 95 0.918004800 1
## 840 88 0.918004800 1
## 841 129 0.918004800 1
## 842 4186 0.918194500 1
## 843 157 0.918573200 1
## 844 123 0.923497800 1
## 845 2532 0.925242500 1
## 846 284 0.926795300 1
## 847 2404 0.927466200 1
## 848 81 0.927861800 1
## 849 93 0.927861800 1
## 850 807 0.930612200 1
## 851 111 0.930910400 1
## 852 51 0.932894100 1
## 853 86 0.932894100 1
## 854 214 0.932894100 1
## 855 46 0.932894100 1
## 856 35 0.932894100 1
## 857 219 0.932894100 1
## 858 10 0.932894100 1
## 859 22 0.932894100 1
## 860 42 0.933076500 1
## 861 371 0.935484500 1
## 862 97 0.941360400 1
## 863 216 0.941360400 1
## 864 217 0.944011500 1
## 865 148 0.944011500 1
## 866 367 0.944230300 1
## 867 555 0.946548900 1
## 868 130 0.947545700 1
## 869 19 0.947545700 1
## 870 45 0.947545700 1
## 871 129 0.947545700 1
## 872 87 0.947545700 1
## 873 6 0.947545700 1
## 874 92 0.948070000 1
## 875 2376 0.948214900 1
## 876 60 0.949533100 1
## 877 86 0.949533100 1
## 878 251 0.953269800 1
## 879 117 0.953269800 1
## 880 114 0.953269800 1
## 881 1380 0.957024900 1
## 882 314 0.957675800 1
## 883 10 0.959003400 1
## 884 41 0.959003400 1
## 885 11 0.959003400 1
## 886 43 0.959003400 1
## 887 34 0.959003400 1
## 888 51 0.959003400 1
## 889 15 0.959003400 1
## 890 13 0.959003400 1
## 891 20 0.959003400 1
## 892 115 0.959003400 1
## 893 683 0.960559800 1
## 894 19 0.960814400 1
## 895 849 0.964102300 1
## 896 63 0.967962300 1
## 897 35 0.967962300 1
## 898 51 0.967962300 1
## 899 180 0.969574300 1
## 900 780 0.971482400 1
## 901 79 0.974150000 1
## 902 179 0.974150000 1
## 903 136 0.974150000 1
## 904 49 0.974966500 1
## 905 90 0.974966500 1
## 906 74 0.974966500 1
## 907 29 0.974966500 1
## 908 50 0.974966500 1
## 909 161 0.979054000 1
## 910 83 0.980441900 1
## 911 281 0.981029700 1
## 912 248 0.981029700 1
## 913 66 0.983052100 1
## 914 78 0.983052100 1
## 915 860 0.983136000 1
## 916 467 0.983242300 1
## 917 468 0.983242300 1
## 918 36 0.984721600 1
## 919 89 0.984721600 1
## 920 660 0.985710400 1
## 921 648 0.987979000 1
## 922 783 0.988649500 1
## 923 82 0.988948300 1
## 924 92 0.990679900 1
## 925 436 0.990693500 1
## 926 137 0.991577000 1
## 927 304 0.992730600 1
## 928 348 0.992919900 1
## 929 282 0.993721400 1
## 930 653 0.993815000 1
## 931 120 0.994231300 1
## 932 38 0.995563700 1
## 933 425 0.995830900 1
## 934 55 0.996537000 1
## 935 156 0.996537000 1
## 936 294 0.996737900 1
## 937 951 0.996983700 1
## 938 162 0.997609200 1
## 939 192 0.997967400 1
## 940 376 0.998030400 1
## 941 1039 0.998052400 1
## 942 192 0.998077500 1
## 943 1157 0.998138400 1
## 944 1207 0.998340200 1
## 945 311 0.998601400 1
## 946 1341 0.998709800 1
## 947 96 0.998715900 1
## 948 887 0.998849700 1
## 949 1253 0.998891100 1
## 950 164 0.999618200 1
## 951 1317 0.999679200 1
## 952 332 0.999679200 1
## 953 131 0.999774800 1
## 954 1571 0.999901800 1
## 955 1481 0.999921100 1
## 956 220 0.999949600 1
## 957 1664 0.999956600 1
## 958 798 0.999958400 1
## 959 271 0.999988500 1
## 960 2 1.000000000 1
## 961 8 1.000000000 1
## 962 1 1.000000000 1
## 963 3 1.000000000 1
## 964 24 1.000000000 1
## 965 3 1.000000000 1
## 966 2 1.000000000 1
## 967 1 1.000000000 1
## 968 2 1.000000000 1
## 969 3 1.000000000 1
## 970 1 1.000000000 1
## 971 7 1.000000000 1
## 972 1 1.000000000 1
## 973 22 1.000000000 1
## 974 8 1.000000000 1
## 975 7 1.000000000 1
## 976 1 1.000000000 1
## 977 2 1.000000000 1
## 978 10 1.000000000 1
## 979 1 1.000000000 1
## 980 4 1.000000000 1
## 981 2 1.000000000 1
## 982 24 1.000000000 1
## 983 1 1.000000000 1
## 984 1 1.000000000 1
## 985 1 1.000000000 1
## 986 2 1.000000000 1
## 987 1 1.000000000 1
## 988 1 1.000000000 1
## 989 4 1.000000000 1
## 990 1 1.000000000 1
## 991 1 1.000000000 1
## 992 5 1.000000000 1
## 993 4 1.000000000 1
## 994 3 1.000000000 1
## 995 11 1.000000000 1
## 996 4 1.000000000 1
## 997 3 1.000000000 1
## 998 1 1.000000000 1
## 999 17 1.000000000 1
## 1000 8 1.000000000 1
## 1001 2 1.000000000 1
## 1002 4 1.000000000 1
## 1003 16 1.000000000 1
## 1004 6 1.000000000 1
## 1005 3 1.000000000 1
## 1006 7 1.000000000 1
## 1007 2 1.000000000 1
## 1008 3 1.000000000 1
## 1009 2 1.000000000 1
## 1010 1 1.000000000 1
## 1011 9 1.000000000 1
## 1012 3 1.000000000 1
## 1013 1 1.000000000 1
## 1014 1 1.000000000 1
## 1015 1 1.000000000 1
## 1016 5 1.000000000 1
## 1017 5 1.000000000 1
## 1018 1 1.000000000 1
## 1019 5 1.000000000 1
## 1020 14 1.000000000 1
## 1021 8 1.000000000 1
## 1022 2 1.000000000 1
## 1023 1 1.000000000 1
## 1024 4 1.000000000 1
## 1025 1 1.000000000 1
## 1026 2 1.000000000 1
## 1027 2 1.000000000 1
## 1028 1 1.000000000 1
## 1029 5 1.000000000 1
## 1030 3 1.000000000 1
## 1031 1 1.000000000 1
## 1032 7 1.000000000 1
## 1033 5 1.000000000 1
## 1034 2 1.000000000 1
## 1035 5 1.000000000 1
## 1036 5 1.000000000 1
## 1037 4 1.000000000 1
## 1038 2 1.000000000 1
## 1039 5 1.000000000 1
## 1040 12 1.000000000 1
## 1041 11 1.000000000 1
## 1042 16 1.000000000 1
## 1043 9 1.000000000 1
## 1044 5 1.000000000 1
## 1045 1 1.000000000 1
## 1046 3 1.000000000 1
## 1047 8 1.000000000 1
## 1048 1 1.000000000 1
## 1049 29 1.000000000 1
## 1050 27 1.000000000 1
## 1051 1 1.000000000 1
## 1052 4 1.000000000 1
## 1053 1 1.000000000 1
## 1054 14 1.000000000 1
## 1055 8 1.000000000 1
## 1056 2 1.000000000 1
## 1057 3 1.000000000 1
## 1058 11 1.000000000 1
## 1059 8 1.000000000 1
## 1060 8 1.000000000 1
## 1061 1 1.000000000 1
## 1062 1 1.000000000 1
## 1063 1 1.000000000 1
## 1064 1 1.000000000 1
## 1065 11 1.000000000 1
## 1066 11 1.000000000 1
## 1067 3 1.000000000 1
## 1068 2 1.000000000 1
## 1069 1 1.000000000 1
## 1070 1 1.000000000 1
## 1071 4 1.000000000 1
## 1072 7 1.000000000 1
## 1073 28 1.000000000 1
## 1074 1 1.000000000 1
## 1075 5 1.000000000 1
## 1076 2 1.000000000 1
## 1077 1 1.000000000 1
## 1078 4 1.000000000 1
## 1079 8 1.000000000 1
## 1080 6 1.000000000 1
## 1081 1 1.000000000 1
## 1082 3 1.000000000 1
## 1083 5 1.000000000 1
## 1084 1 1.000000000 1
## 1085 1 1.000000000 1
## 1086 2 1.000000000 1
## 1087 7 1.000000000 1
## 1088 22 1.000000000 1
## 1089 1 1.000000000 1
## 1090 1 1.000000000 1
## 1091 1 1.000000000 1
## 1092 1 1.000000000 1
## 1093 2 1.000000000 1
## 1094 2 1.000000000 1
## 1095 5 1.000000000 1
## 1096 2 1.000000000 1
## 1097 1 1.000000000 1
## 1098 258 1.000000000 1
## 1099 6 1.000000000 1
## 1100 1 1.000000000 1
## 1101 1 1.000000000 1
## 1102 5 1.000000000 1
## 1103 2 1.000000000 1
## 1104 3 1.000000000 1
## 1105 4 1.000000000 1
## 1106 2 1.000000000 1
## 1107 7 1.000000000 1
## 1108 1 1.000000000 1
## 1109 2 1.000000000 1
## 1110 39 1.000000000 1
## 1111 2 1.000000000 1
## 1112 1 1.000000000 1
## 1113 14 1.000000000 1
## 1114 4 1.000000000 1
## 1115 8 1.000000000 1
## 1116 1 1.000000000 1
## 1117 4 1.000000000 1
## 1118 2 1.000000000 1
## 1119 1 1.000000000 1
## 1120 1 1.000000000 1
## 1121 1 1.000000000 1
## 1122 5 1.000000000 1
## 1123 1 1.000000000 1
## 1124 46 1.000000000 1
## 1125 19 1.000000000 1
## 1126 27 1.000000000 1
## 1127 18 1.000000000 1
## 1128 3 1.000000000 1
## 1129 4 1.000000000 1
## 1130 1 1.000000000 1
## 1131 1 1.000000000 1
## 1132 1 1.000000000 1
## 1133 3 1.000000000 1
## 1134 1 1.000000000 1
## 1135 1 1.000000000 1
## 1136 2 1.000000000 1
## 1137 2 1.000000000 1
## 1138 1 1.000000000 1
## 1139 7 1.000000000 1
## 1140 1 1.000000000 1
## 1141 9 1.000000000 1
## 1142 2 1.000000000 1
## 1143 3 1.000000000 1
## 1144 9 1.000000000 1
## 1145 8 1.000000000 1
## 1146 9 1.000000000 1
## 1147 1 1.000000000 1
## 1148 7 1.000000000 1
## 1149 59 1.000000000 1
## 1150 7 1.000000000 1
## 1151 7 1.000000000 1
## 1152 1 1.000000000 1
## 1153 3 1.000000000 1
## 1154 16 1.000000000 1
## 1155 7 1.000000000 1
## 1156 28 1.000000000 1
## 1157 15 1.000000000 1
## 1158 9 1.000000000 1
## 1159 3 1.000000000 1
## 1160 1 1.000000000 1
## 1161 6 1.000000000 1
## 1162 3 1.000000000 1
## 1163 1 1.000000000 1
## 1164 8 1.000000000 1
## 1165 1 1.000000000 1
## 1166 2 1.000000000 1
## 1167 1 1.000000000 1
## 1168 5 1.000000000 1
## 1169 1 1.000000000 1
## 1170 1 1.000000000 1
## 1171 2 1.000000000 1
## 1172 6 1.000000000 1
## 1173 5 1.000000000 1
## 1174 6 1.000000000 1
## 1175 9 1.000000000 1
## 1176 2 1.000000000 1
## 1177 1 1.000000000 1
## 1178 3 1.000000000 1
## 1179 3 1.000000000 1
## 1180 1 1.000000000 1
## 1181 2 1.000000000 1
## 1182 3 1.000000000 1
## 1183 1 1.000000000 1
## 1184 2 1.000000000 1
## 1185 1 1.000000000 1
## 1186 1 1.000000000 1
## 1187 2 1.000000000 1
## 1188 1 1.000000000 1
## 1189 1 1.000000000 1
## 1190 2 1.000000000 1
## 1191 3 1.000000000 1
## 1192 28 1.000000000 1
## 1193 3 1.000000000 1
## 1194 13 1.000000000 1
## 1195 1 1.000000000 1
## 1196 1 1.000000000 1
## 1197 7 1.000000000 1
## 1198 4 1.000000000 1
## 1199 3 1.000000000 1
## 1200 1 1.000000000 1
## 1201 2 1.000000000 1
## 1202 1 1.000000000 1
## 1203 1 1.000000000 1
## 1204 5 1.000000000 1
## 1205 1 1.000000000 1
## 1206 1 1.000000000 1
## 1207 2 1.000000000 1
## 1208 1 1.000000000 1
## 1209 1 1.000000000 1
## 1210 3 1.000000000 1
## 1211 2 1.000000000 1
## 1212 1 1.000000000 1
## 1213 4 1.000000000 1
## 1214 1 1.000000000 1
## 1215 1 1.000000000 1
## 1216 1 1.000000000 1
## 1217 3 1.000000000 1
## 1218 2 1.000000000 1
## 1219 5 1.000000000 1
## 1220 1 1.000000000 1
## 1221 6 1.000000000 1
## 1222 4 1.000000000 1
## 1223 1 1.000000000 1
## 1224 2 1.000000000 1
## 1225 1 1.000000000 1
## 1226 1 1.000000000 1
## 1227 1 1.000000000 1
## 1228 3 1.000000000 1
## 1229 1 1.000000000 1
## 1230 1 1.000000000 1
## 1231 2 1.000000000 1
## 1232 1 1.000000000 1
## 1233 3 1.000000000 1
## 1234 4 1.000000000 1
## 1235 3 1.000000000 1
## 1236 6 1.000000000 1
## 1237 2 1.000000000 1
## 1238 2 1.000000000 1
## 1239 8 1.000000000 1
## 1240 2 1.000000000 1
## 1241 16 1.000000000 1
## 1242 8 1.000000000 1
## 1243 6 1.000000000 1
## 1244 2 1.000000000 1
## 1245 1 1.000000000 1
## 1246 11 1.000000000 1
## 1247 1 1.000000000 1
## 1248 2 1.000000000 1
## 1249 1 1.000000000 1
## 1250 1 1.000000000 1
## 1251 1 1.000000000 1
## 1252 2 1.000000000 1
## 1253 2 1.000000000 1
## 1254 9 1.000000000 1
## 1255 6 1.000000000 1
## 1256 2 1.000000000 1
## 1257 5 1.000000000 1
## 1258 16 1.000000000 1
## 1259 7 1.000000000 1
## 1260 2 1.000000000 1
## 1261 1 1.000000000 1
## 1262 1 1.000000000 1
## 1263 1 1.000000000 1
## 1264 1 1.000000000 1
## 1265 1 1.000000000 1
## 1266 5 1.000000000 1
## 1267 6 1.000000000 1
## 1268 3 1.000000000 1
## 1269 1 1.000000000 1
## 1270 3 1.000000000 1
## 1271 2 1.000000000 1
## 1272 1 1.000000000 1
## 1273 2 1.000000000 1
## 1274 1 1.000000000 1
## 1275 1 1.000000000 1
## 1276 3 1.000000000 1
## 1277 1 1.000000000 1
## 1278 12 1.000000000 1
## 1279 2 1.000000000 1
## 1280 6 1.000000000 1
## 1281 12 1.000000000 1
## 1282 2 1.000000000 1
## 1283 2 1.000000000 1
## 1284 1 1.000000000 1
## 1285 3 1.000000000 1
## 1286 1 1.000000000 1
## 1287 2 1.000000000 1
## 1288 5 1.000000000 1
## 1289 1 1.000000000 1
## 1290 1 1.000000000 1
## 1291 1 1.000000000 1
## 1292 1 1.000000000 1
## 1293 2 1.000000000 1
## 1294 4 1.000000000 1
## 1295 1 1.000000000 1
## 1296 1 1.000000000 1
## 1297 2 1.000000000 1
## 1298 2 1.000000000 1
## 1299 13 1.000000000 1
## 1300 4 1.000000000 1
## 1301 1 1.000000000 1
## 1302 4 1.000000000 1
## 1303 3 1.000000000 1
## 1304 1 1.000000000 1
## 1305 1 1.000000000 1
## 1306 2 1.000000000 1
## 1307 3 1.000000000 1
## 1308 2 1.000000000 1
## 1309 1 1.000000000 1
## 1310 2 1.000000000 1
## 1311 6 1.000000000 1
## 1312 26 1.000000000 1
## 1313 1 1.000000000 1
## 1314 25 1.000000000 1
## 1315 16 1.000000000 1
## 1316 3 1.000000000 1
## 1317 4 1.000000000 1
## 1318 2 1.000000000 1
## 1319 2 1.000000000 1
## 1320 8 1.000000000 1
## 1321 7 1.000000000 1
## 1322 29 1.000000000 1
## 1323 1 1.000000000 1
## 1324 1 1.000000000 1
## 1325 1 1.000000000 1
## 1326 1 1.000000000 1
## 1327 2 1.000000000 1
## 1328 1 1.000000000 1
## 1329 1 1.000000000 1
## 1330 2 1.000000000 1
## 1331 3 1.000000000 1
## 1332 11 1.000000000 1
## 1333 5 1.000000000 1
## 1334 3 1.000000000 1
## 1335 2 1.000000000 1
## 1336 1 1.000000000 1
## 1337 1 1.000000000 1
## 1338 1 1.000000000 1
## 1339 1 1.000000000 1
## 1340 1 1.000000000 1
## 1341 2 1.000000000 1
## 1342 1 1.000000000 1
## 1343 1 1.000000000 1
## 1344 3 1.000000000 1
## 1345 3 1.000000000 1
## 1346 1 1.000000000 1
## 1347 5 1.000000000 1
## 1348 1 1.000000000 1
## 1349 2 1.000000000 1
## 1350 4 1.000000000 1
## 1351 44 1.000000000 1
## 1352 41 1.000000000 1
## 1353 25 1.000000000 1
## 1354 10 1.000000000 1
## 1355 24 1.000000000 1
## 1356 8 1.000000000 1
## 1357 11 1.000000000 1
## 1358 2 1.000000000 1
## 1359 4 1.000000000 1
## 1360 1 1.000000000 1
## 1361 3 1.000000000 1
## 1362 6 1.000000000 1
## 1363 1 1.000000000 1
## 1364 4 1.000000000 1
## 1365 11 1.000000000 1
## 1366 1 1.000000000 1
## 1367 2 1.000000000 1
## 1368 2 1.000000000 1
## 1369 1 1.000000000 1
## 1370 1 1.000000000 1
## 1371 1 1.000000000 1
## 1372 2 1.000000000 1
## 1373 7 1.000000000 1
## 1374 6 1.000000000 1
## 1375 1 1.000000000 1
## 1376 1 1.000000000 1
## 1377 1 1.000000000 1
## 1378 2 1.000000000 1
## 1379 3 1.000000000 1
## 1380 1 1.000000000 1
## 1381 2 1.000000000 1
## 1382 1 1.000000000 1
## 1383 2 1.000000000 1
## 1384 5 1.000000000 1
## 1385 1 1.000000000 1
## 1386 2 1.000000000 1
## 1387 1 1.000000000 1
## 1388 2 1.000000000 1
## 1389 3 1.000000000 1
## 1390 2 1.000000000 1
## 1391 3 1.000000000 1
## 1392 1 1.000000000 1
## 1393 1 1.000000000 1
## 1394 2 1.000000000 1
## 1395 2 1.000000000 1
## 1396 2 1.000000000 1
## 1397 3 1.000000000 1
## 1398 2 1.000000000 1
## 1399 1 1.000000000 1
## 1400 1 1.000000000 1
## 1401 1 1.000000000 1
## 1402 26 1.000000000 1
## 1403 2 1.000000000 1
## 1404 4 1.000000000 1
## 1405 2 1.000000000 1
## 1406 2 1.000000000 1
## 1407 4 1.000000000 1
## 1408 1 1.000000000 1
## 1409 2 1.000000000 1
## 1410 2 1.000000000 1
## 1411 1 1.000000000 1
## 1412 4 1.000000000 1
## 1413 1 1.000000000 1
## 1414 1 1.000000000 1
## 1415 2 1.000000000 1
## 1416 1 1.000000000 1
## 1417 1 1.000000000 1
## 1418 2 1.000000000 1
## 1419 17 1.000000000 1
## 1420 13 1.000000000 1
## 1421 2 1.000000000 1
## 1422 1 1.000000000 1
## 1423 1 1.000000000 1
## 1424 1 1.000000000 1
## 1425 1 1.000000000 1
## 1426 44 1.000000000 1
## 1427 1 1.000000000 1
## 1428 1 1.000000000 1
## 1429 8 1.000000000 1
## 1430 2 1.000000000 1
## 1431 1 1.000000000 1
## 1432 2 1.000000000 1
## 1433 1 1.000000000 1
## 1434 2 1.000000000 1
## 1435 1 1.000000000 1
## 1436 1 1.000000000 1
## 1437 4 1.000000000 1
## 1438 5 1.000000000 1
## 1439 27 1.000000000 1
## 1440 15 1.000000000 1
## 1441 1 1.000000000 1
## 1442 5 1.000000000 1
## 1443 2 1.000000000 1
## 1444 5 1.000000000 1
## 1445 3 1.000000000 1
## 1446 2 1.000000000 1
## 1447 2 1.000000000 1
## 1448 1 1.000000000 1
## 1449 7 1.000000000 1
## 1450 2 1.000000000 1
## 1451 5 1.000000000 1
## 1452 3 1.000000000 1
## 1453 1 1.000000000 1
## 1454 1 1.000000000 1
## 1455 3 1.000000000 1
## 1456 8 1.000000000 1
## 1457 5 1.000000000 1
## 1458 13 1.000000000 1
## 1459 5 1.000000000 1
## 1460 4 1.000000000 1
## 1461 3 1.000000000 1
## 1462 3 1.000000000 1
## 1463 1 1.000000000 1
## 1464 1 1.000000000 1
## 1465 1 1.000000000 1
## 1466 4 1.000000000 1
## 1467 2 1.000000000 1
## 1468 1 1.000000000 1
## 1469 2 1.000000000 1
## 1470 2 1.000000000 1
## 1471 1 1.000000000 1
## 1472 2 1.000000000 1
## 1473 1 1.000000000 1
## 1474 3 1.000000000 1
## 1475 4 1.000000000 1
## 1476 1 1.000000000 1
## 1477 1 1.000000000 1
## 1478 1 1.000000000 1
## 1479 1 1.000000000 1
## 1480 1 1.000000000 1
## 1481 1 1.000000000 1
## 1482 92 1.000000000 1
## 1483 1 1.000000000 1
## 1484 5 1.000000000 1
## 1485 2 1.000000000 1
## 1486 1 1.000000000 1
## 1487 1 1.000000000 1
## 1488 1 1.000000000 1
## 1489 3 1.000000000 1
## 1490 1 1.000000000 1
## 1491 2 1.000000000 1
## 1492 1 1.000000000 1
## 1493 1 1.000000000 1
## 1494 2 1.000000000 1
## 1495 1 1.000000000 1
## 1496 1 1.000000000 1
## 1497 1 1.000000000 1
## 1498 4 1.000000000 1
## 1499 4 1.000000000 1
## 1500 1 1.000000000 1
## 1501 3 1.000000000 1
## 1502 4 1.000000000 1
## 1503 4 1.000000000 1
## 1504 11 1.000000000 1
## 1505 5 1.000000000 1
## 1506 2 1.000000000 1
## 1507 2 1.000000000 1
## 1508 3 1.000000000 1
## 1509 16 1.000000000 1
## 1510 14 1.000000000 1
## 1511 1 1.000000000 1
## 1512 5 1.000000000 1
## 1513 2 1.000000000 1
## 1514 4 1.000000000 1
## 1515 2 1.000000000 1
## 1516 1 1.000000000 1
## 1517 5 1.000000000 1
## 1518 6 1.000000000 1
## 1519 3 1.000000000 1
## 1520 1 1.000000000 1
## 1521 1 1.000000000 1
## 1522 2 1.000000000 1
## 1523 1 1.000000000 1
## 1524 2 1.000000000 1
## 1525 1 1.000000000 1
## 1526 10 1.000000000 1
## 1527 1 1.000000000 1
## 1528 9 1.000000000 1
## 1529 1 1.000000000 1
## 1530 3 1.000000000 1
## 1531 4 1.000000000 1
## 1532 1 1.000000000 1
## 1533 1 1.000000000 1
## 1534 1 1.000000000 1
## 1535 1 1.000000000 1
## 1536 1 1.000000000 1
## 1537 1 1.000000000 1
## 1538 3 1.000000000 1
## 1539 4 1.000000000 1
## 1540 1 1.000000000 1
## 1541 11 1.000000000 1
## 1542 1 1.000000000 1
## 1543 1 1.000000000 1
## 1544 1 1.000000000 1
## 1545 3 1.000000000 1
## 1546 1 1.000000000 1
## 1547 1 1.000000000 1
## 1548 2 1.000000000 1
## 1549 1 1.000000000 1
## 1550 2 1.000000000 1
## 1551 4 1.000000000 1
## 1552 2 1.000000000 1
## 1553 1 1.000000000 1
## 1554 2 1.000000000 1
## 1555 1 1.000000000 1
## 1556 21 1.000000000 1
## 1557 30 1.000000000 1
## 1558 6 1.000000000 1
## 1559 1 1.000000000 1
## 1560 1 1.000000000 1
## 1561 1 1.000000000 1
## 1562 1 1.000000000 1
## 1563 1 1.000000000 1
## 1564 1 1.000000000 1
## 1565 1 1.000000000 1
## 1566 1 1.000000000 1
## 1567 1 1.000000000 1
## 1568 1 1.000000000 1
## 1569 7 1.000000000 1
## 1570 3 1.000000000 1
## 1571 1 1.000000000 1
## 1572 2 1.000000000 1
## 1573 2 1.000000000 1
## 1574 8 1.000000000 1
## 1575 1 1.000000000 1
## 1576 1 1.000000000 1
## 1577 4 1.000000000 1
## 1578 2 1.000000000 1
## 1579 2 1.000000000 1
## 1580 3 1.000000000 1
## 1581 2 1.000000000 1
## 1582 2 1.000000000 1
## 1583 2 1.000000000 1
## 1584 1 1.000000000 1
## 1585 8 1.000000000 1
## 1586 1 1.000000000 1
## 1587 4 1.000000000 1
## 1588 28 1.000000000 1
## 1589 1 1.000000000 1
## 1590 4 1.000000000 1
## 1591 5 1.000000000 1
## 1592 9 1.000000000 1
## 1593 7 1.000000000 1
## 1594 2 1.000000000 1
## 1595 30 1.000000000 1
## 1596 4 1.000000000 1
## 1597 4 1.000000000 1
## 1598 3 1.000000000 1
## 1599 70 1.000000000 1
## 1600 7 1.000000000 1
## 1601 6 1.000000000 1
## 1602 3 1.000000000 1
## 1603 4 1.000000000 1
## 1604 14 1.000000000 1
## 1605 15 1.000000000 1
## 1606 26 1.000000000 1
## 1607 3 1.000000000 1
## 1608 51 1.000000000 1
## 1609 9 1.000000000 1
## 1610 3 1.000000000 1
## 1611 3 1.000000000 1
## 1612 6 1.000000000 1
## 1613 8 1.000000000 1
## 1614 1 1.000000000 1
## 1615 1 1.000000000 1
## 1616 3 1.000000000 1
## 1617 1 1.000000000 1
## 1618 4 1.000000000 1
## 1619 1 1.000000000 1
## 1620 6 1.000000000 1
## 1621 3 1.000000000 1
## 1622 4 1.000000000 1
## 1623 3 1.000000000 1
## 1624 1 1.000000000 1
## 1625 2 1.000000000 1
## 1626 1 1.000000000 1
## 1627 1 1.000000000 1
## 1628 3 1.000000000 1
## 1629 5 1.000000000 1
## 1630 2 1.000000000 1
## 1631 1 1.000000000 1
## 1632 2 1.000000000 1
## 1633 1 1.000000000 1
## 1634 5 1.000000000 1
## 1635 1 1.000000000 1
## 1636 1 1.000000000 1
## 1637 6 1.000000000 1
## 1638 3 1.000000000 1
## 1639 3 1.000000000 1
## 1640 5 1.000000000 1
## 1641 1 1.000000000 1
## 1642 3 1.000000000 1
## 1643 2 1.000000000 1
## 1644 2 1.000000000 1
## 1645 1 1.000000000 1
## 1646 1 1.000000000 1
## 1647 2 1.000000000 1
## 1648 2 1.000000000 1
## 1649 4 1.000000000 1
## 1650 1 1.000000000 1
## 1651 1 1.000000000 1
## 1652 11 1.000000000 1
## 1653 3 1.000000000 1
## 1654 2 1.000000000 1
## 1655 1 1.000000000 1
## 1656 2 1.000000000 1
## 1657 2 1.000000000 1
## 1658 1 1.000000000 1
## 1659 3 1.000000000 1
## 1660 1 1.000000000 1
## 1661 3 1.000000000 1
## 1662 3 1.000000000 1
## 1663 21 1.000000000 1
## 1664 1 1.000000000 1
## 1665 3 1.000000000 1
## 1666 4 1.000000000 1
## 1667 4 1.000000000 1
## 1668 2 1.000000000 1
## 1669 2 1.000000000 1
## 1670 2 1.000000000 1
## 1671 2 1.000000000 1
## 1672 2 1.000000000 1
## 1673 2 1.000000000 1
## 1674 2 1.000000000 1
## 1675 1 1.000000000 1
## 1676 2 1.000000000 1
## 1677 4 1.000000000 1
## 1678 3 1.000000000 1
## 1679 2 1.000000000 1
## 1680 3 1.000000000 1
## 1681 3 1.000000000 1
## 1682 1 1.000000000 1
## 1683 1 1.000000000 1
## 1684 5 1.000000000 1
## 1685 5 1.000000000 1
## 1686 2 1.000000000 1
## 1687 1 1.000000000 1
## 1688 1 1.000000000 1
## 1689 1 1.000000000 1
## 1690 1 1.000000000 1
## 1691 1 1.000000000 1
## 1692 11 1.000000000 1
## 1693 9 1.000000000 1
## 1694 8 1.000000000 1
## 1695 95 1.000000000 1
## 1696 2 1.000000000 1
## 1697 3 1.000000000 1
## 1698 10 1.000000000 1
## 1699 1 1.000000000 1
## 1700 1 1.000000000 1
## 1701 2 1.000000000 1
## 1702 49 1.000000000 1
## 1703 3 1.000000000 1
## 1704 3 1.000000000 1
## 1705 7 1.000000000 1
## 1706 19 1.000000000 1
## 1707 4 1.000000000 1
## 1708 1 1.000000000 1
## 1709 5 1.000000000 1
## 1710 2 1.000000000 1
## 1711 2 1.000000000 1
## 1712 7 1.000000000 1
## 1713 2 1.000000000 1
## 1714 2 1.000000000 1
## 1715 3 1.000000000 1
## 1716 2 1.000000000 1
## 1717 2 1.000000000 1
## 1718 2 1.000000000 1
## 1719 2 1.000000000 1
## 1720 2 1.000000000 1
## 1721 2 1.000000000 1
## 1722 1 1.000000000 1
## 1723 6 1.000000000 1
## 1724 1 1.000000000 1
## 1725 2 1.000000000 1
## 1726 3 1.000000000 1
## 1727 1 1.000000000 1
## 1728 7 1.000000000 1
## 1729 10 1.000000000 1
## 1730 6 1.000000000 1
## 1731 3 1.000000000 1
## 1732 3 1.000000000 1
## 1733 3 1.000000000 1
## 1734 1 1.000000000 1
## 1735 1 1.000000000 1
## 1736 4 1.000000000 1
## 1737 2 1.000000000 1
## 1738 2 1.000000000 1
## 1739 3 1.000000000 1
## 1740 3 1.000000000 1
## 1741 26 1.000000000 1
## 1742 2 1.000000000 1
## 1743 12 1.000000000 1
## 1744 15 1.000000000 1
## 1745 11 1.000000000 1
## 1746 10 1.000000000 1
## 1747 2 1.000000000 1
## 1748 6 1.000000000 1
## 1749 2 1.000000000 1
## 1750 1 1.000000000 1
## 1751 2 1.000000000 1
## 1752 2 1.000000000 1
## 1753 2 1.000000000 1
## 1754 3 1.000000000 1
## 1755 7 1.000000000 1
## 1756 3 1.000000000 1
## 1757 2 1.000000000 1
## 1758 6 1.000000000 1
## 1759 19 1.000000000 1
## 1760 4 1.000000000 1
## 1761 7 1.000000000 1
## 1762 4 1.000000000 1
## 1763 6 1.000000000 1
## 1764 1 1.000000000 1
## 1765 1 1.000000000 1
## 1766 3 1.000000000 1
## 1767 4 1.000000000 1
## 1768 9 1.000000000 1
## 1769 8 1.000000000 1
## 1770 1 1.000000000 1
## 1771 2 1.000000000 1
## 1772 3 1.000000000 1
## 1773 22 1.000000000 1
## 1774 5 1.000000000 1
## 1775 3 1.000000000 1
## 1776 2 1.000000000 1
## 1777 1 1.000000000 1
## 1778 2 1.000000000 1
## 1779 3 1.000000000 1
## 1780 7 1.000000000 1
## 1781 15 1.000000000 1
## 1782 7 1.000000000 1
## 1783 8 1.000000000 1
## 1784 2 1.000000000 1
## 1785 5 1.000000000 1
## 1786 1 1.000000000 1
## 1787 1 1.000000000 1
## 1788 3 1.000000000 1
## 1789 2 1.000000000 1
## 1790 3 1.000000000 1
## 1791 1 1.000000000 1
## 1792 2 1.000000000 1
## 1793 1 1.000000000 1
## 1794 7 1.000000000 1
## 1795 9 1.000000000 1
## 1796 4 1.000000000 1
## 1797 2 1.000000000 1
## 1798 4 1.000000000 1
## 1799 1 1.000000000 1
## 1800 14 1.000000000 1
## 1801 2 1.000000000 1
## 1802 50 1.000000000 1
## 1803 2 1.000000000 1
## 1804 8 1.000000000 1
## 1805 2 1.000000000 1
## 1806 1 1.000000000 1
## 1807 2 1.000000000 1
## 1808 10 1.000000000 1
## 1809 7 1.000000000 1
## 1810 47 1.000000000 1
## 1811 21 1.000000000 1
## 1812 1 1.000000000 1
## 1813 14 1.000000000 1
## 1814 2 1.000000000 1
## 1815 3 1.000000000 1
## 1816 14 1.000000000 1
## 1817 26 1.000000000 1
## 1818 4 1.000000000 1
## 1819 36 1.000000000 1
## 1820 2 1.000000000 1
## 1821 3 1.000000000 1
## 1822 21 1.000000000 1
## 1823 8 1.000000000 1
## 1824 7 1.000000000 1
## 1825 1 1.000000000 1
## 1826 17 1.000000000 1
## 1827 3 1.000000000 1
## 1828 5 1.000000000 1
## 1829 2 1.000000000 1
## 1830 1 1.000000000 1
## 1831 1 1.000000000 1
## 1832 5 1.000000000 1
## 1833 17 1.000000000 1
## 1834 1 1.000000000 1
## 1835 5 1.000000000 1
## 1836 2 1.000000000 1
## 1837 3 1.000000000 1
## 1838 2 1.000000000 1
## 1839 7 1.000000000 1
## 1840 1 1.000000000 1
## 1841 1 1.000000000 1
## 1842 1 1.000000000 1
## 1843 1 1.000000000 1
## 1844 5 1.000000000 1
## 1845 1 1.000000000 1
## 1846 2 1.000000000 1
## 1847 1 1.000000000 1
## 1848 2 1.000000000 1
## 1849 2 1.000000000 1
## 1850 2 1.000000000 1
## 1851 3 1.000000000 1
## 1852 2 1.000000000 1
## 1853 3 1.000000000 1
## 1854 49 1.000000000 1
## 1855 15 1.000000000 1
## 1856 2 1.000000000 1
## 1857 32 1.000000000 1
## 1858 3 1.000000000 1
## 1859 2 1.000000000 1
## 1860 1 1.000000000 1
## 1861 2 1.000000000 1
## 1862 11 1.000000000 1
## 1863 3 1.000000000 1
## 1864 2 1.000000000 1
## 1865 1 1.000000000 1
## 1866 4 1.000000000 1
## 1867 1 1.000000000 1
## 1868 28 1.000000000 1
## 1869 2 1.000000000 1
## 1870 1 1.000000000 1
## 1871 20 1.000000000 1
## 1872 4 1.000000000 1
## 1873 3 1.000000000 1
## 1874 9 1.000000000 1
## 1875 4 1.000000000 1
## 1876 4 1.000000000 1
## 1877 16 1.000000000 1
## 1878 75 1.000000000 1
## 1879 48 1.000000000 1
## 1880 19 1.000000000 1
## 1881 6 1.000000000 1
## 1882 23 1.000000000 1
## 1883 4 1.000000000 1
## 1884 20 1.000000000 1
## 1885 1 1.000000000 1
## 1886 1 1.000000000 1
## 1887 3 1.000000000 1
## 1888 1 1.000000000 1
## 1889 3 1.000000000 1
## 1890 6 1.000000000 1
## 1891 2 1.000000000 1
## 1892 2 1.000000000 1
## 1893 2 1.000000000 1
## 1894 2 1.000000000 1
## 1895 1 1.000000000 1
## 1896 1 1.000000000 1
## 1897 2 1.000000000 1
## 1898 1 1.000000000 1
## 1899 33 1.000000000 1
## 1900 14 1.000000000 1
## 1901 7 1.000000000 1
## 1902 4 1.000000000 1
## 1903 1 1.000000000 1
## 1904 5 1.000000000 1
## 1905 1 1.000000000 1
## 1906 5 1.000000000 1
## 1907 2 1.000000000 1
## 1908 4 1.000000000 1
## 1909 3 1.000000000 1
## 1910 1 1.000000000 1
## 1911 1 1.000000000 1
## 1912 18 1.000000000 1
## 1913 10 1.000000000 1
## 1914 14 1.000000000 1
## 1915 6 1.000000000 1
## 1916 11 1.000000000 1
## 1917 9 1.000000000 1
## 1918 3 1.000000000 1
## 1919 15 1.000000000 1
## 1920 1 1.000000000 1
## 1921 2 1.000000000 1
## 1922 2 1.000000000 1
## 1923 1 1.000000000 1
## 1924 1 1.000000000 1
## 1925 1 1.000000000 1
## 1926 6 1.000000000 1
## 1927 9 1.000000000 1
## 1928 4 1.000000000 1
## 1929 14 1.000000000 1
## 1930 1 1.000000000 1
## 1931 6 1.000000000 1
## 1932 3 1.000000000 1
## 1933 2 1.000000000 1
## 1934 6 1.000000000 1
## 1935 10 1.000000000 1
## 1936 23 1.000000000 1
## 1937 1 1.000000000 1
## 1938 2 1.000000000 1
## 1939 2 1.000000000 1
## 1940 1 1.000000000 1
## 1941 2 1.000000000 1
## 1942 1 1.000000000 1
## 1943 3 1.000000000 1
## 1944 1 1.000000000 1
## 1945 1 1.000000000 1
## 1946 3 1.000000000 1
## 1947 4 1.000000000 1
## 1948 6 1.000000000 1
## 1949 32 1.000000000 1
## 1950 4 1.000000000 1
## 1951 2 1.000000000 1
## 1952 1 1.000000000 1
## 1953 10 1.000000000 1
## 1954 14 1.000000000 1
## 1955 16 1.000000000 1
## 1956 5 1.000000000 1
## 1957 11 1.000000000 1
## 1958 17 1.000000000 1
## 1959 11 1.000000000 1
## 1960 46 1.000000000 1
## 1961 37 1.000000000 1
## 1962 77 1.000000000 1
## 1963 1 1.000000000 1
## 1964 48 1.000000000 1
## 1965 9 1.000000000 1
## 1966 7 1.000000000 1
## 1967 5 1.000000000 1
## 1968 27 1.000000000 1
## 1969 1 1.000000000 1
## 1970 4 1.000000000 1
## 1971 91 1.000000000 1
## 1972 11 1.000000000 1
## 1973 2 1.000000000 1
## 1974 2 1.000000000 1
## 1975 3 1.000000000 1
## 1976 1 1.000000000 1
## 1977 1 1.000000000 1
## 1978 2 1.000000000 1
## 1979 1 1.000000000 1
## 1980 1 1.000000000 1
## 1981 1 1.000000000 1
## 1982 1 1.000000000 1
## 1983 1 1.000000000 1
## 1984 1 1.000000000 1
## 1985 2 1.000000000 1
## 1986 1 1.000000000 1
## 1987 6 1.000000000 1
## 1988 27 1.000000000 1
## 1989 8 1.000000000 1
## 1990 5 1.000000000 1
## 1991 53 1.000000000 1
## 1992 2 1.000000000 1
## 1993 2 1.000000000 1
## 1994 7 1.000000000 1
## 1995 2 1.000000000 1
## 1996 5 1.000000000 1
## 1997 3 1.000000000 1
## 1998 46 1.000000000 1
## 1999 10 1.000000000 1
## 2000 15 1.000000000 1
## 2001 3 1.000000000 1
## 2002 2 1.000000000 1
## 2003 13 1.000000000 1
## 2004 22 1.000000000 1
## 2005 9 1.000000000 1
## 2006 48 1.000000000 1
## 2007 11 1.000000000 1
## 2008 3 1.000000000 1
## 2009 3 1.000000000 1
## 2010 13 1.000000000 1
## 2011 2 1.000000000 1
## 2012 16 1.000000000 1
## 2013 14 1.000000000 1
## 2014 1 1.000000000 1
## 2015 2 1.000000000 1
## 2016 2 1.000000000 1
## 2017 1 1.000000000 1
## 2018 1 1.000000000 1
## 2019 2 1.000000000 1
## 2020 13 1.000000000 1
## 2021 5 1.000000000 1
## 2022 2 1.000000000 1
## 2023 2 1.000000000 1
## 2024 10 1.000000000 1
## 2025 19 1.000000000 1
## 2026 5 1.000000000 1
## 2027 2 1.000000000 1
## 2028 3 1.000000000 1
## 2029 21 1.000000000 1
## 2030 17 1.000000000 1
## 2031 3 1.000000000 1
## 2032 12 1.000000000 1
## 2033 3 1.000000000 1
## 2034 1 1.000000000 1
## 2035 11 1.000000000 1
## 2036 16 1.000000000 1
## 2037 9 1.000000000 1
## 2038 3 1.000000000 1
## 2039 1 1.000000000 1
## 2040 1 1.000000000 1
## 2041 2 1.000000000 1
## 2042 17 1.000000000 1
## 2043 34 1.000000000 1
## 2044 2 1.000000000 1
## 2045 1 1.000000000 1
## 2046 1 1.000000000 1
## 2047 4 1.000000000 1
## 2048 1 1.000000000 1
## 2049 1 1.000000000 1
## 2050 1 1.000000000 1
## 2051 4 1.000000000 1
## 2052 2 1.000000000 1
## 2053 13 1.000000000 1
## 2054 1 1.000000000 1
## 2055 1 1.000000000 1
## 2056 5 1.000000000 1
## 2057 1 1.000000000 1
## 2058 1 1.000000000 1
## 2059 3 1.000000000 1
## 2060 3 1.000000000 1
## 2061 3 1.000000000 1
## 2062 9 1.000000000 1
## 2063 7 1.000000000 1
## 2064 3 1.000000000 1
## 2065 1 1.000000000 1
## 2066 1 1.000000000 1
## 2067 8 1.000000000 1
## 2068 2 1.000000000 1
## 2069 1 1.000000000 1
## 2070 1 1.000000000 1
## 2071 1 1.000000000 1
## 2072 1 1.000000000 1
## 2073 2 1.000000000 1
## 2074 3 1.000000000 1
## 2075 4 1.000000000 1
## 2076 3 1.000000000 1
## 2077 1 1.000000000 1
## 2078 1 1.000000000 1
## 2079 1 1.000000000 1
## 2080 1 1.000000000 1
## 2081 2 1.000000000 1
## 2082 1 1.000000000 1
## 2083 1 1.000000000 1
## 2084 2 1.000000000 1
## 2085 7 1.000000000 1
## 2086 8 1.000000000 1
## 2087 1 1.000000000 1
## 2088 10 1.000000000 1
## 2089 3 1.000000000 1
## 2090 2 1.000000000 1
## 2091 1 1.000000000 1
## 2092 7 1.000000000 1
## 2093 1 1.000000000 1
## 2094 2 1.000000000 1
## 2095 1 1.000000000 1
## 2096 22 1.000000000 1
## 2097 18 1.000000000 1
## 2098 4 1.000000000 1
## 2099 1 1.000000000 1
## 2100 1 1.000000000 1
## 2101 1 1.000000000 1
## 2102 10 1.000000000 1
## 2103 1 1.000000000 1
## 2104 1 1.000000000 1
## 2105 14 1.000000000 1
## 2106 4 1.000000000 1
## 2107 6 1.000000000 1
## 2108 9 1.000000000 1
## 2109 3 1.000000000 1
## 2110 1 1.000000000 1
## 2111 6 1.000000000 1
## 2112 9 1.000000000 1
## 2113 2 1.000000000 1
## 2114 3 1.000000000 1
## 2115 6 1.000000000 1
## 2116 1 1.000000000 1
## 2117 28 1.000000000 1
## 2118 2 1.000000000 1
## 2119 1 1.000000000 1
## 2120 2 1.000000000 1
## 2121 8 1.000000000 1
## 2122 8 1.000000000 1
## 2123 26 1.000000000 1
## 2124 1 1.000000000 1
## 2125 5 1.000000000 1
## 2126 2 1.000000000 1
## 2127 1 1.000000000 1
## 2128 8 1.000000000 1
## 2129 1 1.000000000 1
## 2130 1 1.000000000 1
## 2131 7 1.000000000 1
## 2132 5 1.000000000 1
## 2133 27 1.000000000 1
## 2134 1 1.000000000 1
## 2135 3 1.000000000 1
## 2136 7 1.000000000 1
## 2137 4 1.000000000 1
## 2138 1 1.000000000 1
## 2139 10 1.000000000 1
## 2140 2 1.000000000 1
## 2141 16 1.000000000 1
## 2142 2 1.000000000 1
## 2143 1 1.000000000 1
## 2144 1 1.000000000 1
## 2145 1 1.000000000 1
## 2146 1 1.000000000 1
## 2147 1 1.000000000 1
## 2148 2 1.000000000 1
## 2149 4 1.000000000 1
## 2150 2 1.000000000 1
## 2151 1 1.000000000 1
## 2152 1 1.000000000 1
## 2153 1 1.000000000 1
## 2154 1 1.000000000 1
## 2155 1 1.000000000 1
## 2156 1 1.000000000 1
## 2157 2 1.000000000 1
## 2158 1 1.000000000 1
## 2159 1 1.000000000 1
## 2160 1 1.000000000 1
## 2161 1 1.000000000 1
## 2162 2 1.000000000 1
## 2163 1 1.000000000 1
## 2164 1 1.000000000 1
## 2165 1 1.000000000 1
## 2166 1 1.000000000 1
## 2167 1 1.000000000 1
## 2168 1 1.000000000 1
## 2169 9 1.000000000 1
## 2170 3 1.000000000 1
## 2171 1 1.000000000 1
## 2172 1 1.000000000 1
## 2173 1 1.000000000 1
## 2174 4 1.000000000 1
## 2175 1 1.000000000 1
## 2176 4 1.000000000 1
## 2177 1 1.000000000 1
## 2178 6 1.000000000 1
## 2179 1 1.000000000 1
## 2180 1 1.000000000 1
## 2181 1 1.000000000 1
## 2182 1 1.000000000 1
## 2183 1 1.000000000 1
## 2184 1 1.000000000 1
## 2185 3 1.000000000 1
## 2186 1 1.000000000 1
## 2187 4 1.000000000 1
## 2188 3 1.000000000 1
## 2189 2 1.000000000 1
## 2190 4 1.000000000 1
## 2191 1 1.000000000 1
## 2192 1 1.000000000 1
## 2193 1 1.000000000 1
## 2194 2 1.000000000 1
## 2195 10 1.000000000 1
## 2196 1 1.000000000 1
## 2197 2 1.000000000 1
## 2198 1 1.000000000 1
## 2199 1 1.000000000 1
## 2200 1 1.000000000 1
## 2201 5 1.000000000 1
## 2202 1 1.000000000 1
## 2203 4 1.000000000 1
## 2204 1 1.000000000 1
## 2205 1 1.000000000 1
## 2206 5 1.000000000 1
## 2207 5 1.000000000 1
## 2208 1 1.000000000 1
## 2209 1 1.000000000 1
## 2210 1 1.000000000 1
## 2211 2 1.000000000 1
## 2212 1 1.000000000 1
## 2213 1 1.000000000 1
## 2214 7 1.000000000 1
## 2215 11 1.000000000 1
## 2216 14 1.000000000 1
## 2217 1 1.000000000 1
## 2218 12 1.000000000 1
## 2219 1 1.000000000 1
## 2220 5 1.000000000 1
## 2221 1 1.000000000 1
## 2222 2 1.000000000 1
## 2223 4 1.000000000 1
## 2224 17 1.000000000 1
## 2225 3 1.000000000 1
## 2226 2 1.000000000 1
## 2227 2 1.000000000 1
## 2228 9 1.000000000 1
## 2229 1 1.000000000 1
## 2230 4 1.000000000 1
## 2231 1 1.000000000 1
## 2232 4 1.000000000 1
## 2233 3 1.000000000 1
## 2234 1 1.000000000 1
## 2235 35 1.000000000 1
## 2236 13 1.000000000 1
## 2237 5 1.000000000 1
## 2238 1 1.000000000 1
## 2239 1 1.000000000 1
## 2240 1 1.000000000 1
## 2241 1 1.000000000 1
## 2242 2 1.000000000 1
## 2243 5 1.000000000 1
## 2244 3 1.000000000 1
## 2245 1 1.000000000 1
## 2246 1 1.000000000 1
## 2247 1 1.000000000 1
## 2248 1 1.000000000 1
## 2249 2 1.000000000 1
## 2250 3 1.000000000 1
## 2251 1 1.000000000 1
## 2252 17 1.000000000 1
## 2253 1 1.000000000 1
## 2254 15 1.000000000 1
## 2255 1 1.000000000 1
## 2256 23 1.000000000 1
## 2257 3 1.000000000 1
## 2258 1 1.000000000 1
## 2259 16 1.000000000 1
## 2260 15 1.000000000 1
## 2261 2 1.000000000 1
## 2262 18 1.000000000 1
## 2263 1 1.000000000 1
## 2264 1 1.000000000 1
## 2265 2 1.000000000 1
## 2266 1 1.000000000 1
## 2267 4 1.000000000 1
## 2268 1 1.000000000 1
## 2269 3 1.000000000 1
## 2270 4 1.000000000 1
## 2271 9 1.000000000 1
## 2272 8 1.000000000 1
## 2273 3 1.000000000 1
## 2274 7 1.000000000 1
## 2275 2 1.000000000 1
## 2276 4 1.000000000 1
## 2277 4 1.000000000 1
## 2278 5 1.000000000 1
## 2279 4 1.000000000 1
## 2280 1 1.000000000 1
## 2281 1 1.000000000 1
## 2282 7 1.000000000 1
## 2283 10 1.000000000 1
## 2284 1 1.000000000 1
## 2285 1 1.000000000 1
## 2286 10 1.000000000 1
## 2287 5 1.000000000 1
## 2288 8 1.000000000 1
## 2289 3 1.000000000 1
## 2290 13 1.000000000 1
## 2291 16 1.000000000 1
## 2292 12 1.000000000 1
## 2293 9 1.000000000 1
## 2294 2 1.000000000 1
## 2295 6 1.000000000 1
## 2296 3 1.000000000 1
## 2297 4 1.000000000 1
## 2298 2 1.000000000 1
## 2299 2 1.000000000 1
## 2300 2 1.000000000 1
## 2301 8 1.000000000 1
## 2302 4 1.000000000 1
## 2303 3 1.000000000 1
## 2304 20 1.000000000 1
## 2305 13 1.000000000 1
## 2306 5 1.000000000 1
## 2307 5 1.000000000 1
## 2308 19 1.000000000 1
## 2309 12 1.000000000 1
## 2310 5 1.000000000 1
## 2311 3 1.000000000 1
## 2312 5 1.000000000 1
## 2313 10 1.000000000 1
## 2314 9 1.000000000 1
## 2315 6 1.000000000 1
## 2316 1 1.000000000 1
## 2317 28 1.000000000 1
## 2318 30 1.000000000 1
## 2319 3 1.000000000 1
## 2320 3 1.000000000 1
## 2321 1 1.000000000 1
## 2322 7 1.000000000 1
## 2323 1 1.000000000 1
## 2324 4 1.000000000 1
## 2325 25 1.000000000 1
## 2326 5 1.000000000 1
## 2327 2 1.000000000 1
## 2328 1 1.000000000 1
## 2329 1 1.000000000 1
## 2330 1 1.000000000 1
## 2331 12 1.000000000 1
## 2332 1 1.000000000 1
## 2333 9 1.000000000 1
## 2334 1 1.000000000 1
## 2335 6 1.000000000 1
## 2336 2 1.000000000 1
## 2337 2 1.000000000 1
## 2338 1 1.000000000 1
## 2339 3 1.000000000 1
## 2340 1 1.000000000 1
## 2341 1 1.000000000 1
## 2342 1 1.000000000 1
## 2343 1 1.000000000 1
## 2344 2 1.000000000 1
## 2345 2 1.000000000 1
## 2346 1 1.000000000 1
## 2347 5 1.000000000 1
## 2348 22 1.000000000 1
## 2349 10 1.000000000 1
## 2350 43 1.000000000 1
## 2351 2 1.000000000 1
## 2352 1 1.000000000 1
## 2353 3 1.000000000 1
## 2354 1 1.000000000 1
## 2355 9 1.000000000 1
## 2356 5 1.000000000 1
## 2357 4 1.000000000 1
## 2358 1 1.000000000 1
## 2359 18 1.000000000 1
## 2360 3 1.000000000 1
## 2361 1 1.000000000 1
## 2362 1 1.000000000 1
## 2363 1 1.000000000 1
## 2364 10 1.000000000 1
## 2365 21 1.000000000 1
## 2366 8 1.000000000 1
## 2367 1 1.000000000 1
## 2368 1 1.000000000 1
## 2369 8 1.000000000 1
## 2370 14 1.000000000 1
## 2371 15 1.000000000 1
## 2372 36 1.000000000 1
## 2373 2 1.000000000 1
## 2374 7 1.000000000 1
## 2375 5 1.000000000 1
## 2376 1 1.000000000 1
## 2377 2 1.000000000 1
## 2378 2 1.000000000 1
## 2379 1 1.000000000 1
## 2380 1 1.000000000 1
## 2381 2 1.000000000 1
## 2382 6 1.000000000 1
## 2383 2 1.000000000 1
## 2384 3 1.000000000 1
## 2385 6 1.000000000 1
## 2386 9 1.000000000 1
## 2387 8 1.000000000 1
## 2388 2 1.000000000 1
## 2389 11 1.000000000 1
## 2390 4 1.000000000 1
## 2391 1 1.000000000 1
## 2392 29 1.000000000 1
## 2393 2 1.000000000 1
## 2394 1 1.000000000 1
## 2395 1 1.000000000 1
## 2396 1 1.000000000 1
## 2397 3 1.000000000 1
## 2398 2 1.000000000 1
## 2399 12 1.000000000 1
## 2400 1 1.000000000 1
## 2401 4 1.000000000 1
## 2402 1 1.000000000 1
## 2403 2 1.000000000 1
## 2404 2 1.000000000 1
## 2405 4 1.000000000 1
## 2406 7 1.000000000 1
## 2407 3 1.000000000 1
## 2408 4 1.000000000 1
## 2409 3 1.000000000 1
## 2410 2 1.000000000 1
## 2411 4 1.000000000 1
## 2412 2 1.000000000 1
## 2413 2 1.000000000 1
## 2414 3 1.000000000 1
## 2415 2 1.000000000 1
## 2416 2 1.000000000 1
## 2417 14 1.000000000 1
## 2418 6 1.000000000 1
## 2419 20 1.000000000 1
## 2420 38 1.000000000 1
## 2421 1 1.000000000 1
## 2422 8 1.000000000 1
## 2423 5 1.000000000 1
## 2424 30 1.000000000 1
## 2425 2 1.000000000 1
## 2426 6 1.000000000 1
## 2427 3 1.000000000 1
## 2428 4 1.000000000 1
## 2429 7 1.000000000 1
## 2430 4 1.000000000 1
## 2431 3 1.000000000 1
## 2432 1 1.000000000 1
## 2433 4 1.000000000 1
## 2434 2 1.000000000 1
## 2435 12 1.000000000 1
## 2436 8 1.000000000 1
## 2437 1 1.000000000 1
## 2438 1 1.000000000 1
## 2439 1 1.000000000 1
## 2440 2 1.000000000 1
## 2441 12 1.000000000 1
## 2442 1 1.000000000 1
## 2443 3 1.000000000 1
## 2444 19 1.000000000 1
## 2445 3 1.000000000 1
## 2446 3 1.000000000 1
## 2447 1 1.000000000 1
## 2448 1 1.000000000 1
## 2449 4 1.000000000 1
## 2450 1 1.000000000 1
## 2451 2 1.000000000 1
## 2452 2 1.000000000 1
## 2453 15 1.000000000 1
## 2454 1 1.000000000 1
## 2455 2 1.000000000 1
## 2456 2 1.000000000 1
## 2457 8 1.000000000 1
## 2458 3 1.000000000 1
## 2459 35 1.000000000 1
## 2460 3 1.000000000 1
## 2461 9 1.000000000 1
## 2462 6 1.000000000 1
## 2463 21 1.000000000 1
## 2464 3 1.000000000 1
## 2465 16 1.000000000 1
## 2466 3 1.000000000 1
## 2467 12 1.000000000 1
## 2468 5 1.000000000 1
## 2469 16 1.000000000 1
## 2470 3 1.000000000 1
## 2471 30 1.000000000 1
## 2472 26 1.000000000 1
## 2473 25 1.000000000 1
## 2474 33 1.000000000 1
## 2475 1 1.000000000 1
## 2476 26 1.000000000 1
## 2477 7 1.000000000 1
## 2478 7 1.000000000 1
## 2479 4 1.000000000 1
## 2480 5 1.000000000 1
## 2481 9 1.000000000 1
## 2482 8 1.000000000 1
## 2483 2 1.000000000 1
## 2484 4 1.000000000 1
## 2485 3 1.000000000 1
## 2486 19 1.000000000 1
## 2487 1 1.000000000 1
## 2488 24 1.000000000 1
## 2489 3 1.000000000 1
## 2490 14 1.000000000 1
## 2491 6 1.000000000 1
## 2492 19 1.000000000 1
## 2493 72 1.000000000 1
## 2494 12 1.000000000 1
## 2495 1 1.000000000 1
## 2496 15 1.000000000 1
## 2497 3 1.000000000 1
## 2498 6 1.000000000 1
## 2499 3 1.000000000 1
## 2500 9 1.000000000 1
## 2501 4 1.000000000 1
## 2502 2 1.000000000 1
## 2503 10 1.000000000 1
## 2504 5 1.000000000 1
## 2505 4 1.000000000 1
## 2506 1 1.000000000 1
## 2507 10 1.000000000 1
## 2508 9 1.000000000 1
## 2509 12 1.000000000 1
## 2510 10 1.000000000 1
## 2511 40 1.000000000 1
## 2512 26 1.000000000 1
## 2513 23 1.000000000 1
## 2514 3 1.000000000 1
## 2515 10 1.000000000 1
## 2516 8 1.000000000 1
## 2517 12 1.000000000 1
## 2518 12 1.000000000 1
## 2519 2 1.000000000 1
## 2520 11 1.000000000 1
## 2521 23 1.000000000 1
## 2522 3 1.000000000 1
## 2523 46 1.000000000 1
## 2524 5 1.000000000 1
## 2525 1 1.000000000 1
## 2526 22 1.000000000 1
## 2527 14 1.000000000 1
## 2528 1 1.000000000 1
## 2529 5 1.000000000 1
## 2530 5 1.000000000 1
## 2531 4 1.000000000 1
## 2532 3 1.000000000 1
## 2533 1 1.000000000 1
## 2534 2 1.000000000 1
## 2535 1 1.000000000 1
## 2536 1 1.000000000 1
## 2537 7 1.000000000 1
## 2538 1 1.000000000 1
## 2539 4 1.000000000 1
## 2540 1 1.000000000 1
## 2541 59 1.000000000 1
## 2542 1 1.000000000 1
## 2543 5 1.000000000 1
## 2544 5 1.000000000 1
## 2545 2 1.000000000 1
## 2546 1 1.000000000 1
## 2547 34 1.000000000 1
## 2548 16 1.000000000 1
## 2549 2 1.000000000 1
## 2550 2 1.000000000 1
## 2551 3 1.000000000 1
## 2552 2 1.000000000 1
## 2553 1 1.000000000 1
## 2554 11 1.000000000 1
## 2555 19 1.000000000 1
## 2556 3 1.000000000 1
## 2557 34 1.000000000 1
## 2558 16 1.000000000 1
## 2559 1 1.000000000 1
## 2560 1 1.000000000 1
## 2561 2 1.000000000 1
## 2562 25 1.000000000 1
## 2563 3 1.000000000 1
## 2564 1 1.000000000 1
## 2565 2 1.000000000 1
## 2566 2 1.000000000 1
## 2567 6 1.000000000 1
## 2568 14 1.000000000 1
## 2569 1 1.000000000 1
## 2570 1 1.000000000 1
## 2571 19 1.000000000 1
## 2572 10 1.000000000 1
## 2573 2 1.000000000 1
## 2574 23 1.000000000 1
## 2575 16 1.000000000 1
## 2576 31 1.000000000 1
## 2577 5 1.000000000 1
## 2578 8 1.000000000 1
## 2579 3 1.000000000 1
## 2580 3 1.000000000 1
## 2581 2 1.000000000 1
## 2582 9 1.000000000 1
## 2583 10 1.000000000 1
## 2584 1 1.000000000 1
## 2585 8 1.000000000 1
## 2586 1 1.000000000 1
## 2587 1 1.000000000 1
## 2588 6 1.000000000 1
## 2589 1 1.000000000 1
## 2590 1 1.000000000 1
## 2591 1 1.000000000 1
## 2592 1 1.000000000 1
## 2593 1 1.000000000 1
## 2594 1 1.000000000 1
## 2595 1 1.000000000 1
## 2596 1 1.000000000 1
## 2597 1 1.000000000 1
## 2598 2 1.000000000 1
## 2599 1 1.000000000 1
## 2600 3 1.000000000 1
## 2601 4 1.000000000 1
## 2602 1 1.000000000 1
## 2603 1 1.000000000 1
## 2604 1 1.000000000 1
## 2605 5 1.000000000 1
## 2606 2 1.000000000 1
## 2607 5 1.000000000 1
## 2608 1 1.000000000 1
## 2609 1 1.000000000 1
## 2610 4 1.000000000 1
## 2611 2 1.000000000 1
## 2612 1 1.000000000 1
## 2613 1 1.000000000 1
## 2614 4 1.000000000 1
## 2615 3 1.000000000 1
## 2616 58 1.000000000 1
## 2617 6 1.000000000 1
## 2618 11 1.000000000 1
## 2619 5 1.000000000 1
## 2620 26 1.000000000 1
## 2621 6 1.000000000 1
## 2622 2 1.000000000 1
## 2623 2 1.000000000 1
## 2624 1 1.000000000 1
## 2625 3 1.000000000 1
## 2626 2 1.000000000 1
## 2627 1 1.000000000 1
## 2628 1 1.000000000 1
## 2629 1 1.000000000 1
## 2630 2 1.000000000 1
## 2631 1 1.000000000 1
## 2632 7 1.000000000 1
## 2633 2 1.000000000 1
## 2634 6 1.000000000 1
## 2635 19 1.000000000 1
## 2636 1 1.000000000 1
## 2637 1 1.000000000 1
## 2638 4 1.000000000 1
## 2639 2 1.000000000 1
## 2640 1 1.000000000 1
## 2641 1 1.000000000 1
## 2642 46 1.000000000 1
## 2643 3 1.000000000 1
## 2644 4 1.000000000 1
## 2645 4 1.000000000 1
## 2646 34 1.000000000 1
## 2647 14 1.000000000 1
## 2648 3 1.000000000 1
## 2649 5 1.000000000 1
## 2650 9 1.000000000 1
## 2651 5 1.000000000 1
## 2652 10 1.000000000 1
## 2653 2 1.000000000 1
## 2654 2 1.000000000 1
## 2655 24 1.000000000 1
## 2656 9 1.000000000 1
## 2657 6 1.000000000 1
## 2658 3 1.000000000 1
## 2659 5 1.000000000 1
## 2660 1 1.000000000 1
## 2661 9 1.000000000 1
## 2662 1 1.000000000 1
## 2663 1 1.000000000 1
## 2664 2 1.000000000 1
## 2665 3 1.000000000 1
## 2666 2 1.000000000 1
## 2667 1 1.000000000 1
## 2668 12 1.000000000 1
## 2669 6 1.000000000 1
## 2670 50 1.000000000 1
## 2671 16 1.000000000 1
## 2672 5 1.000000000 1
## 2673 7 1.000000000 1
## 2674 5 1.000000000 1
## 2675 2 1.000000000 1
## 2676 20 1.000000000 1
## 2677 3 1.000000000 1
## 2678 16 1.000000000 1
## 2679 5 1.000000000 1
## 2680 2 1.000000000 1
## 2681 6 1.000000000 1
## 2682 5 1.000000000 1
## 2683 4 1.000000000 1
## 2684 1 1.000000000 1
## 2685 1 1.000000000 1
## 2686 3 1.000000000 1
## 2687 4 1.000000000 1
## 2688 2 1.000000000 1
## 2689 3 1.000000000 1
## 2690 23 1.000000000 1
## 2691 3 1.000000000 1
## 2692 14 1.000000000 1
## 2693 2 1.000000000 1
## 2694 3 1.000000000 1
## 2695 1 1.000000000 1
## 2696 4 1.000000000 1
## 2697 10 1.000000000 1
## 2698 3 1.000000000 1
## 2699 17 1.000000000 1
## 2700 4 1.000000000 1
## 2701 1 1.000000000 1
## 2702 6 1.000000000 1
## 2703 20 1.000000000 1
## 2704 8 1.000000000 1
## 2705 7 1.000000000 1
## 2706 1 1.000000000 1
## 2707 3 1.000000000 1
## 2708 2 1.000000000 1
## 2709 1 1.000000000 1
## 2710 7 1.000000000 1
## 2711 17 1.000000000 1
## 2712 61 1.000000000 1
## 2713 14 1.000000000 1
## 2714 2 1.000000000 1
## 2715 5 1.000000000 1
## 2716 1 1.000000000 1
## 2717 4 1.000000000 1
## 2718 1 1.000000000 1
## 2719 19 1.000000000 1
## 2720 7 1.000000000 1
## 2721 3 1.000000000 1
## 2722 2 1.000000000 1
## 2723 8 1.000000000 1
## 2724 31 1.000000000 1
## 2725 2 1.000000000 1
## 2726 1 1.000000000 1
## 2727 2 1.000000000 1
## 2728 6 1.000000000 1
## 2729 3 1.000000000 1
## 2730 2 1.000000000 1
## 2731 1 1.000000000 1
## 2732 1 1.000000000 1
## 2733 2 1.000000000 1
## 2734 8 1.000000000 1
## 2735 3 1.000000000 1
## 2736 25 1.000000000 1
## 2737 4 1.000000000 1
## 2738 1 1.000000000 1
## 2739 1 1.000000000 1
## 2740 1 1.000000000 1
## 2741 1 1.000000000 1
## 2742 1 1.000000000 1
## 2743 3 1.000000000 1
## 2744 1 1.000000000 1
## 2745 1 1.000000000 1
## 2746 1 1.000000000 1
## 2747 5 1.000000000 1
## 2748 1 1.000000000 1
## 2749 67 1.000000000 1
## 2750 43 1.000000000 1
## 2751 18 1.000000000 1
## 2752 11 1.000000000 1
## 2753 2 1.000000000 1
## 2754 3 1.000000000 1
## 2755 38 1.000000000 1
## 2756 23 1.000000000 1
## 2757 15 1.000000000 1
## 2758 1 1.000000000 1
## 2759 96 1.000000000 1
## 2760 3 1.000000000 1
## 2761 1 1.000000000 1
## 2762 2 1.000000000 1
## 2763 5 1.000000000 1
## 2764 7 1.000000000 1
## 2765 6 1.000000000 1
## 2766 3 1.000000000 1
## 2767 1 1.000000000 1
## 2768 1 1.000000000 1
## 2769 2 1.000000000 1
## 2770 2 1.000000000 1
## 2771 8 1.000000000 1
## 2772 1 1.000000000 1
## 2773 15 1.000000000 1
## 2774 1 1.000000000 1
## 2775 1 1.000000000 1
## 2776 1 1.000000000 1
## 2777 1 1.000000000 1
## 2778 1 1.000000000 1
## 2779 1 1.000000000 1
## 2780 1 1.000000000 1
## 2781 1 1.000000000 1
## 2782 7 1.000000000 1
## 2783 5 1.000000000 1
## 2784 5 1.000000000 1
## 2785 12 1.000000000 1
## 2786 1 1.000000000 1
## 2787 8 1.000000000 1
## 2788 3 1.000000000 1
## 2789 10 1.000000000 1
## 2790 1 1.000000000 1
## 2791 5 1.000000000 1
## 2792 1 1.000000000 1
## 2793 12 1.000000000 1
## 2794 2 1.000000000 1
## 2795 13 1.000000000 1
## 2796 5 1.000000000 1
## 2797 4 1.000000000 1
## 2798 2 1.000000000 1
## 2799 1 1.000000000 1
## 2800 2 1.000000000 1
## 2801 2 1.000000000 1
## 2802 22 1.000000000 1
## 2803 1 1.000000000 1
## 2804 31 1.000000000 1
## 2805 1 1.000000000 1
## 2806 7 1.000000000 1
## 2807 2 1.000000000 1
## 2808 9 1.000000000 1
## 2809 7 1.000000000 1
## 2810 14 1.000000000 1
## 2811 17 1.000000000 1
## 2812 3 1.000000000 1
## 2813 3 1.000000000 1
## 2814 9 1.000000000 1
## 2815 34 1.000000000 1
## 2816 1 1.000000000 1
## 2817 9 1.000000000 1
## 2818 9 1.000000000 1
## 2819 1 1.000000000 1
## 2820 20 1.000000000 1
## 2821 4 1.000000000 1
## 2822 1 1.000000000 1
## 2823 1 1.000000000 1
## 2824 18 1.000000000 1
## 2825 2 1.000000000 1
## 2826 3 1.000000000 1
## 2827 5 1.000000000 1
## 2828 1 1.000000000 1
## 2829 2 1.000000000 1
## 2830 3 1.000000000 1
## 2831 4 1.000000000 1
## 2832 2 1.000000000 1
## 2833 1 1.000000000 1
## 2834 11 1.000000000 1
## 2835 10 1.000000000 1
## 2836 1 1.000000000 1
## 2837 2 1.000000000 1
## 2838 4 1.000000000 1
## 2839 1 1.000000000 1
## 2840 3 1.000000000 1
## 2841 1 1.000000000 1
## 2842 2 1.000000000 1
## 2843 1 1.000000000 1
## 2844 2 1.000000000 1
## 2845 3 1.000000000 1
## 2846 1 1.000000000 1
## 2847 1 1.000000000 1
## 2848 5 1.000000000 1
## 2849 5 1.000000000 1
## 2850 4 1.000000000 1
## 2851 2 1.000000000 1
## 2852 6 1.000000000 1
## 2853 4 1.000000000 1
## 2854 2 1.000000000 1
## 2855 3 1.000000000 1
## 2856 1 1.000000000 1
## 2857 1 1.000000000 1
## 2858 8 1.000000000 1
## 2859 3 1.000000000 1
## 2860 2 1.000000000 1
## 2861 1 1.000000000 1
## 2862 3 1.000000000 1
## 2863 2 1.000000000 1
## 2864 2 1.000000000 1
## 2865 1 1.000000000 1
## 2866 1 1.000000000 1
## 2867 1 1.000000000 1
## 2868 1 1.000000000 1
## 2869 1 1.000000000 1
## 2870 1 1.000000000 1
## 2871 1 1.000000000 1
## 2872 1 1.000000000 1
## 2873 1 1.000000000 1
## 2874 1 1.000000000 1
## 2875 2 1.000000000 1
## 2876 4 1.000000000 1
## 2877 4 1.000000000 1
## 2878 2 1.000000000 1
## 2879 1 1.000000000 1
## 2880 5 1.000000000 1
## 2881 1 1.000000000 1
## 2882 7 1.000000000 1
## 2883 3 1.000000000 1
## 2884 2 1.000000000 1
## 2885 1 1.000000000 1
## 2886 6 1.000000000 1
## 2887 1 1.000000000 1
## 2888 4 1.000000000 1
## 2889 1 1.000000000 1
## 2890 1 1.000000000 1
## 2891 1 1.000000000 1
## 2892 1 1.000000000 1
## 2893 1 1.000000000 1
## 2894 1 1.000000000 1
## 2895 2 1.000000000 1
## 2896 1 1.000000000 1
## 2897 1 1.000000000 1
## 2898 3 1.000000000 1
## 2899 1 1.000000000 1
## 2900 1 1.000000000 1
## 2901 3 1.000000000 1
## 2902 2 1.000000000 1
## 2903 1 1.000000000 1
## 2904 1 1.000000000 1
## 2905 10 1.000000000 1
## 2906 1 1.000000000 1
## 2907 12 1.000000000 1
## 2908 8 1.000000000 1
## 2909 1 1.000000000 1
## 2910 6 1.000000000 1
## 2911 1 1.000000000 1
## 2912 1 1.000000000 1
## 2913 11 1.000000000 1
## 2914 2 1.000000000 1
## 2915 11 1.000000000 1
## 2916 7 1.000000000 1
## 2917 7 1.000000000 1
## 2918 9 1.000000000 1
## 2919 2 1.000000000 1
## 2920 2 1.000000000 1
## 2921 1 1.000000000 1
## 2922 6 1.000000000 1
## 2923 3 1.000000000 1
## 2924 4 1.000000000 1
## 2925 3 1.000000000 1
## 2926 3 1.000000000 1
## 2927 2 1.000000000 1
## 2928 1 1.000000000 1
## 2929 2 1.000000000 1
## 2930 14 1.000000000 1
## 2931 5 1.000000000 1
## 2932 5 1.000000000 1
## 2933 3 1.000000000 1
## 2934 9 1.000000000 1
## 2935 8 1.000000000 1
## 2936 1 1.000000000 1
## 2937 6 1.000000000 1
## 2938 1 1.000000000 1
## 2939 8 1.000000000 1
## 2940 2 1.000000000 1
## 2941 3 1.000000000 1
## 2942 5 1.000000000 1
## 2943 2 1.000000000 1
## 2944 1 1.000000000 1
## 2945 1 1.000000000 1
## 2946 1 1.000000000 1
## 2947 3 1.000000000 1
## 2948 13 1.000000000 1
## 2949 1 1.000000000 1
## 2950 2 1.000000000 1
## 2951 5 1.000000000 1
## 2952 4 1.000000000 1
## 2953 1 1.000000000 1
## 2954 3 1.000000000 1
## 2955 3 1.000000000 1
## 2956 1 1.000000000 1
## 2957 1 1.000000000 1
## 2958 3 1.000000000 1
## 2959 14 1.000000000 1
## 2960 4 1.000000000 1
## 2961 2 1.000000000 1
## 2962 47 1.000000000 1
## 2963 1 1.000000000 1
## 2964 48 1.000000000 1
## 2965 20 1.000000000 1
## 2966 2 1.000000000 1
## 2967 2 1.000000000 1
## 2968 11 1.000000000 1
## 2969 2 1.000000000 1
## 2970 2 1.000000000 1
## 2971 3 1.000000000 1
## 2972 4 1.000000000 1
## 2973 1 1.000000000 1
## 2974 1 1.000000000 1
## 2975 4 1.000000000 1
## 2976 45 1.000000000 1
## 2977 1 1.000000000 1
## 2978 1 1.000000000 1
## 2979 5 1.000000000 1
## 2980 1 1.000000000 1
## 2981 15 1.000000000 1
## 2982 1 1.000000000 1
## 2983 1 1.000000000 1
## 2984 9 1.000000000 1
## 2985 1 1.000000000 1
## 2986 1 1.000000000 1
## 2987 1 1.000000000 1
## 2988 4 1.000000000 1
## 2989 3 1.000000000 1
## 2990 1 1.000000000 1
## 2991 1 1.000000000 1
## 2992 2 1.000000000 1
## 2993 27 1.000000000 1
## 2994 1 1.000000000 1
## 2995 1 1.000000000 1
## 2996 1 1.000000000 1
## 2997 1 1.000000000 1
## 2998 1 1.000000000 1
## 2999 1 1.000000000 1
## 3000 1 1.000000000 1
## 3001 1 1.000000000 1
## 3002 3 1.000000000 1
## 3003 2 1.000000000 1
## 3004 2 1.000000000 1
## 3005 1 1.000000000 1
## 3006 1 1.000000000 1
## 3007 1 1.000000000 1
## 3008 1 1.000000000 1
## 3009 2 1.000000000 1
## 3010 1 1.000000000 1
## 3011 1 1.000000000 1
## 3012 2 1.000000000 1
## 3013 1 1.000000000 1
## 3014 2 1.000000000 1
## 3015 2 1.000000000 1
## 3016 1 1.000000000 1
## 3017 1 1.000000000 1
## 3018 1 1.000000000 1
## 3019 1 1.000000000 1
## 3020 1 1.000000000 1
## 3021 1 1.000000000 1
## 3022 1 1.000000000 1
## 3023 1 1.000000000 1
## 3024 3 1.000000000 1
## 3025 2 1.000000000 1
## 3026 4 1.000000000 1
## 3027 2 1.000000000 1
## 3028 35 1.000000000 1
## 3029 16 1.000000000 1
## 3030 4 1.000000000 1
## 3031 2 1.000000000 1
## 3032 2 1.000000000 1
## 3033 1 1.000000000 1
## 3034 7 1.000000000 1
## 3035 1 1.000000000 1
## 3036 1 1.000000000 1
## 3037 2 1.000000000 1
## 3038 1 1.000000000 1
## 3039 4 1.000000000 1
## 3040 4 1.000000000 1
## 3041 2 1.000000000 1
## 3042 13 1.000000000 1
## 3043 11 1.000000000 1
## 3044 6 1.000000000 1
## 3045 15 1.000000000 1
## 3046 4 1.000000000 1
## 3047 1 1.000000000 1
## 3048 5 1.000000000 1
## 3049 1 1.000000000 1
## 3050 4 1.000000000 1
## 3051 1 1.000000000 1
## 3052 6 1.000000000 1
## 3053 10 1.000000000 1
## 3054 4 1.000000000 1
## 3055 1 1.000000000 1
## 3056 5 1.000000000 1
## 3057 4 1.000000000 1
## 3058 7 1.000000000 1
## 3059 2 1.000000000 1
## 3060 1 1.000000000 1
## 3061 1 1.000000000 1
## 3062 5 1.000000000 1
## 3063 9 1.000000000 1
## 3064 3 1.000000000 1
## 3065 1 1.000000000 1
## 3066 2 1.000000000 1
## 3067 2 1.000000000 1
## 3068 4 1.000000000 1
## 3069 1 1.000000000 1
## 3070 17 1.000000000 1
## 3071 1 1.000000000 1
## 3072 9 1.000000000 1
## 3073 2 1.000000000 1
## 3074 10 1.000000000 1
## 3075 2 1.000000000 1
## 3076 17 1.000000000 1
## 3077 6 1.000000000 1
## 3078 1 1.000000000 1
## 3079 7 1.000000000 1
## 3080 1 1.000000000 1
## 3081 13 1.000000000 1
## 3082 3 1.000000000 1
## 3083 7 1.000000000 1
## 3084 4 1.000000000 1
## 3085 9 1.000000000 1
## 3086 8 1.000000000 1
## 3087 38 1.000000000 1
## 3088 24 1.000000000 1
## 3089 8 1.000000000 1
## 3090 13 1.000000000 1
## 3091 3 1.000000000 1
## 3092 1 1.000000000 1
## 3093 10 1.000000000 1
## 3094 4 1.000000000 1
## 3095 3 1.000000000 1
## 3096 7 1.000000000 1
## 3097 1 1.000000000 1
## 3098 3 1.000000000 1
## 3099 1 1.000000000 1
## 3100 2 1.000000000 1
## 3101 2 1.000000000 1
## 3102 1 1.000000000 1
## 3103 1 1.000000000 1
## 3104 1 1.000000000 1
## 3105 6 1.000000000 1
## 3106 1 1.000000000 1
## 3107 2 1.000000000 1
## 3108 1 1.000000000 1
## 3109 2 1.000000000 1
## 3110 4 1.000000000 1
## 3111 1 1.000000000 1
## 3112 5 1.000000000 1
## 3113 1 1.000000000 1
## 3114 2 1.000000000 1
## 3115 2 1.000000000 1
## 3116 26 1.000000000 1
## 3117 4 1.000000000 1
## 3118 2 1.000000000 1
## 3119 1 1.000000000 1
## 3120 1 1.000000000 1
## 3121 1 1.000000000 1
## 3122 8 1.000000000 1
## 3123 3 1.000000000 1
## 3124 11 1.000000000 1
## 3125 3 1.000000000 1
## 3126 1 1.000000000 1
## 3127 1 1.000000000 1
## 3128 4 1.000000000 1
## 3129 3 1.000000000 1
## 3130 3 1.000000000 1
## 3131 3 1.000000000 1
## 3132 5 1.000000000 1
## 3133 4 1.000000000 1
## 3134 1 1.000000000 1
## 3135 2 1.000000000 1
## 3136 5 1.000000000 1
## 3137 1 1.000000000 1
## 3138 1 1.000000000 1
## 3139 1 1.000000000 1
## 3140 1 1.000000000 1
## 3141 1 1.000000000 1
## 3142 2 1.000000000 1
## 3143 1 1.000000000 1
## 3144 2 1.000000000 1
## 3145 4 1.000000000 1
## 3146 12 1.000000000 1
## 3147 3 1.000000000 1
## 3148 1 1.000000000 1
## 3149 4 1.000000000 1
## 3150 11 1.000000000 1
## 3151 1 1.000000000 1
## 3152 1 1.000000000 1
## 3153 1 1.000000000 1
## 3154 1 1.000000000 1
## 3155 1 1.000000000 1
## 3156 3 1.000000000 1
## 3157 1 1.000000000 1
## 3158 1 1.000000000 1
## 3159 1 1.000000000 1
## 3160 1 1.000000000 1
## 3161 1 1.000000000 1
## 3162 1 1.000000000 1
## 3163 1 1.000000000 1
## 3164 10 1.000000000 1
## 3165 2 1.000000000 1
## 3166 1 1.000000000 1
## 3167 1 1.000000000 1
## 3168 1 1.000000000 1
## 3169 1 1.000000000 1
## 3170 1 1.000000000 1
## 3171 7 1.000000000 1
## 3172 1 1.000000000 1
## 3173 6 1.000000000 1
## 3174 1 1.000000000 1
## 3175 6 1.000000000 1
## 3176 1 1.000000000 1
## 3177 1 1.000000000 1
## 3178 2 1.000000000 1
## 3179 1 1.000000000 1
## 3180 1 1.000000000 1
## 3181 1 1.000000000 1
## 3182 68 1.000000000 1
## 3183 2 1.000000000 1
## 3184 8 1.000000000 1
## 3185 1 1.000000000 1
## 3186 1 1.000000000 1
## 3187 1 1.000000000 1
## 3188 2 1.000000000 1
## 3189 1 1.000000000 1
## 3190 2 1.000000000 1
## 3191 2 1.000000000 1
## 3192 4 1.000000000 1
## 3193 4 1.000000000 1
## 3194 2 1.000000000 1
## 3195 1 1.000000000 1
## 3196 1 1.000000000 1
## 3197 1 1.000000000 1
## 3198 1 1.000000000 1
## 3199 5 1.000000000 1
## 3200 1 1.000000000 1
## 3201 3 1.000000000 1
## 3202 1 1.000000000 1
## 3203 1 1.000000000 1
## 3204 12 1.000000000 1
## 3205 1 1.000000000 1
## 3206 10 1.000000000 1
## 3207 1 1.000000000 1
## 3208 1 1.000000000 1
## 3209 1 1.000000000 1
## 3210 1 1.000000000 1
## 3211 3 1.000000000 1
## 3212 1 1.000000000 1
## 3213 1 1.000000000 1
## 3214 2 1.000000000 1
## 3215 2 1.000000000 1
## 3216 12 1.000000000 1
## 3217 31 1.000000000 1
## 3218 1 1.000000000 1
## 3219 2 1.000000000 1
## 3220 3 1.000000000 1
## 3221 1 1.000000000 1
## 3222 1 1.000000000 1
## 3223 22 1.000000000 1
## 3224 17 1.000000000 1
## 3225 31 1.000000000 1
## 3226 2 1.000000000 1
## 3227 1 1.000000000 1
## 3228 28 1.000000000 1
## 3229 16 1.000000000 1
## 3230 6 1.000000000 1
## 3231 1 1.000000000 1
## 3232 4 1.000000000 1
## 3233 4 1.000000000 1
## 3234 1 1.000000000 1
## 3235 61 1.000000000 1
## 3236 5 1.000000000 1
## 3237 1 1.000000000 1
## 3238 11 1.000000000 1
## 3239 1 1.000000000 1
## 3240 1 1.000000000 1
## 3241 6 1.000000000 1
## 3242 7 1.000000000 1
## 3243 2 1.000000000 1
## 3244 1 1.000000000 1
## 3245 1 1.000000000 1
## 3246 4 1.000000000 1
## 3247 3 1.000000000 1
## 3248 5 1.000000000 1
## 3249 41 1.000000000 1
## 3250 4 1.000000000 1
## 3251 21 1.000000000 1
## 3252 2 1.000000000 1
## 3253 2 1.000000000 1
## 3254 1 1.000000000 1
## 3255 21 1.000000000 1
## 3256 1 1.000000000 1
## 3257 1 1.000000000 1
## 3258 10 1.000000000 1
## 3259 3 1.000000000 1
## 3260 7 1.000000000 1
## 3261 8 1.000000000 1
## 3262 28 1.000000000 1
## 3263 26 1.000000000 1
## 3264 55 1.000000000 1
## 3265 14 1.000000000 1
## 3266 1 1.000000000 1
## 3267 3 1.000000000 1
## 3268 4 1.000000000 1
## 3269 1 1.000000000 1
## 3270 8 1.000000000 1
## 3271 5 1.000000000 1
## 3272 75 1.000000000 1
## 3273 2 1.000000000 1
## 3274 7 1.000000000 1
## 3275 2 1.000000000 1
## 3276 8 1.000000000 1
## 3277 1 1.000000000 1
## 3278 13 1.000000000 1
## 3279 29 1.000000000 1
## 3280 6 1.000000000 1
## 3281 1 1.000000000 1
## 3282 3 1.000000000 1
## 3283 1 1.000000000 1
## 3284 24 1.000000000 1
## 3285 1 1.000000000 1
## 3286 38 1.000000000 1
## 3287 20 1.000000000 1
## 3288 3 1.000000000 1
## 3289 1 1.000000000 1
## 3290 5 1.000000000 1
## 3291 12 1.000000000 1
## 3292 5 1.000000000 1
## 3293 11 1.000000000 1
## 3294 5 1.000000000 1
## 3295 1 1.000000000 1
## 3296 6 1.000000000 1
## 3297 5 1.000000000 1
## 3298 4 1.000000000 1
## 3299 1 1.000000000 1
## 3300 1 1.000000000 1
## 3301 1 1.000000000 1
## 3302 1 1.000000000 1
## 3303 3 1.000000000 1
## 3304 5 1.000000000 1
## 3305 1 1.000000000 1
## 3306 1 1.000000000 1
## 3307 1 1.000000000 1
## 3308 1 1.000000000 1
## 3309 1 1.000000000 1
## 3310 1 1.000000000 1
## 3311 1 1.000000000 1
## 3312 1 1.000000000 1
## 3313 9 1.000000000 1
## 3314 9 1.000000000 1
## 3315 1 1.000000000 1
## 3316 1 1.000000000 1
## 3317 4 1.000000000 1
## 3318 4 1.000000000 1
## 3319 1 1.000000000 1
## 3320 2 1.000000000 1
## 3321 1 1.000000000 1
## 3322 5 1.000000000 1
## 3323 1 1.000000000 1
## 3324 1 1.000000000 1
## 3325 1 1.000000000 1
## 3326 1 1.000000000 1
## 3327 1 1.000000000 1
## 3328 1 1.000000000 1
## 3329 1 1.000000000 1
## 3330 2 1.000000000 1
## 3331 1 1.000000000 1
## 3332 1 1.000000000 1
## 3333 3 1.000000000 1
## 3334 1 1.000000000 1
## 3335 4 1.000000000 1
## 3336 1 1.000000000 1
## 3337 15 1.000000000 1
## 3338 2 1.000000000 1
## 3339 1 1.000000000 1
## 3340 2 1.000000000 1
## 3341 1 1.000000000 1
## 3342 7 1.000000000 1
## 3343 15 1.000000000 1
## 3344 1 1.000000000 1
## 3345 1 1.000000000 1
## 3346 1 1.000000000 1
## 3347 4 1.000000000 1
## 3348 1 1.000000000 1
## 3349 2 1.000000000 1
## 3350 6 1.000000000 1
## 3351 2 1.000000000 1
## 3352 43 1.000000000 1
## 3353 1 1.000000000 1
## 3354 16 1.000000000 1
## 3355 10 1.000000000 1
## 3356 10 1.000000000 1
## 3357 3 1.000000000 1
## 3358 1 1.000000000 1
## 3359 1 1.000000000 1
## 3360 1 1.000000000 1
## 3361 9 1.000000000 1
## 3362 14 1.000000000 1
## 3363 2 1.000000000 1
## 3364 1 1.000000000 1
## 3365 1 1.000000000 1
## 3366 2 1.000000000 1
## 3367 2 1.000000000 1
## 3368 2 1.000000000 1
## 3369 6 1.000000000 1
## 3370 2 1.000000000 1
## 3371 4 1.000000000 1
## 3372 1 1.000000000 1
## 3373 1 1.000000000 1
## 3374 1 1.000000000 1
## 3375 3 1.000000000 1
## 3376 1 1.000000000 1
## 3377 1 1.000000000 1
## 3378 1 1.000000000 1
## 3379 16 1.000000000 1
## 3380 4 1.000000000 1
## 3381 1 1.000000000 1
## 3382 1 1.000000000 1
## 3383 2 1.000000000 1
## 3384 1 1.000000000 1
## 3385 1 1.000000000 1
## 3386 2 1.000000000 1
## 3387 2 1.000000000 1
## 3388 7 1.000000000 1
## 3389 17 1.000000000 1
## 3390 7 1.000000000 1
## 3391 1 1.000000000 1
## 3392 1 1.000000000 1
## 3393 8 1.000000000 1
## 3394 1 1.000000000 1
## 3395 4 1.000000000 1
## 3396 6 1.000000000 1
## 3397 1 1.000000000 1
## 3398 1 1.000000000 1
## 3399 5 1.000000000 1
## 3400 8 1.000000000 1
## 3401 2 1.000000000 1
## 3402 5 1.000000000 1
## 3403 18 1.000000000 1
## 3404 7 1.000000000 1
## 3405 2 1.000000000 1
## 3406 16 1.000000000 1
## 3407 2 1.000000000 1
## 3408 1 1.000000000 1
## 3409 9 1.000000000 1
## 3410 5 1.000000000 1
## 3411 6 1.000000000 1
## 3412 5 1.000000000 1
## 3413 4 1.000000000 1
## 3414 3 1.000000000 1
## 3415 1 1.000000000 1
## 3416 2 1.000000000 1
## 3417 2 1.000000000 1
## 3418 1 1.000000000 1
## 3419 1 1.000000000 1
## 3420 1 1.000000000 1
## 3421 2 1.000000000 1
## 3422 1 1.000000000 1
## 3423 1 1.000000000 1
## 3424 3 1.000000000 1
## 3425 2 1.000000000 1
## 3426 6 1.000000000 1
## 3427 1 1.000000000 1
## 3428 3 1.000000000 1
## 3429 3 1.000000000 1
## 3430 1 1.000000000 1
## 3431 1 1.000000000 1
## 3432 3 1.000000000 1
## 3433 1 1.000000000 1
## 3434 4 1.000000000 1
## 3435 1 1.000000000 1
## 3436 1 1.000000000 1
## 3437 1 1.000000000 1
## 3438 1 1.000000000 1
## 3439 7 1.000000000 1
## 3440 1 1.000000000 1
## 3441 1 1.000000000 1
## 3442 1 1.000000000 1
## 3443 1 1.000000000 1
## 3444 2 1.000000000 1
## 3445 5 1.000000000 1
## 3446 1 1.000000000 1
## 3447 1 1.000000000 1
## 3448 3 1.000000000 1
## 3449 2 1.000000000 1
## 3450 1 1.000000000 1
## 3451 1 1.000000000 1
## 3452 3 1.000000000 1
## 3453 1 1.000000000 1
## 3454 1 1.000000000 1
## 3455 5 1.000000000 1
## 3456 1 1.000000000 1
## 3457 1 1.000000000 1
## 3458 1 1.000000000 1
## 3459 2 1.000000000 1
## 3460 1 1.000000000 1
## 3461 1 1.000000000 1
## 3462 3 1.000000000 1
## 3463 1 1.000000000 1
## 3464 1 1.000000000 1
## 3465 1 1.000000000 1
## 3466 1 1.000000000 1
## 3467 1 1.000000000 1
## 3468 1 1.000000000 1
## 3469 1 1.000000000 1
## 3470 1 1.000000000 1
## 3471 2 1.000000000 1
## 3472 1 1.000000000 1
## 3473 1 1.000000000 1
## 3474 1 1.000000000 1
## 3475 1 1.000000000 1
## 3476 1 1.000000000 1
## 3477 1 1.000000000 1
## 3478 3 1.000000000 1
## 3479 2 1.000000000 1
## 3480 1 1.000000000 1
## 3481 3 1.000000000 1
## 3482 1 1.000000000 1
## 3483 1 1.000000000 1
## 3484 1 1.000000000 1
## 3485 1 1.000000000 1
## 3486 1 1.000000000 1
## 3487 1 1.000000000 1
## 3488 1 1.000000000 1
## 3489 1 1.000000000 1
## 3490 1 1.000000000 1
## 3491 1 1.000000000 1
## 3492 3 1.000000000 1
## 3493 9 1.000000000 1
## 3494 3 1.000000000 1
## 3495 1 1.000000000 1
## 3496 1 1.000000000 1
## 3497 1 1.000000000 1
## 3498 15 1.000000000 1
## 3499 1 1.000000000 1
## 3500 1 1.000000000 1
## 3501 1 1.000000000 1
## 3502 1 1.000000000 1
## 3503 1 1.000000000 1
## 3504 1 1.000000000 1
## 3505 3 1.000000000 1
## 3506 1 1.000000000 1
## 3507 1 1.000000000 1
## 3508 1 1.000000000 1
## 3509 1 1.000000000 1
## 3510 1 1.000000000 1
## 3511 4 1.000000000 1
## 3512 1 1.000000000 1
## 3513 2 1.000000000 1
## 3514 2 1.000000000 1
## 3515 3 1.000000000 1
## 3516 1 1.000000000 1
## 3517 1 1.000000000 1
## 3518 1 1.000000000 1
## 3519 1 1.000000000 1
## 3520 1 1.000000000 1
## 3521 2 1.000000000 1
## 3522 3 1.000000000 1
## 3523 4 1.000000000 1
## 3524 2 1.000000000 1
## 3525 8 1.000000000 1
## 3526 2 1.000000000 1
## 3527 2 1.000000000 1
## 3528 1 1.000000000 1
## 3529 1 1.000000000 1
## 3530 2 1.000000000 1
## 3531 1 1.000000000 1
## 3532 1 1.000000000 1
## 3533 1 1.000000000 1
## 3534 3 1.000000000 1
## 3535 1 1.000000000 1
## 3536 1 1.000000000 1
## 3537 1 1.000000000 1
## 3538 1 1.000000000 1
## 3539 1 1.000000000 1
## 3540 3 1.000000000 1
## 3541 1 1.000000000 1
## 3542 1 1.000000000 1
## 3543 1 1.000000000 1
## 3544 1 1.000000000 1
## 3545 1 1.000000000 1
## 3546 1 1.000000000 1
## 3547 5 1.000000000 1
## 3548 1 1.000000000 1
## 3549 1 1.000000000 1
## 3550 1 1.000000000 1
## 3551 2 1.000000000 1
## 3552 1 1.000000000 1
## 3553 1 1.000000000 1
## 3554 29 1.000000000 1
## 3555 13 1.000000000 1
## 3556 40 1.000000000 1
## 3557 4 1.000000000 1
## 3558 17 1.000000000 1
## 3559 7 1.000000000 1
## 3560 1 1.000000000 1
## 3561 2 1.000000000 1
## 3562 10 1.000000000 1
## 3563 12 1.000000000 1
## 3564 1 1.000000000 1
## 3565 5 1.000000000 1
## 3566 2 1.000000000 1
## 3567 1 1.000000000 1
## 3568 3 1.000000000 1
## 3569 11 1.000000000 1
## 3570 5 1.000000000 1
## 3571 16 1.000000000 1
## 3572 4 1.000000000 1
## 3573 1 1.000000000 1
## 3574 1 1.000000000 1
## 3575 1 1.000000000 1
## 3576 1 1.000000000 1
## 3577 4 1.000000000 1
## 3578 7 1.000000000 1
## 3579 2 1.000000000 1
## 3580 1 1.000000000 1
## 3581 1 1.000000000 1
## 3582 1 1.000000000 1
## 3583 2 1.000000000 1
## 3584 1 1.000000000 1
## 3585 1 1.000000000 1
## 3586 1 1.000000000 1
## 3587 2 1.000000000 1
## 3588 1 1.000000000 1
## 3589 1 1.000000000 1
## 3590 1 1.000000000 1
## 3591 2 1.000000000 1
## 3592 1 1.000000000 1
## 3593 1 1.000000000 1
## 3594 3 1.000000000 1
## 3595 3 1.000000000 1
## 3596 1 1.000000000 1
## 3597 3 1.000000000 1
## 3598 2 1.000000000 1
## 3599 3 1.000000000 1
## 3600 2 1.000000000 1
## 3601 4 1.000000000 1
## 3602 1 1.000000000 1
## 3603 1 1.000000000 1
## 3604 7 1.000000000 1
## 3605 4 1.000000000 1
## 3606 1 1.000000000 1
## 3607 12 1.000000000 1
## 3608 1 1.000000000 1
## 3609 1 1.000000000 1
## 3610 1 1.000000000 1
## 3611 2 1.000000000 1
## 3612 1 1.000000000 1
## 3613 1 1.000000000 1
## 3614 1 1.000000000 1
## 3615 1 1.000000000 1
## 3616 2 1.000000000 1
## 3617 1 1.000000000 1
## 3618 1 1.000000000 1
## 3619 19 1.000000000 1
## 3620 2 1.000000000 1
## 3621 1 1.000000000 1
## 3622 1 1.000000000 1
## 3623 1 1.000000000 1
## 3624 3 1.000000000 1
## 3625 1 1.000000000 1
## 3626 1 1.000000000 1
## 3627 4 1.000000000 1
## 3628 3 1.000000000 1
## 3629 2 1.000000000 1
## 3630 4 1.000000000 1
## 3631 1 1.000000000 1
## 3632 1 1.000000000 1
## 3633 6 1.000000000 1
## 3634 6 1.000000000 1
## 3635 5 1.000000000 1
## 3636 1 1.000000000 1
## 3637 3 1.000000000 1
## 3638 1 1.000000000 1
## 3639 1 1.000000000 1
## 3640 1 1.000000000 1
## 3641 2 1.000000000 1
## 3642 1 1.000000000 1
## 3643 1 1.000000000 1
## 3644 1 1.000000000 1
## 3645 1 1.000000000 1
## 3646 1 1.000000000 1
## 3647 6 1.000000000 1
## 3648 2 1.000000000 1
## 3649 14 1.000000000 1
## 3650 3 1.000000000 1
## 3651 1 1.000000000 1
## 3652 3 1.000000000 1
## 3653 6 1.000000000 1
## 3654 2 1.000000000 1
## 3655 31 1.000000000 1
## 3656 14 1.000000000 1
## 3657 14 1.000000000 1
## 3658 1 1.000000000 1
## 3659 11 1.000000000 1
## 3660 14 1.000000000 1
## 3661 6 1.000000000 1
## 3662 3 1.000000000 1
## 3663 5 1.000000000 1
## 3664 1 1.000000000 1
## 3665 13 1.000000000 1
## 3666 10 1.000000000 1
## 3667 3 1.000000000 1
## 3668 3 1.000000000 1
## 3669 2 1.000000000 1
## 3670 19 1.000000000 1
## 3671 4 1.000000000 1
## 3672 1 1.000000000 1
## 3673 1 1.000000000 1
## 3674 1 1.000000000 1
## 3675 18 1.000000000 1
## 3676 5 1.000000000 1
## 3677 3 1.000000000 1
## 3678 11 1.000000000 1
## 3679 7 1.000000000 1
## 3680 4 1.000000000 1
## 3681 1 1.000000000 1
## 3682 33 1.000000000 1
## 3683 12 1.000000000 1
## 3684 1 1.000000000 1
## 3685 4 1.000000000 1
## 3686 6 1.000000000 1
## 3687 4 1.000000000 1
## 3688 4 1.000000000 1
## 3689 1 1.000000000 1
## 3690 5 1.000000000 1
## 3691 3 1.000000000 1
## 3692 5 1.000000000 1
## 3693 22 1.000000000 1
## 3694 3 1.000000000 1
## 3695 5 1.000000000 1
## 3696 2 1.000000000 1
## 3697 1 1.000000000 1
## 3698 1 1.000000000 1
## 3699 4 1.000000000 1
## 3700 1 1.000000000 1
## 3701 1 1.000000000 1
## 3702 2 1.000000000 1
## 3703 9 1.000000000 1
## 3704 1 1.000000000 1
## 3705 12 1.000000000 1
## 3706 2 1.000000000 1
## 3707 19 1.000000000 1
## 3708 10 1.000000000 1
## 3709 3 1.000000000 1
## 3710 32 1.000000000 1
## 3711 7 1.000000000 1
## 3712 1 1.000000000 1
## 3713 1 1.000000000 1
## 3714 1 1.000000000 1
## 3715 2 1.000000000 1
## 3716 1 1.000000000 1
## 3717 6 1.000000000 1
## 3718 1 1.000000000 1
## 3719 1 1.000000000 1
## 3720 2 1.000000000 1
## 3721 2 1.000000000 1
## 3722 2 1.000000000 1
## 3723 2 1.000000000 1
## 3724 1 1.000000000 1
## 3725 1 1.000000000 1
## 3726 1 1.000000000 1
## 3727 1 1.000000000 1
## 3728 12 1.000000000 1
## 3729 2 1.000000000 1
## 3730 2 1.000000000 1
## 3731 2 1.000000000 1
## 3732 2 1.000000000 1
## 3733 1 1.000000000 1
## 3734 1 1.000000000 1
## 3735 1 1.000000000 1
## 3736 1 1.000000000 1
## 3737 5 1.000000000 1
## 3738 5 1.000000000 1
## 3739 1 1.000000000 1
## 3740 1 1.000000000 1
## 3741 1 1.000000000 1
## 3742 1 1.000000000 1
## 3743 3 1.000000000 1
## 3744 2 1.000000000 1
## 3745 4 1.000000000 1
## 3746 4 1.000000000 1
## 3747 4 1.000000000 1
## 3748 1 1.000000000 1
## 3749 2 1.000000000 1
## 3750 5 1.000000000 1
## 3751 3 1.000000000 1
## 3752 2 1.000000000 1
## 3753 1 1.000000000 1
## 3754 1 1.000000000 1
## 3755 1 1.000000000 1
## 3756 1 1.000000000 1
## 3757 1 1.000000000 1
## 3758 2 1.000000000 1
## 3759 2 1.000000000 1
## 3760 1 1.000000000 1
## 3761 1 1.000000000 1
## 3762 1 1.000000000 1
## 3763 4 1.000000000 1
## 3764 4 1.000000000 1
## 3765 1 1.000000000 1
## 3766 3 1.000000000 1
## 3767 3 1.000000000 1
## 3768 4 1.000000000 1
## 3769 4 1.000000000 1
## 3770 4 1.000000000 1
## 3771 4 1.000000000 1
## 3772 4 1.000000000 1
## 3773 4 1.000000000 1
## 3774 4 1.000000000 1
## 3775 3 1.000000000 1
## 3776 2 1.000000000 1
## 3777 2 1.000000000 1
## 3778 2 1.000000000 1
## 3779 1 1.000000000 1
## 3780 1 1.000000000 1
## 3781 1 1.000000000 1
## 3782 2 1.000000000 1
## 3783 1 1.000000000 1
## 3784 1 1.000000000 1
## 3785 1 1.000000000 1
## 3786 1 1.000000000 1
## 3787 1 1.000000000 1
## 3788 1 1.000000000 1
## 3789 2 1.000000000 1
## 3790 1 1.000000000 1
## 3791 1 1.000000000 1
## 3792 1 1.000000000 1
## 3793 1 1.000000000 1
## 3794 1 1.000000000 1
## 3795 1 1.000000000 1
## 3796 1 1.000000000 1
## 3797 1 1.000000000 1
## 3798 1 1.000000000 1
## 3799 1 1.000000000 1
## 3800 1 1.000000000 1
## 3801 1 1.000000000 1
## 3802 1 1.000000000 1
## 3803 4 1.000000000 1
## 3804 3 1.000000000 1
## 3805 16 1.000000000 1
## 3806 1 1.000000000 1
## 3807 1 1.000000000 1
## 3808 3 1.000000000 1
## 3809 2 1.000000000 1
## 3810 1 1.000000000 1
## 3811 6 1.000000000 1
## 3812 3 1.000000000 1
## 3813 1 1.000000000 1
## 3814 2 1.000000000 1
## 3815 6 1.000000000 1
## 3816 1 1.000000000 1
## 3817 1 1.000000000 1
## 3818 2 1.000000000 1
## 3819 2 1.000000000 1
## 3820 1 1.000000000 1
## 3821 1 1.000000000 1
## 3822 1 1.000000000 1
## 3823 1 1.000000000 1
## 3824 1 1.000000000 1
## 3825 1 1.000000000 1
## 3826 3 1.000000000 1
## 3827 2 1.000000000 1
## 3828 3 1.000000000 1
## 3829 1 1.000000000 1
## 3830 1 1.000000000 1
## 3831 5 1.000000000 1
## 3832 1 1.000000000 1
## 3833 1 1.000000000 1
## 3834 1 1.000000000 1
## 3835 2 1.000000000 1
## 3836 1 1.000000000 1
## 3837 2 1.000000000 1
## 3838 2 1.000000000 1
## 3839 1 1.000000000 1
## 3840 2 1.000000000 1
## 3841 1 1.000000000 1
## 3842 2 1.000000000 1
## 3843 1 1.000000000 1
## 3844 19 1.000000000 1
## 3845 1 1.000000000 1
## 3846 1 1.000000000 1
## 3847 2 1.000000000 1
## 3848 1 1.000000000 1
## 3849 1 1.000000000 1
## 3850 4 1.000000000 1
## 3851 1 1.000000000 1
## 3852 19 1.000000000 1
## 3853 14 1.000000000 1
## 3854 1 1.000000000 1
## 3855 1 1.000000000 1
## 3856 10 1.000000000 1
## 3857 1 1.000000000 1
## 3858 2 1.000000000 1
## 3859 1 1.000000000 1
## 3860 3 1.000000000 1
## 3861 3 1.000000000 1
## 3862 4 1.000000000 1
## 3863 5 1.000000000 1
## 3864 18 1.000000000 1
## 3865 2 1.000000000 1
## 3866 3 1.000000000 1
## 3867 6 1.000000000 1
## 3868 1 1.000000000 1
## 3869 1 1.000000000 1
## 3870 3 1.000000000 1
## 3871 1 1.000000000 1
## 3872 1 1.000000000 1
## 3873 16 1.000000000 1
## 3874 1 1.000000000 1
## 3875 1 1.000000000 1
## 3876 1 1.000000000 1
## 3877 2 1.000000000 1
## 3878 1 1.000000000 1
## 3879 21 1.000000000 1
## 3880 1 1.000000000 1
## 3881 1 1.000000000 1
## 3882 5 1.000000000 1
## 3883 18 1.000000000 1
## 3884 1 1.000000000 1
## 3885 7 1.000000000 1
## 3886 4 1.000000000 1
## 3887 23 1.000000000 1
## 3888 1 1.000000000 1
## 3889 2 1.000000000 1
## 3890 1 1.000000000 1
## 3891 1 1.000000000 1
## 3892 1 1.000000000 1
## 3893 1 1.000000000 1
## 3894 2 1.000000000 1
## 3895 13 1.000000000 1
## 3896 14 1.000000000 1
## 3897 3 1.000000000 1
## 3898 71 1.000000000 1
## 3899 12 1.000000000 1
## 3900 11 1.000000000 1
## 3901 1 1.000000000 1
## 3902 12 1.000000000 1
## 3903 2 1.000000000 1
## 3904 10 1.000000000 1
## 3905 1 1.000000000 1
## 3906 2 1.000000000 1
## 3907 1 1.000000000 1
## 3908 4 1.000000000 1
## 3909 3 1.000000000 1
## 3910 1 1.000000000 1
## 3911 1 1.000000000 1
## 3912 24 1.000000000 1
## 3913 9 1.000000000 1
## 3914 5 1.000000000 1
## 3915 3 1.000000000 1
## 3916 3 1.000000000 1
## 3917 19 1.000000000 1
## 3918 4 1.000000000 1
## 3919 1 1.000000000 1
## 3920 1 1.000000000 1
## 3921 1 1.000000000 1
## 3922 1 1.000000000 1
## 3923 3 1.000000000 1
## 3924 3 1.000000000 1
## 3925 10 1.000000000 1
## 3926 1 1.000000000 1
## 3927 13 1.000000000 1
## 3928 4 1.000000000 1
## 3929 2 1.000000000 1
## 3930 2 1.000000000 1
## 3931 9 1.000000000 1
## 3932 6 1.000000000 1
## 3933 1 1.000000000 1
## 3934 4 1.000000000 1
## 3935 2 1.000000000 1
## 3936 9 1.000000000 1
## 3937 8 1.000000000 1
## 3938 15 1.000000000 1
## 3939 1 1.000000000 1
## 3940 1 1.000000000 1
## 3941 2 1.000000000 1
## 3942 4 1.000000000 1
## 3943 24 1.000000000 1
## 3944 2 1.000000000 1
## 3945 1 1.000000000 1
## 3946 8 1.000000000 1
## 3947 5 1.000000000 1
## 3948 37 1.000000000 1
## 3949 2 1.000000000 1
## 3950 4 1.000000000 1
## 3951 1 1.000000000 1
## 3952 3 1.000000000 1
## 3953 5 1.000000000 1
## 3954 1 1.000000000 1
## 3955 1 1.000000000 1
## 3956 1 1.000000000 1
## 3957 1 1.000000000 1
## 3958 7 1.000000000 1
## 3959 3 1.000000000 1
## 3960 3 1.000000000 1
## 3961 2 1.000000000 1
## 3962 1 1.000000000 1
## 3963 2 1.000000000 1
## 3964 1 1.000000000 1
## 3965 5 1.000000000 1
## 3966 4 1.000000000 1
## 3967 5 1.000000000 1
## 3968 1 1.000000000 1
## 3969 2 1.000000000 1
## 3970 1 1.000000000 1
## 3971 2 1.000000000 1
## 3972 10 1.000000000 1
## 3973 2 1.000000000 1
## 3974 1 1.000000000 1
## 3975 2 1.000000000 1
## 3976 24 1.000000000 1
## 3977 1 1.000000000 1
## 3978 29 1.000000000 1
## 3979 2 1.000000000 1
## 3980 2 1.000000000 1
## 3981 8 1.000000000 1
## 3982 8 1.000000000 1
## 3983 4 1.000000000 1
## 3984 2 1.000000000 1
## 3985 18 1.000000000 1
## 3986 2 1.000000000 1
## 3987 1 1.000000000 1
## 3988 1 1.000000000 1
## 3989 2 1.000000000 1
## 3990 1 1.000000000 1
## 3991 1 1.000000000 1
## 3992 1 1.000000000 1
## 3993 1 1.000000000 1
## 3994 1 1.000000000 1
## 3995 2 1.000000000 1
## 3996 1 1.000000000 1
## 3997 2 1.000000000 1
## 3998 2 1.000000000 1
## 3999 25 1.000000000 1
## 4000 1 1.000000000 1
## 4001 1 1.000000000 1
## 4002 2 1.000000000 1
## 4003 3 1.000000000 1
## 4004 1 1.000000000 1
## 4005 5 1.000000000 1
## 4006 5 1.000000000 1
## 4007 12 1.000000000 1
## 4008 2 1.000000000 1
## 4009 1 1.000000000 1
## 4010 1 1.000000000 1
## 4011 1 1.000000000 1
## 4012 1 1.000000000 1
## 4013 3 1.000000000 1
## 4014 1 1.000000000 1
## 4015 2 1.000000000 1
## 4016 1 1.000000000 1
## 4017 1 1.000000000 1
## 4018 2 1.000000000 1
## 4019 1 1.000000000 1
## 4020 3 1.000000000 1
## 4021 1 1.000000000 1
## 4022 2 1.000000000 1
## 4023 1 1.000000000 1
## 4024 1 1.000000000 1
## 4025 11 1.000000000 1
## 4026 1 1.000000000 1
## 4027 6 1.000000000 1
## 4028 1 1.000000000 1
## 4029 4 1.000000000 1
## 4030 1 1.000000000 1
## 4031 11 1.000000000 1
## 4032 24 1.000000000 1
## 4033 1 1.000000000 1
## 4034 1 1.000000000 1
## 4035 2 1.000000000 1
## 4036 8 1.000000000 1
## 4037 24 1.000000000 1
## 4038 2 1.000000000 1
## 4039 4 1.000000000 1
## 4040 2 1.000000000 1
## 4041 2 1.000000000 1
## 4042 6 1.000000000 1
## 4043 1 1.000000000 1
## 4044 2 1.000000000 1
## 4045 4 1.000000000 1
## 4046 10 1.000000000 1
## 4047 2 1.000000000 1
## 4048 4 1.000000000 1
## 4049 2 1.000000000 1
## 4050 8 1.000000000 1
## 4051 5 1.000000000 1
## 4052 5 1.000000000 1
## 4053 8 1.000000000 1
## 4054 1 1.000000000 1
## 4055 1 1.000000000 1
## 4056 1 1.000000000 1
## 4057 1 1.000000000 1
## 4058 3 1.000000000 1
## 4059 2 1.000000000 1
## 4060 2 1.000000000 1
## 4061 2 1.000000000 1
## 4062 1 1.000000000 1
## 4063 7 1.000000000 1
## 4064 2 1.000000000 1
## 4065 6 1.000000000 1
## 4066 1 1.000000000 1
## 4067 1 1.000000000 1
## 4068 31 1.000000000 1
## 4069 17 1.000000000 1
## 4070 1 1.000000000 1
## 4071 18 1.000000000 1
## 4072 3 1.000000000 1
## 4073 2 1.000000000 1
## 4074 1 1.000000000 1
## 4075 1 1.000000000 1
## 4076 1 1.000000000 1
## 4077 6 1.000000000 1
## 4078 4 1.000000000 1
## 4079 1 1.000000000 1
## 4080 7 1.000000000 1
## 4081 1 1.000000000 1
## 4082 31 1.000000000 1
## 4083 1 1.000000000 1
## 4084 3 1.000000000 1
## 4085 5 1.000000000 1
## 4086 1 1.000000000 1
## 4087 1 1.000000000 1
## 4088 1 1.000000000 1
## 4089 1 1.000000000 1
## 4090 1 1.000000000 1
## 4091 1 1.000000000 1
## 4092 7 1.000000000 1
## 4093 5 1.000000000 1
## 4094 2 1.000000000 1
## 4095 2 1.000000000 1
## 4096 1 1.000000000 1
## 4097 2 1.000000000 1
## 4098 21 1.000000000 1
## 4099 1 1.000000000 1
## 4100 1 1.000000000 1
## 4101 11 1.000000000 1
## 4102 4 1.000000000 1
## 4103 1 1.000000000 1
## 4104 2 1.000000000 1
## 4105 3 1.000000000 1
## 4106 29 1.000000000 1
## 4107 2 1.000000000 1
## 4108 3 1.000000000 1
## 4109 6 1.000000000 1
## 4110 1 1.000000000 1
## 4111 3 1.000000000 1
## 4112 1 1.000000000 1
## 4113 1 1.000000000 1
## 4114 1 1.000000000 1
## 4115 1 1.000000000 1
## 4116 1 1.000000000 1
## 4117 7 1.000000000 1
## 4118 7 1.000000000 1
## 4119 7 1.000000000 1
## 4120 1 1.000000000 1
## 4121 1 1.000000000 1
## 4122 1 1.000000000 1
## 4123 1 1.000000000 1
## 4124 4 1.000000000 1
## 4125 4 1.000000000 1
## 4126 1 1.000000000 1
## 4127 8 1.000000000 1
## 4128 1 1.000000000 1
## 4129 3 1.000000000 1
## 4130 1 1.000000000 1
## 4131 1 1.000000000 1
## 4132 2 1.000000000 1
## 4133 2 1.000000000 1
## 4134 20 1.000000000 1
## 4135 6 1.000000000 1
## 4136 11 1.000000000 1
## 4137 8 1.000000000 1
## 4138 1 1.000000000 1
## 4139 1 1.000000000 1
## 4140 24 1.000000000 1
## 4141 31 1.000000000 1
## 4142 1 1.000000000 1
## 4143 1 1.000000000 1
## 4144 1 1.000000000 1
## 4145 1 1.000000000 1
## 4146 2 1.000000000 1
## 4147 8 1.000000000 1
## 4148 1 1.000000000 1
## 4149 1 1.000000000 1
## 4150 1 1.000000000 1
## 4151 1 1.000000000 1
## 4152 1 1.000000000 1
## 4153 1 1.000000000 1
## 4154 1 1.000000000 1
## 4155 3 1.000000000 1
## 4156 3 1.000000000 1
## 4157 13 1.000000000 1
## 4158 4 1.000000000 1
## 4159 19 1.000000000 1
## 4160 1 1.000000000 1
## 4161 1 1.000000000 1
## 4162 1 1.000000000 1
## 4163 1 1.000000000 1
## 4164 1 1.000000000 1
## 4165 1 1.000000000 1
## 4166 7 1.000000000 1
## 4167 2 1.000000000 1
## 4168 2 1.000000000 1
## 4169 2 1.000000000 1
## 4170 2 1.000000000 1
## 4171 6 1.000000000 1
## 4172 4 1.000000000 1
## 4173 2 1.000000000 1
## 4174 1 1.000000000 1
## 4175 1 1.000000000 1
## 4176 3 1.000000000 1
## 4177 1 1.000000000 1
## 4178 1 1.000000000 1
## 4179 3 1.000000000 1
## 4180 1 1.000000000 1
## 4181 6 1.000000000 1
## 4182 1 1.000000000 1
## 4183 1 1.000000000 1
## 4184 1 1.000000000 1
## 4185 1 1.000000000 1
## 4186 2 1.000000000 1
## 4187 3 1.000000000 1
## 4188 2 1.000000000 1
## 4189 6 1.000000000 1
## 4190 1 1.000000000 1
## 4191 7 1.000000000 1
## 4192 5 1.000000000 1
## 4193 2 1.000000000 1
## 4194 2 1.000000000 1
## 4195 1 1.000000000 1
## 4196 1 1.000000000 1
## 4197 6 1.000000000 1
## 4198 4 1.000000000 1
## 4199 1 1.000000000 1
## 4200 1 1.000000000 1
## 4201 5 1.000000000 1
## 4202 1 1.000000000 1
## 4203 3 1.000000000 1
## 4204 1 1.000000000 1
## 4205 3 1.000000000 1
## 4206 2 1.000000000 1
## 4207 1 1.000000000 1
## 4208 1 1.000000000 1
## 4209 1 1.000000000 1
## 4210 3 1.000000000 1
## 4211 6 1.000000000 1
## 4212 1 1.000000000 1
## 4213 1 1.000000000 1
## 4214 1 1.000000000 1
## 4215 1 1.000000000 1
## 4216 1 1.000000000 1
## 4217 2 1.000000000 1
## 4218 1 1.000000000 1
## 4219 1 1.000000000 1
## 4220 2 1.000000000 1
## 4221 2 1.000000000 1
## 4222 2 1.000000000 1
##
## $`GO Biological Process`
## ID
## 1 GO:0006396
## 2 GO:0006397
## 3 GO:0009988
## 4 GO:0035036
## 5 GO:0070934
## 6 GO:0016071
## 7 GO:0006353
## 8 GO:0006369
## 9 GO:0000375
## 10 GO:0000398
## 11 GO:0046483
## 12 GO:0006725
## 13 GO:0019083
## 14 GO:0036297
## 15 GO:0006139
## 16 GO:0006089
## 17 GO:0051290
## 18 GO:0032024
## 19 GO:0019080
## 20 GO:0050684
## 21 GO:0008380
## 22 GO:1901360
## 23 GO:1903311
## 24 GO:0000731
## 25 GO:0034641
## 26 GO:0014032
## 27 GO:0014033
## 28 GO:0016242
## 29 GO:0032392
## 30 GO:0048864
## 31 GO:1903573
## 32 GO:0044033
## 33 GO:0006901
## 34 GO:0006903
## 35 GO:0010912
## 36 GO:0048199
## 37 GO:0048208
## 38 GO:0072595
## 39 GO:2000373
## 40 GO:2000737
## 41 GO:0006900
## 42 GO:0046887
## 43 GO:0090277
## 44 GO:0048024
## 45 GO:0071897
## 46 GO:0000245
## 47 GO:1903608
## 48 GO:0051028
## 49 GO:0033554
## 50 GO:0014031
## 51 GO:0042769
## 52 GO:0090114
## 53 GO:0006000
## 54 GO:0006003
## 55 GO:0007339
## 56 GO:0033131
## 57 GO:0033133
## 58 GO:0035523
## 59 GO:0038128
## 60 GO:0070987
## 61 GO:1903299
## 62 GO:1903301
## 63 GO:1904152
## 64 GO:1904153
## 65 GO:1904292
## 66 GO:1904293
## 67 GO:1990168
## 68 GO:0046916
## 69 GO:0055076
## 70 GO:0006281
## 71 GO:0002793
## 72 GO:0010608
## 73 GO:0006417
## 74 GO:0090304
## 75 GO:0034248
## 76 GO:0044723
## 77 GO:0006974
## 78 GO:0044262
## 79 GO:2001020
## 80 GO:0005975
## 81 GO:0019058
## 82 GO:0030968
## 83 GO:0034620
## 84 GO:0035967
## 85 GO:0051053
## 86 GO:0061687
## 87 GO:0097501
## 88 GO:0009749
## 89 GO:0001504
## 90 GO:0044088
## 91 GO:0006259
## 92 GO:0006807
## 93 GO:0006301
## 94 GO:0019985
## 95 GO:0050779
## 96 GO:0001755
## 97 GO:0032205
## 98 GO:0032508
## 99 GO:0034243
## 100 GO:0061386
## 101 GO:1904357
## 102 GO:1990167
## 103 GO:2001044
## 104 GO:2001045
## 105 GO:0009743
## 106 GO:0009746
## 107 GO:0034284
## 108 GO:0031124
## 109 GO:0016241
## 110 GO:0071826
## 111 GO:0010507
## 112 GO:0043462
## 113 GO:0042593
## 114 GO:0006110
## 115 GO:0042274
## 116 GO:0043470
## 117 GO:0051196
## 118 GO:0006829
## 119 GO:0032781
## 120 GO:0070972
## 121 GO:0071577
## 122 GO:0032507
## 123 GO:0044770
## 124 GO:0044772
## 125 GO:0006888
## 126 GO:0016032
## 127 GO:0044764
## 128 GO:0065003
## 129 GO:0001649
## 130 GO:0006403
## 131 GO:0007338
## 132 GO:0006260
## 133 GO:0006364
## 134 GO:0016072
## 135 GO:0000082
## 136 GO:0031123
## 137 GO:0044843
## 138 GO:0003016
## 139 GO:0006293
## 140 GO:0006294
## 141 GO:0006295
## 142 GO:0006296
## 143 GO:0006376
## 144 GO:0008608
## 145 GO:0032785
## 146 GO:0033119
## 147 GO:0033145
## 148 GO:0033683
## 149 GO:0034244
## 150 GO:0045821
## 151 GO:0045840
## 152 GO:0046931
## 153 GO:0048025
## 154 GO:0050686
## 155 GO:0051197
## 156 GO:0051315
## 157 GO:0051457
## 158 GO:0070861
## 159 GO:0090235
## 160 GO:0090322
## 161 GO:1901298
## 162 GO:1901299
## 163 GO:1901668
## 164 GO:1901857
## 165 GO:1902176
## 166 GO:1902425
## 167 GO:1902889
## 168 GO:1902956
## 169 GO:1902958
## 170 GO:1903204
## 171 GO:1903208
## 172 GO:1903312
## 173 GO:1903377
## 174 GO:1903384
## 175 GO:1903751
## 176 GO:1905446
## 177 GO:1905448
## 178 GO:1990280
## 179 GO:2000121
## 180 GO:0044403
## 181 GO:0044419
## 182 GO:0050796
## 183 GO:0032200
## 184 GO:0006997
## 185 GO:0048593
## 186 GO:0010043
## 187 GO:1903008
## 188 GO:1903580
## 189 GO:0071822
## 190 GO:0022618
## 191 GO:0006282
## 192 GO:0045185
## 193 GO:0048484
## 194 GO:0061088
## 195 GO:0072599
## 196 GO:1903578
## 197 GO:0006405
## 198 GO:0006406
## 199 GO:0007585
## 200 GO:0035871
## 201 GO:0072698
## 202 GO:1903121
## 203 GO:1903203
## 204 GO:1903376
## 205 GO:0006298
## 206 GO:0006538
## 207 GO:0006542
## 208 GO:0006614
## 209 GO:0019676
## 210 GO:0043388
## 211 GO:0043649
## 212 GO:0045047
## 213 GO:0006461
## 214 GO:0070271
## 215 GO:0000432
## 216 GO:0000436
## 217 GO:0001927
## 218 GO:0006044
## 219 GO:0008635
## 220 GO:0019086
## 221 GO:0019276
## 222 GO:0031670
## 223 GO:0032025
## 224 GO:0034349
## 225 GO:0034356
## 226 GO:0044030
## 227 GO:0044804
## 228 GO:0045990
## 229 GO:0045991
## 230 GO:0046015
## 231 GO:0046016
## 232 GO:0048240
## 233 GO:0051154
## 234 GO:0051601
## 235 GO:0051917
## 236 GO:0051918
## 237 GO:0061462
## 238 GO:0097503
## 239 GO:1901096
## 240 GO:1901097
## 241 GO:1901407
## 242 GO:1901409
## 243 GO:1902902
## 244 GO:0009411
## 245 GO:0016070
## 246 GO:0010506
## 247 GO:0000041
## 248 GO:0000184
## 249 GO:0030510
## 250 GO:0022613
## 251 GO:0046883
## 252 GO:0090276
## 253 GO:0043484
## 254 GO:0005996
## 255 GO:0034976
## 256 GO:0010038
## 257 GO:0061157
## 258 GO:0006091
## 259 GO:0007088
## 260 GO:0009311
## 261 GO:0051704
## 262 GO:0033365
## 263 GO:0006986
## 264 GO:0035966
## 265 GO:0015980
## 266 GO:2000021
## 267 GO:2000045
## 268 GO:0002791
## 269 GO:0090087
## 270 GO:0010467
## 271 GO:0043487
## 272 GO:0000381
## 273 GO:0002072
## 274 GO:0006882
## 275 GO:0048483
## 276 GO:0055069
## 277 GO:0051648
## 278 GO:0051650
## 279 GO:0006006
## 280 GO:0006165
## 281 GO:0006366
## 282 GO:0060964
## 283 GO:0002495
## 284 GO:0002504
## 285 GO:0006112
## 286 GO:0007270
## 287 GO:0019886
## 288 GO:0032148
## 289 GO:0032241
## 290 GO:0046833
## 291 GO:0051783
## 292 GO:1902115
## 293 GO:0000732
## 294 GO:0002312
## 295 GO:0002381
## 296 GO:0002562
## 297 GO:0006289
## 298 GO:0006448
## 299 GO:0006488
## 300 GO:0006490
## 301 GO:0007549
## 302 GO:0008334
## 303 GO:0009048
## 304 GO:0010676
## 305 GO:0016246
## 306 GO:0016445
## 307 GO:0016446
## 308 GO:0016447
## 309 GO:0030513
## 310 GO:0032211
## 311 GO:0032924
## 312 GO:0035372
## 313 GO:0045190
## 314 GO:0061077
## 315 GO:0071763
## 316 GO:0090656
## 317 GO:1902808
## 318 GO:2000279
## 319 GO:2000679
## 320 GO:0034470
## 321 GO:0045454
## 322 GO:0007589
## 323 GO:0042743
## 324 GO:0051926
## 325 GO:0070574
## 326 GO:0071584
## 327 GO:0071585
## 328 GO:0072091
## 329 GO:0090281
## 330 GO:0098868
## 331 GO:0090317
## 332 GO:2001251
## 333 GO:0050658
## 334 GO:0051236
## 335 GO:0043488
## 336 GO:0051052
## 337 GO:0051168
## 338 GO:0060147
## 339 GO:0060966
## 340 GO:0043154
## 341 GO:0006541
## 342 GO:0006612
## 343 GO:0006998
## 344 GO:0033013
## 345 GO:0060148
## 346 GO:2000637
## 347 GO:0006140
## 348 GO:1900542
## 349 GO:0010035
## 350 GO:0051983
## 351 GO:0043489
## 352 GO:0048255
## 353 GO:1900544
## 354 GO:0044260
## 355 GO:0071166
## 356 GO:0071426
## 357 GO:1902807
## 358 GO:2000134
## 359 GO:0051223
## 360 GO:0070201
## 361 GO:0000045
## 362 GO:0000723
## 363 GO:0006536
## 364 GO:0006613
## 365 GO:0007173
## 366 GO:0009084
## 367 GO:0032239
## 368 GO:0033014
## 369 GO:0038127
## 370 GO:0046831
## 371 GO:2000785
## 372 GO:0046822
## 373 GO:0051641
## 374 GO:0033157
## 375 GO:0019318
## 376 GO:0043467
## 377 GO:0048193
## 378 GO:0042176
## 379 GO:0034660
## 380 GO:0005976
## 381 GO:0005984
## 382 GO:0005989
## 383 GO:0006007
## 384 GO:0006096
## 385 GO:0006222
## 386 GO:0006757
## 387 GO:0008340
## 388 GO:0009129
## 389 GO:0009130
## 390 GO:0009312
## 391 GO:0010259
## 392 GO:0032355
## 393 GO:0032481
## 394 GO:0042908
## 395 GO:0046351
## 396 GO:0046940
## 397 GO:0051987
## 398 GO:0070837
## 399 GO:0071579
## 400 GO:0097194
## 401 GO:1902883
## 402 GO:1903202
## 403 GO:1903205
## 404 GO:1903206
## 405 GO:1904016
## 406 GO:1904837
## 407 GO:0000302
## 408 GO:0031076
## 409 GO:0006090
## 410 GO:0051044
## 411 GO:0051651
## 412 GO:1900407
## 413 GO:0018130
## 414 GO:0006310
## 415 GO:0044774
## 416 GO:0022411
## 417 GO:0060968
## 418 GO:0071216
## 419 GO:0007059
## 420 GO:0044271
## 421 GO:0009636
## 422 GO:0000422
## 423 GO:0002200
## 424 GO:0002566
## 425 GO:0005977
## 426 GO:0006073
## 427 GO:0006378
## 428 GO:0006999
## 429 GO:0031063
## 430 GO:0032435
## 431 GO:0043457
## 432 GO:0043631
## 433 GO:0044264
## 434 GO:0045739
## 435 GO:0045913
## 436 GO:0051148
## 437 GO:0051568
## 438 GO:0060425
## 439 GO:0070536
## 440 GO:0090311
## 441 GO:1901799
## 442 GO:1903862
## 443 GO:2001022
## 444 GO:0000717
## 445 GO:0000733
## 446 GO:0001963
## 447 GO:0002347
## 448 GO:0002741
## 449 GO:0002863
## 450 GO:0002864
## 451 GO:0002866
## 452 GO:0003417
## 453 GO:0006207
## 454 GO:0006625
## 455 GO:0006891
## 456 GO:0006983
## 457 GO:0009438
## 458 GO:0009441
## 459 GO:0009912
## 460 GO:0010155
## 461 GO:0010273
## 462 GO:0014029
## 463 GO:0015844
## 464 GO:0015872
## 465 GO:0016558
## 466 GO:0018158
## 467 GO:0018171
## 468 GO:0018307
## 469 GO:0018323
## 470 GO:0019042
## 471 GO:0019046
## 472 GO:0019249
## 473 GO:0021861
## 474 GO:0030091
## 475 GO:0030423
## 476 GO:0031081
## 477 GO:0031086
## 478 GO:0031087
## 479 GO:0032119
## 480 GO:0032727
## 481 GO:0032741
## 482 GO:0033234
## 483 GO:0033240
## 484 GO:0033860
## 485 GO:0033864
## 486 GO:0035315
## 487 GO:0035520
## 488 GO:0035549
## 489 GO:0035822
## 490 GO:0036471
## 491 GO:0036526
## 492 GO:0036527
## 493 GO:0036528
## 494 GO:0036529
## 495 GO:0036530
## 496 GO:0036531
## 497 GO:0039695
## 498 GO:0042053
## 499 GO:0042491
## 500 GO:0042668
## 501 GO:0043574
## 502 GO:0044794
## 503 GO:0044806
## 504 GO:0044829
## 505 GO:0044868
## 506 GO:0045747
## 507 GO:0045764
## 508 GO:0045964
## 509 GO:0046112
## 510 GO:0046642
## 511 GO:0046688
## 512 GO:0046689
## 513 GO:0046826
## 514 GO:0048008
## 515 GO:0048264
## 516 GO:0050787
## 517 GO:0051292
## 518 GO:0051583
## 519 GO:0051937
## 520 GO:0060351
## 521 GO:0060382
## 522 GO:0061004
## 523 GO:0061484
## 524 GO:0070127
## 525 GO:0070301
## 526 GO:0070911
## 527 GO:0071228
## 528 GO:0071481
## 529 GO:0072049
## 530 GO:0072050
## 531 GO:0072070
## 532 GO:0072079
## 533 GO:0072081
## 534 GO:0072086
## 535 GO:0072234
## 536 GO:0072282
## 537 GO:0090086
## 538 GO:1900087
## 539 GO:1901033
## 540 GO:1901533
## 541 GO:1901671
## 542 GO:1902116
## 543 GO:1902741
## 544 GO:1903073
## 545 GO:1903094
## 546 GO:1903122
## 547 GO:1903168
## 548 GO:1903178
## 549 GO:1903181
## 550 GO:1903197
## 551 GO:1903200
## 552 GO:1904469
## 553 GO:1904973
## 554 GO:1905214
## 555 GO:1905259
## 556 GO:1905456
## 557 GO:1905696
## 558 GO:1905698
## 559 GO:1990968
## 560 GO:1990969
## 561 GO:2000152
## 562 GO:2000157
## 563 GO:2000275
## 564 GO:2000277
## 565 GO:2000778
## 566 GO:2000825
## 567 GO:2000973
## 568 GO:2000974
## 569 GO:2000978
## 570 GO:2000981
## 571 GO:2001268
## 572 GO:0031329
## 573 GO:0001505
## 574 GO:0009101
## 575 GO:0048592
## 576 GO:0051043
## 577 GO:0019438
## 578 GO:0018208
## 579 GO:0048596
## 580 GO:2000117
## 581 GO:0002011
## 582 GO:0006513
## 583 GO:0006517
## 584 GO:0006890
## 585 GO:0007286
## 586 GO:0008037
## 587 GO:0009065
## 588 GO:0046605
## 589 GO:0044773
## 590 GO:0045727
## 591 GO:0044238
## 592 GO:1903047
## 593 GO:0034250
## 594 GO:0048863
## 595 GO:0051262
## 596 GO:0071704
## 597 GO:1902806
## 598 GO:0043170
## 599 GO:0043933
## 600 GO:0000154
## 601 GO:0006487
## 602 GO:0031167
## 603 GO:0045815
## 604 GO:0070509
## 605 GO:0007049
## 606 GO:0009894
## 607 GO:0001510
## 608 GO:0051438
## 609 GO:1901796
## 610 GO:0051047
## 611 GO:0002833
## 612 GO:0006081
## 613 GO:0006206
## 614 GO:0019852
## 615 GO:0044380
## 616 GO:0046794
## 617 GO:0090279
## 618 GO:1900246
## 619 GO:1902175
## 620 GO:1904063
## 621 GO:0034654
## 622 GO:0022402
## 623 GO:0002089
## 624 GO:0046496
## 625 GO:0048048
## 626 GO:0072524
## 627 GO:1901362
## 628 GO:0009451
## 629 GO:0061136
## 630 GO:0009566
## 631 GO:0051259
## 632 GO:0000086
## 633 GO:0044839
## 634 GO:0060349
## 635 GO:0044237
## 636 GO:0046907
## 637 GO:0080135
## 638 GO:0044085
## 639 GO:0006914
## 640 GO:0036503
## 641 GO:0051968
## 642 GO:1901031
## 643 GO:0009141
## 644 GO:0051649
## 645 GO:0008152
## 646 GO:0007224
## 647 GO:0019079
## 648 GO:0051261
## 649 GO:0072593
## 650 GO:0000183
## 651 GO:0009798
## 652 GO:0022600
## 653 GO:0031507
## 654 GO:0031508
## 655 GO:0031509
## 656 GO:0033143
## 657 GO:0035810
## 658 GO:0035815
## 659 GO:0048147
## 660 GO:0048664
## 661 GO:0051785
## 662 GO:0060623
## 663 GO:0070936
## 664 GO:0090162
## 665 GO:0090169
## 666 GO:0090230
## 667 GO:1901673
## 668 GO:1902043
## 669 GO:1902340
## 670 GO:1903816
## 671 GO:2000648
## 672 GO:0000278
## 673 GO:0032386
## 674 GO:0060348
## 675 GO:0000413
## 676 GO:0006767
## 677 GO:0051988
## 678 GO:0050708
## 679 GO:0016051
## 680 GO:0031571
## 681 GO:0035264
## 682 GO:0043331
## 683 GO:0044783
## 684 GO:0051235
## 685 GO:0071359
## 686 GO:0098754
## 687 GO:0007062
## 688 GO:0042177
## 689 GO:1903828
## 690 GO:0009123
## 691 GO:0009161
## 692 GO:0051222
## 693 GO:1904951
## 694 GO:0032984
## 695 GO:0006753
## 696 GO:0009117
## 697 GO:0051656
## 698 GO:0006778
## 699 GO:0006779
## 700 GO:0006783
## 701 GO:0018195
## 702 GO:0019320
## 703 GO:0031055
## 704 GO:0032456
## 705 GO:0032570
## 706 GO:0032784
## 707 GO:0034637
## 708 GO:0034766
## 709 GO:0039531
## 710 GO:0039535
## 711 GO:0042168
## 712 GO:0042440
## 713 GO:0043271
## 714 GO:0044766
## 715 GO:0046148
## 716 GO:0046626
## 717 GO:0046628
## 718 GO:0046835
## 719 GO:0046929
## 720 GO:0051589
## 721 GO:0071108
## 722 GO:1903051
## 723 GO:0017148
## 724 GO:0034249
## 725 GO:0019693
## 726 GO:0032388
## 727 GO:0042254
## 728 GO:0097193
## 729 GO:0000423
## 730 GO:0003416
## 731 GO:0006099
## 732 GO:0006101
## 733 GO:0006284
## 734 GO:0006409
## 735 GO:0006450
## 736 GO:0007379
## 737 GO:0009235
## 738 GO:0018196
## 739 GO:0018198
## 740 GO:0018279
## 741 GO:0022417
## 742 GO:0030070
## 743 GO:0030220
## 744 GO:0031297
## 745 GO:0032098
## 746 GO:0032099
## 747 GO:0032108
## 748 GO:0032648
## 749 GO:0032728
## 750 GO:0036344
## 751 GO:0036499
## 752 GO:0042044
## 753 GO:0043330
## 754 GO:0043376
## 755 GO:0045005
## 756 GO:0045736
## 757 GO:0051209
## 758 GO:0051298
## 759 GO:0051782
## 760 GO:0060012
## 761 GO:0060019
## 762 GO:0061394
## 763 GO:0061537
## 764 GO:0071360
## 765 GO:0072350
## 766 GO:0072665
## 767 GO:0075733
## 768 GO:0097192
## 769 GO:0098779
## 770 GO:0098780
## 771 GO:0098810
## 772 GO:1901142
## 773 GO:1902235
## 774 GO:1902236
## 775 GO:1902583
## 776 GO:1903984
## 777 GO:1904382
## 778 GO:1904587
## 779 GO:2000273
## 780 GO:2000823
## 781 GO:2001185
## 782 GO:0009314
## 783 GO:0010639
## 784 GO:0006275
## 785 GO:0048705
## 786 GO:1903532
## 787 GO:0006383
## 788 GO:0007586
## 789 GO:0009190
## 790 GO:0016266
## 791 GO:0030514
## 792 GO:0034629
## 793 GO:0048515
## 794 GO:0050434
## 795 GO:0052652
## 796 GO:1902041
## 797 GO:1903201
## 798 GO:0006399
## 799 GO:0006457
## 800 GO:0002088
## 801 GO:0050714
## 802 GO:0000724
## 803 GO:0000725
## 804 GO:0042542
## 805 GO:0046686
## 806 GO:0046824
## 807 GO:0060900
## 808 GO:1903825
## 809 GO:1905039
## 810 GO:0008630
## 811 GO:0051321
## 812 GO:0006977
## 813 GO:0032204
## 814 GO:0032434
## 815 GO:0048709
## 816 GO:0051291
## 817 GO:0072395
## 818 GO:0072422
## 819 GO:0072431
## 820 GO:1904356
## 821 GO:0000028
## 822 GO:0000578
## 823 GO:0000715
## 824 GO:0001522
## 825 GO:0002931
## 826 GO:0003264
## 827 GO:0003266
## 828 GO:0003413
## 829 GO:0003418
## 830 GO:0003422
## 831 GO:0003429
## 832 GO:0003433
## 833 GO:0006048
## 834 GO:0006106
## 835 GO:0006108
## 836 GO:0006188
## 837 GO:0006266
## 838 GO:0006271
## 839 GO:0006273
## 840 GO:0006297
## 841 GO:0006424
## 842 GO:0006435
## 843 GO:0006436
## 844 GO:0006471
## 845 GO:0006489
## 846 GO:0006616
## 847 GO:0006801
## 848 GO:0006833
## 849 GO:0006878
## 850 GO:0007099
## 851 GO:0007113
## 852 GO:0009109
## 853 GO:0009236
## 854 GO:0009957
## 855 GO:0010310
## 856 GO:0010737
## 857 GO:0010824
## 858 GO:0010990
## 859 GO:0010993
## 860 GO:0015074
## 861 GO:0015791
## 862 GO:0015793
## 863 GO:0015840
## 864 GO:0016093
## 865 GO:0016094
## 866 GO:0018312
## 867 GO:0019430
## 868 GO:0019755
## 869 GO:0021540
## 870 GO:0023019
## 871 GO:0030157
## 872 GO:0030327
## 873 GO:0031065
## 874 GO:0031119
## 875 GO:0032201
## 876 GO:0032225
## 877 GO:0032226
## 878 GO:0032261
## 879 GO:0032264
## 880 GO:0032469
## 881 GO:0032506
## 882 GO:0032941
## 883 GO:0033146
## 884 GO:0033148
## 885 GO:0033260
## 886 GO:0033504
## 887 GO:0033603
## 888 GO:0033605
## 889 GO:0034315
## 890 GO:0035249
## 891 GO:0035519
## 892 GO:0035745
## 893 GO:0036090
## 894 GO:0036112
## 895 GO:0036114
## 896 GO:0036116
## 897 GO:0036289
## 898 GO:0038203
## 899 GO:0042256
## 900 GO:0042759
## 901 GO:0042946
## 902 GO:0043101
## 903 GO:0043504
## 904 GO:0044314
## 905 GO:0044786
## 906 GO:0044795
## 907 GO:0045900
## 908 GO:0045956
## 909 GO:0046349
## 910 GO:0046599
## 911 GO:0048280
## 912 GO:0048308
## 913 GO:0048313
## 914 GO:0051103
## 915 GO:0051125
## 916 GO:0051187
## 917 GO:0051385
## 918 GO:0051697
## 919 GO:0051792
## 920 GO:0051954
## 921 GO:0055070
## 922 GO:0055108
## 923 GO:0060292
## 924 GO:0060390
## 925 GO:0060391
## 926 GO:0060536
## 927 GO:0060628
## 928 GO:0070129
## 929 GO:0070131
## 930 GO:0070142
## 931 GO:0070159
## 932 GO:0070212
## 933 GO:0070979
## 934 GO:0071569
## 935 GO:0071586
## 936 GO:0071765
## 937 GO:0071918
## 938 GO:0072513
## 939 GO:0072656
## 940 GO:0085020
## 941 GO:0090045
## 942 GO:0090166
## 943 GO:0090258
## 944 GO:0090312
## 945 GO:0097212
## 946 GO:0097237
## 947 GO:0097692
## 948 GO:0098534
## 949 GO:0099074
## 950 GO:1900535
## 951 GO:1901622
## 952 GO:1901656
## 953 GO:1901725
## 954 GO:1901727
## 955 GO:1902410
## 956 GO:1902463
## 957 GO:1902525
## 958 GO:1902527
## 959 GO:1902953
## 960 GO:1903147
## 961 GO:1903516
## 962 GO:1903518
## 963 GO:1903852
## 964 GO:1904044
## 965 GO:1904544
## 966 GO:1904645
## 967 GO:1904646
## 968 GO:1904716
## 969 GO:1904760
## 970 GO:1904762
## 971 GO:1904871
## 972 GO:1904874
## 973 GO:1904881
## 974 GO:1990172
## 975 GO:1990386
## 976 GO:1990390
## 977 GO:1990592
## 978 GO:1990668
## 979 GO:2000001
## 980 GO:2000136
## 981 GO:2000311
## 982 GO:2000777
## 983 GO:2001170
## 984 GO:0009416
## 985 GO:0090305
## 986 GO:0031669
## 987 GO:0040029
## 988 GO:0009259
## 989 GO:0010817
## 990 GO:0009165
## 991 GO:1901293
## 992 GO:0043281
## 993 GO:0007346
## 994 GO:0010822
## 995 GO:0032868
## 996 GO:0006486
## 997 GO:0007093
## 998 GO:0007568
## 999 GO:1901137
## 1000 GO:0022607
## 1001 GO:0010629
## 1002 GO:0009612
## 1003 GO:0032869
## 1004 GO:0006518
## 1005 GO:0006734
## 1006 GO:0006879
## 1007 GO:0006895
## 1008 GO:0010324
## 1009 GO:0010457
## 1010 GO:0010669
## 1011 GO:0010765
## 1012 GO:0030166
## 1013 GO:0030865
## 1014 GO:0030866
## 1015 GO:0032053
## 1016 GO:0043094
## 1017 GO:0043173
## 1018 GO:0046640
## 1019 GO:0051220
## 1020 GO:0055072
## 1021 GO:0060213
## 1022 GO:1900153
## 1023 GO:1901071
## 1024 GO:2000178
## 1025 GO:2001169
## 1026 GO:2001179
## 1027 GO:0060341
## 1028 GO:0033043
## 1029 GO:0006979
## 1030 GO:0009100
## 1031 GO:0008652
## 1032 GO:0043648
## 1033 GO:0046939
## 1034 GO:1901607
## 1035 GO:0006109
## 1036 GO:0006766
## 1037 GO:0008344
## 1038 GO:0030534
## 1039 GO:0045333
## 1040 GO:0006040
## 1041 GO:0006336
## 1042 GO:0006418
## 1043 GO:0006739
## 1044 GO:0007398
## 1045 GO:0034724
## 1046 GO:0042255
## 1047 GO:0043038
## 1048 GO:0043039
## 1049 GO:0046365
## 1050 GO:0046602
## 1051 GO:0051349
## 1052 GO:0051984
## 1053 GO:0060074
## 1054 GO:0060350
## 1055 GO:0072189
## 1056 GO:0099518
## 1057 GO:1903363
## 1058 GO:0009116
## 1059 GO:0009119
## 1060 GO:0032873
## 1061 GO:0036498
## 1062 GO:0046329
## 1063 GO:0006213
## 1064 GO:0007266
## 1065 GO:0007566
## 1066 GO:0034308
## 1067 GO:0046131
## 1068 GO:0046132
## 1069 GO:0046134
## 1070 GO:0046928
## 1071 GO:0048588
## 1072 GO:0048715
## 1073 GO:0051588
## 1074 GO:1901606
## 1075 GO:0001503
## 1076 GO:0007018
## 1077 GO:0043624
## 1078 GO:0055086
## 1079 GO:0006402
## 1080 GO:0006836
## 1081 GO:0010605
## 1082 GO:0010466
## 1083 GO:0010951
## 1084 GO:0071158
## 1085 GO:0016236
## 1086 GO:0031331
## 1087 GO:0009896
## 1088 GO:0007219
## 1089 GO:0007584
## 1090 GO:0009132
## 1091 GO:0016441
## 1092 GO:0035194
## 1093 GO:0051899
## 1094 GO:2000736
## 1095 GO:0007050
## 1096 GO:0046034
## 1097 GO:1901657
## 1098 GO:0001701
## 1099 GO:0031668
## 1100 GO:0009142
## 1101 GO:0046782
## 1102 GO:0065002
## 1103 GO:0043241
## 1104 GO:0006400
## 1105 GO:0032006
## 1106 GO:0032845
## 1107 GO:1903146
## 1108 GO:0051260
## 1109 GO:0000186
## 1110 GO:0000387
## 1111 GO:0000462
## 1112 GO:0002739
## 1113 GO:0008154
## 1114 GO:0009435
## 1115 GO:0009954
## 1116 GO:0010165
## 1117 GO:0010613
## 1118 GO:0010803
## 1119 GO:0010842
## 1120 GO:0015012
## 1121 GO:0015816
## 1122 GO:0016226
## 1123 GO:0019471
## 1124 GO:0021781
## 1125 GO:0022010
## 1126 GO:0030194
## 1127 GO:0030201
## 1128 GO:0031064
## 1129 GO:0031440
## 1130 GO:0032095
## 1131 GO:0032107
## 1132 GO:0032647
## 1133 GO:0032770
## 1134 GO:0032925
## 1135 GO:0032926
## 1136 GO:0034472
## 1137 GO:0034975
## 1138 GO:0035617
## 1139 GO:0042490
## 1140 GO:0042744
## 1141 GO:0043585
## 1142 GO:0043628
## 1143 GO:0044788
## 1144 GO:0044818
## 1145 GO:0044827
## 1146 GO:0046825
## 1147 GO:0048262
## 1148 GO:0050820
## 1149 GO:0051238
## 1150 GO:0060113
## 1151 GO:0060119
## 1152 GO:0060122
## 1153 GO:0060235
## 1154 GO:0060324
## 1155 GO:0060325
## 1156 GO:0070269
## 1157 GO:0072243
## 1158 GO:0090085
## 1159 GO:1902307
## 1160 GO:1904030
## 1161 GO:1990440
## 1162 GO:2000403
## 1163 GO:2000404
## 1164 GO:2000406
## 1165 GO:0009895
## 1166 GO:1903214
## 1167 GO:0002702
## 1168 GO:0002720
## 1169 GO:0006220
## 1170 GO:0006221
## 1171 GO:0008286
## 1172 GO:0009218
## 1173 GO:0009220
## 1174 GO:0010906
## 1175 GO:0016540
## 1176 GO:0072331
## 1177 GO:1903747
## 1178 GO:0006984
## 1179 GO:0021954
## 1180 GO:0043496
## 1181 GO:0045737
## 1182 GO:0051339
## 1183 GO:1904031
## 1184 GO:0051246
## 1185 GO:0001906
## 1186 GO:0003085
## 1187 GO:0003333
## 1188 GO:0006029
## 1189 GO:0006182
## 1190 GO:0007019
## 1191 GO:0007168
## 1192 GO:0009225
## 1193 GO:0016191
## 1194 GO:0030951
## 1195 GO:0030952
## 1196 GO:0031109
## 1197 GO:0032922
## 1198 GO:0032988
## 1199 GO:0033047
## 1200 GO:0034103
## 1201 GO:0043114
## 1202 GO:0046068
## 1203 GO:0046850
## 1204 GO:0048663
## 1205 GO:0061049
## 1206 GO:0070830
## 1207 GO:0070922
## 1208 GO:0072318
## 1209 GO:0072319
## 1210 GO:1903428
## 1211 GO:1903564
## 1212 GO:1903566
## 1213 GO:1903814
## 1214 GO:1901576
## 1215 GO:0042770
## 1216 GO:0050806
## 1217 GO:0050821
## 1218 GO:1903955
## 1219 GO:0055114
## 1220 GO:0009199
## 1221 GO:0015931
## 1222 GO:0009260
## 1223 GO:0046390
## 1224 GO:1903749
## 1225 GO:2000116
## 1226 GO:0009059
## 1227 GO:0034645
## 1228 GO:0001667
## 1229 GO:0010508
## 1230 GO:0050688
## 1231 GO:0006401
## 1232 GO:0031647
## 1233 GO:0043434
## 1234 GO:0051640
## 1235 GO:0043270
## 1236 GO:1901566
## 1237 GO:0033044
## 1238 GO:0055007
## 1239 GO:0032880
## 1240 GO:0006412
## 1241 GO:0045861
## 1242 GO:0090596
## 1243 GO:0006970
## 1244 GO:0009064
## 1245 GO:0009124
## 1246 GO:0009156
## 1247 GO:0010827
## 1248 GO:0032210
## 1249 GO:0035821
## 1250 GO:0045652
## 1251 GO:0070918
## 1252 GO:1902882
## 1253 GO:0009144
## 1254 GO:0009205
## 1255 GO:1903050
## 1256 GO:0000956
## 1257 GO:0002449
## 1258 GO:0052547
## 1259 GO:0043603
## 1260 GO:0006508
## 1261 GO:0051276
## 1262 GO:0001895
## 1263 GO:0002828
## 1264 GO:0045628
## 1265 GO:0072528
## 1266 GO:0051050
## 1267 GO:0009058
## 1268 GO:0016485
## 1269 GO:0052548
## 1270 GO:0006733
## 1271 GO:0007052
## 1272 GO:0033209
## 1273 GO:1902850
## 1274 GO:0044249
## 1275 GO:0006520
## 1276 GO:1901135
## 1277 GO:0032268
## 1278 GO:0043086
## 1279 GO:0007034
## 1280 GO:0009112
## 1281 GO:0030488
## 1282 GO:0032479
## 1283 GO:0043921
## 1284 GO:0048662
## 1285 GO:0052312
## 1286 GO:1903510
## 1287 GO:0043043
## 1288 GO:0051253
## 1289 GO:0051186
## 1290 GO:0000079
## 1291 GO:0002455
## 1292 GO:0071806
## 1293 GO:0051346
## 1294 GO:0090068
## 1295 GO:0007067
## 1296 GO:0007519
## 1297 GO:1901988
## 1298 GO:1901991
## 1299 GO:0006491
## 1300 GO:0006749
## 1301 GO:0007041
## 1302 GO:0009799
## 1303 GO:0009855
## 1304 GO:0019359
## 1305 GO:0030279
## 1306 GO:0030433
## 1307 GO:0032674
## 1308 GO:0032754
## 1309 GO:0035282
## 1310 GO:0035809
## 1311 GO:0035813
## 1312 GO:0036508
## 1313 GO:0044062
## 1314 GO:0044090
## 1315 GO:0045070
## 1316 GO:0045668
## 1317 GO:0045724
## 1318 GO:0045948
## 1319 GO:0047496
## 1320 GO:0072525
## 1321 GO:0090502
## 1322 GO:0098801
## 1323 GO:1901983
## 1324 GO:1902017
## 1325 GO:1904019
## 1326 GO:2000551
## 1327 GO:2000553
## 1328 GO:2000786
## 1329 GO:1903829
## 1330 GO:0009126
## 1331 GO:0009167
## 1332 GO:0002831
## 1333 GO:0007623
## 1334 GO:0010498
## 1335 GO:0043161
## 1336 GO:0009267
## 1337 GO:0009063
## 1338 GO:0031330
## 1339 GO:0006082
## 1340 GO:0043436
## 1341 GO:0006163
## 1342 GO:0009150
## 1343 GO:0002369
## 1344 GO:0002861
## 1345 GO:0007031
## 1346 GO:0007176
## 1347 GO:0009948
## 1348 GO:0010624
## 1349 GO:0010626
## 1350 GO:0014003
## 1351 GO:0015728
## 1352 GO:0016180
## 1353 GO:0019065
## 1354 GO:0030073
## 1355 GO:0030490
## 1356 GO:0031640
## 1357 GO:0033210
## 1358 GO:0033233
## 1359 GO:0034453
## 1360 GO:0034502
## 1361 GO:0035743
## 1362 GO:0035873
## 1363 GO:0035879
## 1364 GO:0044320
## 1365 GO:0044321
## 1366 GO:0045324
## 1367 GO:0045607
## 1368 GO:0045721
## 1369 GO:0046040
## 1370 GO:0046627
## 1371 GO:0046685
## 1372 GO:0048268
## 1373 GO:0048708
## 1374 GO:0050892
## 1375 GO:0051282
## 1376 GO:0051780
## 1377 GO:0051928
## 1378 GO:0060253
## 1379 GO:0060563
## 1380 GO:0060765
## 1381 GO:0061072
## 1382 GO:0071243
## 1383 GO:0072170
## 1384 GO:0072173
## 1385 GO:0090503
## 1386 GO:0090557
## 1387 GO:0099024
## 1388 GO:1900077
## 1389 GO:1904427
## 1390 GO:2000059
## 1391 GO:2000435
## 1392 GO:2000662
## 1393 GO:2000664
## 1394 GO:2000665
## 1395 GO:2000667
## 1396 GO:2000765
## 1397 GO:2000767
## 1398 GO:2001181
## 1399 GO:0000389
## 1400 GO:0000972
## 1401 GO:0001708
## 1402 GO:0001711
## 1403 GO:0002041
## 1404 GO:0002063
## 1405 GO:0002090
## 1406 GO:0002949
## 1407 GO:0003156
## 1408 GO:0003278
## 1409 GO:0006120
## 1410 GO:0006121
## 1411 GO:0006283
## 1412 GO:0006285
## 1413 GO:0006391
## 1414 GO:0006421
## 1415 GO:0006621
## 1416 GO:0006995
## 1417 GO:0007095
## 1418 GO:0009051
## 1419 GO:0010956
## 1420 GO:0010957
## 1421 GO:0014059
## 1422 GO:0014908
## 1423 GO:0015936
## 1424 GO:0015937
## 1425 GO:0015988
## 1426 GO:0015991
## 1427 GO:0016561
## 1428 GO:0016973
## 1429 GO:0019322
## 1430 GO:0019511
## 1431 GO:0019521
## 1432 GO:0021952
## 1433 GO:0021955
## 1434 GO:0022038
## 1435 GO:0030050
## 1436 GO:0030259
## 1437 GO:0030422
## 1438 GO:0030647
## 1439 GO:0030656
## 1440 GO:0030858
## 1441 GO:0031442
## 1442 GO:0032069
## 1443 GO:0032070
## 1444 GO:0032074
## 1445 GO:0032076
## 1446 GO:0032786
## 1447 GO:0032968
## 1448 GO:0032981
## 1449 GO:0033523
## 1450 GO:0033617
## 1451 GO:0033629
## 1452 GO:0033690
## 1453 GO:0033875
## 1454 GO:0034030
## 1455 GO:0034032
## 1456 GO:0034033
## 1457 GO:0034205
## 1458 GO:0034402
## 1459 GO:0035066
## 1460 GO:0035437
## 1461 GO:0036250
## 1462 GO:0042364
## 1463 GO:0042543
## 1464 GO:0043616
## 1465 GO:0043931
## 1466 GO:0044597
## 1467 GO:0044598
## 1468 GO:0044721
## 1469 GO:0045007
## 1470 GO:0045606
## 1471 GO:0045743
## 1472 GO:0046137
## 1473 GO:0048339
## 1474 GO:0048799
## 1475 GO:0050433
## 1476 GO:0051952
## 1477 GO:0060346
## 1478 GO:0060384
## 1479 GO:0060556
## 1480 GO:0060558
## 1481 GO:0060561
## 1482 GO:0060591
## 1483 GO:0060644
## 1484 GO:0060710
## 1485 GO:0060795
## 1486 GO:0061035
## 1487 GO:0061036
## 1488 GO:0061430
## 1489 GO:0070103
## 1490 GO:0070105
## 1491 GO:0070145
## 1492 GO:0070242
## 1493 GO:0070262
## 1494 GO:0070445
## 1495 GO:0070447
## 1496 GO:0070534
## 1497 GO:0070940
## 1498 GO:0070977
## 1499 GO:0071294
## 1500 GO:0071539
## 1501 GO:0090140
## 1502 GO:0090141
## 1503 GO:0090239
## 1504 GO:0090240
## 1505 GO:0097034
## 1506 GO:0099515
## 1507 GO:0099601
## 1508 GO:1900101
## 1509 GO:1900102
## 1510 GO:1900118
## 1511 GO:1900449
## 1512 GO:1901094
## 1513 GO:1901874
## 1514 GO:1901985
## 1515 GO:1902510
## 1516 GO:1902511
## 1517 GO:1902742
## 1518 GO:1902822
## 1519 GO:1902824
## 1520 GO:1902931
## 1521 GO:1903335
## 1522 GO:1903579
## 1523 GO:1903624
## 1524 GO:1903625
## 1525 GO:1903897
## 1526 GO:1903898
## 1527 GO:1903912
## 1528 GO:1904714
## 1529 GO:1904872
## 1530 GO:1990966
## 1531 GO:2000010
## 1532 GO:2000303
## 1533 GO:2000304
## 1534 GO:2000758
## 1535 GO:2001180
## 1536 GO:2001182
## 1537 GO:2001183
## 1538 GO:0045930
## 1539 GO:0051046
## 1540 GO:0014014
## 1541 GO:2000514
## 1542 GO:0010675
## 1543 GO:0030808
## 1544 GO:0031503
## 1545 GO:0034614
## 1546 GO:0043508
## 1547 GO:0051180
## 1548 GO:0072384
## 1549 GO:1900371
## 1550 GO:1901532
## 1551 GO:1905037
## 1552 GO:0051172
## 1553 GO:0031396
## 1554 GO:0070085
## 1555 GO:1903362
## 1556 GO:1903533
## 1557 GO:0010638
## 1558 GO:0046394
## 1559 GO:1901652
## 1560 GO:0035914
## 1561 GO:0043370
## 1562 GO:0048524
## 1563 GO:0051225
## 1564 GO:1903902
## 1565 GO:1904029
## 1566 GO:0010001
## 1567 GO:0090287
## 1568 GO:0098657
## 1569 GO:0048562
## 1570 GO:0002456
## 1571 GO:0030193
## 1572 GO:0034508
## 1573 GO:0034763
## 1574 GO:0045494
## 1575 GO:0046031
## 1576 GO:0046364
## 1577 GO:0046636
## 1578 GO:0046677
## 1579 GO:0050818
## 1580 GO:0070828
## 1581 GO:0072583
## 1582 GO:1900117
## 1583 GO:2000677
## 1584 GO:0042278
## 1585 GO:0046128
## 1586 GO:0050804
## 1587 GO:0051248
## 1588 GO:0030162
## 1589 GO:0045934
## 1590 GO:0002478
## 1591 GO:0006342
## 1592 GO:0009187
## 1593 GO:0032543
## 1594 GO:0044743
## 1595 GO:0048145
## 1596 GO:0055013
## 1597 GO:0072332
## 1598 GO:1903313
## 1599 GO:2000278
## 1600 GO:2000516
## 1601 GO:2001252
## 1602 GO:1903530
## 1603 GO:0034613
## 1604 GO:0031047
## 1605 GO:0045931
## 1606 GO:0010821
## 1607 GO:0016458
## 1608 GO:0060249
## 1609 GO:0034655
## 1610 GO:0060538
## 1611 GO:0090316
## 1612 GO:0002443
## 1613 GO:0044703
## 1614 GO:0072521
## 1615 GO:0002726
## 1616 GO:0002830
## 1617 GO:0003300
## 1618 GO:0014896
## 1619 GO:0014897
## 1620 GO:0032008
## 1621 GO:0032656
## 1622 GO:0032673
## 1623 GO:0032736
## 1624 GO:0032753
## 1625 GO:0036003
## 1626 GO:0043923
## 1627 GO:0045630
## 1628 GO:0048712
## 1629 GO:0061013
## 1630 GO:0061014
## 1631 GO:0097009
## 1632 GO:1901797
## 1633 GO:1902930
## 1634 GO:1903599
## 1635 GO:2000369
## 1636 GO:2001021
## 1637 GO:2001238
## 1638 GO:0070727
## 1639 GO:0043066
## 1640 GO:0043069
## 1641 GO:0010564
## 1642 GO:0034622
## 1643 GO:0071496
## 1644 GO:0002821
## 1645 GO:0002824
## 1646 GO:0006413
## 1647 GO:0006493
## 1648 GO:0006972
## 1649 GO:0016052
## 1650 GO:0022904
## 1651 GO:0035196
## 1652 GO:0043372
## 1653 GO:0045624
## 1654 GO:0048713
## 1655 GO:0051881
## 1656 GO:0051966
## 1657 GO:0071470
## 1658 GO:0071474
## 1659 GO:0071549
## 1660 GO:0072527
## 1661 GO:0051604
## 1662 GO:0051099
## 1663 GO:1902275
## 1664 GO:0030330
## 1665 GO:0032387
## 1666 GO:0045740
## 1667 GO:0070585
## 1668 GO:0071219
## 1669 GO:0071222
## 1670 GO:0072655
## 1671 GO:2000177
## 1672 GO:0044265
## 1673 GO:2000113
## 1674 GO:0006790
## 1675 GO:0042594
## 1676 GO:0010558
## 1677 GO:0019953
## 1678 GO:0000077
## 1679 GO:0031570
## 1680 GO:0044270
## 1681 GO:0071260
## 1682 GO:0007098
## 1683 GO:0031023
## 1684 GO:0051297
## 1685 GO:1902679
## 1686 GO:0002440
## 1687 GO:0043524
## 1688 GO:0044281
## 1689 GO:0008033
## 1690 GO:0019884
## 1691 GO:0030705
## 1692 GO:1902117
## 1693 GO:0000281
## 1694 GO:0002790
## 1695 GO:0002829
## 1696 GO:0006238
## 1697 GO:0006509
## 1698 GO:0007190
## 1699 GO:0007220
## 1700 GO:0007616
## 1701 GO:0008535
## 1702 GO:0009914
## 1703 GO:0010677
## 1704 GO:0016925
## 1705 GO:0018146
## 1706 GO:0021772
## 1707 GO:0021872
## 1708 GO:0021988
## 1709 GO:0030072
## 1710 GO:0031293
## 1711 GO:0031641
## 1712 GO:0033619
## 1713 GO:0034121
## 1714 GO:0042339
## 1715 GO:0043097
## 1716 GO:0043174
## 1717 GO:0044206
## 1718 GO:0044211
## 1719 GO:0044344
## 1720 GO:0045627
## 1721 GO:0045629
## 1722 GO:0045912
## 1723 GO:0046879
## 1724 GO:0048557
## 1725 GO:0060251
## 1726 GO:0061028
## 1727 GO:0070528
## 1728 GO:0071774
## 1729 GO:0072577
## 1730 GO:0090303
## 1731 GO:0097061
## 1732 GO:0098815
## 1733 GO:1901984
## 1734 GO:1902803
## 1735 GO:1903036
## 1736 GO:1903298
## 1737 GO:1904467
## 1738 GO:1990138
## 1739 GO:2000401
## 1740 GO:2000463
## 1741 GO:2001171
## 1742 GO:2001267
## 1743 GO:0001501
## 1744 GO:0001709
## 1745 GO:0006261
## 1746 GO:0008593
## 1747 GO:0009060
## 1748 GO:0019674
## 1749 GO:0030317
## 1750 GO:0043491
## 1751 GO:0046823
## 1752 GO:0048286
## 1753 GO:0051702
## 1754 GO:0051817
## 1755 GO:0051851
## 1756 GO:0070207
## 1757 GO:1900076
## 1758 GO:1900078
## 1759 GO:1900182
## 1760 GO:1901030
## 1761 GO:1903827
## 1762 GO:0002699
## 1763 GO:0045732
## 1764 GO:0051726
## 1765 GO:0060255
## 1766 GO:0070838
## 1767 GO:0072511
## 1768 GO:0009892
## 1769 GO:0045787
## 1770 GO:0043604
## 1771 GO:0019752
## 1772 GO:0007565
## 1773 GO:0051606
## 1774 GO:0071156
## 1775 GO:0033036
## 1776 GO:0007389
## 1777 GO:0015850
## 1778 GO:0016049
## 1779 GO:0016064
## 1780 GO:0019724
## 1781 GO:0043902
## 1782 GO:0019439
## 1783 GO:0046700
## 1784 GO:1901361
## 1785 GO:1901564
## 1786 GO:0002377
## 1787 GO:0008366
## 1788 GO:0042058
## 1789 GO:0042552
## 1790 GO:0060081
## 1791 GO:0071384
## 1792 GO:0071385
## 1793 GO:1901184
## 1794 GO:0009913
## 1795 GO:0030260
## 1796 GO:0046634
## 1797 GO:0046718
## 1798 GO:0032774
## 1799 GO:1903507
## 1800 GO:0030203
## 1801 GO:0051188
## 1802 GO:0070507
## 1803 GO:1990830
## 1804 GO:0000451
## 1805 GO:0000453
## 1806 GO:0002082
## 1807 GO:0002724
## 1808 GO:0006094
## 1809 GO:0006337
## 1810 GO:0007080
## 1811 GO:0019319
## 1812 GO:0030903
## 1813 GO:0032986
## 1814 GO:0033045
## 1815 GO:0034333
## 1816 GO:0042345
## 1817 GO:0045604
## 1818 GO:0046033
## 1819 GO:0048710
## 1820 GO:1901998
## 1821 GO:1903432
## 1822 GO:2000249
## 1823 GO:0032844
## 1824 GO:0001838
## 1825 GO:0016331
## 1826 GO:0072175
## 1827 GO:2001235
## 1828 GO:0032653
## 1829 GO:0045686
## 1830 GO:0045814
## 1831 GO:0048002
## 1832 GO:1901989
## 1833 GO:0010948
## 1834 GO:0001843
## 1835 GO:0060606
## 1836 GO:0043523
## 1837 GO:0048511
## 1838 GO:0000076
## 1839 GO:0000244
## 1840 GO:0001706
## 1841 GO:0001767
## 1842 GO:0001770
## 1843 GO:0001825
## 1844 GO:0001909
## 1845 GO:0001937
## 1846 GO:0001947
## 1847 GO:0002228
## 1848 GO:0002755
## 1849 GO:0003143
## 1850 GO:0006047
## 1851 GO:0006098
## 1852 GO:0006433
## 1853 GO:0006458
## 1854 GO:0006611
## 1855 GO:0006688
## 1856 GO:0006782
## 1857 GO:0006884
## 1858 GO:0007007
## 1859 GO:0007492
## 1860 GO:0008156
## 1861 GO:0009226
## 1862 GO:0009880
## 1863 GO:0010390
## 1864 GO:0010447
## 1865 GO:0015802
## 1866 GO:0015809
## 1867 GO:0016574
## 1868 GO:0018126
## 1869 GO:0019682
## 1870 GO:0019748
## 1871 GO:0030011
## 1872 GO:0030205
## 1873 GO:0030207
## 1874 GO:0030208
## 1875 GO:0030212
## 1876 GO:0030214
## 1877 GO:0030539
## 1878 GO:0030844
## 1879 GO:0031639
## 1880 GO:0031648
## 1881 GO:0031929
## 1882 GO:0032780
## 1883 GO:0032808
## 1884 GO:0033314
## 1885 GO:0033353
## 1886 GO:0033489
## 1887 GO:0033490
## 1888 GO:0033688
## 1889 GO:0034146
## 1890 GO:0034204
## 1891 GO:0034497
## 1892 GO:0035050
## 1893 GO:0035336
## 1894 GO:0035455
## 1895 GO:0035459
## 1896 GO:0035767
## 1897 GO:0035987
## 1898 GO:0042045
## 1899 GO:0042092
## 1900 GO:0042267
## 1901 GO:0042407
## 1902 GO:0042953
## 1903 GO:0042996
## 1904 GO:0042998
## 1905 GO:0044245
## 1906 GO:0044313
## 1907 GO:0045332
## 1908 GO:0045880
## 1909 GO:0046439
## 1910 GO:0046498
## 1911 GO:0046501
## 1912 GO:0046856
## 1913 GO:0048490
## 1914 GO:0048701
## 1915 GO:0048806
## 1916 GO:0050651
## 1917 GO:0050655
## 1918 GO:0050850
## 1919 GO:0051156
## 1920 GO:0051569
## 1921 GO:0051791
## 1922 GO:0051882
## 1923 GO:0051901
## 1924 GO:0061371
## 1925 GO:0061734
## 1926 GO:0070417
## 1927 GO:0070886
## 1928 GO:0070997
## 1929 GO:0071236
## 1930 GO:0071467
## 1931 GO:0071468
## 1932 GO:0071731
## 1933 GO:0071732
## 1934 GO:0080144
## 1935 GO:0086036
## 1936 GO:0086092
## 1937 GO:0090110
## 1938 GO:0090200
## 1939 GO:0090435
## 1940 GO:0097051
## 1941 GO:0097368
## 1942 GO:0098735
## 1943 GO:0098743
## 1944 GO:1901881
## 1945 GO:1902170
## 1946 GO:1902255
## 1947 GO:1903371
## 1948 GO:1903373
## 1949 GO:1903401
## 1950 GO:1903826
## 1951 GO:1904181
## 1952 GO:1990086
## 1953 GO:1990126
## 1954 GO:2001222
## 1955 GO:0043414
## 1956 GO:0006446
## 1957 GO:0006555
## 1958 GO:0021782
## 1959 GO:0031294
## 1960 GO:0031295
## 1961 GO:0044724
## 1962 GO:0050729
## 1963 GO:0051444
## 1964 GO:0051865
## 1965 GO:0098869
## 1966 GO:1900038
## 1967 GO:1900373
## 1968 GO:1901028
## 1969 GO:0032269
## 1970 GO:0006023
## 1971 GO:0006024
## 1972 GO:0007369
## 1973 GO:0007283
## 1974 GO:0048232
## 1975 GO:0000280
## 1976 GO:0008104
## 1977 GO:0042981
## 1978 GO:0043067
## 1979 GO:0072330
## 1980 GO:1900180
## 1981 GO:0000819
## 1982 GO:0022900
## 1983 GO:0044282
## 1984 GO:0010970
## 1985 GO:0022617
## 1986 GO:0032733
## 1987 GO:0042149
## 1988 GO:0045591
## 1989 GO:0050805
## 1990 GO:0051289
## 1991 GO:0051602
## 1992 GO:0007265
## 1993 GO:1901605
## 1994 GO:0007005
## 1995 GO:1901700
## 1996 GO:0009890
## 1997 GO:0009792
## 1998 GO:0043009
## 1999 GO:0001702
## 2000 GO:0002675
## 2001 GO:0003408
## 2002 GO:0006344
## 2003 GO:0008333
## 2004 GO:0009953
## 2005 GO:0030520
## 2006 GO:0031584
## 2007 GO:0031958
## 2008 GO:0035308
## 2009 GO:0035723
## 2010 GO:0042130
## 2011 GO:0042558
## 2012 GO:0042766
## 2013 GO:0042921
## 2014 GO:0045540
## 2015 GO:0045625
## 2016 GO:0045839
## 2017 GO:0046500
## 2018 GO:0046717
## 2019 GO:0048096
## 2020 GO:0050672
## 2021 GO:0061053
## 2022 GO:0061640
## 2023 GO:0070664
## 2024 GO:0070672
## 2025 GO:0072148
## 2026 GO:0072207
## 2027 GO:1900409
## 2028 GO:1901522
## 2029 GO:1902042
## 2030 GO:1902177
## 2031 GO:1903209
## 2032 GO:2000008
## 2033 GO:2000282
## 2034 GO:2000977
## 2035 GO:1903320
## 2036 GO:0006022
## 2037 GO:0006720
## 2038 GO:0016197
## 2039 GO:0044706
## 2040 GO:0051224
## 2041 GO:1904950
## 2042 GO:0006302
## 2043 GO:0007033
## 2044 GO:0031398
## 2045 GO:0048489
## 2046 GO:0097479
## 2047 GO:0099003
## 2048 GO:0045892
## 2049 GO:0045786
## 2050 GO:0003002
## 2051 GO:0070372
## 2052 GO:0042326
## 2053 GO:0051701
## 2054 GO:0000910
## 2055 GO:0002367
## 2056 GO:0002711
## 2057 GO:0006501
## 2058 GO:0008589
## 2059 GO:0010501
## 2060 GO:0032768
## 2061 GO:0034260
## 2062 GO:0035970
## 2063 GO:0036465
## 2064 GO:0042180
## 2065 GO:0042572
## 2066 GO:0042775
## 2067 GO:0042886
## 2068 GO:0042987
## 2069 GO:0043297
## 2070 GO:0044273
## 2071 GO:0045776
## 2072 GO:0048387
## 2073 GO:0048488
## 2074 GO:0050685
## 2075 GO:0051310
## 2076 GO:0060263
## 2077 GO:0060264
## 2078 GO:0060266
## 2079 GO:0060268
## 2080 GO:1900119
## 2081 GO:1900740
## 2082 GO:1905041
## 2083 GO:1905042
## 2084 GO:1990264
## 2085 GO:0048660
## 2086 GO:0060548
## 2087 GO:0032446
## 2088 GO:0051054
## 2089 GO:0044711
## 2090 GO:0032496
## 2091 GO:0006721
## 2092 GO:0034599
## 2093 GO:0000096
## 2094 GO:0001704
## 2095 GO:0006119
## 2096 GO:0009179
## 2097 GO:0009185
## 2098 GO:0031572
## 2099 GO:0034332
## 2100 GO:0042633
## 2101 GO:0042773
## 2102 GO:1900037
## 2103 GO:1990748
## 2104 GO:0098813
## 2105 GO:0044283
## 2106 GO:0002283
## 2107 GO:0002446
## 2108 GO:0036230
## 2109 GO:0042119
## 2110 GO:0043312
## 2111 GO:0032259
## 2112 GO:0051592
## 2113 GO:0009306
## 2114 GO:0016239
## 2115 GO:0016482
## 2116 GO:0042273
## 2117 GO:0070373
## 2118 GO:0090501
## 2119 GO:0031324
## 2120 GO:0030036
## 2121 GO:0006875
## 2122 GO:0048568
## 2123 GO:0044702
## 2124 GO:0006027
## 2125 GO:0006626
## 2126 GO:0019882
## 2127 GO:0051216
## 2128 GO:0016050
## 2129 GO:1901214
## 2130 GO:0032147
## 2131 GO:0001523
## 2132 GO:0002028
## 2133 GO:0006164
## 2134 GO:0009152
## 2135 GO:0009163
## 2136 GO:0016101
## 2137 GO:0042455
## 2138 GO:0072522
## 2139 GO:0090559
## 2140 GO:1901659
## 2141 GO:0072594
## 2142 GO:0031327
## 2143 GO:0019941
## 2144 GO:0006816
## 2145 GO:0007051
## 2146 GO:0010212
## 2147 GO:0051171
## 2148 GO:0031667
## 2149 GO:0001841
## 2150 GO:0014020
## 2151 GO:0043010
## 2152 GO:0000097
## 2153 GO:0001958
## 2154 GO:0002040
## 2155 GO:0002827
## 2156 GO:0006368
## 2157 GO:0006516
## 2158 GO:0006730
## 2159 GO:0007077
## 2160 GO:0007189
## 2161 GO:0008299
## 2162 GO:0009086
## 2163 GO:0014037
## 2164 GO:0014044
## 2165 GO:0016486
## 2166 GO:0022011
## 2167 GO:0030997
## 2168 GO:0031128
## 2169 GO:0031281
## 2170 GO:0032094
## 2171 GO:0032613
## 2172 GO:0040020
## 2173 GO:0043518
## 2174 GO:0043966
## 2175 GO:0045762
## 2176 GO:0045777
## 2177 GO:0048546
## 2178 GO:0048741
## 2179 GO:0048747
## 2180 GO:0050435
## 2181 GO:0050690
## 2182 GO:0051081
## 2183 GO:0051299
## 2184 GO:0051784
## 2185 GO:0060259
## 2186 GO:0086010
## 2187 GO:0097150
## 2188 GO:0097553
## 2189 GO:1900024
## 2190 GO:1902253
## 2191 GO:1903126
## 2192 GO:0002709
## 2193 GO:0006241
## 2194 GO:0007528
## 2195 GO:0008306
## 2196 GO:0009147
## 2197 GO:0009148
## 2198 GO:0009208
## 2199 GO:0010518
## 2200 GO:0015718
## 2201 GO:0034198
## 2202 GO:0044387
## 2203 GO:0048385
## 2204 GO:0050000
## 2205 GO:0051303
## 2206 GO:0060236
## 2207 GO:0060760
## 2208 GO:0071636
## 2209 GO:0090224
## 2210 GO:1903753
## 2211 GO:0044708
## 2212 GO:0010256
## 2213 GO:0007030
## 2214 GO:0035304
## 2215 GO:0042306
## 2216 GO:0050830
## 2217 GO:0097722
## 2218 GO:1904589
## 2219 GO:2000379
## 2220 GO:0009057
## 2221 GO:0070925
## 2222 GO:0006892
## 2223 GO:0015949
## 2224 GO:0034764
## 2225 GO:0035195
## 2226 GO:0043506
## 2227 GO:0045622
## 2228 GO:0045667
## 2229 GO:0051031
## 2230 GO:1901992
## 2231 GO:2000378
## 2232 GO:0002444
## 2233 GO:0043299
## 2234 GO:0000052
## 2235 GO:0000083
## 2236 GO:0000737
## 2237 GO:0001731
## 2238 GO:0002183
## 2239 GO:0002192
## 2240 GO:0002374
## 2241 GO:0003161
## 2242 GO:0003334
## 2243 GO:0006308
## 2244 GO:0006309
## 2245 GO:0006853
## 2246 GO:0006921
## 2247 GO:0006978
## 2248 GO:0007028
## 2249 GO:0007029
## 2250 GO:0008053
## 2251 GO:0009110
## 2252 GO:0010869
## 2253 GO:0010882
## 2254 GO:0015914
## 2255 GO:0017183
## 2256 GO:0018202
## 2257 GO:0018298
## 2258 GO:0018342
## 2259 GO:0018344
## 2260 GO:0019081
## 2261 GO:0019240
## 2262 GO:0022616
## 2263 GO:0030204
## 2264 GO:0030206
## 2265 GO:0030262
## 2266 GO:0030859
## 2267 GO:0031122
## 2268 GO:0031272
## 2269 GO:0031274
## 2270 GO:0031664
## 2271 GO:0032488
## 2272 GO:0032511
## 2273 GO:0032621
## 2274 GO:0032693
## 2275 GO:0032790
## 2276 GO:0032801
## 2277 GO:0032963
## 2278 GO:0033280
## 2279 GO:0033384
## 2280 GO:0034080
## 2281 GO:0034123
## 2282 GO:0034379
## 2283 GO:0034505
## 2284 GO:0034721
## 2285 GO:0035089
## 2286 GO:0036336
## 2287 GO:0036414
## 2288 GO:0038189
## 2289 GO:0042276
## 2290 GO:0043143
## 2291 GO:0043403
## 2292 GO:0043497
## 2293 GO:0044259
## 2294 GO:0044319
## 2295 GO:0044546
## 2296 GO:0045023
## 2297 GO:0045198
## 2298 GO:0045337
## 2299 GO:0045338
## 2300 GO:0045662
## 2301 GO:0046475
## 2302 GO:0046503
## 2303 GO:0046847
## 2304 GO:0050650
## 2305 GO:0050654
## 2306 GO:0051045
## 2307 GO:0051123
## 2308 GO:0051683
## 2309 GO:0051823
## 2310 GO:0051835
## 2311 GO:0060008
## 2312 GO:0060009
## 2313 GO:0060398
## 2314 GO:0060400
## 2315 GO:0060501
## 2316 GO:0060661
## 2317 GO:0060669
## 2318 GO:0060684
## 2319 GO:0060713
## 2320 GO:0060716
## 2321 GO:0061162
## 2322 GO:0061339
## 2323 GO:0070633
## 2324 GO:0070897
## 2325 GO:0070914
## 2326 GO:0071157
## 2327 GO:0071224
## 2328 GO:0071338
## 2329 GO:0071529
## 2330 GO:0072750
## 2331 GO:0075522
## 2332 GO:0090135
## 2333 GO:0090136
## 2334 GO:0090504
## 2335 GO:0097320
## 2336 GO:0097369
## 2337 GO:0098719
## 2338 GO:0099563
## 2339 GO:1900026
## 2340 GO:1900372
## 2341 GO:1901021
## 2342 GO:1901798
## 2343 GO:1902001
## 2344 GO:1902475
## 2345 GO:1903279
## 2346 GO:1903281
## 2347 GO:1903307
## 2348 GO:1905515
## 2349 GO:2000009
## 2350 GO:2000209
## 2351 GO:2000300
## 2352 GO:2000561
## 2353 GO:2000563
## 2354 GO:2000651
## 2355 GO:2000794
## 2356 GO:2000864
## 2357 GO:0043632
## 2358 GO:0006575
## 2359 GO:0031056
## 2360 GO:0042113
## 2361 GO:0046635
## 2362 GO:0050673
## 2363 GO:1900034
## 2364 GO:0006732
## 2365 GO:0071103
## 2366 GO:0006026
## 2367 GO:0033135
## 2368 GO:0033138
## 2369 GO:0035265
## 2370 GO:0060485
## 2371 GO:0090150
## 2372 GO:0097191
## 2373 GO:0000075
## 2374 GO:0048285
## 2375 GO:0071375
## 2376 GO:0000003
## 2377 GO:0022414
## 2378 GO:0046328
## 2379 GO:0010941
## 2380 GO:0006351
## 2381 GO:0097659
## 2382 GO:0002275
## 2383 GO:0014706
## 2384 GO:0060537
## 2385 GO:0070647
## 2386 GO:0006511
## 2387 GO:0021537
## 2388 GO:1901215
## 2389 GO:0035148
## 2390 GO:0002237
## 2391 GO:0018205
## 2392 GO:0043687
## 2393 GO:0051129
## 2394 GO:0009066
## 2395 GO:0034219
## 2396 GO:0046638
## 2397 GO:0071548
## 2398 GO:0099531
## 2399 GO:0031532
## 2400 GO:0032092
## 2401 GO:0038095
## 2402 GO:0048259
## 2403 GO:0051341
## 2404 GO:0051897
## 2405 GO:0046165
## 2406 GO:0051302
## 2407 GO:0070374
## 2408 GO:1901990
## 2409 GO:0044272
## 2410 GO:0000959
## 2411 GO:0001935
## 2412 GO:0003338
## 2413 GO:0009201
## 2414 GO:0018410
## 2415 GO:0021542
## 2416 GO:0030518
## 2417 GO:0030521
## 2418 GO:0032206
## 2419 GO:0032212
## 2420 GO:0042059
## 2421 GO:0045730
## 2422 GO:0072273
## 2423 GO:1901185
## 2424 GO:1904238
## 2425 GO:1904358
## 2426 GO:2001244
## 2427 GO:0001894
## 2428 GO:0007626
## 2429 GO:0019827
## 2430 GO:0045582
## 2431 GO:0045621
## 2432 GO:0098727
## 2433 GO:1901216
## 2434 GO:0042063
## 2435 GO:0051101
## 2436 GO:0050715
## 2437 GO:0051091
## 2438 GO:0030029
## 2439 GO:0000027
## 2440 GO:0000380
## 2441 GO:0001676
## 2442 GO:0002825
## 2443 GO:0003094
## 2444 GO:0006111
## 2445 GO:0006354
## 2446 GO:0006534
## 2447 GO:0006699
## 2448 GO:0007032
## 2449 GO:0007498
## 2450 GO:0009067
## 2451 GO:0015833
## 2452 GO:0019321
## 2453 GO:0030195
## 2454 GO:0030801
## 2455 GO:0030804
## 2456 GO:0030816
## 2457 GO:0030819
## 2458 GO:0031058
## 2459 GO:0031214
## 2460 GO:0031279
## 2461 GO:0032703
## 2462 GO:0033108
## 2463 GO:0033273
## 2464 GO:0035759
## 2465 GO:0038001
## 2466 GO:0042771
## 2467 GO:0043486
## 2468 GO:0043584
## 2469 GO:0045761
## 2470 GO:0045879
## 2471 GO:0046039
## 2472 GO:0050691
## 2473 GO:0050819
## 2474 GO:0051491
## 2475 GO:0060042
## 2476 GO:0060055
## 2477 GO:0060059
## 2478 GO:0060290
## 2479 GO:0061042
## 2480 GO:0061440
## 2481 GO:0071257
## 2482 GO:0071655
## 2483 GO:0071657
## 2484 GO:0071971
## 2485 GO:0072007
## 2486 GO:0072008
## 2487 GO:0072011
## 2488 GO:0072012
## 2489 GO:0072109
## 2490 GO:0072223
## 2491 GO:0072239
## 2492 GO:0072254
## 2493 GO:0090073
## 2494 GO:0097205
## 2495 GO:0097734
## 2496 GO:1900035
## 2497 GO:1900041
## 2498 GO:1900168
## 2499 GO:1901256
## 2500 GO:1902884
## 2501 GO:0055065
## 2502 GO:0006996
## 2503 GO:0019725
## 2504 GO:0007264
## 2505 GO:0045862
## 2506 GO:0044782
## 2507 GO:0050707
## 2508 GO:0009790
## 2509 GO:0007163
## 2510 GO:0050870
## 2511 GO:1901653
## 2512 GO:0009991
## 2513 GO:0010563
## 2514 GO:0045936
## 2515 GO:0009987
## 2516 GO:0007276
## 2517 GO:0000122
## 2518 GO:0006913
## 2519 GO:0033673
## 2520 GO:0051169
## 2521 GO:0045944
## 2522 GO:0009725
## 2523 GO:0071901
## 2524 GO:0045685
## 2525 GO:0048762
## 2526 GO:2001243
## 2527 GO:0080090
## 2528 GO:0002460
## 2529 GO:0034329
## 2530 GO:0050679
## 2531 GO:0016567
## 2532 GO:0009952
## 2533 GO:0035335
## 2534 GO:0002700
## 2535 GO:0002718
## 2536 GO:0003014
## 2537 GO:0006352
## 2538 GO:0046902
## 2539 GO:0051147
## 2540 GO:0090101
## 2541 GO:1901655
## 2542 GO:1901615
## 2543 GO:0065004
## 2544 GO:0015711
## 2545 GO:0044710
## 2546 GO:0006415
## 2547 GO:0030150
## 2548 GO:0070125
## 2549 GO:0070126
## 2550 GO:0070206
## 2551 GO:0071479
## 2552 GO:2000179
## 2553 GO:0030163
## 2554 GO:0071824
## 2555 GO:1903039
## 2556 GO:0000272
## 2557 GO:0000303
## 2558 GO:0000305
## 2559 GO:0001766
## 2560 GO:0002043
## 2561 GO:0002181
## 2562 GO:0006167
## 2563 GO:0006171
## 2564 GO:0006741
## 2565 GO:0006760
## 2566 GO:0006826
## 2567 GO:0006911
## 2568 GO:0007129
## 2569 GO:0007253
## 2570 GO:0007368
## 2571 GO:0007512
## 2572 GO:0009395
## 2573 GO:0009409
## 2574 GO:0010569
## 2575 GO:0010640
## 2576 GO:0010944
## 2577 GO:0015682
## 2578 GO:0015908
## 2579 GO:0015909
## 2580 GO:0016114
## 2581 GO:0021670
## 2582 GO:0021675
## 2583 GO:0021936
## 2584 GO:0021940
## 2585 GO:0030282
## 2586 GO:0030322
## 2587 GO:0030887
## 2588 GO:0031638
## 2589 GO:0032007
## 2590 GO:0032042
## 2591 GO:0032494
## 2592 GO:0032695
## 2593 GO:0033274
## 2594 GO:0033572
## 2595 GO:0033598
## 2596 GO:0033601
## 2597 GO:0034501
## 2598 GO:0035094
## 2599 GO:0035262
## 2600 GO:0035278
## 2601 GO:0035999
## 2602 GO:0039694
## 2603 GO:0040019
## 2604 GO:0040036
## 2605 GO:0042774
## 2606 GO:0042994
## 2607 GO:0043473
## 2608 GO:0043954
## 2609 GO:0044208
## 2610 GO:0044210
## 2611 GO:0045556
## 2612 GO:0045661
## 2613 GO:0045921
## 2614 GO:0045980
## 2615 GO:0046641
## 2616 GO:0046653
## 2617 GO:0046655
## 2618 GO:0048318
## 2619 GO:0048319
## 2620 GO:0048320
## 2621 GO:0048853
## 2622 GO:0051016
## 2623 GO:0051017
## 2624 GO:0051593
## 2625 GO:0051645
## 2626 GO:0051665
## 2627 GO:0051895
## 2628 GO:0060035
## 2629 GO:0060056
## 2630 GO:0060416
## 2631 GO:0061572
## 2632 GO:0070192
## 2633 GO:0070827
## 2634 GO:0070829
## 2635 GO:0071451
## 2636 GO:0071459
## 2637 GO:0072356
## 2638 GO:0090382
## 2639 GO:0090383
## 2640 GO:1900025
## 2641 GO:1900027
## 2642 GO:1900543
## 2643 GO:1901224
## 2644 GO:1901490
## 2645 GO:1901491
## 2646 GO:1901620
## 2647 GO:1901889
## 2648 GO:1903392
## 2649 GO:1904262
## 2650 GO:2000251
## 2651 GO:2000649
## 2652 GO:2000779
## 2653 GO:0001933
## 2654 GO:0016073
## 2655 GO:0034644
## 2656 GO:0042982
## 2657 GO:0042990
## 2658 GO:0043627
## 2659 GO:0060193
## 2660 GO:0060674
## 2661 GO:0090335
## 2662 GO:1902036
## 2663 GO:0021915
## 2664 GO:0031323
## 2665 GO:0010942
## 2666 GO:1902582
## 2667 GO:0002263
## 2668 GO:0002366
## 2669 GO:0090092
## 2670 GO:0006479
## 2671 GO:0032886
## 2672 GO:2001242
## 2673 GO:0007006
## 2674 GO:0006470
## 2675 GO:0072503
## 2676 GO:0046637
## 2677 GO:0050728
## 2678 GO:0008544
## 2679 GO:0000070
## 2680 GO:0001656
## 2681 GO:0051092
## 2682 GO:0051896
## 2683 GO:0051924
## 2684 GO:1903322
## 2685 GO:0051251
## 2686 GO:0001678
## 2687 GO:0002378
## 2688 GO:0006904
## 2689 GO:0008045
## 2690 GO:0018242
## 2691 GO:0018243
## 2692 GO:0030799
## 2693 GO:0030802
## 2694 GO:0030814
## 2695 GO:0030817
## 2696 GO:0031103
## 2697 GO:0032661
## 2698 GO:0032755
## 2699 GO:0033120
## 2700 GO:0035306
## 2701 GO:0035307
## 2702 GO:0035581
## 2703 GO:0042347
## 2704 GO:0043516
## 2705 GO:0043922
## 2706 GO:0048026
## 2707 GO:0048678
## 2708 GO:0050667
## 2709 GO:0051353
## 2710 GO:0061097
## 2711 GO:0070988
## 2712 GO:0071425
## 2713 GO:1900040
## 2714 GO:1900116
## 2715 GO:1902305
## 2716 GO:2000505
## 2717 GO:2001212
## 2718 GO:2001214
## 2719 GO:0007281
## 2720 GO:0072210
## 2721 GO:1903707
## 2722 GO:0007610
## 2723 GO:0016311
## 2724 GO:0044257
## 2725 GO:0051603
## 2726 GO:0051049
## 2727 GO:0006605
## 2728 GO:0006958
## 2729 GO:0007160
## 2730 GO:0032760
## 2731 GO:0043280
## 2732 GO:1903557
## 2733 GO:0042592
## 2734 GO:0071214
## 2735 GO:0006954
## 2736 GO:0040007
## 2737 GO:0098656
## 2738 GO:0006066
## 2739 GO:0014013
## 2740 GO:0050727
## 2741 GO:0006919
## 2742 GO:0007292
## 2743 GO:0010633
## 2744 GO:0015807
## 2745 GO:0031424
## 2746 GO:0032411
## 2747 GO:0035019
## 2748 GO:0035722
## 2749 GO:0048146
## 2750 GO:0048477
## 2751 GO:0060323
## 2752 GO:0070671
## 2753 GO:1904064
## 2754 GO:2000058
## 2755 GO:2000573
## 2756 GO:0000209
## 2757 GO:0002673
## 2758 GO:0006694
## 2759 GO:0006959
## 2760 GO:0030216
## 2761 GO:0031333
## 2762 GO:0071478
## 2763 GO:0043065
## 2764 GO:0043068
## 2765 GO:0046903
## 2766 GO:1901987
## 2767 GO:0050730
## 2768 GO:0055006
## 2769 GO:0019222
## 2770 GO:0061024
## 2771 GO:1901698
## 2772 GO:0001654
## 2773 GO:0048589
## 2774 GO:0015031
## 2775 GO:0042445
## 2776 GO:0045589
## 2777 GO:0060759
## 2778 GO:0044248
## 2779 GO:0030198
## 2780 GO:0043062
## 2781 GO:0072507
## 2782 GO:0032103
## 2783 GO:0035051
## 2784 GO:0051348
## 2785 GO:0006898
## 2786 GO:0032872
## 2787 GO:0070302
## 2788 GO:0002920
## 2789 GO:0006367
## 2790 GO:0006414
## 2791 GO:0006956
## 2792 GO:0030449
## 2793 GO:0031397
## 2794 GO:0032757
## 2795 GO:0034101
## 2796 GO:0043044
## 2797 GO:0051668
## 2798 GO:0071230
## 2799 GO:1903321
## 2800 GO:1903427
## 2801 GO:1904659
## 2802 GO:2000257
## 2803 GO:0000098
## 2804 GO:0001756
## 2805 GO:0003009
## 2806 GO:0003254
## 2807 GO:0006032
## 2808 GO:0007158
## 2809 GO:0008088
## 2810 GO:0008089
## 2811 GO:0008343
## 2812 GO:0009595
## 2813 GO:0010755
## 2814 GO:0010756
## 2815 GO:0016137
## 2816 GO:0018065
## 2817 GO:0018272
## 2818 GO:0018352
## 2819 GO:0019343
## 2820 GO:0019344
## 2821 GO:0019346
## 2822 GO:0019369
## 2823 GO:0021591
## 2824 GO:0021762
## 2825 GO:0021785
## 2826 GO:0021934
## 2827 GO:0021935
## 2828 GO:0032365
## 2829 GO:0032460
## 2830 GO:0032463
## 2831 GO:0032509
## 2832 GO:0033599
## 2833 GO:0035280
## 2834 GO:0035329
## 2835 GO:0035337
## 2836 GO:0035845
## 2837 GO:0043279
## 2838 GO:0043542
## 2839 GO:0044524
## 2840 GO:0045143
## 2841 GO:0045197
## 2842 GO:0045429
## 2843 GO:0046597
## 2844 GO:0046598
## 2845 GO:0046839
## 2846 GO:0048704
## 2847 GO:0048841
## 2848 GO:0048854
## 2849 GO:0048857
## 2850 GO:0050701
## 2851 GO:0050711
## 2852 GO:0050713
## 2853 GO:0050716
## 2854 GO:0050718
## 2855 GO:0051150
## 2856 GO:0051152
## 2857 GO:0051443
## 2858 GO:0051900
## 2859 GO:0060075
## 2860 GO:0060174
## 2861 GO:0060711
## 2862 GO:0060789
## 2863 GO:0060996
## 2864 GO:0060997
## 2865 GO:0060999
## 2866 GO:0061620
## 2867 GO:0061621
## 2868 GO:0070525
## 2869 GO:0070813
## 2870 GO:0070814
## 2871 GO:0071265
## 2872 GO:0071266
## 2873 GO:0090219
## 2874 GO:0098586
## 2875 GO:0098930
## 2876 GO:0099612
## 2877 GO:1900006
## 2878 GO:1900036
## 2879 GO:1901072
## 2880 GO:1902165
## 2881 GO:1902166
## 2882 GO:1902187
## 2883 GO:1902229
## 2884 GO:1902230
## 2885 GO:1902254
## 2886 GO:1902667
## 2887 GO:1903348
## 2888 GO:1904381
## 2889 GO:1904831
## 2890 GO:1905063
## 2891 GO:1905065
## 2892 GO:2000318
## 2893 GO:2000321
## 2894 GO:2000489
## 2895 GO:2000491
## 2896 GO:2000810
## 2897 GO:0033674
## 2898 GO:0002062
## 2899 GO:0002065
## 2900 GO:0008064
## 2901 GO:0015804
## 2902 GO:0016601
## 2903 GO:0018210
## 2904 GO:0030832
## 2905 GO:0030833
## 2906 GO:0031057
## 2907 GO:0031069
## 2908 GO:0031102
## 2909 GO:0035850
## 2910 GO:0042308
## 2911 GO:0042992
## 2912 GO:0043255
## 2913 GO:0043371
## 2914 GO:0043380
## 2915 GO:0043382
## 2916 GO:0045581
## 2917 GO:0045623
## 2918 GO:0046639
## 2919 GO:0048730
## 2920 GO:0050732
## 2921 GO:0051153
## 2922 GO:0051898
## 2923 GO:0060291
## 2924 GO:0072010
## 2925 GO:0072224
## 2926 GO:1901879
## 2927 GO:1905268
## 2928 GO:2000515
## 2929 GO:1901701
## 2930 GO:0050792
## 2931 GO:1903900
## 2932 GO:0031960
## 2933 GO:0006886
## 2934 GO:0060541
## 2935 GO:0016579
## 2936 GO:0070646
## 2937 GO:0000188
## 2938 GO:0002285
## 2939 GO:0002921
## 2940 GO:0010517
## 2941 GO:0032897
## 2942 GO:0034767
## 2943 GO:0045916
## 2944 GO:0048167
## 2945 GO:0070588
## 2946 GO:0072089
## 2947 GO:0034612
## 2948 GO:0071356
## 2949 GO:0001824
## 2950 GO:0023061
## 2951 GO:0042129
## 2952 GO:0090288
## 2953 GO:0071705
## 2954 GO:0000226
## 2955 GO:0009617
## 2956 GO:2000377
## 2957 GO:0018193
## 2958 GO:0008285
## 2959 GO:0030010
## 2960 GO:0042742
## 2961 GO:0046395
## 2962 GO:0046661
## 2963 GO:0009108
## 2964 GO:0032091
## 2965 GO:0043618
## 2966 GO:0044070
## 2967 GO:0099504
## 2968 GO:1900744
## 2969 GO:0097190
## 2970 GO:0051098
## 2971 GO:1901565
## 2972 GO:0048598
## 2973 GO:0007178
## 2974 GO:0007017
## 2975 GO:0051173
## 2976 GO:0002220
## 2977 GO:0002223
## 2978 GO:0006473
## 2979 GO:0006475
## 2980 GO:0006521
## 2981 GO:0007613
## 2982 GO:0009168
## 2983 GO:0009791
## 2984 GO:0010592
## 2985 GO:0010828
## 2986 GO:0016573
## 2987 GO:0017004
## 2988 GO:0018393
## 2989 GO:0018394
## 2990 GO:0030148
## 2991 GO:0031060
## 2992 GO:0032088
## 2993 GO:0032526
## 2994 GO:0033238
## 2995 GO:0035272
## 2996 GO:0035994
## 2997 GO:0042509
## 2998 GO:0042531
## 2999 GO:0045620
## 3000 GO:0046324
## 3001 GO:0046326
## 3002 GO:0048566
## 3003 GO:0048771
## 3004 GO:0050829
## 3005 GO:0051489
## 3006 GO:0060401
## 3007 GO:0060402
## 3008 GO:0070268
## 3009 GO:1900181
## 3010 GO:1901068
## 3011 GO:1902106
## 3012 GO:1902745
## 3013 GO:2000112
## 3014 GO:0016525
## 3015 GO:0018022
## 3016 GO:0021987
## 3017 GO:0022898
## 3018 GO:0034968
## 3019 GO:0043200
## 3020 GO:0043620
## 3021 GO:0043903
## 3022 GO:1901617
## 3023 GO:0009607
## 3024 GO:0006633
## 3025 GO:0006865
## 3026 GO:0010955
## 3027 GO:0042102
## 3028 GO:0045598
## 3029 GO:0061333
## 3030 GO:0072028
## 3031 GO:0072078
## 3032 GO:0072088
## 3033 GO:1902600
## 3034 GO:0043254
## 3035 GO:0006839
## 3036 GO:0010721
## 3037 GO:0010628
## 3038 GO:0061041
## 3039 GO:1904062
## 3040 GO:0050768
## 3041 GO:0000054
## 3042 GO:0000055
## 3043 GO:0001707
## 3044 GO:0001738
## 3045 GO:0001892
## 3046 GO:0002448
## 3047 GO:0002551
## 3048 GO:0002674
## 3049 GO:0002679
## 3050 GO:0003351
## 3051 GO:0006304
## 3052 GO:0006531
## 3053 GO:0006687
## 3054 GO:0007040
## 3055 GO:0007097
## 3056 GO:0007605
## 3057 GO:0007608
## 3058 GO:0009268
## 3059 GO:0010332
## 3060 GO:0010818
## 3061 GO:0010954
## 3062 GO:0014028
## 3063 GO:0030885
## 3064 GO:0033031
## 3065 GO:0033034
## 3066 GO:0034377
## 3067 GO:0035065
## 3068 GO:0035747
## 3069 GO:0035754
## 3070 GO:0035794
## 3071 GO:0036342
## 3072 GO:0042100
## 3073 GO:0042246
## 3074 GO:0042772
## 3075 GO:0043243
## 3076 GO:0043303
## 3077 GO:0043535
## 3078 GO:0045123
## 3079 GO:0045576
## 3080 GO:0046348
## 3081 GO:0046596
## 3082 GO:0048041
## 3083 GO:0048332
## 3084 GO:0048570
## 3085 GO:0048681
## 3086 GO:0050663
## 3087 GO:0050746
## 3088 GO:0050747
## 3089 GO:0050881
## 3090 GO:0050911
## 3091 GO:0050954
## 3092 GO:0051930
## 3093 GO:0060374
## 3094 GO:0061038
## 3095 GO:0065005
## 3096 GO:0070571
## 3097 GO:0071428
## 3098 GO:0072672
## 3099 GO:0097035
## 3100 GO:0097531
## 3101 GO:1901976
## 3102 GO:1902186
## 3103 GO:1902715
## 3104 GO:1903025
## 3105 GO:1903026
## 3106 GO:1903059
## 3107 GO:1903061
## 3108 GO:1903077
## 3109 GO:1903319
## 3110 GO:1904376
## 3111 GO:1905476
## 3112 GO:1905710
## 3113 GO:2000756
## 3114 GO:0045580
## 3115 GO:0048738
## 3116 GO:0008202
## 3117 GO:0034504
## 3118 GO:0007612
## 3119 GO:0048013
## 3120 GO:0050710
## 3121 GO:0050868
## 3122 GO:1903038
## 3123 GO:2001056
## 3124 GO:0032940
## 3125 GO:1901136
## 3126 GO:0042493
## 3127 GO:0044087
## 3128 GO:0031400
## 3129 GO:0022409
## 3130 GO:0051051
## 3131 GO:0007179
## 3132 GO:0043409
## 3133 GO:0048872
## 3134 GO:0050808
## 3135 GO:0061448
## 3136 GO:0016571
## 3137 GO:0043407
## 3138 GO:1905477
## 3139 GO:0010243
## 3140 GO:0045619
## 3141 GO:0019219
## 3142 GO:0071363
## 3143 GO:0002576
## 3144 GO:0009069
## 3145 GO:0010972
## 3146 GO:0030225
## 3147 GO:0030901
## 3148 GO:0032436
## 3149 GO:0042098
## 3150 GO:0045669
## 3151 GO:0046058
## 3152 GO:0050795
## 3153 GO:0051445
## 3154 GO:0070306
## 3155 GO:0090181
## 3156 GO:1901800
## 3157 GO:1902750
## 3158 GO:1903725
## 3159 GO:1904353
## 3160 GO:1904355
## 3161 GO:1904666
## 3162 GO:1904667
## 3163 GO:0010468
## 3164 GO:0002708
## 3165 GO:0006695
## 3166 GO:0007008
## 3167 GO:0007043
## 3168 GO:0010171
## 3169 GO:0016031
## 3170 GO:0016126
## 3171 GO:0030522
## 3172 GO:0030856
## 3173 GO:0035927
## 3174 GO:0045682
## 3175 GO:0048661
## 3176 GO:0051781
## 3177 GO:0061326
## 3178 GO:0070096
## 3179 GO:0071634
## 3180 GO:0072080
## 3181 GO:0097711
## 3182 GO:0097746
## 3183 GO:1902653
## 3184 GO:0007517
## 3185 GO:1901575
## 3186 GO:0060491
## 3187 GO:0007611
## 3188 GO:0008203
## 3189 GO:0008584
## 3190 GO:0015849
## 3191 GO:0016125
## 3192 GO:0031334
## 3193 GO:0046546
## 3194 GO:0046942
## 3195 GO:0050890
## 3196 GO:0070613
## 3197 GO:1902652
## 3198 GO:1903317
## 3199 GO:0048469
## 3200 GO:0051250
## 3201 GO:0072376
## 3202 GO:0010959
## 3203 GO:0006810
## 3204 GO:0060271
## 3205 GO:0032870
## 3206 GO:1901699
## 3207 GO:1902589
## 3208 GO:0010556
## 3209 GO:0048871
## 3210 GO:0030003
## 3211 GO:0006950
## 3212 GO:0006814
## 3213 GO:0006869
## 3214 GO:0050670
## 3215 GO:0072009
## 3216 GO:0072073
## 3217 GO:2001236
## 3218 GO:0043405
## 3219 GO:0007548
## 3220 GO:0048545
## 3221 GO:0044092
## 3222 GO:0008283
## 3223 GO:0002696
## 3224 GO:0000018
## 3225 GO:0000185
## 3226 GO:0001774
## 3227 GO:0003283
## 3228 GO:0003341
## 3229 GO:0006390
## 3230 GO:0007044
## 3231 GO:0007127
## 3232 GO:0007632
## 3233 GO:0009070
## 3234 GO:0010631
## 3235 GO:0010823
## 3236 GO:0030834
## 3237 GO:0030835
## 3238 GO:0030837
## 3239 GO:0031579
## 3240 GO:0032233
## 3241 GO:0032462
## 3242 GO:0032611
## 3243 GO:0032612
## 3244 GO:0032682
## 3245 GO:0032731
## 3246 GO:0032732
## 3247 GO:0032769
## 3248 GO:0034720
## 3249 GO:0035026
## 3250 GO:0036309
## 3251 GO:0042307
## 3252 GO:0042461
## 3253 GO:0045132
## 3254 GO:0046426
## 3255 GO:0046530
## 3256 GO:0046849
## 3257 GO:0048679
## 3258 GO:0050704
## 3259 GO:0050706
## 3260 GO:0051354
## 3261 GO:0051365
## 3262 GO:0051496
## 3263 GO:0051693
## 3264 GO:0060413
## 3265 GO:0060992
## 3266 GO:0070050
## 3267 GO:0070570
## 3268 GO:0070932
## 3269 GO:0071276
## 3270 GO:0071526
## 3271 GO:0071825
## 3272 GO:0071827
## 3273 GO:0090132
## 3274 GO:0090199
## 3275 GO:0097201
## 3276 GO:1901222
## 3277 GO:1901524
## 3278 GO:1901661
## 3279 GO:1902893
## 3280 GO:1902895
## 3281 GO:1904591
## 3282 GO:1904776
## 3283 GO:1904778
## 3284 GO:1904923
## 3285 GO:1904925
## 3286 GO:1990441
## 3287 GO:2000144
## 3288 GO:0006874
## 3289 GO:0021543
## 3290 GO:0048878
## 3291 GO:0006469
## 3292 GO:0030900
## 3293 GO:0008406
## 3294 GO:0008643
## 3295 GO:0045137
## 3296 GO:0045665
## 3297 GO:0051384
## 3298 GO:0045184
## 3299 GO:0034330
## 3300 GO:0034728
## 3301 GO:0043900
## 3302 GO:0006818
## 3303 GO:0010591
## 3304 GO:0010971
## 3305 GO:0015992
## 3306 GO:0045824
## 3307 GO:0046425
## 3308 GO:0048640
## 3309 GO:0050671
## 3310 GO:0060191
## 3311 GO:0060993
## 3312 GO:0071482
## 3313 GO:0090630
## 3314 GO:1902743
## 3315 GO:1902751
## 3316 GO:0032787
## 3317 GO:0009056
## 3318 GO:0050867
## 3319 GO:0001921
## 3320 GO:0010644
## 3321 GO:0015696
## 3322 GO:0017158
## 3323 GO:0032835
## 3324 GO:0042795
## 3325 GO:0043124
## 3326 GO:0046427
## 3327 GO:0048278
## 3328 GO:0061005
## 3329 GO:0072202
## 3330 GO:0098781
## 3331 GO:1903078
## 3332 GO:1905269
## 3333 GO:0007015
## 3334 GO:0010811
## 3335 GO:0021761
## 3336 GO:0021766
## 3337 GO:0030323
## 3338 GO:0030324
## 3339 GO:0032677
## 3340 GO:0043525
## 3341 GO:0045935
## 3342 GO:0090407
## 3343 GO:0007507
## 3344 GO:0018209
## 3345 GO:0032846
## 3346 GO:0045216
## 3347 GO:0032504
## 3348 GO:0048609
## 3349 GO:0002262
## 3350 GO:0008645
## 3351 GO:0010876
## 3352 GO:0010952
## 3353 GO:0015749
## 3354 GO:0022412
## 3355 GO:0032409
## 3356 GO:1901343
## 3357 GO:1990542
## 3358 GO:2000181
## 3359 GO:0071383
## 3360 GO:0051961
## 3361 GO:0071396
## 3362 GO:0006820
## 3363 GO:0045860
## 3364 GO:0050678
## 3365 GO:0071560
## 3366 GO:0006334
## 3367 GO:0071900
## 3368 GO:0002697
## 3369 GO:1901654
## 3370 GO:0050790
## 3371 GO:0042692
## 3372 GO:0007269
## 3373 GO:0010977
## 3374 GO:0030218
## 3375 GO:0034754
## 3376 GO:0035305
## 3377 GO:0043401
## 3378 GO:0045069
## 3379 GO:0006887
## 3380 GO:0030101
## 3381 GO:1903052
## 3382 GO:0002252
## 3383 GO:0008284
## 3384 GO:0055002
## 3385 GO:0055074
## 3386 GO:0071702
## 3387 GO:0006122
## 3388 GO:0006672
## 3389 GO:0006805
## 3390 GO:0008585
## 3391 GO:0009410
## 3392 GO:0009584
## 3393 GO:0010714
## 3394 GO:0010762
## 3395 GO:0014065
## 3396 GO:0030500
## 3397 GO:0031054
## 3398 GO:0031338
## 3399 GO:0032967
## 3400 GO:0034605
## 3401 GO:0038166
## 3402 GO:0042753
## 3403 GO:0043112
## 3404 GO:0043242
## 3405 GO:0043552
## 3406 GO:0043647
## 3407 GO:0045684
## 3408 GO:0046434
## 3409 GO:0046513
## 3410 GO:0046545
## 3411 GO:0046660
## 3412 GO:0048706
## 3413 GO:0051646
## 3414 GO:0051647
## 3415 GO:0060677
## 3416 GO:0060998
## 3417 GO:0070167
## 3418 GO:0070227
## 3419 GO:0070231
## 3420 GO:0070884
## 3421 GO:0071466
## 3422 GO:0071887
## 3423 GO:0072092
## 3424 GO:0072093
## 3425 GO:0072283
## 3426 GO:0072678
## 3427 GO:0090130
## 3428 GO:0090218
## 3429 GO:0098659
## 3430 GO:0099131
## 3431 GO:0099132
## 3432 GO:1901264
## 3433 GO:1901880
## 3434 GO:1902713
## 3435 GO:1903727
## 3436 GO:1904888
## 3437 GO:2000108
## 3438 GO:2000316
## 3439 GO:2000319
## 3440 GO:2000826
## 3441 GO:0051254
## 3442 GO:0051146
## 3443 GO:0051301
## 3444 GO:0000165
## 3445 GO:0061045
## 3446 GO:0072006
## 3447 GO:0031349
## 3448 GO:0072657
## 3449 GO:0000187
## 3450 GO:0001885
## 3451 GO:0001919
## 3452 GO:0001942
## 3453 GO:0003407
## 3454 GO:0006883
## 3455 GO:0008206
## 3456 GO:0022405
## 3457 GO:0030512
## 3458 GO:0032465
## 3459 GO:0033628
## 3460 GO:0042304
## 3461 GO:0043244
## 3462 GO:0043543
## 3463 GO:0046889
## 3464 GO:0048565
## 3465 GO:0051972
## 3466 GO:0051973
## 3467 GO:0055123
## 3468 GO:0060070
## 3469 GO:0060071
## 3470 GO:0071436
## 3471 GO:0090175
## 3472 GO:0090307
## 3473 GO:0098773
## 3474 GO:1903845
## 3475 GO:2000241
## 3476 GO:0006333
## 3477 GO:1903034
## 3478 GO:0055080
## 3479 GO:0043549
## 3480 GO:0071229
## 3481 GO:1905475
## 3482 GO:0002274
## 3483 GO:0050878
## 3484 GO:0032102
## 3485 GO:0042127
## 3486 GO:0071840
## 3487 GO:0065007
## 3488 GO:0097435
## 3489 GO:0031326
## 3490 GO:0031348
## 3491 GO:0045596
## 3492 GO:0030855
## 3493 GO:0048608
## 3494 GO:0045893
## 3495 GO:0006873
## 3496 GO:0010950
## 3497 GO:0021953
## 3498 GO:0030048
## 3499 GO:0030177
## 3500 GO:0030879
## 3501 GO:0060173
## 3502 GO:1903364
## 3503 GO:0007010
## 3504 GO:0002705
## 3505 GO:0003015
## 3506 GO:0035150
## 3507 GO:0050880
## 3508 GO:0060047
## 3509 GO:0061180
## 3510 GO:0001819
## 3511 GO:0043623
## 3512 GO:0002822
## 3513 GO:0022406
## 3514 GO:0030509
## 3515 GO:1903426
## 3516 GO:0006338
## 3517 GO:2001233
## 3518 GO:1902680
## 3519 GO:0002819
## 3520 GO:1903035
## 3521 GO:0009887
## 3522 GO:0051234
## 3523 GO:0001570
## 3524 GO:0007229
## 3525 GO:0019217
## 3526 GO:0032663
## 3527 GO:0033762
## 3528 GO:0055078
## 3529 GO:0055088
## 3530 GO:0060216
## 3531 GO:0071377
## 3532 GO:0086003
## 3533 GO:0051090
## 3534 GO:0009889
## 3535 GO:0061458
## 3536 GO:0001836
## 3537 GO:0006482
## 3538 GO:0007126
## 3539 GO:0007431
## 3540 GO:0007435
## 3541 GO:0007602
## 3542 GO:0007631
## 3543 GO:0009583
## 3544 GO:0015888
## 3545 GO:0016577
## 3546 GO:0021501
## 3547 GO:0021547
## 3548 GO:0030219
## 3549 GO:0030224
## 3550 GO:0032467
## 3551 GO:0032655
## 3552 GO:0032691
## 3553 GO:0035855
## 3554 GO:0036148
## 3555 GO:0044236
## 3556 GO:0045117
## 3557 GO:0045214
## 3558 GO:0045723
## 3559 GO:0045923
## 3560 GO:0050773
## 3561 GO:0050885
## 3562 GO:0051642
## 3563 GO:0070076
## 3564 GO:0070307
## 3565 GO:0070309
## 3566 GO:0070935
## 3567 GO:0098751
## 3568 GO:1900745
## 3569 GO:1903046
## 3570 GO:1904385
## 3571 GO:1990776
## 3572 GO:2000142
## 3573 GO:2000678
## 3574 GO:2000744
## 3575 GO:0071407
## 3576 GO:0009719
## 3577 GO:0051336
## 3578 GO:0050863
## 3579 GO:0055082
## 3580 GO:0030031
## 3581 GO:0038093
## 3582 GO:0051100
## 3583 GO:0036294
## 3584 GO:0071453
## 3585 GO:0071456
## 3586 GO:0090100
## 3587 GO:0043408
## 3588 GO:0035303
## 3589 GO:0071773
## 3590 GO:0072659
## 3591 GO:0080134
## 3592 GO:0001890
## 3593 GO:0032271
## 3594 GO:1903076
## 3595 GO:1904377
## 3596 GO:0019637
## 3597 GO:0032680
## 3598 GO:1903555
## 3599 GO:0021700
## 3600 GO:0030278
## 3601 GO:0016043
## 3602 GO:0009628
## 3603 GO:0043269
## 3604 GO:1903037
## 3605 GO:0051093
## 3606 GO:0050801
## 3607 GO:0070848
## 3608 GO:0044267
## 3609 GO:0046649
## 3610 GO:0044802
## 3611 GO:0007169
## 3612 GO:0071559
## 3613 GO:0043207
## 3614 GO:0051707
## 3615 GO:0006637
## 3616 GO:0006821
## 3617 GO:0043406
## 3618 GO:0046129
## 3619 GO:0046330
## 3620 GO:0051893
## 3621 GO:1902476
## 3622 GO:1903169
## 3623 GO:1903391
## 3624 GO:0044089
## 3625 GO:0023014
## 3626 GO:0060021
## 3627 GO:0002431
## 3628 GO:0015758
## 3629 GO:0030100
## 3630 GO:0031589
## 3631 GO:0038094
## 3632 GO:0038096
## 3633 GO:0050810
## 3634 GO:0051494
## 3635 GO:0043393
## 3636 GO:0055001
## 3637 GO:0048523
## 3638 GO:0043410
## 3639 GO:0001816
## 3640 GO:0031497
## 3641 GO:0048519
## 3642 GO:0050794
## 3643 GO:0044712
## 3644 GO:0061061
## 3645 GO:0001961
## 3646 GO:0003171
## 3647 GO:0003181
## 3648 GO:0009408
## 3649 GO:0009581
## 3650 GO:0009582
## 3651 GO:0021903
## 3652 GO:0021999
## 3653 GO:0030917
## 3654 GO:0032196
## 3655 GO:0032272
## 3656 GO:0032418
## 3657 GO:0032530
## 3658 GO:0032534
## 3659 GO:0043555
## 3660 GO:0045638
## 3661 GO:0045760
## 3662 GO:0046471
## 3663 GO:0048873
## 3664 GO:0050848
## 3665 GO:0050853
## 3666 GO:0060343
## 3667 GO:0060788
## 3668 GO:0060896
## 3669 GO:0060897
## 3670 GO:0061029
## 3671 GO:0071696
## 3672 GO:0071850
## 3673 GO:0072348
## 3674 GO:0072574
## 3675 GO:0072576
## 3676 GO:0072673
## 3677 GO:0097006
## 3678 GO:1901890
## 3679 GO:1903697
## 3680 GO:1903959
## 3681 GO:2000060
## 3682 GO:0001959
## 3683 GO:0003018
## 3684 GO:0003073
## 3685 GO:0045428
## 3686 GO:0061337
## 3687 GO:1901888
## 3688 GO:0051493
## 3689 GO:0098771
## 3690 GO:0016192
## 3691 GO:0016569
## 3692 GO:0051252
## 3693 GO:0032956
## 3694 GO:1903531
## 3695 GO:0065008
## 3696 GO:0051249
## 3697 GO:0030099
## 3698 GO:1902107
## 3699 GO:0019220
## 3700 GO:0051174
## 3701 GO:0042391
## 3702 GO:0071417
## 3703 GO:0002064
## 3704 GO:0050680
## 3705 GO:0014070
## 3706 GO:0018105
## 3707 GO:0045766
## 3708 GO:0050709
## 3709 GO:0032270
## 3710 GO:0009266
## 3711 GO:0014904
## 3712 GO:0017015
## 3713 GO:0042481
## 3714 GO:0042482
## 3715 GO:0043550
## 3716 GO:0045019
## 3717 GO:0050731
## 3718 GO:0060048
## 3719 GO:0070252
## 3720 GO:1903844
## 3721 GO:0046890
## 3722 GO:0019538
## 3723 GO:0045055
## 3724 GO:0031328
## 3725 GO:0098542
## 3726 GO:0001508
## 3727 GO:0002758
## 3728 GO:0009755
## 3729 GO:0032231
## 3730 GO:0051492
## 3731 GO:0055017
## 3732 GO:0060419
## 3733 GO:0060443
## 3734 GO:0001525
## 3735 GO:0051347
## 3736 GO:0010647
## 3737 GO:0045765
## 3738 GO:0060562
## 3739 GO:0000002
## 3740 GO:0003170
## 3741 GO:0003179
## 3742 GO:0006636
## 3743 GO:0007035
## 3744 GO:0009593
## 3745 GO:0015748
## 3746 GO:0021532
## 3747 GO:0030032
## 3748 GO:0031947
## 3749 GO:0031952
## 3750 GO:0031953
## 3751 GO:0032351
## 3752 GO:0032642
## 3753 GO:0032692
## 3754 GO:0033029
## 3755 GO:0033032
## 3756 GO:0035088
## 3757 GO:0042535
## 3758 GO:0045744
## 3759 GO:0045807
## 3760 GO:0048247
## 3761 GO:0048791
## 3762 GO:0050907
## 3763 GO:0061515
## 3764 GO:0071871
## 3765 GO:0071872
## 3766 GO:0072033
## 3767 GO:0072077
## 3768 GO:0072087
## 3769 GO:0098900
## 3770 GO:1903416
## 3771 GO:0051338
## 3772 GO:0043588
## 3773 GO:0043412
## 3774 GO:0043122
## 3775 GO:1902532
## 3776 GO:0010646
## 3777 GO:1904018
## 3778 GO:0050789
## 3779 GO:0010033
## 3780 GO:0007188
## 3781 GO:0018108
## 3782 GO:0018212
## 3783 GO:0022408
## 3784 GO:0060560
## 3785 GO:1904375
## 3786 GO:0016570
## 3787 GO:0042325
## 3788 GO:0007167
## 3789 GO:0006325
## 3790 GO:0002009
## 3791 GO:0008637
## 3792 GO:0015918
## 3793 GO:0046580
## 3794 GO:0051058
## 3795 GO:0051149
## 3796 GO:0051607
## 3797 GO:0031399
## 3798 GO:0034762
## 3799 GO:0006497
## 3800 GO:0032412
## 3801 GO:0035108
## 3802 GO:0042158
## 3803 GO:0035239
## 3804 GO:0017038
## 3805 GO:0072001
## 3806 GO:0051247
## 3807 GO:0007423
## 3808 GO:0007009
## 3809 GO:0030307
## 3810 GO:0009888
## 3811 GO:0010389
## 3812 GO:1902749
## 3813 GO:0071241
## 3814 GO:1990778
## 3815 GO:0035295
## 3816 GO:0016310
## 3817 GO:0023056
## 3818 GO:0010557
## 3819 GO:0002479
## 3820 GO:0003209
## 3821 GO:0003230
## 3822 GO:0010248
## 3823 GO:0010770
## 3824 GO:0030007
## 3825 GO:0032232
## 3826 GO:0032273
## 3827 GO:0032459
## 3828 GO:0036092
## 3829 GO:0036376
## 3830 GO:0042116
## 3831 GO:0042147
## 3832 GO:0042590
## 3833 GO:0043551
## 3834 GO:0046834
## 3835 GO:0046854
## 3836 GO:0048015
## 3837 GO:0048017
## 3838 GO:0050905
## 3839 GO:0050906
## 3840 GO:0051497
## 3841 GO:0055081
## 3842 GO:0060065
## 3843 GO:0060333
## 3844 GO:0060763
## 3845 GO:0086064
## 3846 GO:1990573
## 3847 GO:0045088
## 3848 GO:0001764
## 3849 GO:0001954
## 3850 GO:0030326
## 3851 GO:0060444
## 3852 GO:0060603
## 3853 GO:2001237
## 3854 GO:0060395
## 3855 GO:0007162
## 3856 GO:0009891
## 3857 GO:0032944
## 3858 GO:0070663
## 3859 GO:0006355
## 3860 GO:1903506
## 3861 GO:2001141
## 3862 GO:0003158
## 3863 GO:0043392
## 3864 GO:0001655
## 3865 GO:0098662
## 3866 GO:0001558
## 3867 GO:0012501
## 3868 GO:1903706
## 3869 GO:0019221
## 3870 GO:0098655
## 3871 GO:1902903
## 3872 GO:0008217
## 3873 GO:0051048
## 3874 GO:0001666
## 3875 GO:0034765
## 3876 GO:0036293
## 3877 GO:0070482
## 3878 GO:0032101
## 3879 GO:0045926
## 3880 GO:0002573
## 3881 GO:0071902
## 3882 GO:0034220
## 3883 GO:0035725
## 3884 GO:0043123
## 3885 GO:0045833
## 3886 GO:0050852
## 3887 GO:0001953
## 3888 GO:0002224
## 3889 GO:0007223
## 3890 GO:0007520
## 3891 GO:0010107
## 3892 GO:0010712
## 3893 GO:0010812
## 3894 GO:0014015
## 3895 GO:0032414
## 3896 GO:0032651
## 3897 GO:0032965
## 3898 GO:0034340
## 3899 GO:0044246
## 3900 GO:0055075
## 3901 GO:0060337
## 3902 GO:0071398
## 3903 GO:0072676
## 3904 GO:0086002
## 3905 GO:2000484
## 3906 GO:0010894
## 3907 GO:0014074
## 3908 GO:0032720
## 3909 GO:0042476
## 3910 GO:0045778
## 3911 GO:0045939
## 3912 GO:0046622
## 3913 GO:0090662
## 3914 GO:1902904
## 3915 GO:1903556
## 3916 GO:0001932
## 3917 GO:1901342
## 3918 GO:0045321
## 3919 GO:0014902
## 3920 GO:0031345
## 3921 GO:0042221
## 3922 GO:0072359
## 3923 GO:0010469
## 3924 GO:2001234
## 3925 GO:1902580
## 3926 GO:0045859
## 3927 GO:0006323
## 3928 GO:0006909
## 3929 GO:0010810
## 3930 GO:0030308
## 3931 GO:1903708
## 3932 GO:0009893
## 3933 GO:0008219
## 3934 GO:0023051
## 3935 GO:0010604
## 3936 GO:0006941
## 3937 GO:0032946
## 3938 GO:0070665
## 3939 GO:0015698
## 3940 GO:0032943
## 3941 GO:0042752
## 3942 GO:0045446
## 3943 GO:0046651
## 3944 GO:0048010
## 3945 GO:0051055
## 3946 GO:0090090
## 3947 GO:0098661
## 3948 GO:0098739
## 3949 GO:0003151
## 3950 GO:0007187
## 3951 GO:0007601
## 3952 GO:0019218
## 3953 GO:0043433
## 3954 GO:0050953
## 3955 GO:0001817
## 3956 GO:0007596
## 3957 GO:0007599
## 3958 GO:0050817
## 3959 GO:0033993
## 3960 GO:0007268
## 3961 GO:0001578
## 3962 GO:0002474
## 3963 GO:0007193
## 3964 GO:0009062
## 3965 GO:0010771
## 3966 GO:0016079
## 3967 GO:0019751
## 3968 GO:0031943
## 3969 GO:0031946
## 3970 GO:0051963
## 3971 GO:0051965
## 3972 GO:0060037
## 3973 GO:0070555
## 3974 GO:0086001
## 3975 GO:0086009
## 3976 GO:0086013
## 3977 GO:0086065
## 3978 GO:0090030
## 3979 GO:0097581
## 3980 GO:2000482
## 3981 GO:0009615
## 3982 GO:0030111
## 3983 GO:0042110
## 3984 GO:0071593
## 3985 GO:0045089
## 3986 GO:0045165
## 3987 GO:0006915
## 3988 GO:0031347
## 3989 GO:0006357
## 3990 GO:0009968
## 3991 GO:0002687
## 3992 GO:0002706
## 3993 GO:0048525
## 3994 GO:0060828
## 3995 GO:0071248
## 3996 GO:1903901
## 3997 GO:0031346
## 3998 GO:0099537
## 3999 GO:0002695
## 4000 GO:0010565
## 4001 GO:0050866
## 4002 GO:0007159
## 4003 GO:0070486
## 4004 GO:0009967
## 4005 GO:0010611
## 4006 GO:0014743
## 4007 GO:0050807
## 4008 GO:1903305
## 4009 GO:0006464
## 4010 GO:1902105
## 4011 GO:0000768
## 4012 GO:0001657
## 4013 GO:0002221
## 4014 GO:0006476
## 4015 GO:0006949
## 4016 GO:0007156
## 4017 GO:0007184
## 4018 GO:0009247
## 4019 GO:0010921
## 4020 GO:0010923
## 4021 GO:0016575
## 4022 GO:0030316
## 4023 GO:0031644
## 4024 GO:0032350
## 4025 GO:0032652
## 4026 GO:0042534
## 4027 GO:0046885
## 4028 GO:0055119
## 4029 GO:0060675
## 4030 GO:0072164
## 4031 GO:0072171
## 4032 GO:0072329
## 4033 GO:0090075
## 4034 GO:0090263
## 4035 GO:1901019
## 4036 GO:0030030
## 4037 GO:0071345
## 4038 GO:0007420
## 4039 GO:0002218
## 4040 GO:1903729
## 4041 GO:0030001
## 4042 GO:0001889
## 4043 GO:0061008
## 4044 GO:0031032
## 4045 GO:0007417
## 4046 GO:0065009
## 4047 GO:0051130
## 4048 GO:0001837
## 4049 GO:0001936
## 4050 GO:0002026
## 4051 GO:0043502
## 4052 GO:0098742
## 4053 GO:1903779
## 4054 GO:0010648
## 4055 GO:0003006
## 4056 GO:0048514
## 4057 GO:0050778
## 4058 GO:0002768
## 4059 GO:0003013
## 4060 GO:0008015
## 4061 GO:0051345
## 4062 GO:0023057
## 4063 GO:0060322
## 4064 GO:0002244
## 4065 GO:0007606
## 4066 GO:0021535
## 4067 GO:0032368
## 4068 GO:0042108
## 4069 GO:0045822
## 4070 GO:0046683
## 4071 GO:0048813
## 4072 GO:0051591
## 4073 GO:1903523
## 4074 GO:0030217
## 4075 GO:0035567
## 4076 GO:0035637
## 4077 GO:0043901
## 4078 GO:0055085
## 4079 GO:0051179
## 4080 GO:0022612
## 4081 GO:0051170
## 4082 GO:0007411
## 4083 GO:0045637
## 4084 GO:0060627
## 4085 GO:0097485
## 4086 GO:0031325
## 4087 GO:0048585
## 4088 GO:0007422
## 4089 GO:0030178
## 4090 GO:0035023
## 4091 GO:0046467
## 4092 GO:1902578
## 4093 GO:0071310
## 4094 GO:0022407
## 4095 GO:0002698
## 4096 GO:0048646
## 4097 GO:0045785
## 4098 GO:0007204
## 4099 GO:0051480
## 4100 GO:0002685
## 4101 GO:0008361
## 4102 GO:0031099
## 4103 GO:0045834
## 4104 GO:0002694
## 4105 GO:0001779
## 4106 GO:0001823
## 4107 GO:0001934
## 4108 GO:0048729
## 4109 GO:0006665
## 4110 GO:0006885
## 4111 GO:0030641
## 4112 GO:0032874
## 4113 GO:0033559
## 4114 GO:0044242
## 4115 GO:0046620
## 4116 GO:0050803
## 4117 GO:0051453
## 4118 GO:0070304
## 4119 GO:0042327
## 4120 GO:0060429
## 4121 GO:0043085
## 4122 GO:0060411
## 4123 GO:0002703
## 4124 GO:0042157
## 4125 GO:0046777
## 4126 GO:0040013
## 4127 GO:0060041
## 4128 GO:0001775
## 4129 GO:0001568
## 4130 GO:0002250
## 4131 GO:0071495
## 4132 GO:0010594
## 4133 GO:0016358
## 4134 GO:0019722
## 4135 GO:0019932
## 4136 GO:0030239
## 4137 GO:0030516
## 4138 GO:0034113
## 4139 GO:0045655
## 4140 GO:0045657
## 4141 GO:0045995
## 4142 GO:0060359
## 4143 GO:0071869
## 4144 GO:0071870
## 4145 GO:0098876
## 4146 GO:0001101
## 4147 GO:0032970
## 4148 GO:0098660
## 4149 GO:0002429
## 4150 GO:0044765
## 4151 GO:0017157
## 4152 GO:0032675
## 4153 GO:0071277
## 4154 GO:0071346
## 4155 GO:0001952
## 4156 GO:0030336
## 4157 GO:2000146
## 4158 GO:0031175
## 4159 GO:0010769
## 4160 GO:0046488
## 4161 GO:0050851
## 4162 GO:0050865
## 4163 GO:0001822
## 4164 GO:0050777
## 4165 GO:0034097
## 4166 GO:0006812
## 4167 GO:0006664
## 4168 GO:0032729
## 4169 GO:0061383
## 4170 GO:0061387
## 4171 GO:0071695
## 4172 GO:0086004
## 4173 GO:1903115
## 4174 GO:0003206
## 4175 GO:0032535
## 4176 GO:0031401
## 4177 GO:0042060
## 4178 GO:0050900
## 4179 GO:0003205
## 4180 GO:0016055
## 4181 GO:0048513
## 4182 GO:0050776
## 4183 GO:0009611
## 4184 GO:0002764
## 4185 GO:0061564
## 4186 GO:0045937
## 4187 GO:0006606
## 4188 GO:0009966
## 4189 GO:0048583
## 4190 GO:0006661
## 4191 GO:0008360
## 4192 GO:0016042
## 4193 GO:0034341
## 4194 GO:0051495
## 4195 GO:0003007
## 4196 GO:0090066
## 4197 GO:0017156
## 4198 GO:0045989
## 4199 GO:1902533
## 4200 GO:0006468
## 4201 GO:0007409
## 4202 GO:0008610
## 4203 GO:0006937
## 4204 GO:1902531
## 4205 GO:0040008
## 4206 GO:0006942
## 4207 GO:0055117
## 4208 GO:1905330
## 4209 GO:0030258
## 4210 GO:0006793
## 4211 GO:0006796
## 4212 GO:0001944
## 4213 GO:0072358
## 4214 GO:0001938
## 4215 GO:0006690
## 4216 GO:0008277
## 4217 GO:0045851
## 4218 GO:0051452
## 4219 GO:0010632
## 4220 GO:0044093
## 4221 GO:0030004
## 4222 GO:0048284
## 4223 GO:0070661
## 4224 GO:0035556
## 4225 GO:0031344
## 4226 GO:0008654
## 4227 GO:0048522
## 4228 GO:0002763
## 4229 GO:0010634
## 4230 GO:0035601
## 4231 GO:0042035
## 4232 GO:0098732
## 4233 GO:2000106
## 4234 GO:0007600
## 4235 GO:0003279
## 4236 GO:0002757
## 4237 GO:0048812
## 4238 GO:0045933
## 4239 GO:2000027
## 4240 GO:0019216
## 4241 GO:1905114
## 4242 GO:0006811
## 4243 GO:0006631
## 4244 GO:0030168
## 4245 GO:0097164
## 4246 GO:1902905
## 4247 GO:0055067
## 4248 GO:0032990
## 4249 GO:0048858
## 4250 GO:0098609
## 4251 GO:0015672
## 4252 GO:0002520
## 4253 GO:0009605
## 4254 GO:0048666
## 4255 GO:0010927
## 4256 GO:0030098
## 4257 GO:0048518
## 4258 GO:0006952
## 4259 GO:0032879
## 4260 GO:0010976
## 4261 GO:0048839
## 4262 GO:0006897
## 4263 GO:0051128
## 4264 GO:0002253
## 4265 GO:0010975
## 4266 GO:0043547
## 4267 GO:0002761
## 4268 GO:0006906
## 4269 GO:0050770
## 4270 GO:0070542
## 4271 GO:0090174
## 4272 GO:0070887
## 4273 GO:0051271
## 4274 GO:0045927
## 4275 GO:0044801
## 4276 GO:0050877
## 4277 GO:0050767
## 4278 GO:0048732
## 4279 GO:0048584
## 4280 GO:0003012
## 4281 GO:0048667
## 4282 GO:0001818
## 4283 GO:0032649
## 4284 GO:0060284
## 4285 GO:0048754
## 4286 GO:0061025
## 4287 GO:0007275
## 4288 GO:0043583
## 4289 GO:0000902
## 4290 GO:0044707
## 4291 GO:0030097
## 4292 GO:0006644
## 4293 GO:0045639
## 4294 GO:0045017
## 4295 GO:0046474
## 4296 GO:0000904
## 4297 GO:0002683
## 4298 GO:0002521
## 4299 GO:0010720
## 4300 GO:0007166
## 4301 GO:0006643
## 4302 GO:0043087
## 4303 GO:0006650
## 4304 GO:0090257
## 4305 GO:0030182
## 4306 GO:0006629
## 4307 GO:0050769
## 4308 GO:0030902
## 4309 GO:0030155
## 4310 GO:0006936
## 4311 GO:0016337
## 4312 GO:0051962
## 4313 GO:0046486
## 4314 GO:0002682
## 4315 GO:0006813
## 4316 GO:0071805
## 4317 GO:0002684
## 4318 GO:0048534
## 4319 GO:0007267
## 4320 GO:0051960
## 4321 GO:0045597
## 4322 GO:0032989
## 4323 GO:0061138
## 4324 GO:0048856
## 4325 GO:0045664
## 4326 GO:0030593
## 4327 GO:0071621
## 4328 GO:0097530
## 4329 GO:1990266
## 4330 GO:0006955
## 4331 GO:0048468
## 4332 GO:0051716
## 4333 GO:0060326
## 4334 GO:0048870
## 4335 GO:0002376
## 4336 GO:0003281
## 4337 GO:0045823
## 4338 GO:0050920
## 4339 GO:0008016
## 4340 GO:0051056
## 4341 GO:0030335
## 4342 GO:0040017
## 4343 GO:2000147
## 4344 GO:0048639
## 4345 GO:0046578
## 4346 GO:0003231
## 4347 GO:0097529
## 4348 GO:1903524
## 4349 GO:0045666
## 4350 GO:0098602
## 4351 GO:0044255
## 4352 GO:0006935
## 4353 GO:0022604
## 4354 GO:0044763
## 4355 GO:0044767
## 4356 GO:1903522
## 4357 GO:0016477
## 4358 GO:0048731
## 4359 GO:0009653
## 4360 GO:0032502
## 4361 GO:0007399
## 4362 GO:0045087
## 4363 GO:0007155
## 4364 GO:0022610
## 4365 GO:0032501
## 4366 GO:0006928
## 4367 GO:0003008
## 4368 GO:0044057
## 4369 GO:0051272
## 4370 GO:0048638
## 4371 GO:0045595
## 4372 GO:0001763
## 4373 GO:0030595
## 4374 GO:0051094
## 4375 GO:0050896
## 4376 GO:0051240
## 4377 GO:0040011
## 4378 GO:0048699
## 4379 GO:0022008
## 4380 GO:0051241
## 4381 GO:0007154
## 4382 GO:0044699
## 4383 GO:2000026
## 4384 GO:0007165
## 4385 GO:0030334
## 4386 GO:0048869
## 4387 GO:0040012
## 4388 GO:0030154
## 4389 GO:2000145
## 4390 GO:0051239
## 4391 GO:0050793
## 4392 GO:0022603
## 4393 GO:0044700
## 4394 GO:0023052
## 4395 GO:0007186
## 4396 GO:0051270
## 4397 GO:0000011
## 4398 GO:0000012
## 4399 GO:0000019
## 4400 GO:0000022
## 4401 GO:0000023
## 4402 GO:0000032
## 4403 GO:0000038
## 4404 GO:0000042
## 4405 GO:0000050
## 4406 GO:0000053
## 4407 GO:0000056
## 4408 GO:0000060
## 4409 GO:0000066
## 4410 GO:0000101
## 4411 GO:0000103
## 4412 GO:0000105
## 4413 GO:0000117
## 4414 GO:0000132
## 4415 GO:0000160
## 4416 GO:0000173
## 4417 GO:0000189
## 4418 GO:0000212
## 4419 GO:0000255
## 4420 GO:0000256
## 4421 GO:0000266
## 4422 GO:0000271
## 4423 GO:0000288
## 4424 GO:0000289
## 4425 GO:0000290
## 4426 GO:0000291
## 4427 GO:0000294
## 4428 GO:0000296
## 4429 GO:0000301
## 4430 GO:0000320
## 4431 GO:0000338
## 4432 GO:0000349
## 4433 GO:0000350
## 4434 GO:0000354
## 4435 GO:0000379
## 4436 GO:0000390
## 4437 GO:0000393
## 4438 GO:0000394
## 4439 GO:0000395
## 4440 GO:0000412
## 4441 GO:0000414
## 4442 GO:0000415
## 4443 GO:0000416
## 4444 GO:0000433
## 4445 GO:0000435
## 4446 GO:0000447
## 4447 GO:0000448
## 4448 GO:0000454
## 4449 GO:0000455
## 4450 GO:0000460
## 4451 GO:0000461
## 4452 GO:0000463
## 4453 GO:0000466
## 4454 GO:0000467
## 4455 GO:0000469
## 4456 GO:0000470
## 4457 GO:0000472
## 4458 GO:0000478
## 4459 GO:0000479
## 4460 GO:0000480
## 4461 GO:0000481
## 4462 GO:0000491
## 4463 GO:0000492
## 4464 GO:0000493
## 4465 GO:0000494
## 4466 GO:0000495
## 4467 GO:0000706
## 4468 GO:0000707
## 4469 GO:0000710
## 4470 GO:0000711
## 4471 GO:0000712
## 4472 GO:0000718
## 4473 GO:0000720
## 4474 GO:0000722
## 4475 GO:0000726
## 4476 GO:0000727
## 4477 GO:0000729
## 4478 GO:0000730
## 4479 GO:0000738
## 4480 GO:0000820
## 4481 GO:0000821
## 4482 GO:0000915
## 4483 GO:0000916
## 4484 GO:0000917
## 4485 GO:0000920
## 4486 GO:0000921
## 4487 GO:0000958
## 4488 GO:0000960
## 4489 GO:0000961
## 4490 GO:0000962
## 4491 GO:0000963
## 4492 GO:0000964
## 4493 GO:0000965
## 4494 GO:0000966
## 4495 GO:0000973
## 4496 GO:0000999
## 4497 GO:0001009
## 4498 GO:0001080
## 4499 GO:0001100
## 4500 GO:0001172
## 4501 GO:0001180
## 4502 GO:0001189
## 4503 GO:0001193
## 4504 GO:0001207
## 4505 GO:0001300
## 4506 GO:0001302
## 4507 GO:0001315
## 4508 GO:0001502
## 4509 GO:0001507
## 4510 GO:0001514
## 4511 GO:0001516
## 4512 GO:0001519
## 4513 GO:0001539
## 4514 GO:0001541
## 4515 GO:0001542
## 4516 GO:0001543
## 4517 GO:0001544
## 4518 GO:0001545
## 4519 GO:0001546
## 4520 GO:0001547
## 4521 GO:0001550
## 4522 GO:0001552
## 4523 GO:0001553
## 4524 GO:0001554
## 4525 GO:0001555
## 4526 GO:0001556
## 4527 GO:0001560
## 4528 GO:0001561
## 4529 GO:0001562
## 4530 GO:0001569
## 4531 GO:0001572
## 4532 GO:0001573
## 4533 GO:0001574
## 4534 GO:0001575
## 4535 GO:0001576
## 4536 GO:0001579
## 4537 GO:0001580
## 4538 GO:0001581
## 4539 GO:0001582
## 4540 GO:0001658
## 4541 GO:0001659
## 4542 GO:0001660
## 4543 GO:0001661
## 4544 GO:0001662
## 4545 GO:0001672
## 4546 GO:0001675
## 4547 GO:0001680
## 4548 GO:0001682
## 4549 GO:0001692
## 4550 GO:0001694
## 4551 GO:0001695
## 4552 GO:0001696
## 4553 GO:0001697
## 4554 GO:0001698
## 4555 GO:0001705
## 4556 GO:0001710
## 4557 GO:0001712
## 4558 GO:0001714
## 4559 GO:0001732
## 4560 GO:0001736
## 4561 GO:0001743
## 4562 GO:0001754
## 4563 GO:0001757
## 4564 GO:0001759
## 4565 GO:0001765
## 4566 GO:0001768
## 4567 GO:0001771
## 4568 GO:0001773
## 4569 GO:0001776
## 4570 GO:0001777
## 4571 GO:0001778
## 4572 GO:0001780
## 4573 GO:0001781
## 4574 GO:0001782
## 4575 GO:0001783
## 4576 GO:0001787
## 4577 GO:0001796
## 4578 GO:0001798
## 4579 GO:0001805
## 4580 GO:0001806
## 4581 GO:0001807
## 4582 GO:0001808
## 4583 GO:0001809
## 4584 GO:0001810
## 4585 GO:0001811
## 4586 GO:0001812
## 4587 GO:0001814
## 4588 GO:0001820
## 4589 GO:0001821
## 4590 GO:0001826
## 4591 GO:0001827
## 4592 GO:0001828
## 4593 GO:0001829
## 4594 GO:0001831
## 4595 GO:0001832
## 4596 GO:0001833
## 4597 GO:0001834
## 4598 GO:0001835
## 4599 GO:0001839
## 4600 GO:0001840
## 4601 GO:0001842
## 4602 GO:0001844
## 4603 GO:0001845
## 4604 GO:0001865
## 4605 GO:0001866
## 4606 GO:0001867
## 4607 GO:0001869
## 4608 GO:0001878
## 4609 GO:0001880
## 4610 GO:0001881
## 4611 GO:0001886
## 4612 GO:0001887
## 4613 GO:0001893
## 4614 GO:0001899
## 4615 GO:0001907
## 4616 GO:0001910
## 4617 GO:0001911
## 4618 GO:0001912
## 4619 GO:0001913
## 4620 GO:0001914
## 4621 GO:0001915
## 4622 GO:0001916
## 4623 GO:0001920
## 4624 GO:0001922
## 4625 GO:0001923
## 4626 GO:0001928
## 4627 GO:0001941
## 4628 GO:0001945
## 4629 GO:0001946
## 4630 GO:0001949
## 4631 GO:0001951
## 4632 GO:0001955
## 4633 GO:0001956
## 4634 GO:0001957
## 4635 GO:0001960
## 4636 GO:0001964
## 4637 GO:0001967
## 4638 GO:0001969
## 4639 GO:0001970
## 4640 GO:0001971
## 4641 GO:0001973
## 4642 GO:0001974
## 4643 GO:0001975
## 4644 GO:0001976
## 4645 GO:0001977
## 4646 GO:0001978
## 4647 GO:0001980
## 4648 GO:0001983
## 4649 GO:0001984
## 4650 GO:0001985
## 4651 GO:0001988
## 4652 GO:0001990
## 4653 GO:0001991
## 4654 GO:0001992
## 4655 GO:0001993
## 4656 GO:0001994
## 4657 GO:0001996
## 4658 GO:0001997
## 4659 GO:0002001
## 4660 GO:0002002
## 4661 GO:0002003
## 4662 GO:0002005
## 4663 GO:0002016
## 4664 GO:0002017
## 4665 GO:0002018
## 4666 GO:0002019
## 4667 GO:0002021
## 4668 GO:0002023
## 4669 GO:0002024
## 4670 GO:0002025
## 4671 GO:0002027
## 4672 GO:0002029
## 4673 GO:0002031
## 4674 GO:0002032
## 4675 GO:0002033
## 4676 GO:0002034
## 4677 GO:0002035
## 4678 GO:0002036
## 4679 GO:0002037
## 4680 GO:0002038
## 4681 GO:0002042
## 4682 GO:0002051
## 4683 GO:0002052
## 4684 GO:0002053
## 4685 GO:0002066
## 4686 GO:0002067
## 4687 GO:0002068
## 4688 GO:0002069
## 4689 GO:0002070
## 4690 GO:0002071
## 4691 GO:0002074
## 4692 GO:0002076
## 4693 GO:0002077
## 4694 GO:0002084
## 4695 GO:0002085
## 4696 GO:0002086
## 4697 GO:0002087
## 4698 GO:0002091
## 4699 GO:0002092
## 4700 GO:0002093
## 4701 GO:0002097
## 4702 GO:0002098
## 4703 GO:0002100
## 4704 GO:0002101
## 4705 GO:0002115
## 4706 GO:0002118
## 4707 GO:0002121
## 4708 GO:0002125
## 4709 GO:0002127
## 4710 GO:0002138
## 4711 GO:0002143
## 4712 GO:0002149
## 4713 GO:0002152
## 4714 GO:0002154
## 4715 GO:0002155
## 4716 GO:0002158
## 4717 GO:0002159
## 4718 GO:0002175
## 4719 GO:0002176
## 4720 GO:0002184
## 4721 GO:0002188
## 4722 GO:0002191
## 4723 GO:0002194
## 4724 GO:0002215
## 4725 GO:0002227
## 4726 GO:0002230
## 4727 GO:0002232
## 4728 GO:0002246
## 4729 GO:0002248
## 4730 GO:0002251
## 4731 GO:0002260
## 4732 GO:0002264
## 4733 GO:0002265
## 4734 GO:0002266
## 4735 GO:0002268
## 4736 GO:0002270
## 4737 GO:0002276
## 4738 GO:0002277
## 4739 GO:0002281
## 4740 GO:0002282
## 4741 GO:0002286
## 4742 GO:0002291
## 4743 GO:0002292
## 4744 GO:0002293
## 4745 GO:0002295
## 4746 GO:0002296
## 4747 GO:0002300
## 4748 GO:0002302
## 4749 GO:0002305
## 4750 GO:0002309
## 4751 GO:0002313
## 4752 GO:0002314
## 4753 GO:0002315
## 4754 GO:0002316
## 4755 GO:0002317
## 4756 GO:0002318
## 4757 GO:0002320
## 4758 GO:0002322
## 4759 GO:0002323
## 4760 GO:0002326
## 4761 GO:0002327
## 4762 GO:0002328
## 4763 GO:0002329
## 4764 GO:0002331
## 4765 GO:0002333
## 4766 GO:0002335
## 4767 GO:0002337
## 4768 GO:0002339
## 4769 GO:0002344
## 4770 GO:0002352
## 4771 GO:0002353
## 4772 GO:0002355
## 4773 GO:0002357
## 4774 GO:0002358
## 4775 GO:0002360
## 4776 GO:0002361
## 4777 GO:0002362
## 4778 GO:0002363
## 4779 GO:0002368
## 4780 GO:0002371
## 4781 GO:0002380
## 4782 GO:0002384
## 4783 GO:0002385
## 4784 GO:0002386
## 4785 GO:0002395
## 4786 GO:0002396
## 4787 GO:0002399
## 4788 GO:0002407
## 4789 GO:0002408
## 4790 GO:0002414
## 4791 GO:0002415
## 4792 GO:0002416
## 4793 GO:0002418
## 4794 GO:0002426
## 4795 GO:0002428
## 4796 GO:0002430
## 4797 GO:0002432
## 4798 GO:0002436
## 4799 GO:0002437
## 4800 GO:0002438
## 4801 GO:0002439
## 4802 GO:0002457
## 4803 GO:0002458
## 4804 GO:0002467
## 4805 GO:0002468
## 4806 GO:0002475
## 4807 GO:0002480
## 4808 GO:0002481
## 4809 GO:0002489
## 4810 GO:0002501
## 4811 GO:0002502
## 4812 GO:0002503
## 4813 GO:0002506
## 4814 GO:0002507
## 4815 GO:0002508
## 4816 GO:0002509
## 4817 GO:0002513
## 4818 GO:0002517
## 4819 GO:0002519
## 4820 GO:0002522
## 4821 GO:0002523
## 4822 GO:0002526
## 4823 GO:0002528
## 4824 GO:0002532
## 4825 GO:0002534
## 4826 GO:0002537
## 4827 GO:0002540
## 4828 GO:0002541
## 4829 GO:0002542
## 4830 GO:0002543
## 4831 GO:0002544
## 4832 GO:0002548
## 4833 GO:0002553
## 4834 GO:0002554
## 4835 GO:0002572
## 4836 GO:0002577
## 4837 GO:0002578
## 4838 GO:0002579
## 4839 GO:0002580
## 4840 GO:0002581
## 4841 GO:0002583
## 4842 GO:0002584
## 4843 GO:0002586
## 4844 GO:0002587
## 4845 GO:0002588
## 4846 GO:0002590
## 4847 GO:0002604
## 4848 GO:0002605
## 4849 GO:0002606
## 4850 GO:0002622
## 4851 GO:0002625
## 4852 GO:0002626
## 4853 GO:0002634
## 4854 GO:0002635
## 4855 GO:0002636
## 4856 GO:0002637
## 4857 GO:0002638
## 4858 GO:0002639
## 4859 GO:0002642
## 4860 GO:0002643
## 4861 GO:0002644
## 4862 GO:0002645
## 4863 GO:0002651
## 4864 GO:0002652
## 4865 GO:0002663
## 4866 GO:0002664
## 4867 GO:0002666
## 4868 GO:0002667
## 4869 GO:0002668
## 4870 GO:0002669
## 4871 GO:0002676
## 4872 GO:0002677
## 4873 GO:0002678
## 4874 GO:0002686
## 4875 GO:0002688
## 4876 GO:0002689
## 4877 GO:0002690
## 4878 GO:0002691
## 4879 GO:0002692
## 4880 GO:0002693
## 4881 GO:0002701
## 4882 GO:0002704
## 4883 GO:0002707
## 4884 GO:0002710
## 4885 GO:0002715
## 4886 GO:0002716
## 4887 GO:0002717
## 4888 GO:0002719
## 4889 GO:0002721
## 4890 GO:0002725
## 4891 GO:0002727
## 4892 GO:0002728
## 4893 GO:0002729
## 4894 GO:0002730
## 4895 GO:0002731
## 4896 GO:0002732
## 4897 GO:0002737
## 4898 GO:0002740
## 4899 GO:0002752
## 4900 GO:0002753
## 4901 GO:0002756
## 4902 GO:0002759
## 4903 GO:0002760
## 4904 GO:0002762
## 4905 GO:0002765
## 4906 GO:0002767
## 4907 GO:0002769
## 4908 GO:0002774
## 4909 GO:0002778
## 4910 GO:0002786
## 4911 GO:0002787
## 4912 GO:0002792
## 4913 GO:0002803
## 4914 GO:0002812
## 4915 GO:0002818
## 4916 GO:0002820
## 4917 GO:0002823
## 4918 GO:0002826
## 4919 GO:0002832
## 4920 GO:0002837
## 4921 GO:0002839
## 4922 GO:0002840
## 4923 GO:0002842
## 4924 GO:0002851
## 4925 GO:0002858
## 4926 GO:0002859
## 4927 GO:0002860
## 4928 GO:0002862
## 4929 GO:0002865
## 4930 GO:0002874
## 4931 GO:0002875
## 4932 GO:0002876
## 4933 GO:0002877
## 4934 GO:0002878
## 4935 GO:0002879
## 4936 GO:0002880
## 4937 GO:0002881
## 4938 GO:0002882
## 4939 GO:0002883
## 4940 GO:0002884
## 4941 GO:0002885
## 4942 GO:0002886
## 4943 GO:0002887
## 4944 GO:0002888
## 4945 GO:0002889
## 4946 GO:0002890
## 4947 GO:0002891
## 4948 GO:0002897
## 4949 GO:0002902
## 4950 GO:0002903
## 4951 GO:0002904
## 4952 GO:0002906
## 4953 GO:0002922
## 4954 GO:0002923
## 4955 GO:0002924
## 4956 GO:0002925
## 4957 GO:0002930
## 4958 GO:0002933
## 4959 GO:0002934
## 4960 GO:0002940
## 4961 GO:0002943
## 4962 GO:0003011
## 4963 GO:0003017
## 4964 GO:0003025
## 4965 GO:0003026
## 4966 GO:0003029
## 4967 GO:0003032
## 4968 GO:0003044
## 4969 GO:0003050
## 4970 GO:0003051
## 4971 GO:0003056
## 4972 GO:0003057
## 4973 GO:0003058
## 4974 GO:0003062
## 4975 GO:0003064
## 4976 GO:0003065
## 4977 GO:0003069
## 4978 GO:0003071
## 4979 GO:0003081
## 4980 GO:0003084
## 4981 GO:0003091
## 4982 GO:0003093
## 4983 GO:0003095
## 4984 GO:0003096
## 4985 GO:0003097
## 4986 GO:0003099
## 4987 GO:0003100
## 4988 GO:0003104
## 4989 GO:0003105
## 4990 GO:0003106
## 4991 GO:0003108
## 4992 GO:0003127
## 4993 GO:0003130
## 4994 GO:0003131
## 4995 GO:0003136
## 4996 GO:0003138
## 4997 GO:0003139
## 4998 GO:0003140
## 4999 GO:0003142
## 5000 GO:0003144
## 5001 GO:0003147
## 5002 GO:0003148
## 5003 GO:0003149
## 5004 GO:0003150
## 5005 GO:0003157
## 5006 GO:0003159
## 5007 GO:0003160
## 5008 GO:0003162
## 5009 GO:0003164
## 5010 GO:0003165
## 5011 GO:0003166
## 5012 GO:0003167
## 5013 GO:0003168
## 5014 GO:0003169
## 5015 GO:0003174
## 5016 GO:0003175
## 5017 GO:0003180
## 5018 GO:0003183
## 5019 GO:0003184
## 5020 GO:0003185
## 5021 GO:0003186
## 5022 GO:0003188
## 5023 GO:0003190
## 5024 GO:0003192
## 5025 GO:0003193
## 5026 GO:0003195
## 5027 GO:0003197
## 5028 GO:0003198
## 5029 GO:0003199
## 5030 GO:0003203
## 5031 GO:0003207
## 5032 GO:0003208
## 5033 GO:0003210
## 5034 GO:0003211
## 5035 GO:0003213
## 5036 GO:0003214
## 5037 GO:0003215
## 5038 GO:0003218
## 5039 GO:0003219
## 5040 GO:0003220
## 5041 GO:0003221
## 5042 GO:0003222
## 5043 GO:0003223
## 5044 GO:0003226
## 5045 GO:0003229
## 5046 GO:0003236
## 5047 GO:0003241
## 5048 GO:0003245
## 5049 GO:0003247
## 5050 GO:0003250
## 5051 GO:0003251
## 5052 GO:0003252
## 5053 GO:0003253
## 5054 GO:0003256
## 5055 GO:0003257
## 5056 GO:0003259
## 5057 GO:0003270
## 5058 GO:0003272
## 5059 GO:0003273
## 5060 GO:0003274
## 5061 GO:0003284
## 5062 GO:0003285
## 5063 GO:0003289
## 5064 GO:0003290
## 5065 GO:0003294
## 5066 GO:0003306
## 5067 GO:0003307
## 5068 GO:0003308
## 5069 GO:0003309
## 5070 GO:0003310
## 5071 GO:0003311
## 5072 GO:0003321
## 5073 GO:0003322
## 5074 GO:0003323
## 5075 GO:0003326
## 5076 GO:0003327
## 5077 GO:0003329
## 5078 GO:0003331
## 5079 GO:0003335
## 5080 GO:0003337
## 5081 GO:0003339
## 5082 GO:0003340
## 5083 GO:0003342
## 5084 GO:0003344
## 5085 GO:0003345
## 5086 GO:0003350
## 5087 GO:0003352
## 5088 GO:0003353
## 5089 GO:0003356
## 5090 GO:0003357
## 5091 GO:0003358
## 5092 GO:0003359
## 5093 GO:0003360
## 5094 GO:0003363
## 5095 GO:0003365
## 5096 GO:0003366
## 5097 GO:0003374
## 5098 GO:0003376
## 5099 GO:0003382
## 5100 GO:0003383
## 5101 GO:0003400
## 5102 GO:0003401
## 5103 GO:0003402
## 5104 GO:0003404
## 5105 GO:0003406
## 5106 GO:0003409
## 5107 GO:0003415
## 5108 GO:0003419
## 5109 GO:0003420
## 5110 GO:0003421
## 5111 GO:0003430
## 5112 GO:0003431
## 5113 GO:0005513
## 5114 GO:0005978
## 5115 GO:0005979
## 5116 GO:0005980
## 5117 GO:0005981
## 5118 GO:0005983
## 5119 GO:0005985
## 5120 GO:0005986
## 5121 GO:0005993
## 5122 GO:0005997
## 5123 GO:0005998
## 5124 GO:0005999
## 5125 GO:0006002
## 5126 GO:0006004
## 5127 GO:0006011
## 5128 GO:0006012
## 5129 GO:0006013
## 5130 GO:0006014
## 5131 GO:0006015
## 5132 GO:0006020
## 5133 GO:0006021
## 5134 GO:0006037
## 5135 GO:0006041
## 5136 GO:0006043
## 5137 GO:0006045
## 5138 GO:0006046
## 5139 GO:0006049
## 5140 GO:0006051
## 5141 GO:0006054
## 5142 GO:0006055
## 5143 GO:0006059
## 5144 GO:0006060
## 5145 GO:0006061
## 5146 GO:0006062
## 5147 GO:0006065
## 5148 GO:0006067
## 5149 GO:0006068
## 5150 GO:0006069
## 5151 GO:0006071
## 5152 GO:0006072
## 5153 GO:0006083
## 5154 GO:0006084
## 5155 GO:0006085
## 5156 GO:0006086
## 5157 GO:0006097
## 5158 GO:0006102
## 5159 GO:0006103
## 5160 GO:0006104
## 5161 GO:0006105
## 5162 GO:0006107
## 5163 GO:0006114
## 5164 GO:0006116
## 5165 GO:0006117
## 5166 GO:0006123
## 5167 GO:0006127
## 5168 GO:0006144
## 5169 GO:0006145
## 5170 GO:0006147
## 5171 GO:0006148
## 5172 GO:0006154
## 5173 GO:0006157
## 5174 GO:0006166
## 5175 GO:0006168
## 5176 GO:0006169
## 5177 GO:0006172
## 5178 GO:0006173
## 5179 GO:0006174
## 5180 GO:0006175
## 5181 GO:0006177
## 5182 GO:0006178
## 5183 GO:0006183
## 5184 GO:0006185
## 5185 GO:0006186
## 5186 GO:0006189
## 5187 GO:0006193
## 5188 GO:0006195
## 5189 GO:0006196
## 5190 GO:0006198
## 5191 GO:0006203
## 5192 GO:0006210
## 5193 GO:0006211
## 5194 GO:0006212
## 5195 GO:0006214
## 5196 GO:0006218
## 5197 GO:0006226
## 5198 GO:0006227
## 5199 GO:0006228
## 5200 GO:0006231
## 5201 GO:0006233
## 5202 GO:0006235
## 5203 GO:0006244
## 5204 GO:0006253
## 5205 GO:0006256
## 5206 GO:0006258
## 5207 GO:0006264
## 5208 GO:0006265
## 5209 GO:0006267
## 5210 GO:0006268
## 5211 GO:0006269
## 5212 GO:0006270
## 5213 GO:0006272
## 5214 GO:0006278
## 5215 GO:0006286
## 5216 GO:0006287
## 5217 GO:0006288
## 5218 GO:0006290
## 5219 GO:0006303
## 5220 GO:0006306
## 5221 GO:0006307
## 5222 GO:0006311
## 5223 GO:0006312
## 5224 GO:0006313
## 5225 GO:0006335
## 5226 GO:0006343
## 5227 GO:0006346
## 5228 GO:0006348
## 5229 GO:0006349
## 5230 GO:0006356
## 5231 GO:0006359
## 5232 GO:0006360
## 5233 GO:0006361
## 5234 GO:0006362
## 5235 GO:0006363
## 5236 GO:0006370
## 5237 GO:0006379
## 5238 GO:0006382
## 5239 GO:0006384
## 5240 GO:0006386
## 5241 GO:0006388
## 5242 GO:0006393
## 5243 GO:0006398
## 5244 GO:0006404
## 5245 GO:0006407
## 5246 GO:0006408
## 5247 GO:0006419
## 5248 GO:0006420
## 5249 GO:0006422
## 5250 GO:0006423
## 5251 GO:0006425
## 5252 GO:0006427
## 5253 GO:0006428
## 5254 GO:0006429
## 5255 GO:0006430
## 5256 GO:0006431
## 5257 GO:0006432
## 5258 GO:0006434
## 5259 GO:0006437
## 5260 GO:0006438
## 5261 GO:0006447
## 5262 GO:0006449
## 5263 GO:0006452
## 5264 GO:0006463
## 5265 GO:0006465
## 5266 GO:0006474
## 5267 GO:0006477
## 5268 GO:0006478
## 5269 GO:0006480
## 5270 GO:0006481
## 5271 GO:0006498
## 5272 GO:0006499
## 5273 GO:0006505
## 5274 GO:0006506
## 5275 GO:0006507
## 5276 GO:0006515
## 5277 GO:0006524
## 5278 GO:0006525
## 5279 GO:0006526
## 5280 GO:0006527
## 5281 GO:0006528
## 5282 GO:0006529
## 5283 GO:0006530
## 5284 GO:0006532
## 5285 GO:0006533
## 5286 GO:0006535
## 5287 GO:0006537
## 5288 GO:0006540
## 5289 GO:0006543
## 5290 GO:0006544
## 5291 GO:0006545
## 5292 GO:0006546
## 5293 GO:0006547
## 5294 GO:0006548
## 5295 GO:0006549
## 5296 GO:0006550
## 5297 GO:0006551
## 5298 GO:0006552
## 5299 GO:0006553
## 5300 GO:0006554
## 5301 GO:0006556
## 5302 GO:0006557
## 5303 GO:0006559
## 5304 GO:0006560
## 5305 GO:0006561
## 5306 GO:0006562
## 5307 GO:0006563
## 5308 GO:0006564
## 5309 GO:0006565
## 5310 GO:0006568
## 5311 GO:0006569
## 5312 GO:0006570
## 5313 GO:0006572
## 5314 GO:0006573
## 5315 GO:0006574
## 5316 GO:0006576
## 5317 GO:0006577
## 5318 GO:0006578
## 5319 GO:0006579
## 5320 GO:0006580
## 5321 GO:0006582
## 5322 GO:0006583
## 5323 GO:0006584
## 5324 GO:0006585
## 5325 GO:0006586
## 5326 GO:0006589
## 5327 GO:0006590
## 5328 GO:0006591
## 5329 GO:0006592
## 5330 GO:0006593
## 5331 GO:0006595
## 5332 GO:0006596
## 5333 GO:0006597
## 5334 GO:0006598
## 5335 GO:0006600
## 5336 GO:0006601
## 5337 GO:0006607
## 5338 GO:0006610
## 5339 GO:0006617
## 5340 GO:0006620
## 5341 GO:0006622
## 5342 GO:0006623
## 5343 GO:0006624
## 5344 GO:0006627
## 5345 GO:0006635
## 5346 GO:0006638
## 5347 GO:0006639
## 5348 GO:0006641
## 5349 GO:0006642
## 5350 GO:0006646
## 5351 GO:0006649
## 5352 GO:0006651
## 5353 GO:0006654
## 5354 GO:0006655
## 5355 GO:0006656
## 5356 GO:0006657
## 5357 GO:0006658
## 5358 GO:0006659
## 5359 GO:0006660
## 5360 GO:0006662
## 5361 GO:0006663
## 5362 GO:0006666
## 5363 GO:0006667
## 5364 GO:0006668
## 5365 GO:0006669
## 5366 GO:0006670
## 5367 GO:0006677
## 5368 GO:0006678
## 5369 GO:0006679
## 5370 GO:0006680
## 5371 GO:0006681
## 5372 GO:0006682
## 5373 GO:0006683
## 5374 GO:0006684
## 5375 GO:0006685
## 5376 GO:0006686
## 5377 GO:0006689
## 5378 GO:0006691
## 5379 GO:0006693
## 5380 GO:0006696
## 5381 GO:0006700
## 5382 GO:0006701
## 5383 GO:0006702
## 5384 GO:0006703
## 5385 GO:0006704
## 5386 GO:0006705
## 5387 GO:0006706
## 5388 GO:0006707
## 5389 GO:0006710
## 5390 GO:0006711
## 5391 GO:0006713
## 5392 GO:0006726
## 5393 GO:0006729
## 5394 GO:0006738
## 5395 GO:0006740
## 5396 GO:0006742
## 5397 GO:0006743
## 5398 GO:0006744
## 5399 GO:0006747
## 5400 GO:0006750
## 5401 GO:0006751
## 5402 GO:0006754
## 5403 GO:0006756
## 5404 GO:0006768
## 5405 GO:0006771
## 5406 GO:0006772
## 5407 GO:0006775
## 5408 GO:0006776
## 5409 GO:0006777
## 5410 GO:0006780
## 5411 GO:0006781
## 5412 GO:0006784
## 5413 GO:0006788
## 5414 GO:0006789
## 5415 GO:0006797
## 5416 GO:0006808
## 5417 GO:0006809
## 5418 GO:0006817
## 5419 GO:0006824
## 5420 GO:0006825
## 5421 GO:0006828
## 5422 GO:0006835
## 5423 GO:0006837
## 5424 GO:0006843
## 5425 GO:0006851
## 5426 GO:0006855
## 5427 GO:0006857
## 5428 GO:0006858
## 5429 GO:0006862
## 5430 GO:0006863
## 5431 GO:0006867
## 5432 GO:0006868
## 5433 GO:0006876
## 5434 GO:0006880
## 5435 GO:0006893
## 5436 GO:0006896
## 5437 GO:0006907
## 5438 GO:0006910
## 5439 GO:0006924
## 5440 GO:0006925
## 5441 GO:0006929
## 5442 GO:0006930
## 5443 GO:0006931
## 5444 GO:0006933
## 5445 GO:0006939
## 5446 GO:0006940
## 5447 GO:0006948
## 5448 GO:0006953
## 5449 GO:0006957
## 5450 GO:0006968
## 5451 GO:0006971
## 5452 GO:0006975
## 5453 GO:0006982
## 5454 GO:0006987
## 5455 GO:0006990
## 5456 GO:0006991
## 5457 GO:0007000
## 5458 GO:0007004
## 5459 GO:0007014
## 5460 GO:0007016
## 5461 GO:0007020
## 5462 GO:0007021
## 5463 GO:0007023
## 5464 GO:0007026
## 5465 GO:0007037
## 5466 GO:0007039
## 5467 GO:0007042
## 5468 GO:0007056
## 5469 GO:0007057
## 5470 GO:0007060
## 5471 GO:0007063
## 5472 GO:0007064
## 5473 GO:0007066
## 5474 GO:0007070
## 5475 GO:0007072
## 5476 GO:0007076
## 5477 GO:0007079
## 5478 GO:0007084
## 5479 GO:0007089
## 5480 GO:0007091
## 5481 GO:0007094
## 5482 GO:0007096
## 5483 GO:0007100
## 5484 GO:0007130
## 5485 GO:0007131
## 5486 GO:0007135
## 5487 GO:0007140
## 5488 GO:0007141
## 5489 GO:0007143
## 5490 GO:0007144
## 5491 GO:0007147
## 5492 GO:0007157
## 5493 GO:0007161
## 5494 GO:0007171
## 5495 GO:0007172
## 5496 GO:0007174
## 5497 GO:0007175
## 5498 GO:0007181
## 5499 GO:0007182
## 5500 GO:0007183
## 5501 GO:0007185
## 5502 GO:0007191
## 5503 GO:0007194
## 5504 GO:0007195
## 5505 GO:0007196
## 5506 GO:0007197
## 5507 GO:0007198
## 5508 GO:0007199
## 5509 GO:0007200
## 5510 GO:0007202
## 5511 GO:0007205
## 5512 GO:0007206
## 5513 GO:0007207
## 5514 GO:0007208
## 5515 GO:0007210
## 5516 GO:0007212
## 5517 GO:0007213
## 5518 GO:0007214
## 5519 GO:0007215
## 5520 GO:0007216
## 5521 GO:0007217
## 5522 GO:0007218
## 5523 GO:0007221
## 5524 GO:0007225
## 5525 GO:0007227
## 5526 GO:0007228
## 5527 GO:0007231
## 5528 GO:0007249
## 5529 GO:0007250
## 5530 GO:0007252
## 5531 GO:0007254
## 5532 GO:0007256
## 5533 GO:0007257
## 5534 GO:0007258
## 5535 GO:0007259
## 5536 GO:0007260
## 5537 GO:0007262
## 5538 GO:0007263
## 5539 GO:0007271
## 5540 GO:0007274
## 5541 GO:0007284
## 5542 GO:0007288
## 5543 GO:0007289
## 5544 GO:0007290
## 5545 GO:0007291
## 5546 GO:0007296
## 5547 GO:0007320
## 5548 GO:0007321
## 5549 GO:0007340
## 5550 GO:0007341
## 5551 GO:0007342
## 5552 GO:0007343
## 5553 GO:0007344
## 5554 GO:0007350
## 5555 GO:0007352
## 5556 GO:0007354
## 5557 GO:0007356
## 5558 GO:0007371
## 5559 GO:0007386
## 5560 GO:0007387
## 5561 GO:0007388
## 5562 GO:0007400
## 5563 GO:0007402
## 5564 GO:0007403
## 5565 GO:0007405
## 5566 GO:0007406
## 5567 GO:0007412
## 5568 GO:0007413
## 5569 GO:0007416
## 5570 GO:0007418
## 5571 GO:0007440
## 5572 GO:0007442
## 5573 GO:0007468
## 5574 GO:0007493
## 5575 GO:0007494
## 5576 GO:0007495
## 5577 GO:0007497
## 5578 GO:0007499
## 5579 GO:0007500
## 5580 GO:0007501
## 5581 GO:0007506
## 5582 GO:0007509
## 5583 GO:0007518
## 5584 GO:0007521
## 5585 GO:0007522
## 5586 GO:0007525
## 5587 GO:0007529
## 5588 GO:0007530
## 5589 GO:0007538
## 5590 GO:0007567
## 5591 GO:0007569
## 5592 GO:0007576
## 5593 GO:0007588
## 5594 GO:0007595
## 5595 GO:0007597
## 5596 GO:0007598
## 5597 GO:0007603
## 5598 GO:0007614
## 5599 GO:0007617
## 5600 GO:0007618
## 5601 GO:0007619
## 5602 GO:0007620
## 5603 GO:0007621
## 5604 GO:0007622
## 5605 GO:0007624
## 5606 GO:0007625
## 5607 GO:0007628
## 5608 GO:0007634
## 5609 GO:0007635
## 5610 GO:0007638
## 5611 GO:0008038
## 5612 GO:0008049
## 5613 GO:0008050
## 5614 GO:0008052
## 5615 GO:0008057
## 5616 GO:0008063
## 5617 GO:0008065
## 5618 GO:0008078
## 5619 GO:0008090
## 5620 GO:0008105
## 5621 GO:0008207
## 5622 GO:0008209
## 5623 GO:0008210
## 5624 GO:0008211
## 5625 GO:0008215
## 5626 GO:0008216
## 5627 GO:0008218
## 5628 GO:0008228
## 5629 GO:0008272
## 5630 GO:0008291
## 5631 GO:0008292
## 5632 GO:0008295
## 5633 GO:0008298
## 5634 GO:0008300
## 5635 GO:0008347
## 5636 GO:0008354
## 5637 GO:0008355
## 5638 GO:0008356
## 5639 GO:0008542
## 5640 GO:0008543
## 5641 GO:0008582
## 5642 GO:0008588
## 5643 GO:0008594
## 5644 GO:0008595
## 5645 GO:0008611
## 5646 GO:0008612
## 5647 GO:0008615
## 5648 GO:0008616
## 5649 GO:0008617
## 5650 GO:0008625
## 5651 GO:0008626
## 5652 GO:0008627
## 5653 GO:0008628
## 5654 GO:0008631
## 5655 GO:0009052
## 5656 GO:0009061
## 5657 GO:0009068
## 5658 GO:0009071
## 5659 GO:0009072
## 5660 GO:0009074
## 5661 GO:0009081
## 5662 GO:0009083
## 5663 GO:0009087
## 5664 GO:0009098
## 5665 GO:0009099
## 5666 GO:0009106
## 5667 GO:0009107
## 5668 GO:0009111
## 5669 GO:0009113
## 5670 GO:0009115
## 5671 GO:0009120
## 5672 GO:0009125
## 5673 GO:0009128
## 5674 GO:0009133
## 5675 GO:0009134
## 5676 GO:0009138
## 5677 GO:0009143
## 5678 GO:0009145
## 5679 GO:0009146
## 5680 GO:0009151
## 5681 GO:0009153
## 5682 GO:0009154
## 5683 GO:0009155
## 5684 GO:0009157
## 5685 GO:0009159
## 5686 GO:0009162
## 5687 GO:0009164
## 5688 GO:0009166
## 5689 GO:0009169
## 5690 GO:0009176
## 5691 GO:0009177
## 5692 GO:0009180
## 5693 GO:0009181
## 5694 GO:0009182
## 5695 GO:0009183
## 5696 GO:0009186
## 5697 GO:0009189
## 5698 GO:0009191
## 5699 GO:0009200
## 5700 GO:0009202
## 5701 GO:0009204
## 5702 GO:0009206
## 5703 GO:0009211
## 5704 GO:0009213
## 5705 GO:0009214
## 5706 GO:0009215
## 5707 GO:0009216
## 5708 GO:0009217
## 5709 GO:0009219
## 5710 GO:0009221
## 5711 GO:0009223
## 5712 GO:0009227
## 5713 GO:0009229
## 5714 GO:0009231
## 5715 GO:0009233
## 5716 GO:0009234
## 5717 GO:0009240
## 5718 GO:0009245
## 5719 GO:0009249
## 5720 GO:0009251
## 5721 GO:0009253
## 5722 GO:0009256
## 5723 GO:0009257
## 5724 GO:0009258
## 5725 GO:0009261
## 5726 GO:0009262
## 5727 GO:0009263
## 5728 GO:0009264
## 5729 GO:0009265
## 5730 GO:0009298
## 5731 GO:0009299
## 5732 GO:0009303
## 5733 GO:0009304
## 5734 GO:0009308
## 5735 GO:0009309
## 5736 GO:0009313
## 5737 GO:0009386
## 5738 GO:0009394
## 5739 GO:0009396
## 5740 GO:0009397
## 5741 GO:0009398
## 5742 GO:0009403
## 5743 GO:0009404
## 5744 GO:0009405
## 5745 GO:0009407
## 5746 GO:0009414
## 5747 GO:0009415
## 5748 GO:0009436
## 5749 GO:0009437
## 5750 GO:0009440
## 5751 GO:0009443
## 5752 GO:0009444
## 5753 GO:0009445
## 5754 GO:0009446
## 5755 GO:0009447
## 5756 GO:0009448
## 5757 GO:0009449
## 5758 GO:0009450
## 5759 GO:0009452
## 5760 GO:0009590
## 5761 GO:0009597
## 5762 GO:0009609
## 5763 GO:0009620
## 5764 GO:0009624
## 5765 GO:0009629
## 5766 GO:0009631
## 5767 GO:0009635
## 5768 GO:0009642
## 5769 GO:0009644
## 5770 GO:0009645
## 5771 GO:0009648
## 5772 GO:0009649
## 5773 GO:0009650
## 5774 GO:0009651
## 5775 GO:0009692
## 5776 GO:0009720
## 5777 GO:0009726
## 5778 GO:0009744
## 5779 GO:0009750
## 5780 GO:0009751
## 5781 GO:0009756
## 5782 GO:0009785
## 5783 GO:0009786
## 5784 GO:0009789
## 5785 GO:0009794
## 5786 GO:0009804
## 5787 GO:0009812
## 5788 GO:0009817
## 5789 GO:0009820
## 5790 GO:0009822
## 5791 GO:0009826
## 5792 GO:0009838
## 5793 GO:0009886
## 5794 GO:0009946
## 5795 GO:0009949
## 5796 GO:0009950
## 5797 GO:0009956
## 5798 GO:0009972
## 5799 GO:0009992
## 5800 GO:0009994
## 5801 GO:0009996
## 5802 GO:0010002
## 5803 GO:0010021
## 5804 GO:0010025
## 5805 GO:0010032
## 5806 GO:0010034
## 5807 GO:0010037
## 5808 GO:0010039
## 5809 GO:0010040
## 5810 GO:0010041
## 5811 GO:0010042
## 5812 GO:0010044
## 5813 GO:0010045
## 5814 GO:0010046
## 5815 GO:0010070
## 5816 GO:0010085
## 5817 GO:0010092
## 5818 GO:0010106
## 5819 GO:0010124
## 5820 GO:0010133
## 5821 GO:0010157
## 5822 GO:0010159
## 5823 GO:0010164
## 5824 GO:0010172
## 5825 GO:0010189
## 5826 GO:0010193
## 5827 GO:0010216
## 5828 GO:0010224
## 5829 GO:0010225
## 5830 GO:0010226
## 5831 GO:0010232
## 5832 GO:0010255
## 5833 GO:0010260
## 5834 GO:0010265
## 5835 GO:0010266
## 5836 GO:0010269
## 5837 GO:0010288
## 5838 GO:0010359
## 5839 GO:0010360
## 5840 GO:0010387
## 5841 GO:0010430
## 5842 GO:0010446
## 5843 GO:0010452
## 5844 GO:0010453
## 5845 GO:0010454
## 5846 GO:0010455
## 5847 GO:0010458
## 5848 GO:0010459
## 5849 GO:0010460
## 5850 GO:0010463
## 5851 GO:0010464
## 5852 GO:0010470
## 5853 GO:0010477
## 5854 GO:0010481
## 5855 GO:0010482
## 5856 GO:0010499
## 5857 GO:0010509
## 5858 GO:0010510
## 5859 GO:0010511
## 5860 GO:0010512
## 5861 GO:0010513
## 5862 GO:0010519
## 5863 GO:0010520
## 5864 GO:0010522
## 5865 GO:0010523
## 5866 GO:0010524
## 5867 GO:0010529
## 5868 GO:0010533
## 5869 GO:0010536
## 5870 GO:0010543
## 5871 GO:0010544
## 5872 GO:0010559
## 5873 GO:0010560
## 5874 GO:0010561
## 5875 GO:0010566
## 5876 GO:0010571
## 5877 GO:0010572
## 5878 GO:0010573
## 5879 GO:0010574
## 5880 GO:0010575
## 5881 GO:0010579
## 5882 GO:0010585
## 5883 GO:0010586
## 5884 GO:0010587
## 5885 GO:0010593
## 5886 GO:0010595
## 5887 GO:0010596
## 5888 GO:0010603
## 5889 GO:0010606
## 5890 GO:0010607
## 5891 GO:0010609
## 5892 GO:0010610
## 5893 GO:0010614
## 5894 GO:0010621
## 5895 GO:0010623
## 5896 GO:0010625
## 5897 GO:0010635
## 5898 GO:0010636
## 5899 GO:0010637
## 5900 GO:0010641
## 5901 GO:0010642
## 5902 GO:0010643
## 5903 GO:0010649
## 5904 GO:0010650
## 5905 GO:0010652
## 5906 GO:0010656
## 5907 GO:0010657
## 5908 GO:0010659
## 5909 GO:0010660
## 5910 GO:0010661
## 5911 GO:0010662
## 5912 GO:0010664
## 5913 GO:0010665
## 5914 GO:0010666
## 5915 GO:0010667
## 5916 GO:0010668
## 5917 GO:0010692
## 5918 GO:0010693
## 5919 GO:0010694
## 5920 GO:0010700
## 5921 GO:0010701
## 5922 GO:0010705
## 5923 GO:0010710
## 5924 GO:0010711
## 5925 GO:0010713
## 5926 GO:0010715
## 5927 GO:0010716
## 5928 GO:0010717
## 5929 GO:0010718
## 5930 GO:0010719
## 5931 GO:0010722
## 5932 GO:0010724
## 5933 GO:0010725
## 5934 GO:0010726
## 5935 GO:0010727
## 5936 GO:0010728
## 5937 GO:0010729
## 5938 GO:0010730
## 5939 GO:0010734
## 5940 GO:0010735
## 5941 GO:0010738
## 5942 GO:0010739
## 5943 GO:0010742
## 5944 GO:0010743
## 5945 GO:0010744
## 5946 GO:0010745
## 5947 GO:0010748
## 5948 GO:0010749
## 5949 GO:0010750
## 5950 GO:0010751
## 5951 GO:0010752
## 5952 GO:0010754
## 5953 GO:0010757
## 5954 GO:0010758
## 5955 GO:0010759
## 5956 GO:0010760
## 5957 GO:0010761
## 5958 GO:0010763
## 5959 GO:0010764
## 5960 GO:0010766
## 5961 GO:0010767
## 5962 GO:0010768
## 5963 GO:0010789
## 5964 GO:0010792
## 5965 GO:0010793
## 5966 GO:0010795
## 5967 GO:0010796
## 5968 GO:0010797
## 5969 GO:0010799
## 5970 GO:0010800
## 5971 GO:0010801
## 5972 GO:0010804
## 5973 GO:0010807
## 5974 GO:0010808
## 5975 GO:0010813
## 5976 GO:0010814
## 5977 GO:0010815
## 5978 GO:0010816
## 5979 GO:0010819
## 5980 GO:0010820
## 5981 GO:0010825
## 5982 GO:0010826
## 5983 GO:0010829
## 5984 GO:0010830
## 5985 GO:0010831
## 5986 GO:0010832
## 5987 GO:0010833
## 5988 GO:0010835
## 5989 GO:0010836
## 5990 GO:0010837
## 5991 GO:0010838
## 5992 GO:0010839
## 5993 GO:0010840
## 5994 GO:0010841
## 5995 GO:0010845
## 5996 GO:0010847
## 5997 GO:0010848
## 5998 GO:0010849
## 5999 GO:0010862
## 6000 GO:0010863
## 6001 GO:0010866
## 6002 GO:0010867
## 6003 GO:0010868
## 6004 GO:0010870
## 6005 GO:0010871
## 6006 GO:0010872
## 6007 GO:0010873
## 6008 GO:0010874
## 6009 GO:0010875
## 6010 GO:0010877
## 6011 GO:0010878
## 6012 GO:0010879
## 6013 GO:0010880
## 6014 GO:0010881
## 6015 GO:0010883
## 6016 GO:0010884
## 6017 GO:0010885
## 6018 GO:0010886
## 6019 GO:0010887
## 6020 GO:0010888
## 6021 GO:0010889
## 6022 GO:0010890
## 6023 GO:0010891
## 6024 GO:0010893
## 6025 GO:0010896
## 6026 GO:0010897
## 6027 GO:0010898
## 6028 GO:0010899
## 6029 GO:0010900
## 6030 GO:0010901
## 6031 GO:0010902
## 6032 GO:0010903
## 6033 GO:0010905
## 6034 GO:0010907
## 6035 GO:0010909
## 6036 GO:0010916
## 6037 GO:0010917
## 6038 GO:0010918
## 6039 GO:0010919
## 6040 GO:0010920
## 6041 GO:0010922
## 6042 GO:0010925
## 6043 GO:0010933
## 6044 GO:0010934
## 6045 GO:0010935
## 6046 GO:0010936
## 6047 GO:0010939
## 6048 GO:0010940
## 6049 GO:0010949
## 6050 GO:0010958
## 6051 GO:0010960
## 6052 GO:0010961
## 6053 GO:0010963
## 6054 GO:0010965
## 6055 GO:0010966
## 6056 GO:0010968
## 6057 GO:0010980
## 6058 GO:0010982
## 6059 GO:0010983
## 6060 GO:0010984
## 6061 GO:0010985
## 6062 GO:0010986
## 6063 GO:0010987
## 6064 GO:0010988
## 6065 GO:0010989
## 6066 GO:0010991
## 6067 GO:0010992
## 6068 GO:0010994
## 6069 GO:0010996
## 6070 GO:0010998
## 6071 GO:0010999
## 6072 GO:0014002
## 6073 GO:0014005
## 6074 GO:0014009
## 6075 GO:0014010
## 6076 GO:0014012
## 6077 GO:0014016
## 6078 GO:0014034
## 6079 GO:0014036
## 6080 GO:0014038
## 6081 GO:0014040
## 6082 GO:0014041
## 6083 GO:0014042
## 6084 GO:0014043
## 6085 GO:0014047
## 6086 GO:0014048
## 6087 GO:0014049
## 6088 GO:0014050
## 6089 GO:0014051
## 6090 GO:0014052
## 6091 GO:0014053
## 6092 GO:0014054
## 6093 GO:0014056
## 6094 GO:0014057
## 6095 GO:0014060
## 6096 GO:0014061
## 6097 GO:0014062
## 6098 GO:0014063
## 6099 GO:0014064
## 6100 GO:0014066
## 6101 GO:0014067
## 6102 GO:0014068
## 6103 GO:0014075
## 6104 GO:0014707
## 6105 GO:0014717
## 6106 GO:0014718
## 6107 GO:0014719
## 6108 GO:0014721
## 6109 GO:0014722
## 6110 GO:0014724
## 6111 GO:0014728
## 6112 GO:0014732
## 6113 GO:0014733
## 6114 GO:0014734
## 6115 GO:0014735
## 6116 GO:0014736
## 6117 GO:0014737
## 6118 GO:0014738
## 6119 GO:0014739
## 6120 GO:0014740
## 6121 GO:0014741
## 6122 GO:0014744
## 6123 GO:0014745
## 6124 GO:0014805
## 6125 GO:0014806
## 6126 GO:0014807
## 6127 GO:0014808
## 6128 GO:0014809
## 6129 GO:0014810
## 6130 GO:0014812
## 6131 GO:0014813
## 6132 GO:0014816
## 6133 GO:0014819
## 6134 GO:0014820
## 6135 GO:0014821
## 6136 GO:0014822
## 6137 GO:0014823
## 6138 GO:0014824
## 6139 GO:0014826
## 6140 GO:0014827
## 6141 GO:0014829
## 6142 GO:0014831
## 6143 GO:0014832
## 6144 GO:0014834
## 6145 GO:0014835
## 6146 GO:0014839
## 6147 GO:0014841
## 6148 GO:0014842
## 6149 GO:0014843
## 6150 GO:0014846
## 6151 GO:0014850
## 6152 GO:0014853
## 6153 GO:0014854
## 6154 GO:0014855
## 6155 GO:0014857
## 6156 GO:0014858
## 6157 GO:0014861
## 6158 GO:0014866
## 6159 GO:0014870
## 6160 GO:0014873
## 6161 GO:0014874
## 6162 GO:0014876
## 6163 GO:0014878
## 6164 GO:0014883
## 6165 GO:0014886
## 6166 GO:0014888
## 6167 GO:0014889
## 6168 GO:0014891
## 6169 GO:0014894
## 6170 GO:0014895
## 6171 GO:0014898
## 6172 GO:0014905
## 6173 GO:0014909
## 6174 GO:0014910
## 6175 GO:0014911
## 6176 GO:0014912
## 6177 GO:0014916
## 6178 GO:0015014
## 6179 GO:0015015
## 6180 GO:0015669
## 6181 GO:0015670
## 6182 GO:0015671
## 6183 GO:0015677
## 6184 GO:0015679
## 6185 GO:0015680
## 6186 GO:0015689
## 6187 GO:0015692
## 6188 GO:0015693
## 6189 GO:0015694
## 6190 GO:0015695
## 6191 GO:0015697
## 6192 GO:0015701
## 6193 GO:0015705
## 6194 GO:0015706
## 6195 GO:0015707
## 6196 GO:0015709
## 6197 GO:0015721
## 6198 GO:0015722
## 6199 GO:0015723
## 6200 GO:0015724
## 6201 GO:0015732
## 6202 GO:0015734
## 6203 GO:0015739
## 6204 GO:0015740
## 6205 GO:0015742
## 6206 GO:0015746
## 6207 GO:0015747
## 6208 GO:0015755
## 6209 GO:0015760
## 6210 GO:0015761
## 6211 GO:0015770
## 6212 GO:0015780
## 6213 GO:0015781
## 6214 GO:0015782
## 6215 GO:0015783
## 6216 GO:0015786
## 6217 GO:0015787
## 6218 GO:0015790
## 6219 GO:0015797
## 6220 GO:0015798
## 6221 GO:0015800
## 6222 GO:0015801
## 6223 GO:0015803
## 6224 GO:0015808
## 6225 GO:0015810
## 6226 GO:0015811
## 6227 GO:0015812
## 6228 GO:0015813
## 6229 GO:0015820
## 6230 GO:0015821
## 6231 GO:0015824
## 6232 GO:0015825
## 6233 GO:0015826
## 6234 GO:0015827
## 6235 GO:0015828
## 6236 GO:0015837
## 6237 GO:0015838
## 6238 GO:0015842
## 6239 GO:0015846
## 6240 GO:0015847
## 6241 GO:0015851
## 6242 GO:0015853
## 6243 GO:0015855
## 6244 GO:0015858
## 6245 GO:0015860
## 6246 GO:0015862
## 6247 GO:0015864
## 6248 GO:0015865
## 6249 GO:0015866
## 6250 GO:0015867
## 6251 GO:0015868
## 6252 GO:0015870
## 6253 GO:0015871
## 6254 GO:0015874
## 6255 GO:0015876
## 6256 GO:0015878
## 6257 GO:0015879
## 6258 GO:0015884
## 6259 GO:0015886
## 6260 GO:0015887
## 6261 GO:0015889
## 6262 GO:0015891
## 6263 GO:0015893
## 6264 GO:0015904
## 6265 GO:0015910
## 6266 GO:0015911
## 6267 GO:0015913
## 6268 GO:0015917
## 6269 GO:0015919
## 6270 GO:0015920
## 6271 GO:0015938
## 6272 GO:0015939
## 6273 GO:0015942
## 6274 GO:0015959
## 6275 GO:0015966
## 6276 GO:0015986
## 6277 GO:0015990
## 6278 GO:0015993
## 6279 GO:0016024
## 6280 GO:0016036
## 6281 GO:0016038
## 6282 GO:0016045
## 6283 GO:0016046
## 6284 GO:0016048
## 6285 GO:0016056
## 6286 GO:0016062
## 6287 GO:0016074
## 6288 GO:0016075
## 6289 GO:0016077
## 6290 GO:0016078
## 6291 GO:0016080
## 6292 GO:0016081
## 6293 GO:0016082
## 6294 GO:0016095
## 6295 GO:0016098
## 6296 GO:0016102
## 6297 GO:0016115
## 6298 GO:0016119
## 6299 GO:0016121
## 6300 GO:0016122
## 6301 GO:0016129
## 6302 GO:0016132
## 6303 GO:0016139
## 6304 GO:0016182
## 6305 GO:0016185
## 6306 GO:0016188
## 6307 GO:0016189
## 6308 GO:0016198
## 6309 GO:0016199
## 6310 GO:0016202
## 6311 GO:0016233
## 6312 GO:0016240
## 6313 GO:0016243
## 6314 GO:0016254
## 6315 GO:0016255
## 6316 GO:0016256
## 6317 GO:0016259
## 6318 GO:0016260
## 6319 GO:0016264
## 6320 GO:0016267
## 6321 GO:0016269
## 6322 GO:0016320
## 6323 GO:0016321
## 6324 GO:0016322
## 6325 GO:0016332
## 6326 GO:0016338
## 6327 GO:0016339
## 6328 GO:0016340
## 6329 GO:0016344
## 6330 GO:0016476
## 6331 GO:0016479
## 6332 GO:0016480
## 6333 GO:0016488
## 6334 GO:0016539
## 6335 GO:0016553
## 6336 GO:0016554
## 6337 GO:0016556
## 6338 GO:0016557
## 6339 GO:0016559
## 6340 GO:0016560
## 6341 GO:0016572
## 6342 GO:0016576
## 6343 GO:0016578
## 6344 GO:0016584
## 6345 GO:0016598
## 6346 GO:0016926
## 6347 GO:0016998
## 6348 GO:0016999
## 6349 GO:0017055
## 6350 GO:0017085
## 6351 GO:0017121
## 6352 GO:0017126
## 6353 GO:0017143
## 6354 GO:0017144
## 6355 GO:0017145
## 6356 GO:0017185
## 6357 GO:0017186
## 6358 GO:0017187
## 6359 GO:0017196
## 6360 GO:0017198
## 6361 GO:0018002
## 6362 GO:0018003
## 6363 GO:0018008
## 6364 GO:0018009
## 6365 GO:0018012
## 6366 GO:0018013
## 6367 GO:0018016
## 6368 GO:0018023
## 6369 GO:0018026
## 6370 GO:0018027
## 6371 GO:0018032
## 6372 GO:0018057
## 6373 GO:0018063
## 6374 GO:0018076
## 6375 GO:0018094
## 6376 GO:0018095
## 6377 GO:0018106
## 6378 GO:0018107
## 6379 GO:0018117
## 6380 GO:0018119
## 6381 GO:0018125
## 6382 GO:0018149
## 6383 GO:0018153
## 6384 GO:0018160
## 6385 GO:0018166
## 6386 GO:0018191
## 6387 GO:0018192
## 6388 GO:0018197
## 6389 GO:0018199
## 6390 GO:0018200
## 6391 GO:0018201
## 6392 GO:0018206
## 6393 GO:0018216
## 6394 GO:0018230
## 6395 GO:0018277
## 6396 GO:0018283
## 6397 GO:0018293
## 6398 GO:0018315
## 6399 GO:0018343
## 6400 GO:0018345
## 6401 GO:0018350
## 6402 GO:0018364
## 6403 GO:0018377
## 6404 GO:0018395
## 6405 GO:0018400
## 6406 GO:0018401
## 6407 GO:0018406
## 6408 GO:0018872
## 6409 GO:0018874
## 6410 GO:0018879
## 6411 GO:0018885
## 6412 GO:0018894
## 6413 GO:0018904
## 6414 GO:0018910
## 6415 GO:0018916
## 6416 GO:0018917
## 6417 GO:0018931
## 6418 GO:0018958
## 6419 GO:0018963
## 6420 GO:0018964
## 6421 GO:0018969
## 6422 GO:0018979
## 6423 GO:0018993
## 6424 GO:0019043
## 6425 GO:0019048
## 6426 GO:0019049
## 6427 GO:0019050
## 6428 GO:0019054
## 6429 GO:0019056
## 6430 GO:0019060
## 6431 GO:0019061
## 6432 GO:0019062
## 6433 GO:0019064
## 6434 GO:0019068
## 6435 GO:0019074
## 6436 GO:0019075
## 6437 GO:0019076
## 6438 GO:0019082
## 6439 GO:0019085
## 6440 GO:0019087
## 6441 GO:0019088
## 6442 GO:0019089
## 6443 GO:0019098
## 6444 GO:0019100
## 6445 GO:0019101
## 6446 GO:0019102
## 6447 GO:0019184
## 6448 GO:0019226
## 6449 GO:0019227
## 6450 GO:0019228
## 6451 GO:0019229
## 6452 GO:0019230
## 6453 GO:0019233
## 6454 GO:0019236
## 6455 GO:0019242
## 6456 GO:0019243
## 6457 GO:0019244
## 6458 GO:0019254
## 6459 GO:0019255
## 6460 GO:0019262
## 6461 GO:0019264
## 6462 GO:0019265
## 6463 GO:0019285
## 6464 GO:0019287
## 6465 GO:0019290
## 6466 GO:0019303
## 6467 GO:0019310
## 6468 GO:0019323
## 6469 GO:0019336
## 6470 GO:0019341
## 6471 GO:0019348
## 6472 GO:0019358
## 6473 GO:0019367
## 6474 GO:0019370
## 6475 GO:0019371
## 6476 GO:0019372
## 6477 GO:0019373
## 6478 GO:0019377
## 6479 GO:0019388
## 6480 GO:0019391
## 6481 GO:0019395
## 6482 GO:0019400
## 6483 GO:0019401
## 6484 GO:0019402
## 6485 GO:0019405
## 6486 GO:0019408
## 6487 GO:0019413
## 6488 GO:0019417
## 6489 GO:0019427
## 6490 GO:0019428
## 6491 GO:0019432
## 6492 GO:0019433
## 6493 GO:0019441
## 6494 GO:0019442
## 6495 GO:0019448
## 6496 GO:0019464
## 6497 GO:0019470
## 6498 GO:0019474
## 6499 GO:0019478
## 6500 GO:0019481
## 6501 GO:0019482
## 6502 GO:0019483
## 6503 GO:0019509
## 6504 GO:0019510
## 6505 GO:0019516
## 6506 GO:0019518
## 6507 GO:0019530
## 6508 GO:0019532
## 6509 GO:0019541
## 6510 GO:0019542
## 6511 GO:0019546
## 6512 GO:0019547
## 6513 GO:0019550
## 6514 GO:0019551
## 6515 GO:0019556
## 6516 GO:0019557
## 6517 GO:0019563
## 6518 GO:0019585
## 6519 GO:0019605
## 6520 GO:0019626
## 6521 GO:0019627
## 6522 GO:0019628
## 6523 GO:0019640
## 6524 GO:0019646
## 6525 GO:0019673
## 6526 GO:0019677
## 6527 GO:0019679
## 6528 GO:0019692
## 6529 GO:0019695
## 6530 GO:0019730
## 6531 GO:0019731
## 6532 GO:0019732
## 6533 GO:0019742
## 6534 GO:0019747
## 6535 GO:0019800
## 6536 GO:0019805
## 6537 GO:0019835
## 6538 GO:0019836
## 6539 GO:0019853
## 6540 GO:0019858
## 6541 GO:0019860
## 6542 GO:0019878
## 6543 GO:0019883
## 6544 GO:0019885
## 6545 GO:0019896
## 6546 GO:0019915
## 6547 GO:0019918
## 6548 GO:0019919
## 6549 GO:0019933
## 6550 GO:0019934
## 6551 GO:0019935
## 6552 GO:0020027
## 6553 GO:0021502
## 6554 GO:0021503
## 6555 GO:0021508
## 6556 GO:0021509
## 6557 GO:0021510
## 6558 GO:0021511
## 6559 GO:0021512
## 6560 GO:0021513
## 6561 GO:0021514
## 6562 GO:0021515
## 6563 GO:0021516
## 6564 GO:0021517
## 6565 GO:0021520
## 6566 GO:0021521
## 6567 GO:0021522
## 6568 GO:0021523
## 6569 GO:0021524
## 6570 GO:0021526
## 6571 GO:0021527
## 6572 GO:0021528
## 6573 GO:0021530
## 6574 GO:0021533
## 6575 GO:0021534
## 6576 GO:0021536
## 6577 GO:0021539
## 6578 GO:0021541
## 6579 GO:0021544
## 6580 GO:0021545
## 6581 GO:0021546
## 6582 GO:0021548
## 6583 GO:0021549
## 6584 GO:0021550
## 6585 GO:0021551
## 6586 GO:0021553
## 6587 GO:0021554
## 6588 GO:0021555
## 6589 GO:0021557
## 6590 GO:0021558
## 6591 GO:0021559
## 6592 GO:0021562
## 6593 GO:0021563
## 6594 GO:0021564
## 6595 GO:0021568
## 6596 GO:0021569
## 6597 GO:0021570
## 6598 GO:0021571
## 6599 GO:0021572
## 6600 GO:0021575
## 6601 GO:0021578
## 6602 GO:0021586
## 6603 GO:0021587
## 6604 GO:0021588
## 6605 GO:0021589
## 6606 GO:0021592
## 6607 GO:0021599
## 6608 GO:0021602
## 6609 GO:0021603
## 6610 GO:0021604
## 6611 GO:0021610
## 6612 GO:0021612
## 6613 GO:0021615
## 6614 GO:0021618
## 6615 GO:0021623
## 6616 GO:0021631
## 6617 GO:0021633
## 6618 GO:0021637
## 6619 GO:0021642
## 6620 GO:0021644
## 6621 GO:0021648
## 6622 GO:0021649
## 6623 GO:0021650
## 6624 GO:0021660
## 6625 GO:0021666
## 6626 GO:0021678
## 6627 GO:0021680
## 6628 GO:0021681
## 6629 GO:0021682
## 6630 GO:0021683
## 6631 GO:0021685
## 6632 GO:0021686
## 6633 GO:0021687
## 6634 GO:0021688
## 6635 GO:0021691
## 6636 GO:0021692
## 6637 GO:0021693
## 6638 GO:0021695
## 6639 GO:0021696
## 6640 GO:0021697
## 6641 GO:0021699
## 6642 GO:0021702
## 6643 GO:0021703
## 6644 GO:0021707
## 6645 GO:0021722
## 6646 GO:0021723
## 6647 GO:0021740
## 6648 GO:0021747
## 6649 GO:0021750
## 6650 GO:0021754
## 6651 GO:0021756
## 6652 GO:0021757
## 6653 GO:0021758
## 6654 GO:0021759
## 6655 GO:0021763
## 6656 GO:0021764
## 6657 GO:0021768
## 6658 GO:0021769
## 6659 GO:0021771
## 6660 GO:0021773
## 6661 GO:0021775
## 6662 GO:0021776
## 6663 GO:0021778
## 6664 GO:0021783
## 6665 GO:0021784
## 6666 GO:0021793
## 6667 GO:0021794
## 6668 GO:0021795
## 6669 GO:0021796
## 6670 GO:0021797
## 6671 GO:0021798
## 6672 GO:0021799
## 6673 GO:0021800
## 6674 GO:0021801
## 6675 GO:0021812
## 6676 GO:0021813
## 6677 GO:0021814
## 6678 GO:0021815
## 6679 GO:0021816
## 6680 GO:0021817
## 6681 GO:0021819
## 6682 GO:0021822
## 6683 GO:0021825
## 6684 GO:0021828
## 6685 GO:0021830
## 6686 GO:0021831
## 6687 GO:0021836
## 6688 GO:0021842
## 6689 GO:0021846
## 6690 GO:0021847
## 6691 GO:0021849
## 6692 GO:0021852
## 6693 GO:0021853
## 6694 GO:0021854
## 6695 GO:0021855
## 6696 GO:0021858
## 6697 GO:0021859
## 6698 GO:0021860
## 6699 GO:0021869
## 6700 GO:0021870
## 6701 GO:0021871
## 6702 GO:0021873
## 6703 GO:0021874
## 6704 GO:0021877
## 6705 GO:0021879
## 6706 GO:0021881
## 6707 GO:0021882
## 6708 GO:0021884
## 6709 GO:0021885
## 6710 GO:0021889
## 6711 GO:0021891
## 6712 GO:0021892
## 6713 GO:0021893
## 6714 GO:0021894
## 6715 GO:0021895
## 6716 GO:0021897
## 6717 GO:0021898
## 6718 GO:0021902
## 6719 GO:0021904
## 6720 GO:0021905
## 6721 GO:0021910
## 6722 GO:0021912
## 6723 GO:0021913
## 6724 GO:0021914
## 6725 GO:0021918
## 6726 GO:0021919
## 6727 GO:0021920
## 6728 GO:0021930
## 6729 GO:0021932
## 6730 GO:0021933
## 6731 GO:0021937
## 6732 GO:0021938
## 6733 GO:0021941
## 6734 GO:0021942
## 6735 GO:0021943
## 6736 GO:0021956
## 6737 GO:0021957
## 6738 GO:0021960
## 6739 GO:0021965
## 6740 GO:0021966
## 6741 GO:0021972
## 6742 GO:0021978
## 6743 GO:0021979
## 6744 GO:0021983
## 6745 GO:0021984
## 6746 GO:0021985
## 6747 GO:0021986
## 6748 GO:0021993
## 6749 GO:0021997
## 6750 GO:0021998
## 6751 GO:0022004
## 6752 GO:0022007
## 6753 GO:0022009
## 6754 GO:0022013
## 6755 GO:0022018
## 6756 GO:0022027
## 6757 GO:0022028
## 6758 GO:0022029
## 6759 GO:0022037
## 6760 GO:0022400
## 6761 GO:0022410
## 6762 GO:0022601
## 6763 GO:0022602
## 6764 GO:0022605
## 6765 GO:0022614
## 6766 GO:0022615
## 6767 GO:0023016
## 6768 GO:0023021
## 6769 GO:0023035
## 6770 GO:0023041
## 6771 GO:0023058
## 6772 GO:0030033
## 6773 GO:0030035
## 6774 GO:0030037
## 6775 GO:0030041
## 6776 GO:0030042
## 6777 GO:0030043
## 6778 GO:0030046
## 6779 GO:0030047
## 6780 GO:0030049
## 6781 GO:0030071
## 6782 GO:0030103
## 6783 GO:0030104
## 6784 GO:0030149
## 6785 GO:0030167
## 6786 GO:0030174
## 6787 GO:0030183
## 6788 GO:0030185
## 6789 GO:0030187
## 6790 GO:0030199
## 6791 GO:0030200
## 6792 GO:0030209
## 6793 GO:0030210
## 6794 GO:0030213
## 6795 GO:0030221
## 6796 GO:0030222
## 6797 GO:0030223
## 6798 GO:0030237
## 6799 GO:0030238
## 6800 GO:0030240
## 6801 GO:0030241
## 6802 GO:0030242
## 6803 GO:0030252
## 6804 GO:0030261
## 6805 GO:0030263
## 6806 GO:0030264
## 6807 GO:0030277
## 6808 GO:0030299
## 6809 GO:0030300
## 6810 GO:0030301
## 6811 GO:0030302
## 6812 GO:0030309
## 6813 GO:0030311
## 6814 GO:0030318
## 6815 GO:0030320
## 6816 GO:0030321
## 6817 GO:0030325
## 6818 GO:0030328
## 6819 GO:0030382
## 6820 GO:0030388
## 6821 GO:0030393
## 6822 GO:0030421
## 6823 GO:0030431
## 6824 GO:0030432
## 6825 GO:0030472
## 6826 GO:0030497
## 6827 GO:0030501
## 6828 GO:0030502
## 6829 GO:0030505
## 6830 GO:0030511
## 6831 GO:0030517
## 6832 GO:0030538
## 6833 GO:0030540
## 6834 GO:0030573
## 6835 GO:0030574
## 6836 GO:0030575
## 6837 GO:0030576
## 6838 GO:0030578
## 6839 GO:0030579
## 6840 GO:0030643
## 6841 GO:0030644
## 6842 GO:0030683
## 6843 GO:0030704
## 6844 GO:0030718
## 6845 GO:0030719
## 6846 GO:0030728
## 6847 GO:0030730
## 6848 GO:0030800
## 6849 GO:0030803
## 6850 GO:0030815
## 6851 GO:0030818
## 6852 GO:0030820
## 6853 GO:0030821
## 6854 GO:0030822
## 6855 GO:0030823
## 6856 GO:0030825
## 6857 GO:0030826
## 6858 GO:0030828
## 6859 GO:0030836
## 6860 GO:0030838
## 6861 GO:0030845
## 6862 GO:0030850
## 6863 GO:0030851
## 6864 GO:0030852
## 6865 GO:0030853
## 6866 GO:0030854
## 6867 GO:0030857
## 6868 GO:0030860
## 6869 GO:0030862
## 6870 GO:0030878
## 6871 GO:0030886
## 6872 GO:0030888
## 6873 GO:0030889
## 6874 GO:0030890
## 6875 GO:0030910
## 6876 GO:0030913
## 6877 GO:0030916
## 6878 GO:0030947
## 6879 GO:0030948
## 6880 GO:0030949
## 6881 GO:0030950
## 6882 GO:0030953
## 6883 GO:0030961
## 6884 GO:0030970
## 6885 GO:0030974
## 6886 GO:0031000
## 6887 GO:0031001
## 6888 GO:0031016
## 6889 GO:0031017
## 6890 GO:0031018
## 6891 GO:0031022
## 6892 GO:0031034
## 6893 GO:0031048
## 6894 GO:0031052
## 6895 GO:0031053
## 6896 GO:0031061
## 6897 GO:0031062
## 6898 GO:0031077
## 6899 GO:0031098
## 6900 GO:0031100
## 6901 GO:0031104
## 6902 GO:0031110
## 6903 GO:0031111
## 6904 GO:0031112
## 6905 GO:0031113
## 6906 GO:0031114
## 6907 GO:0031115
## 6908 GO:0031116
## 6909 GO:0031117
## 6910 GO:0031118
## 6911 GO:0031120
## 6912 GO:0031125
## 6913 GO:0031126
## 6914 GO:0031129
## 6915 GO:0031133
## 6916 GO:0031134
## 6917 GO:0031145
## 6918 GO:0031146
## 6919 GO:0031161
## 6920 GO:0031204
## 6921 GO:0031223
## 6922 GO:0031247
## 6923 GO:0031268
## 6924 GO:0031275
## 6925 GO:0031280
## 6926 GO:0031282
## 6927 GO:0031283
## 6928 GO:0031284
## 6929 GO:0031290
## 6930 GO:0031291
## 6931 GO:0031296
## 6932 GO:0031339
## 6933 GO:0031340
## 6934 GO:0031341
## 6935 GO:0031342
## 6936 GO:0031343
## 6937 GO:0031365
## 6938 GO:0031392
## 6939 GO:0031393
## 6940 GO:0031394
## 6941 GO:0031427
## 6942 GO:0031441
## 6943 GO:0031443
## 6944 GO:0031444
## 6945 GO:0031448
## 6946 GO:0031449
## 6947 GO:0031453
## 6948 GO:0031460
## 6949 GO:0031468
## 6950 GO:0031529
## 6951 GO:0031536
## 6952 GO:0031547
## 6953 GO:0031548
## 6954 GO:0031549
## 6955 GO:0031550
## 6956 GO:0031573
## 6957 GO:0031577
## 6958 GO:0031581
## 6959 GO:0031583
## 6960 GO:0031585
## 6961 GO:0031587
## 6962 GO:0031591
## 6963 GO:0031620
## 6964 GO:0031622
## 6965 GO:0031623
## 6966 GO:0031627
## 6967 GO:0031629
## 6968 GO:0031630
## 6969 GO:0031635
## 6970 GO:0031642
## 6971 GO:0031643
## 6972 GO:0031645
## 6973 GO:0031646
## 6974 GO:0031649
## 6975 GO:0031650
## 6976 GO:0031651
## 6977 GO:0031652
## 6978 GO:0031657
## 6979 GO:0031658
## 6980 GO:0031659
## 6981 GO:0031662
## 6982 GO:0031663
## 6983 GO:0031665
## 6984 GO:0031666
## 6985 GO:0031848
## 6986 GO:0031860
## 6987 GO:0031914
## 6988 GO:0031915
## 6989 GO:0031930
## 6990 GO:0031935
## 6991 GO:0031936
## 6992 GO:0031937
## 6993 GO:0031938
## 6994 GO:0031940
## 6995 GO:0031954
## 6996 GO:0031959
## 6997 GO:0031987
## 6998 GO:0031989
## 6999 GO:0031990
## 7000 GO:0031998
## 7001 GO:0031999
## 7002 GO:0032000
## 7003 GO:0032012
## 7004 GO:0032020
## 7005 GO:0032023
## 7006 GO:0032026
## 7007 GO:0032048
## 7008 GO:0032049
## 7009 GO:0032055
## 7010 GO:0032056
## 7011 GO:0032057
## 7012 GO:0032058
## 7013 GO:0032060
## 7014 GO:0032066
## 7015 GO:0032071
## 7016 GO:0032072
## 7017 GO:0032075
## 7018 GO:0032077
## 7019 GO:0032078
## 7020 GO:0032079
## 7021 GO:0032100
## 7022 GO:0032109
## 7023 GO:0032185
## 7024 GO:0032194
## 7025 GO:0032197
## 7026 GO:0032202
## 7027 GO:0032203
## 7028 GO:0032208
## 7029 GO:0032214
## 7030 GO:0032218
## 7031 GO:0032222
## 7032 GO:0032223
## 7033 GO:0032224
## 7034 GO:0032227
## 7035 GO:0032228
## 7036 GO:0032229
## 7037 GO:0032230
## 7038 GO:0032237
## 7039 GO:0032242
## 7040 GO:0032244
## 7041 GO:0032252
## 7042 GO:0032274
## 7043 GO:0032275
## 7044 GO:0032276
## 7045 GO:0032277
## 7046 GO:0032278
## 7047 GO:0032286
## 7048 GO:0032287
## 7049 GO:0032288
## 7050 GO:0032289
## 7051 GO:0032290
## 7052 GO:0032298
## 7053 GO:0032303
## 7054 GO:0032304
## 7055 GO:0032305
## 7056 GO:0032308
## 7057 GO:0032309
## 7058 GO:0032310
## 7059 GO:0032324
## 7060 GO:0032328
## 7061 GO:0032329
## 7062 GO:0032330
## 7063 GO:0032331
## 7064 GO:0032332
## 7065 GO:0032342
## 7066 GO:0032347
## 7067 GO:0032348
## 7068 GO:0032349
## 7069 GO:0032352
## 7070 GO:0032354
## 7071 GO:0032361
## 7072 GO:0032364
## 7073 GO:0032367
## 7074 GO:0032369
## 7075 GO:0032370
## 7076 GO:0032374
## 7077 GO:0032375
## 7078 GO:0032376
## 7079 GO:0032383
## 7080 GO:0032385
## 7081 GO:0032400
## 7082 GO:0032401
## 7083 GO:0032402
## 7084 GO:0032410
## 7085 GO:0032413
## 7086 GO:0032415
## 7087 GO:0032416
## 7088 GO:0032417
## 7089 GO:0032423
## 7090 GO:0032425
## 7091 GO:0032429
## 7092 GO:0032430
## 7093 GO:0032431
## 7094 GO:0032438
## 7095 GO:0032439
## 7096 GO:0032447
## 7097 GO:0032455
## 7098 GO:0032458
## 7099 GO:0032461
## 7100 GO:0032464
## 7101 GO:0032466
## 7102 GO:0032468
## 7103 GO:0032470
## 7104 GO:0032471
## 7105 GO:0032472
## 7106 GO:0032474
## 7107 GO:0032475
## 7108 GO:0032480
## 7109 GO:0032482
## 7110 GO:0032483
## 7111 GO:0032485
## 7112 GO:0032486
## 7113 GO:0032487
## 7114 GO:0032489
## 7115 GO:0032490
## 7116 GO:0032493
## 7117 GO:0032495
## 7118 GO:0032497
## 7119 GO:0032498
## 7120 GO:0032499
## 7121 GO:0032510
## 7122 GO:0032515
## 7123 GO:0032516
## 7124 GO:0032525
## 7125 GO:0032527
## 7126 GO:0032528
## 7127 GO:0032532
## 7128 GO:0032536
## 7129 GO:0032571
## 7130 GO:0032581
## 7131 GO:0032594
## 7132 GO:0032596
## 7133 GO:0032597
## 7134 GO:0032600
## 7135 GO:0032602
## 7136 GO:0032604
## 7137 GO:0032606
## 7138 GO:0032607
## 7139 GO:0032608
## 7140 GO:0032609
## 7141 GO:0032615
## 7142 GO:0032616
## 7143 GO:0032618
## 7144 GO:0032620
## 7145 GO:0032623
## 7146 GO:0032632
## 7147 GO:0032633
## 7148 GO:0032634
## 7149 GO:0032635
## 7150 GO:0032637
## 7151 GO:0032640
## 7152 GO:0032645
## 7153 GO:0032650
## 7154 GO:0032660
## 7155 GO:0032667
## 7156 GO:0032672
## 7157 GO:0032685
## 7158 GO:0032687
## 7159 GO:0032688
## 7160 GO:0032689
## 7161 GO:0032696
## 7162 GO:0032700
## 7163 GO:0032701
## 7164 GO:0032707
## 7165 GO:0032712
## 7166 GO:0032713
## 7167 GO:0032714
## 7168 GO:0032715
## 7169 GO:0032717
## 7170 GO:0032722
## 7171 GO:0032723
## 7172 GO:0032725
## 7173 GO:0032730
## 7174 GO:0032735
## 7175 GO:0032738
## 7176 GO:0032740
## 7177 GO:0032743
## 7178 GO:0032747
## 7179 GO:0032762
## 7180 GO:0032763
## 7181 GO:0032764
## 7182 GO:0032765
## 7183 GO:0032773
## 7184 GO:0032775
## 7185 GO:0032776
## 7186 GO:0032782
## 7187 GO:0032788
## 7188 GO:0032789
## 7189 GO:0032792
## 7190 GO:0032793
## 7191 GO:0032796
## 7192 GO:0032799
## 7193 GO:0032800
## 7194 GO:0032802
## 7195 GO:0032803
## 7196 GO:0032804
## 7197 GO:0032805
## 7198 GO:0032811
## 7199 GO:0032812
## 7200 GO:0032814
## 7201 GO:0032815
## 7202 GO:0032816
## 7203 GO:0032817
## 7204 GO:0032819
## 7205 GO:0032823
## 7206 GO:0032825
## 7207 GO:0032826
## 7208 GO:0032827
## 7209 GO:0032831
## 7210 GO:0032834
## 7211 GO:0032836
## 7212 GO:0032847
## 7213 GO:0032848
## 7214 GO:0032849
## 7215 GO:0032875
## 7216 GO:0032876
## 7217 GO:0032877
## 7218 GO:0032878
## 7219 GO:0032881
## 7220 GO:0032885
## 7221 GO:0032889
## 7222 GO:0032890
## 7223 GO:0032891
## 7224 GO:0032892
## 7225 GO:0032899
## 7226 GO:0032900
## 7227 GO:0032901
## 7228 GO:0032902
## 7229 GO:0032908
## 7230 GO:0032909
## 7231 GO:0032910
## 7232 GO:0032911
## 7233 GO:0032912
## 7234 GO:0032913
## 7235 GO:0032914
## 7236 GO:0032915
## 7237 GO:0032916
## 7238 GO:0032918
## 7239 GO:0032919
## 7240 GO:0032920
## 7241 GO:0032927
## 7242 GO:0032928
## 7243 GO:0032929
## 7244 GO:0032930
## 7245 GO:0032933
## 7246 GO:0032957
## 7247 GO:0032958
## 7248 GO:0032959
## 7249 GO:0032960
## 7250 GO:0032962
## 7251 GO:0032964
## 7252 GO:0032966
## 7253 GO:0032971
## 7254 GO:0032972
## 7255 GO:0032976
## 7256 GO:0032979
## 7257 GO:0032980
## 7258 GO:0033002
## 7259 GO:0033003
## 7260 GO:0033004
## 7261 GO:0033005
## 7262 GO:0033007
## 7263 GO:0033025
## 7264 GO:0033026
## 7265 GO:0033028
## 7266 GO:0033030
## 7267 GO:0033033
## 7268 GO:0033037
## 7269 GO:0033046
## 7270 GO:0033048
## 7271 GO:0033058
## 7272 GO:0033059
## 7273 GO:0033076
## 7274 GO:0033077
## 7275 GO:0033080
## 7276 GO:0033081
## 7277 GO:0033082
## 7278 GO:0033083
## 7279 GO:0033084
## 7280 GO:0033085
## 7281 GO:0033087
## 7282 GO:0033088
## 7283 GO:0033089
## 7284 GO:0033091
## 7285 GO:0033092
## 7286 GO:0033127
## 7287 GO:0033128
## 7288 GO:0033129
## 7289 GO:0033132
## 7290 GO:0033137
## 7291 GO:0033139
## 7292 GO:0033140
## 7293 GO:0033141
## 7294 GO:0033144
## 7295 GO:0033147
## 7296 GO:0033151
## 7297 GO:0033152
## 7298 GO:0033153
## 7299 GO:0033158
## 7300 GO:0033159
## 7301 GO:0033160
## 7302 GO:0033168
## 7303 GO:0033169
## 7304 GO:0033173
## 7305 GO:0033182
## 7306 GO:0033184
## 7307 GO:0033189
## 7308 GO:0033194
## 7309 GO:0033197
## 7310 GO:0033198
## 7311 GO:0033206
## 7312 GO:0033211
## 7313 GO:0033214
## 7314 GO:0033216
## 7315 GO:0033227
## 7316 GO:0033231
## 7317 GO:0033235
## 7318 GO:0033239
## 7319 GO:0033262
## 7320 GO:0033277
## 7321 GO:0033278
## 7322 GO:0033292
## 7323 GO:0033299
## 7324 GO:0033301
## 7325 GO:0033306
## 7326 GO:0033313
## 7327 GO:0033316
## 7328 GO:0033320
## 7329 GO:0033326
## 7330 GO:0033327
## 7331 GO:0033341
## 7332 GO:0033342
## 7333 GO:0033343
## 7334 GO:0033344
## 7335 GO:0033345
## 7336 GO:0033363
## 7337 GO:0033364
## 7338 GO:0033373
## 7339 GO:0033382
## 7340 GO:0033386
## 7341 GO:0033387
## 7342 GO:0033388
## 7343 GO:0033477
## 7344 GO:0033483
## 7345 GO:0033484
## 7346 GO:0033488
## 7347 GO:0033499
## 7348 GO:0033505
## 7349 GO:0033512
## 7350 GO:0033514
## 7351 GO:0033522
## 7352 GO:0033539
## 7353 GO:0033540
## 7354 GO:0033552
## 7355 GO:0033555
## 7356 GO:0033561
## 7357 GO:0033563
## 7358 GO:0033564
## 7359 GO:0033566
## 7360 GO:0033567
## 7361 GO:0033574
## 7362 GO:0033577
## 7363 GO:0033578
## 7364 GO:0033590
## 7365 GO:0033591
## 7366 GO:0033594
## 7367 GO:0033595
## 7368 GO:0033600
## 7369 GO:0033602
## 7370 GO:0033604
## 7371 GO:0033609
## 7372 GO:0033615
## 7373 GO:0033622
## 7374 GO:0033623
## 7375 GO:0033624
## 7376 GO:0033625
## 7377 GO:0033626
## 7378 GO:0033627
## 7379 GO:0033630
## 7380 GO:0033631
## 7381 GO:0033632
## 7382 GO:0033633
## 7383 GO:0033634
## 7384 GO:0033668
## 7385 GO:0033684
## 7386 GO:0033685
## 7387 GO:0033686
## 7388 GO:0033687
## 7389 GO:0033689
## 7390 GO:0033692
## 7391 GO:0033693
## 7392 GO:0033700
## 7393 GO:0033861
## 7394 GO:0033962
## 7395 GO:0034021
## 7396 GO:0034058
## 7397 GO:0034059
## 7398 GO:0034063
## 7399 GO:0034067
## 7400 GO:0034087
## 7401 GO:0034088
## 7402 GO:0034104
## 7403 GO:0034105
## 7404 GO:0034109
## 7405 GO:0034110
## 7406 GO:0034111
## 7407 GO:0034112
## 7408 GO:0034114
## 7409 GO:0034115
## 7410 GO:0034116
## 7411 GO:0034120
## 7412 GO:0034122
## 7413 GO:0034124
## 7414 GO:0034125
## 7415 GO:0034127
## 7416 GO:0034128
## 7417 GO:0034130
## 7418 GO:0034134
## 7419 GO:0034135
## 7420 GO:0034136
## 7421 GO:0034137
## 7422 GO:0034138
## 7423 GO:0034139
## 7424 GO:0034140
## 7425 GO:0034141
## 7426 GO:0034142
## 7427 GO:0034143
## 7428 GO:0034144
## 7429 GO:0034145
## 7430 GO:0034148
## 7431 GO:0034150
## 7432 GO:0034154
## 7433 GO:0034155
## 7434 GO:0034156
## 7435 GO:0034157
## 7436 GO:0034158
## 7437 GO:0034162
## 7438 GO:0034163
## 7439 GO:0034164
## 7440 GO:0034165
## 7441 GO:0034166
## 7442 GO:0034182
## 7443 GO:0034183
## 7444 GO:0034184
## 7445 GO:0034197
## 7446 GO:0034199
## 7447 GO:0034201
## 7448 GO:0034203
## 7449 GO:0034213
## 7450 GO:0034214
## 7451 GO:0034224
## 7452 GO:0034227
## 7453 GO:0034230
## 7454 GO:0034231
## 7455 GO:0034241
## 7456 GO:0034242
## 7457 GO:0034247
## 7458 GO:0034255
## 7459 GO:0034276
## 7460 GO:0034310
## 7461 GO:0034311
## 7462 GO:0034312
## 7463 GO:0034314
## 7464 GO:0034316
## 7465 GO:0034331
## 7466 GO:0034334
## 7467 GO:0034337
## 7468 GO:0034342
## 7469 GO:0034344
## 7470 GO:0034346
## 7471 GO:0034351
## 7472 GO:0034369
## 7473 GO:0034370
## 7474 GO:0034371
## 7475 GO:0034372
## 7476 GO:0034373
## 7477 GO:0034374
## 7478 GO:0034375
## 7479 GO:0034378
## 7480 GO:0034380
## 7481 GO:0034381
## 7482 GO:0034382
## 7483 GO:0034383
## 7484 GO:0034384
## 7485 GO:0034389
## 7486 GO:0034391
## 7487 GO:0034392
## 7488 GO:0034393
## 7489 GO:0034394
## 7490 GO:0034395
## 7491 GO:0034397
## 7492 GO:0034398
## 7493 GO:0034405
## 7494 GO:0034414
## 7495 GO:0034418
## 7496 GO:0034421
## 7497 GO:0034427
## 7498 GO:0034435
## 7499 GO:0034436
## 7500 GO:0034440
## 7501 GO:0034441
## 7502 GO:0034442
## 7503 GO:0034443
## 7504 GO:0034445
## 7505 GO:0034446
## 7506 GO:0034447
## 7507 GO:0034454
## 7508 GO:0034462
## 7509 GO:0034463
## 7510 GO:0034465
## 7511 GO:0034473
## 7512 GO:0034474
## 7513 GO:0034475
## 7514 GO:0034476
## 7515 GO:0034477
## 7516 GO:0034498
## 7517 GO:0034499
## 7518 GO:0034516
## 7519 GO:0034551
## 7520 GO:0034553
## 7521 GO:0034587
## 7522 GO:0034589
## 7523 GO:0034616
## 7524 GO:0034625
## 7525 GO:0034626
## 7526 GO:0034628
## 7527 GO:0034633
## 7528 GO:0034635
## 7529 GO:0034638
## 7530 GO:0034640
## 7531 GO:0034651
## 7532 GO:0034653
## 7533 GO:0034656
## 7534 GO:0034661
## 7535 GO:0034670
## 7536 GO:0034694
## 7537 GO:0034695
## 7538 GO:0034696
## 7539 GO:0034698
## 7540 GO:0034699
## 7541 GO:0034727
## 7542 GO:0034729
## 7543 GO:0034755
## 7544 GO:0034759
## 7545 GO:0034760
## 7546 GO:0034769
## 7547 GO:0034770
## 7548 GO:0034773
## 7549 GO:0034775
## 7550 GO:0034776
## 7551 GO:0034959
## 7552 GO:0034969
## 7553 GO:0034970
## 7554 GO:0034971
## 7555 GO:0034972
## 7556 GO:0034982
## 7557 GO:0034983
## 7558 GO:0035020
## 7559 GO:0035021
## 7560 GO:0035022
## 7561 GO:0035024
## 7562 GO:0035025
## 7563 GO:0035037
## 7564 GO:0035038
## 7565 GO:0035039
## 7566 GO:0035042
## 7567 GO:0035048
## 7568 GO:0035054
## 7569 GO:0035063
## 7570 GO:0035067
## 7571 GO:0035082
## 7572 GO:0035087
## 7573 GO:0035092
## 7574 GO:0035093
## 7575 GO:0035095
## 7576 GO:0035105
## 7577 GO:0035106
## 7578 GO:0035112
## 7579 GO:0035115
## 7580 GO:0035116
## 7581 GO:0035128
## 7582 GO:0035136
## 7583 GO:0035137
## 7584 GO:0035162
## 7585 GO:0035166
## 7586 GO:0035176
## 7587 GO:0035212
## 7588 GO:0035229
## 7589 GO:0035234
## 7590 GO:0035235
## 7591 GO:0035238
## 7592 GO:0035246
## 7593 GO:0035247
## 7594 GO:0035261
## 7595 GO:0035268
## 7596 GO:0035269
## 7597 GO:0035270
## 7598 GO:0035279
## 7599 GO:0035281
## 7600 GO:0035284
## 7601 GO:0035313
## 7602 GO:0035330
## 7603 GO:0035331
## 7604 GO:0035332
## 7605 GO:0035338
## 7606 GO:0035349
## 7607 GO:0035350
## 7608 GO:0035356
## 7609 GO:0035357
## 7610 GO:0035358
## 7611 GO:0035359
## 7612 GO:0035360
## 7613 GO:0035377
## 7614 GO:0035378
## 7615 GO:0035385
## 7616 GO:0035397
## 7617 GO:0035404
## 7618 GO:0035405
## 7619 GO:0035407
## 7620 GO:0035408
## 7621 GO:0035409
## 7622 GO:0035411
## 7623 GO:0035412
## 7624 GO:0035413
## 7625 GO:0035414
## 7626 GO:0035418
## 7627 GO:0035425
## 7628 GO:0035426
## 7629 GO:0035434
## 7630 GO:0035435
## 7631 GO:0035441
## 7632 GO:0035445
## 7633 GO:0035456
## 7634 GO:0035457
## 7635 GO:0035458
## 7636 GO:0035461
## 7637 GO:0035469
## 7638 GO:0035470
## 7639 GO:0035481
## 7640 GO:0035483
## 7641 GO:0035491
## 7642 GO:0035493
## 7643 GO:0035494
## 7644 GO:0035498
## 7645 GO:0035499
## 7646 GO:0035502
## 7647 GO:0035505
## 7648 GO:0035507
## 7649 GO:0035508
## 7650 GO:0035509
## 7651 GO:0035510
## 7652 GO:0035511
## 7653 GO:0035513
## 7654 GO:0035518
## 7655 GO:0035522
## 7656 GO:0035524
## 7657 GO:0035526
## 7658 GO:0035542
## 7659 GO:0035543
## 7660 GO:0035544
## 7661 GO:0035545
## 7662 GO:0035552
## 7663 GO:0035553
## 7664 GO:0035561
## 7665 GO:0035562
## 7666 GO:0035563
## 7667 GO:0035564
## 7668 GO:0035565
## 7669 GO:0035566
## 7670 GO:0035572
## 7671 GO:0035573
## 7672 GO:0035574
## 7673 GO:0035582
## 7674 GO:0035583
## 7675 GO:0035584
## 7676 GO:0035585
## 7677 GO:0035587
## 7678 GO:0035588
## 7679 GO:0035589
## 7680 GO:0035590
## 7681 GO:0035600
## 7682 GO:0035602
## 7683 GO:0035603
## 7684 GO:0035604
## 7685 GO:0035606
## 7686 GO:0035607
## 7687 GO:0035608
## 7688 GO:0035609
## 7689 GO:0035610
## 7690 GO:0035611
## 7691 GO:0035616
## 7692 GO:0035621
## name
## 1 RNA processing
## 2 mRNA processing
## 3 cell-cell recognition
## 4 sperm-egg recognition
## 5 CRD-mediated mRNA stabilization
## 6 mRNA metabolic process
## 7 DNA-templated transcription, termination
## 8 termination of RNA polymerase II transcription
## 9 RNA splicing, via transesterification reactions
## 10 mRNA splicing, via spliceosome
## 11 heterocycle metabolic process
## 12 cellular aromatic compound metabolic process
## 13 viral transcription
## 14 interstrand cross-link repair
## 15 nucleobase-containing compound metabolic process
## 16 lactate metabolic process
## 17 protein heterotetramerization
## 18 positive regulation of insulin secretion
## 19 viral gene expression
## 20 regulation of mRNA processing
## 21 RNA splicing
## 22 organic cyclic compound metabolic process
## 23 regulation of mRNA metabolic process
## 24 DNA synthesis involved in DNA repair
## 25 cellular nitrogen compound metabolic process
## 26 neural crest cell development
## 27 neural crest cell differentiation
## 28 negative regulation of macroautophagy
## 29 DNA geometric change
## 30 stem cell development
## 31 negative regulation of response to endoplasmic reticulum stress
## 32 multi-organism metabolic process
## 33 vesicle coating
## 34 vesicle targeting
## 35 positive regulation of isomerase activity
## 36 vesicle targeting, to, from or within Golgi
## 37 COPII vesicle coating
## 38 maintenance of protein localization in organelle
## 39 positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## 40 negative regulation of stem cell differentiation
## 41 membrane budding
## 42 positive regulation of hormone secretion
## 43 positive regulation of peptide hormone secretion
## 44 regulation of mRNA splicing, via spliceosome
## 45 DNA biosynthetic process
## 46 spliceosomal complex assembly
## 47 protein localization to cytoplasmic stress granule
## 48 mRNA transport
## 49 cellular response to stress
## 50 mesenchymal cell development
## 51 DNA damage response, detection of DNA damage
## 52 COPII-coated vesicle budding
## 53 fructose metabolic process
## 54 fructose 2,6-bisphosphate metabolic process
## 55 binding of sperm to zona pellucida
## 56 regulation of glucokinase activity
## 57 positive regulation of glucokinase activity
## 58 protein K29-linked deubiquitination
## 59 ERBB2 signaling pathway
## 60 error-free translesion synthesis
## 61 regulation of hexokinase activity
## 62 positive regulation of hexokinase activity
## 63 regulation of retrograde protein transport, ER to cytosol
## 64 negative regulation of retrograde protein transport, ER to cytosol
## 65 regulation of ERAD pathway
## 66 negative regulation of ERAD pathway
## 67 protein K33-linked deubiquitination
## 68 cellular transition metal ion homeostasis
## 69 transition metal ion homeostasis
## 70 DNA repair
## 71 positive regulation of peptide secretion
## 72 posttranscriptional regulation of gene expression
## 73 regulation of translation
## 74 nucleic acid metabolic process
## 75 regulation of cellular amide metabolic process
## 76 single-organism carbohydrate metabolic process
## 77 cellular response to DNA damage stimulus
## 78 cellular carbohydrate metabolic process
## 79 regulation of response to DNA damage stimulus
## 80 carbohydrate metabolic process
## 81 viral life cycle
## 82 endoplasmic reticulum unfolded protein response
## 83 cellular response to unfolded protein
## 84 cellular response to topologically incorrect protein
## 85 negative regulation of DNA metabolic process
## 86 detoxification of inorganic compound
## 87 stress response to metal ion
## 88 response to glucose
## 89 neurotransmitter uptake
## 90 regulation of vacuole organization
## 91 DNA metabolic process
## 92 nitrogen compound metabolic process
## 93 postreplication repair
## 94 translesion synthesis
## 95 RNA destabilization
## 96 neural crest cell migration
## 97 negative regulation of telomere maintenance
## 98 DNA duplex unwinding
## 99 regulation of transcription elongation from RNA polymerase II promoter
## 100 closure of optic fissure
## 101 negative regulation of telomere maintenance via telomere lengthening
## 102 protein K27-linked deubiquitination
## 103 regulation of integrin-mediated signaling pathway
## 104 negative regulation of integrin-mediated signaling pathway
## 105 response to carbohydrate
## 106 response to hexose
## 107 response to monosaccharide
## 108 mRNA 3'-end processing
## 109 regulation of macroautophagy
## 110 ribonucleoprotein complex subunit organization
## 111 negative regulation of autophagy
## 112 regulation of ATPase activity
## 113 glucose homeostasis
## 114 regulation of glycolytic process
## 115 ribosomal small subunit biogenesis
## 116 regulation of carbohydrate catabolic process
## 117 regulation of coenzyme metabolic process
## 118 zinc II ion transport
## 119 positive regulation of ATPase activity
## 120 protein localization to endoplasmic reticulum
## 121 zinc II ion transmembrane transport
## 122 maintenance of protein location in cell
## 123 cell cycle phase transition
## 124 mitotic cell cycle phase transition
## 125 ER to Golgi vesicle-mediated transport
## 126 viral process
## 127 multi-organism cellular process
## 128 macromolecular complex assembly
## 129 osteoblast differentiation
## 130 RNA localization
## 131 single fertilization
## 132 DNA replication
## 133 rRNA processing
## 134 rRNA metabolic process
## 135 G1/S transition of mitotic cell cycle
## 136 RNA 3'-end processing
## 137 cell cycle G1/S phase transition
## 138 respiratory system process
## 139 nucleotide-excision repair, preincision complex stabilization
## 140 nucleotide-excision repair, preincision complex assembly
## 141 nucleotide-excision repair, DNA incision, 3'-to lesion
## 142 nucleotide-excision repair, DNA incision, 5'-to lesion
## 143 mRNA splice site selection
## 144 attachment of spindle microtubules to kinetochore
## 145 negative regulation of DNA-templated transcription, elongation
## 146 negative regulation of RNA splicing
## 147 positive regulation of intracellular steroid hormone receptor signaling pathway
## 148 nucleotide-excision repair, DNA incision
## 149 negative regulation of transcription elongation from RNA polymerase II promoter
## 150 positive regulation of glycolytic process
## 151 positive regulation of mitotic nuclear division
## 152 pore complex assembly
## 153 negative regulation of mRNA splicing, via spliceosome
## 154 negative regulation of mRNA processing
## 155 positive regulation of coenzyme metabolic process
## 156 attachment of mitotic spindle microtubules to kinetochore
## 157 maintenance of protein location in nucleus
## 158 regulation of protein exit from endoplasmic reticulum
## 159 regulation of metaphase plate congression
## 160 regulation of superoxide metabolic process
## 161 regulation of hydrogen peroxide-mediated programmed cell death
## 162 negative regulation of hydrogen peroxide-mediated programmed cell death
## 163 regulation of superoxide dismutase activity
## 164 positive regulation of cellular respiration
## 165 negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## 166 positive regulation of attachment of mitotic spindle microtubules to kinetochore
## 167 protein localization to spindle microtubule
## 168 regulation of mitochondrial electron transport, NADH to ubiquinone
## 169 positive regulation of mitochondrial electron transport, NADH to ubiquinone
## 170 negative regulation of oxidative stress-induced neuron death
## 171 negative regulation of hydrogen peroxide-induced neuron death
## 172 negative regulation of mRNA metabolic process
## 173 negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## 174 negative regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## 175 negative regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## 176 regulation of mitochondrial ATP synthesis coupled electron transport
## 177 positive regulation of mitochondrial ATP synthesis coupled electron transport
## 178 RNA localization to chromatin
## 179 regulation of removal of superoxide radicals
## 180 symbiosis, encompassing mutualism through parasitism
## 181 interspecies interaction between organisms
## 182 regulation of insulin secretion
## 183 telomere organization
## 184 nucleus organization
## 185 camera-type eye morphogenesis
## 186 response to zinc ion
## 187 organelle disassembly
## 188 positive regulation of ATP metabolic process
## 189 protein complex subunit organization
## 190 ribonucleoprotein complex assembly
## 191 regulation of DNA repair
## 192 maintenance of protein location
## 193 enteric nervous system development
## 194 regulation of sequestering of zinc ion
## 195 establishment of protein localization to endoplasmic reticulum
## 196 regulation of ATP metabolic process
## 197 RNA export from nucleus
## 198 mRNA export from nucleus
## 199 respiratory gaseous exchange
## 200 protein K11-linked deubiquitination
## 201 protein localization to microtubule cytoskeleton
## 202 regulation of TRAIL-activated apoptotic signaling pathway
## 203 regulation of oxidative stress-induced neuron death
## 204 regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## 205 mismatch repair
## 206 glutamate catabolic process
## 207 glutamine biosynthetic process
## 208 SRP-dependent cotranslational protein targeting to membrane
## 209 ammonia assimilation cycle
## 210 positive regulation of DNA binding
## 211 dicarboxylic acid catabolic process
## 212 protein targeting to ER
## 213 protein complex assembly
## 214 protein complex biogenesis
## 215 positive regulation of transcription from RNA polymerase II promoter by glucose
## 216 carbon catabolite activation of transcription from RNA polymerase II promoter
## 217 exocyst assembly
## 218 N-acetylglucosamine metabolic process
## 219 activation of cysteine-type endopeptidase activity involved in apoptotic process by cytochrome c
## 220 late viral transcription
## 221 UDP-N-acetylgalactosamine metabolic process
## 222 cellular response to nutrient
## 223 response to cobalt ion
## 224 glial cell apoptotic process
## 225 NAD biosynthesis via nicotinamide riboside salvage pathway
## 226 regulation of DNA methylation
## 227 nucleophagy
## 228 carbon catabolite regulation of transcription
## 229 carbon catabolite activation of transcription
## 230 regulation of transcription by glucose
## 231 positive regulation of transcription by glucose
## 232 sperm capacitation
## 233 negative regulation of striated muscle cell differentiation
## 234 exocyst localization
## 235 regulation of fibrinolysis
## 236 negative regulation of fibrinolysis
## 237 protein localization to lysosome
## 238 sialylation
## 239 regulation of autophagosome maturation
## 240 negative regulation of autophagosome maturation
## 241 regulation of phosphorylation of RNA polymerase II C-terminal domain
## 242 positive regulation of phosphorylation of RNA polymerase II C-terminal domain
## 243 negative regulation of autophagosome assembly
## 244 response to UV
## 245 RNA metabolic process
## 246 regulation of autophagy
## 247 transition metal ion transport
## 248 nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## 249 regulation of BMP signaling pathway
## 250 ribonucleoprotein complex biogenesis
## 251 regulation of hormone secretion
## 252 regulation of peptide hormone secretion
## 253 regulation of RNA splicing
## 254 monosaccharide metabolic process
## 255 response to endoplasmic reticulum stress
## 256 response to metal ion
## 257 mRNA destabilization
## 258 generation of precursor metabolites and energy
## 259 regulation of mitotic nuclear division
## 260 oligosaccharide metabolic process
## 261 multi-organism process
## 262 protein localization to organelle
## 263 response to unfolded protein
## 264 response to topologically incorrect protein
## 265 energy derivation by oxidation of organic compounds
## 266 regulation of ion homeostasis
## 267 regulation of G1/S transition of mitotic cell cycle
## 268 regulation of peptide secretion
## 269 regulation of peptide transport
## 270 gene expression
## 271 regulation of RNA stability
## 272 regulation of alternative mRNA splicing, via spliceosome
## 273 optic cup morphogenesis involved in camera-type eye development
## 274 cellular zinc ion homeostasis
## 275 autonomic nervous system development
## 276 zinc ion homeostasis
## 277 vesicle localization
## 278 establishment of vesicle localization
## 279 glucose metabolic process
## 280 nucleoside diphosphate phosphorylation
## 281 transcription from RNA polymerase II promoter
## 282 regulation of gene silencing by miRNA
## 283 antigen processing and presentation of peptide antigen via MHC class II
## 284 antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## 285 energy reserve metabolic process
## 286 neuron-neuron synaptic transmission
## 287 antigen processing and presentation of exogenous peptide antigen via MHC class II
## 288 activation of protein kinase B activity
## 289 positive regulation of nucleobase-containing compound transport
## 290 positive regulation of RNA export from nucleus
## 291 regulation of nuclear division
## 292 regulation of organelle assembly
## 293 strand displacement
## 294 B cell activation involved in immune response
## 295 immunoglobulin production involved in immunoglobulin mediated immune response
## 296 somatic diversification of immune receptors via germline recombination within a single locus
## 297 nucleotide-excision repair
## 298 regulation of translational elongation
## 299 dolichol-linked oligosaccharide biosynthetic process
## 300 oligosaccharide-lipid intermediate biosynthetic process
## 301 dosage compensation
## 302 histone mRNA metabolic process
## 303 dosage compensation by inactivation of X chromosome
## 304 positive regulation of cellular carbohydrate metabolic process
## 305 RNA interference
## 306 somatic diversification of immunoglobulins
## 307 somatic hypermutation of immunoglobulin genes
## 308 somatic recombination of immunoglobulin gene segments
## 309 positive regulation of BMP signaling pathway
## 310 negative regulation of telomere maintenance via telomerase
## 311 activin receptor signaling pathway
## 312 protein localization to microtubule
## 313 isotype switching
## 314 chaperone-mediated protein folding
## 315 nuclear membrane organization
## 316 t-circle formation
## 317 positive regulation of cell cycle G1/S phase transition
## 318 negative regulation of DNA biosynthetic process
## 319 positive regulation of transcription regulatory region DNA binding
## 320 ncRNA processing
## 321 cell redox homeostasis
## 322 body fluid secretion
## 323 hydrogen peroxide metabolic process
## 324 negative regulation of calcium ion transport
## 325 cadmium ion transmembrane transport
## 326 negative regulation of zinc ion transmembrane import
## 327 detoxification of cadmium ion
## 328 regulation of stem cell proliferation
## 329 negative regulation of calcium ion import
## 330 bone growth
## 331 negative regulation of intracellular protein transport
## 332 negative regulation of chromosome organization
## 333 RNA transport
## 334 establishment of RNA localization
## 335 regulation of mRNA stability
## 336 regulation of DNA metabolic process
## 337 nuclear export
## 338 regulation of posttranscriptional gene silencing
## 339 regulation of gene silencing by RNA
## 340 negative regulation of cysteine-type endopeptidase activity involved in apoptotic process
## 341 glutamine metabolic process
## 342 protein targeting to membrane
## 343 nuclear envelope organization
## 344 tetrapyrrole metabolic process
## 345 positive regulation of posttranscriptional gene silencing
## 346 positive regulation of gene silencing by miRNA
## 347 regulation of nucleotide metabolic process
## 348 regulation of purine nucleotide metabolic process
## 349 response to inorganic substance
## 350 regulation of chromosome segregation
## 351 RNA stabilization
## 352 mRNA stabilization
## 353 positive regulation of purine nucleotide metabolic process
## 354 cellular macromolecule metabolic process
## 355 ribonucleoprotein complex localization
## 356 ribonucleoprotein complex export from nucleus
## 357 negative regulation of cell cycle G1/S phase transition
## 358 negative regulation of G1/S transition of mitotic cell cycle
## 359 regulation of protein transport
## 360 regulation of establishment of protein localization
## 361 autophagosome assembly
## 362 telomere maintenance
## 363 glutamate metabolic process
## 364 cotranslational protein targeting to membrane
## 365 epidermal growth factor receptor signaling pathway
## 366 glutamine family amino acid biosynthetic process
## 367 regulation of nucleobase-containing compound transport
## 368 tetrapyrrole biosynthetic process
## 369 ERBB signaling pathway
## 370 regulation of RNA export from nucleus
## 371 regulation of autophagosome assembly
## 372 regulation of nucleocytoplasmic transport
## 373 cellular localization
## 374 regulation of intracellular protein transport
## 375 hexose metabolic process
## 376 regulation of generation of precursor metabolites and energy
## 377 Golgi vesicle transport
## 378 regulation of protein catabolic process
## 379 ncRNA metabolic process
## 380 polysaccharide metabolic process
## 381 disaccharide metabolic process
## 382 lactose biosynthetic process
## 383 glucose catabolic process
## 384 glycolytic process
## 385 UMP biosynthetic process
## 386 ATP generation from ADP
## 387 determination of adult lifespan
## 388 pyrimidine nucleoside monophosphate metabolic process
## 389 pyrimidine nucleoside monophosphate biosynthetic process
## 390 oligosaccharide biosynthetic process
## 391 multicellular organism aging
## 392 response to estradiol
## 393 positive regulation of type I interferon production
## 394 xenobiotic transport
## 395 disaccharide biosynthetic process
## 396 nucleoside monophosphate phosphorylation
## 397 positive regulation of attachment of spindle microtubules to kinetochore
## 398 dehydroascorbic acid transport
## 399 regulation of zinc ion transport
## 400 execution phase of apoptosis
## 401 negative regulation of response to oxidative stress
## 402 negative regulation of oxidative stress-induced cell death
## 403 regulation of hydrogen peroxide-induced cell death
## 404 negative regulation of hydrogen peroxide-induced cell death
## 405 response to Thyroglobulin triiodothyronine
## 406 beta-catenin-TCF complex assembly
## 407 response to reactive oxygen species
## 408 embryonic camera-type eye development
## 409 pyruvate metabolic process
## 410 positive regulation of membrane protein ectodomain proteolysis
## 411 maintenance of location in cell
## 412 regulation of cellular response to oxidative stress
## 413 heterocycle biosynthetic process
## 414 DNA recombination
## 415 mitotic DNA integrity checkpoint
## 416 cellular component disassembly
## 417 regulation of gene silencing
## 418 cellular response to biotic stimulus
## 419 chromosome segregation
## 420 cellular nitrogen compound biosynthetic process
## 421 response to toxic substance
## 422 mitophagy
## 423 somatic diversification of immune receptors
## 424 somatic diversification of immune receptors via somatic mutation
## 425 glycogen metabolic process
## 426 cellular glucan metabolic process
## 427 mRNA polyadenylation
## 428 nuclear pore organization
## 429 regulation of histone deacetylation
## 430 negative regulation of proteasomal ubiquitin-dependent protein catabolic process
## 431 regulation of cellular respiration
## 432 RNA polyadenylation
## 433 cellular polysaccharide metabolic process
## 434 positive regulation of DNA repair
## 435 positive regulation of carbohydrate metabolic process
## 436 negative regulation of muscle cell differentiation
## 437 histone H3-K4 methylation
## 438 lung morphogenesis
## 439 protein K63-linked deubiquitination
## 440 regulation of protein deacetylation
## 441 negative regulation of proteasomal protein catabolic process
## 442 positive regulation of oxidative phosphorylation
## 443 positive regulation of response to DNA damage stimulus
## 444 nucleotide-excision repair, DNA duplex unwinding
## 445 DNA strand renaturation
## 446 synaptic transmission, dopaminergic
## 447 response to tumor cell
## 448 positive regulation of cytokine secretion involved in immune response
## 449 positive regulation of inflammatory response to antigenic stimulus
## 450 regulation of acute inflammatory response to antigenic stimulus
## 451 positive regulation of acute inflammatory response to antigenic stimulus
## 452 growth plate cartilage development
## 453 'de novo' pyrimidine nucleobase biosynthetic process
## 454 protein targeting to peroxisome
## 455 intra-Golgi vesicle-mediated transport
## 456 ER overload response
## 457 methylglyoxal metabolic process
## 458 glycolate metabolic process
## 459 auditory receptor cell fate commitment
## 460 regulation of proton transport
## 461 detoxification of copper ion
## 462 neural crest formation
## 463 monoamine transport
## 464 dopamine transport
## 465 protein import into peroxisome matrix
## 466 protein oxidation
## 467 peptidyl-cysteine oxidation
## 468 enzyme active site formation
## 469 enzyme active site formation via L-cysteine sulfinic acid
## 470 viral latency
## 471 release from viral latency
## 472 lactate biosynthetic process
## 473 forebrain radial glial cell differentiation
## 474 protein repair
## 475 targeting of mRNA for destruction involved in RNA interference
## 476 nuclear pore distribution
## 477 nuclear-transcribed mRNA catabolic process, deadenylation-independent decay
## 478 deadenylation-independent decapping of nuclear-transcribed mRNA
## 479 sequestering of zinc ion
## 480 positive regulation of interferon-alpha production
## 481 positive regulation of interleukin-18 production
## 482 negative regulation of protein sumoylation
## 483 positive regulation of cellular amine metabolic process
## 484 regulation of NAD(P)H oxidase activity
## 485 positive regulation of NAD(P)H oxidase activity
## 486 hair cell differentiation
## 487 monoubiquitinated protein deubiquitination
## 488 positive regulation of interferon-beta secretion
## 489 gene conversion
## 490 cellular response to glyoxal
## 491 peptidyl-cysteine deglycation
## 492 peptidyl-arginine deglycation
## 493 peptidyl-lysine deglycation
## 494 protein deglycation, glyoxal removal
## 495 protein deglycation, methylglyoxal removal
## 496 glutathione deglycation
## 497 DNA-templated viral transcription
## 498 regulation of dopamine metabolic process
## 499 auditory receptor cell differentiation
## 500 auditory receptor cell fate determination
## 501 peroxisomal transport
## 502 positive regulation by host of viral process
## 503 G-quadruplex DNA unwinding
## 504 positive regulation by host of viral genome replication
## 505 modulation by host of viral molecular function
## 506 positive regulation of Notch signaling pathway
## 507 positive regulation of cellular amino acid metabolic process
## 508 positive regulation of dopamine metabolic process
## 509 nucleobase biosynthetic process
## 510 negative regulation of alpha-beta T cell proliferation
## 511 response to copper ion
## 512 response to mercury ion
## 513 negative regulation of protein export from nucleus
## 514 platelet-derived growth factor receptor signaling pathway
## 515 determination of ventral identity
## 516 detoxification of mercury ion
## 517 nuclear pore complex assembly
## 518 dopamine uptake involved in synaptic transmission
## 519 catecholamine transport
## 520 cartilage development involved in endochondral bone morphogenesis
## 521 regulation of DNA strand elongation
## 522 pattern specification involved in kidney development
## 523 hematopoietic stem cell homeostasis
## 524 tRNA aminoacylation for mitochondrial protein translation
## 525 cellular response to hydrogen peroxide
## 526 global genome nucleotide-excision repair
## 527 cellular response to tumor cell
## 528 cellular response to X-ray
## 529 comma-shaped body morphogenesis
## 530 S-shaped body morphogenesis
## 531 loop of Henle development
## 532 nephron tubule formation
## 533 specification of nephron tubule identity
## 534 specification of loop of Henle identity
## 535 metanephric nephron tubule development
## 536 metanephric nephron tubule morphogenesis
## 537 negative regulation of protein deubiquitination
## 538 positive regulation of G1/S transition of mitotic cell cycle
## 539 positive regulation of response to reactive oxygen species
## 540 negative regulation of hematopoietic progenitor cell differentiation
## 541 positive regulation of superoxide dismutase activity
## 542 negative regulation of organelle assembly
## 543 positive regulation of interferon-alpha secretion
## 544 negative regulation of death-inducing signaling complex assembly
## 545 negative regulation of protein K48-linked deubiquitination
## 546 negative regulation of TRAIL-activated apoptotic signaling pathway
## 547 positive regulation of pyrroline-5-carboxylate reductase activity
## 548 positive regulation of tyrosine 3-monooxygenase activity
## 549 positive regulation of dopamine biosynthetic process
## 550 positive regulation of L-dopa biosynthetic process
## 551 positive regulation of L-dopa decarboxylase activity
## 552 positive regulation of tumor necrosis factor secretion
## 553 positive regulation of viral translation
## 554 regulation of RNA binding
## 555 negative regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## 556 regulation of lymphoid progenitor cell differentiation
## 557 regulation of polysome binding
## 558 positive regulation of polysome binding
## 559 modulation by host of RNA binding by virus
## 560 modulation by host of viral RNA-binding transcription factor activity
## 561 regulation of ubiquitin-specific protease activity
## 562 negative regulation of ubiquitin-specific protease activity
## 563 regulation of oxidative phosphorylation uncoupler activity
## 564 positive regulation of oxidative phosphorylation uncoupler activity
## 565 positive regulation of interleukin-6 secretion
## 566 positive regulation of androgen receptor activity
## 567 regulation of pro-B cell differentiation
## 568 negative regulation of pro-B cell differentiation
## 569 negative regulation of forebrain neuron differentiation
## 570 negative regulation of inner ear receptor cell differentiation
## 571 negative regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## 572 regulation of cellular catabolic process
## 573 regulation of neurotransmitter levels
## 574 glycoprotein biosynthetic process
## 575 eye morphogenesis
## 576 regulation of membrane protein ectodomain proteolysis
## 577 aromatic compound biosynthetic process
## 578 peptidyl-proline modification
## 579 embryonic camera-type eye morphogenesis
## 580 negative regulation of cysteine-type endopeptidase activity
## 581 morphogenesis of an epithelial sheet
## 582 protein monoubiquitination
## 583 protein deglycosylation
## 584 retrograde vesicle-mediated transport, Golgi to ER
## 585 spermatid development
## 586 cell recognition
## 587 glutamine family amino acid catabolic process
## 588 regulation of centrosome cycle
## 589 mitotic DNA damage checkpoint
## 590 positive regulation of translation
## 591 primary metabolic process
## 592 mitotic cell cycle process
## 593 positive regulation of cellular amide metabolic process
## 594 stem cell differentiation
## 595 protein tetramerization
## 596 organic substance metabolic process
## 597 regulation of cell cycle G1/S phase transition
## 598 macromolecule metabolic process
## 599 macromolecular complex subunit organization
## 600 rRNA modification
## 601 protein N-linked glycosylation
## 602 rRNA methylation
## 603 positive regulation of gene expression, epigenetic
## 604 calcium ion import
## 605 cell cycle
## 606 regulation of catabolic process
## 607 RNA methylation
## 608 regulation of ubiquitin-protein transferase activity
## 609 regulation of signal transduction by p53 class mediator
## 610 positive regulation of secretion
## 611 positive regulation of response to biotic stimulus
## 612 cellular aldehyde metabolic process
## 613 pyrimidine nucleobase metabolic process
## 614 L-ascorbic acid metabolic process
## 615 protein localization to cytoskeleton
## 616 transport of virus
## 617 regulation of calcium ion import
## 618 positive regulation of RIG-I signaling pathway
## 619 regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## 620 negative regulation of cation transmembrane transport
## 621 nucleobase-containing compound biosynthetic process
## 622 cell cycle process
## 623 lens morphogenesis in camera-type eye
## 624 nicotinamide nucleotide metabolic process
## 625 embryonic eye morphogenesis
## 626 pyridine-containing compound metabolic process
## 627 organic cyclic compound biosynthetic process
## 628 RNA modification
## 629 regulation of proteasomal protein catabolic process
## 630 fertilization
## 631 protein oligomerization
## 632 G2/M transition of mitotic cell cycle
## 633 cell cycle G2/M phase transition
## 634 bone morphogenesis
## 635 cellular metabolic process
## 636 intracellular transport
## 637 regulation of cellular response to stress
## 638 cellular component biogenesis
## 639 autophagy
## 640 ERAD pathway
## 641 positive regulation of synaptic transmission, glutamatergic
## 642 regulation of response to reactive oxygen species
## 643 nucleoside triphosphate metabolic process
## 644 establishment of localization in cell
## 645 metabolic process
## 646 smoothened signaling pathway
## 647 viral genome replication
## 648 protein depolymerization
## 649 reactive oxygen species metabolic process
## 650 chromatin silencing at rDNA
## 651 axis specification
## 652 digestive system process
## 653 heterochromatin assembly
## 654 pericentric heterochromatin assembly
## 655 telomeric heterochromatin assembly
## 656 regulation of intracellular steroid hormone receptor signaling pathway
## 657 positive regulation of urine volume
## 658 positive regulation of renal sodium excretion
## 659 negative regulation of fibroblast proliferation
## 660 neuron fate determination
## 661 positive regulation of nuclear division
## 662 regulation of chromosome condensation
## 663 protein K48-linked ubiquitination
## 664 establishment of epithelial cell polarity
## 665 regulation of spindle assembly
## 666 regulation of centromere complex assembly
## 667 regulation of mitotic spindle assembly
## 668 positive regulation of extrinsic apoptotic signaling pathway via death domain receptors
## 669 negative regulation of chromosome condensation
## 670 positive regulation of collecting lymphatic vessel constriction
## 671 positive regulation of stem cell proliferation
## 672 mitotic cell cycle
## 673 regulation of intracellular transport
## 674 bone development
## 675 protein peptidyl-prolyl isomerization
## 676 water-soluble vitamin metabolic process
## 677 regulation of attachment of spindle microtubules to kinetochore
## 678 regulation of protein secretion
## 679 carbohydrate biosynthetic process
## 680 mitotic G1 DNA damage checkpoint
## 681 multicellular organism growth
## 682 response to dsRNA
## 683 G1 DNA damage checkpoint
## 684 maintenance of location
## 685 cellular response to dsRNA
## 686 detoxification
## 687 sister chromatid cohesion
## 688 negative regulation of protein catabolic process
## 689 negative regulation of cellular protein localization
## 690 nucleoside monophosphate metabolic process
## 691 ribonucleoside monophosphate metabolic process
## 692 positive regulation of protein transport
## 693 positive regulation of establishment of protein localization
## 694 macromolecular complex disassembly
## 695 nucleoside phosphate metabolic process
## 696 nucleotide metabolic process
## 697 establishment of organelle localization
## 698 porphyrin-containing compound metabolic process
## 699 porphyrin-containing compound biosynthetic process
## 700 heme biosynthetic process
## 701 peptidyl-arginine modification
## 702 hexose catabolic process
## 703 chromatin remodeling at centromere
## 704 endocytic recycling
## 705 response to progesterone
## 706 regulation of DNA-templated transcription, elongation
## 707 cellular carbohydrate biosynthetic process
## 708 negative regulation of ion transmembrane transport
## 709 regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## 710 regulation of RIG-I signaling pathway
## 711 heme metabolic process
## 712 pigment metabolic process
## 713 negative regulation of ion transport
## 714 multi-organism transport
## 715 pigment biosynthetic process
## 716 regulation of insulin receptor signaling pathway
## 717 positive regulation of insulin receptor signaling pathway
## 718 carbohydrate phosphorylation
## 719 negative regulation of neurotransmitter secretion
## 720 negative regulation of neurotransmitter transport
## 721 protein K48-linked deubiquitination
## 722 negative regulation of proteolysis involved in cellular protein catabolic process
## 723 negative regulation of translation
## 724 negative regulation of cellular amide metabolic process
## 725 ribose phosphate metabolic process
## 726 positive regulation of intracellular transport
## 727 ribosome biogenesis
## 728 intrinsic apoptotic signaling pathway
## 729 macromitophagy
## 730 endochondral bone growth
## 731 tricarboxylic acid cycle
## 732 citrate metabolic process
## 733 base-excision repair
## 734 tRNA export from nucleus
## 735 regulation of translational fidelity
## 736 segment specification
## 737 cobalamin metabolic process
## 738 peptidyl-asparagine modification
## 739 peptidyl-cysteine modification
## 740 protein N-linked glycosylation via asparagine
## 741 protein maturation by protein folding
## 742 insulin processing
## 743 platelet formation
## 744 replication fork processing
## 745 regulation of appetite
## 746 negative regulation of appetite
## 747 negative regulation of response to nutrient levels
## 748 regulation of interferon-beta production
## 749 positive regulation of interferon-beta production
## 750 platelet morphogenesis
## 751 PERK-mediated unfolded protein response
## 752 fluid transport
## 753 response to exogenous dsRNA
## 754 regulation of CD8-positive, alpha-beta T cell differentiation
## 755 DNA-dependent DNA replication maintenance of fidelity
## 756 negative regulation of cyclin-dependent protein serine/threonine kinase activity
## 757 release of sequestered calcium ion into cytosol
## 758 centrosome duplication
## 759 negative regulation of cell division
## 760 synaptic transmission, glycinergic
## 761 radial glial cell differentiation
## 762 regulation of transcription from RNA polymerase II promoter in response to arsenic-containing substance
## 763 glycine secretion, neurotransmission
## 764 cellular response to exogenous dsRNA
## 765 tricarboxylic acid metabolic process
## 766 protein localization to vacuole
## 767 intracellular transport of virus
## 768 extrinsic apoptotic signaling pathway in absence of ligand
## 769 mitophagy in response to mitochondrial depolarization
## 770 response to mitochondrial depolarisation
## 771 neurotransmitter reuptake
## 772 insulin metabolic process
## 773 regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## 774 negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## 775 multi-organism intracellular transport
## 776 positive regulation of TRAIL-activated apoptotic signaling pathway
## 777 mannose trimming involved in glycoprotein ERAD pathway
## 778 response to glycoprotein
## 779 positive regulation of receptor activity
## 780 regulation of androgen receptor activity
## 781 regulation of CD8-positive, alpha-beta T cell activation
## 782 response to radiation
## 783 negative regulation of organelle organization
## 784 regulation of DNA replication
## 785 skeletal system morphogenesis
## 786 positive regulation of secretion by cell
## 787 transcription from RNA polymerase III promoter
## 788 digestion
## 789 cyclic nucleotide biosynthetic process
## 790 O-glycan processing
## 791 negative regulation of BMP signaling pathway
## 792 cellular protein complex localization
## 793 spermatid differentiation
## 794 positive regulation of viral transcription
## 795 cyclic purine nucleotide metabolic process
## 796 regulation of extrinsic apoptotic signaling pathway via death domain receptors
## 797 regulation of oxidative stress-induced cell death
## 798 tRNA metabolic process
## 799 protein folding
## 800 lens development in camera-type eye
## 801 positive regulation of protein secretion
## 802 double-strand break repair via homologous recombination
## 803 recombinational repair
## 804 response to hydrogen peroxide
## 805 response to cadmium ion
## 806 positive regulation of nucleocytoplasmic transport
## 807 embryonic camera-type eye formation
## 808 organic acid transmembrane transport
## 809 carboxylic acid transmembrane transport
## 810 intrinsic apoptotic signaling pathway in response to DNA damage
## 811 meiotic cell cycle
## 812 DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest
## 813 regulation of telomere maintenance
## 814 regulation of proteasomal ubiquitin-dependent protein catabolic process
## 815 oligodendrocyte differentiation
## 816 protein heterooligomerization
## 817 signal transduction involved in cell cycle checkpoint
## 818 signal transduction involved in DNA damage checkpoint
## 819 signal transduction involved in mitotic G1 DNA damage checkpoint
## 820 regulation of telomere maintenance via telomere lengthening
## 821 ribosomal small subunit assembly
## 822 embryonic axis specification
## 823 nucleotide-excision repair, DNA damage recognition
## 824 pseudouridine synthesis
## 825 response to ischemia
## 826 regulation of cardioblast proliferation
## 827 regulation of secondary heart field cardioblast proliferation
## 828 chondrocyte differentiation involved in endochondral bone morphogenesis
## 829 growth plate cartilage chondrocyte differentiation
## 830 growth plate cartilage morphogenesis
## 831 growth plate cartilage chondrocyte morphogenesis
## 832 chondrocyte development involved in endochondral bone morphogenesis
## 833 UDP-N-acetylglucosamine biosynthetic process
## 834 fumarate metabolic process
## 835 malate metabolic process
## 836 IMP biosynthetic process
## 837 DNA ligation
## 838 DNA strand elongation involved in DNA replication
## 839 lagging strand elongation
## 840 nucleotide-excision repair, DNA gap filling
## 841 glutamyl-tRNA aminoacylation
## 842 threonyl-tRNA aminoacylation
## 843 tryptophanyl-tRNA aminoacylation
## 844 protein ADP-ribosylation
## 845 dolichyl diphosphate biosynthetic process
## 846 SRP-dependent cotranslational protein targeting to membrane, translocation
## 847 superoxide metabolic process
## 848 water transport
## 849 cellular copper ion homeostasis
## 850 centriole replication
## 851 endomitotic cell cycle
## 852 coenzyme catabolic process
## 853 cobalamin biosynthetic process
## 854 epidermal cell fate specification
## 855 regulation of hydrogen peroxide metabolic process
## 856 protein kinase A signaling
## 857 regulation of centrosome duplication
## 858 regulation of SMAD protein complex assembly
## 859 regulation of ubiquitin homeostasis
## 860 DNA integration
## 861 polyol transport
## 862 glycerol transport
## 863 urea transport
## 864 polyprenol metabolic process
## 865 polyprenol biosynthetic process
## 866 peptidyl-serine ADP-ribosylation
## 867 removal of superoxide radicals
## 868 one-carbon compound transport
## 869 corpus callosum morphogenesis
## 870 signal transduction involved in regulation of gene expression
## 871 pancreatic juice secretion
## 872 prenylated protein catabolic process
## 873 positive regulation of histone deacetylation
## 874 tRNA pseudouridine synthesis
## 875 telomere maintenance via semi-conservative replication
## 876 regulation of synaptic transmission, dopaminergic
## 877 positive regulation of synaptic transmission, dopaminergic
## 878 purine nucleotide salvage
## 879 IMP salvage
## 880 endoplasmic reticulum calcium ion homeostasis
## 881 cytokinetic process
## 882 secretion by tissue
## 883 regulation of intracellular estrogen receptor signaling pathway
## 884 positive regulation of intracellular estrogen receptor signaling pathway
## 885 nuclear DNA replication
## 886 floor plate development
## 887 positive regulation of dopamine secretion
## 888 positive regulation of catecholamine secretion
## 889 regulation of Arp2/3 complex-mediated actin nucleation
## 890 synaptic transmission, glutamatergic
## 891 protein K29-linked ubiquitination
## 892 T-helper 2 cell cytokine production
## 893 cleavage furrow ingression
## 894 medium-chain fatty-acyl-CoA metabolic process
## 895 medium-chain fatty-acyl-CoA catabolic process
## 896 long-chain fatty-acyl-CoA catabolic process
## 897 peptidyl-serine autophosphorylation
## 898 TORC2 signaling
## 899 mature ribosome assembly
## 900 long-chain fatty acid biosynthetic process
## 901 glucoside transport
## 902 purine-containing compound salvage
## 903 mitochondrial DNA repair
## 904 protein K27-linked ubiquitination
## 905 cell cycle DNA replication
## 906 trans-Golgi network to recycling endosome transport
## 907 negative regulation of translational elongation
## 908 positive regulation of calcium ion-dependent exocytosis
## 909 amino sugar biosynthetic process
## 910 regulation of centriole replication
## 911 vesicle fusion with Golgi apparatus
## 912 organelle inheritance
## 913 Golgi inheritance
## 914 DNA ligation involved in DNA repair
## 915 regulation of actin nucleation
## 916 cofactor catabolic process
## 917 response to mineralocorticoid
## 918 protein delipidation
## 919 medium-chain fatty acid biosynthetic process
## 920 positive regulation of amine transport
## 921 copper ion homeostasis
## 922 Golgi to transport vesicle transport
## 923 long term synaptic depression
## 924 regulation of SMAD protein import into nucleus
## 925 positive regulation of SMAD protein import into nucleus
## 926 cartilage morphogenesis
## 927 regulation of ER to Golgi vesicle-mediated transport
## 928 regulation of mitochondrial translation
## 929 positive regulation of mitochondrial translation
## 930 synaptic vesicle budding
## 931 mitochondrial threonyl-tRNA aminoacylation
## 932 protein poly-ADP-ribosylation
## 933 protein K11-linked ubiquitination
## 934 protein ufmylation
## 935 CAAX-box protein processing
## 936 nuclear inner membrane organization
## 937 urea transmembrane transport
## 938 positive regulation of secondary heart field cardioblast proliferation
## 939 maintenance of protein location in mitochondrion
## 940 protein K6-linked ubiquitination
## 941 positive regulation of deacetylase activity
## 942 Golgi disassembly
## 943 negative regulation of mitochondrial fission
## 944 positive regulation of protein deacetylation
## 945 lysosomal membrane organization
## 946 cellular response to toxic substance
## 947 histone H3-K4 monomethylation
## 948 centriole assembly
## 949 mitochondrion to lysosome transport
## 950 palmitic acid biosynthetic process
## 951 positive regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## 952 glycoside transport
## 953 regulation of histone deacetylase activity
## 954 positive regulation of histone deacetylase activity
## 955 mitotic cytokinetic process
## 956 protein localization to cell leading edge
## 957 regulation of protein monoubiquitination
## 958 positive regulation of protein monoubiquitination
## 959 positive regulation of ER to Golgi vesicle-mediated transport
## 960 negative regulation of mitophagy
## 961 regulation of single strand break repair
## 962 positive regulation of single strand break repair
## 963 positive regulation of cristae formation
## 964 response to aldosterone
## 965 positive regulation of free ubiquitin chain polymerization
## 966 response to beta-amyloid
## 967 cellular response to beta-amyloid
## 968 positive regulation of chaperone-mediated autophagy
## 969 regulation of myofibroblast differentiation
## 970 positive regulation of myofibroblast differentiation
## 971 positive regulation of protein localization to Cajal body
## 972 positive regulation of telomerase RNA localization to Cajal body
## 973 cellular response to hydrogen sulfide
## 974 G-protein coupled receptor catabolic process
## 975 mitotic cleavage furrow ingression
## 976 protein K33-linked ubiquitination
## 977 protein K69-linked ufmylation
## 978 vesicle fusion with endoplasmic reticulum-Golgi intermediate compartment (ERGIC) membrane
## 979 regulation of DNA damage checkpoint
## 980 regulation of cell proliferation involved in heart morphogenesis
## 981 regulation of alpha-amino-3-hydroxy-5-methyl-4-isoxazole propionate selective glutamate receptor activity
## 982 positive regulation of proteasomal ubiquitin-dependent protein catabolic process involved in cellular response to hypoxia
## 983 negative regulation of ATP biosynthetic process
## 984 response to light stimulus
## 985 nucleic acid phosphodiester bond hydrolysis
## 986 cellular response to nutrient levels
## 987 regulation of gene expression, epigenetic
## 988 ribonucleotide metabolic process
## 989 regulation of hormone levels
## 990 nucleotide biosynthetic process
## 991 nucleoside phosphate biosynthetic process
## 992 regulation of cysteine-type endopeptidase activity involved in apoptotic process
## 993 regulation of mitotic cell cycle
## 994 positive regulation of mitochondrion organization
## 995 response to insulin
## 996 protein glycosylation
## 997 mitotic cell cycle checkpoint
## 998 aging
## 999 carbohydrate derivative biosynthetic process
## 1000 cellular component assembly
## 1001 negative regulation of gene expression
## 1002 response to mechanical stimulus
## 1003 cellular response to insulin stimulus
## 1004 peptide metabolic process
## 1005 NADH metabolic process
## 1006 cellular iron ion homeostasis
## 1007 Golgi to endosome transport
## 1008 membrane invagination
## 1009 centriole-centriole cohesion
## 1010 epithelial structure maintenance
## 1011 positive regulation of sodium ion transport
## 1012 proteoglycan biosynthetic process
## 1013 cortical cytoskeleton organization
## 1014 cortical actin cytoskeleton organization
## 1015 ciliary basal body organization
## 1016 cellular metabolic compound salvage
## 1017 nucleotide salvage
## 1018 regulation of alpha-beta T cell proliferation
## 1019 cytoplasmic sequestering of protein
## 1020 iron ion homeostasis
## 1021 positive regulation of nuclear-transcribed mRNA poly(A) tail shortening
## 1022 positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## 1023 glucosamine-containing compound metabolic process
## 1024 negative regulation of neural precursor cell proliferation
## 1025 regulation of ATP biosynthetic process
## 1026 regulation of interleukin-10 secretion
## 1027 regulation of cellular localization
## 1028 regulation of organelle organization
## 1029 response to oxidative stress
## 1030 glycoprotein metabolic process
## 1031 cellular amino acid biosynthetic process
## 1032 dicarboxylic acid metabolic process
## 1033 nucleotide phosphorylation
## 1034 alpha-amino acid biosynthetic process
## 1035 regulation of carbohydrate metabolic process
## 1036 vitamin metabolic process
## 1037 adult locomotory behavior
## 1038 adult behavior
## 1039 cellular respiration
## 1040 amino sugar metabolic process
## 1041 DNA replication-independent nucleosome assembly
## 1042 tRNA aminoacylation for protein translation
## 1043 NADP metabolic process
## 1044 ectoderm development
## 1045 DNA replication-independent nucleosome organization
## 1046 ribosome assembly
## 1047 amino acid activation
## 1048 tRNA aminoacylation
## 1049 monosaccharide catabolic process
## 1050 regulation of mitotic centrosome separation
## 1051 positive regulation of lyase activity
## 1052 positive regulation of chromosome segregation
## 1053 synapse maturation
## 1054 endochondral bone morphogenesis
## 1055 ureter development
## 1056 vesicle cytoskeletal trafficking
## 1057 negative regulation of cellular protein catabolic process
## 1058 nucleoside metabolic process
## 1059 ribonucleoside metabolic process
## 1060 negative regulation of stress-activated MAPK cascade
## 1061 IRE1-mediated unfolded protein response
## 1062 negative regulation of JNK cascade
## 1063 pyrimidine nucleoside metabolic process
## 1064 Rho protein signal transduction
## 1065 embryo implantation
## 1066 primary alcohol metabolic process
## 1067 pyrimidine ribonucleoside metabolic process
## 1068 pyrimidine ribonucleoside biosynthetic process
## 1069 pyrimidine nucleoside biosynthetic process
## 1070 regulation of neurotransmitter secretion
## 1071 developmental cell growth
## 1072 negative regulation of oligodendrocyte differentiation
## 1073 regulation of neurotransmitter transport
## 1074 alpha-amino acid catabolic process
## 1075 ossification
## 1076 microtubule-based movement
## 1077 cellular protein complex disassembly
## 1078 nucleobase-containing small molecule metabolic process
## 1079 mRNA catabolic process
## 1080 neurotransmitter transport
## 1081 negative regulation of macromolecule metabolic process
## 1082 negative regulation of peptidase activity
## 1083 negative regulation of endopeptidase activity
## 1084 positive regulation of cell cycle arrest
## 1085 macroautophagy
## 1086 positive regulation of cellular catabolic process
## 1087 positive regulation of catabolic process
## 1088 Notch signaling pathway
## 1089 response to nutrient
## 1090 nucleoside diphosphate metabolic process
## 1091 posttranscriptional gene silencing
## 1092 posttranscriptional gene silencing by RNA
## 1093 membrane depolarization
## 1094 regulation of stem cell differentiation
## 1095 cell cycle arrest
## 1096 ATP metabolic process
## 1097 glycosyl compound metabolic process
## 1098 in utero embryonic development
## 1099 cellular response to extracellular stimulus
## 1100 nucleoside triphosphate biosynthetic process
## 1101 regulation of viral transcription
## 1102 intracellular protein transmembrane transport
## 1103 protein complex disassembly
## 1104 tRNA modification
## 1105 regulation of TOR signaling
## 1106 negative regulation of homeostatic process
## 1107 regulation of mitophagy
## 1108 protein homooligomerization
## 1109 activation of MAPKK activity
## 1110 spliceosomal snRNP assembly
## 1111 maturation of SSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 1112 regulation of cytokine secretion involved in immune response
## 1113 actin polymerization or depolymerization
## 1114 NAD biosynthetic process
## 1115 proximal/distal pattern formation
## 1116 response to X-ray
## 1117 positive regulation of cardiac muscle hypertrophy
## 1118 regulation of tumor necrosis factor-mediated signaling pathway
## 1119 retina layer formation
## 1120 heparan sulfate proteoglycan biosynthetic process
## 1121 glycine transport
## 1122 iron-sulfur cluster assembly
## 1123 4-hydroxyproline metabolic process
## 1124 glial cell fate commitment
## 1125 central nervous system myelination
## 1126 positive regulation of blood coagulation
## 1127 heparan sulfate proteoglycan metabolic process
## 1128 negative regulation of histone deacetylation
## 1129 regulation of mRNA 3'-end processing
## 1130 regulation of response to food
## 1131 regulation of response to nutrient levels
## 1132 regulation of interferon-alpha production
## 1133 positive regulation of monooxygenase activity
## 1134 regulation of activin receptor signaling pathway
## 1135 negative regulation of activin receptor signaling pathway
## 1136 snRNA 3'-end processing
## 1137 protein folding in endoplasmic reticulum
## 1138 stress granule disassembly
## 1139 mechanoreceptor differentiation
## 1140 hydrogen peroxide catabolic process
## 1141 nose morphogenesis
## 1142 ncRNA 3'-end processing
## 1143 modulation by host of viral process
## 1144 mitotic G2/M transition checkpoint
## 1145 modulation by host of viral genome replication
## 1146 regulation of protein export from nucleus
## 1147 determination of dorsal/ventral asymmetry
## 1148 positive regulation of coagulation
## 1149 sequestering of metal ion
## 1150 inner ear receptor cell differentiation
## 1151 inner ear receptor cell development
## 1152 inner ear receptor stereocilium organization
## 1153 lens induction in camera-type eye
## 1154 face development
## 1155 face morphogenesis
## 1156 pyroptosis
## 1157 metanephric nephron epithelium development
## 1158 regulation of protein deubiquitination
## 1159 positive regulation of sodium ion transmembrane transport
## 1160 negative regulation of cyclin-dependent protein kinase activity
## 1161 positive regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## 1162 positive regulation of lymphocyte migration
## 1163 regulation of T cell migration
## 1164 positive regulation of T cell migration
## 1165 negative regulation of catabolic process
## 1166 regulation of protein targeting to mitochondrion
## 1167 positive regulation of production of molecular mediator of immune response
## 1168 positive regulation of cytokine production involved in immune response
## 1169 pyrimidine nucleotide metabolic process
## 1170 pyrimidine nucleotide biosynthetic process
## 1171 insulin receptor signaling pathway
## 1172 pyrimidine ribonucleotide metabolic process
## 1173 pyrimidine ribonucleotide biosynthetic process
## 1174 regulation of glucose metabolic process
## 1175 protein autoprocessing
## 1176 signal transduction by p53 class mediator
## 1177 regulation of establishment of protein localization to mitochondrion
## 1178 ER-nucleus signaling pathway
## 1179 central nervous system neuron development
## 1180 regulation of protein homodimerization activity
## 1181 positive regulation of cyclin-dependent protein serine/threonine kinase activity
## 1182 regulation of lyase activity
## 1183 positive regulation of cyclin-dependent protein kinase activity
## 1184 regulation of protein metabolic process
## 1185 cell killing
## 1186 negative regulation of systemic arterial blood pressure
## 1187 amino acid transmembrane transport
## 1188 proteoglycan metabolic process
## 1189 cGMP biosynthetic process
## 1190 microtubule depolymerization
## 1191 receptor guanylyl cyclase signaling pathway
## 1192 nucleotide-sugar metabolic process
## 1193 synaptic vesicle uncoating
## 1194 establishment or maintenance of microtubule cytoskeleton polarity
## 1195 establishment or maintenance of cytoskeleton polarity
## 1196 microtubule polymerization or depolymerization
## 1197 circadian regulation of gene expression
## 1198 ribonucleoprotein complex disassembly
## 1199 regulation of mitotic sister chromatid segregation
## 1200 regulation of tissue remodeling
## 1201 regulation of vascular permeability
## 1202 cGMP metabolic process
## 1203 regulation of bone remodeling
## 1204 neuron fate commitment
## 1205 cell growth involved in cardiac muscle cell development
## 1206 bicellular tight junction assembly
## 1207 small RNA loading onto RISC
## 1208 clathrin coat disassembly
## 1209 vesicle uncoating
## 1210 positive regulation of reactive oxygen species biosynthetic process
## 1211 regulation of protein localization to cilium
## 1212 positive regulation of protein localization to cilium
## 1213 regulation of collecting lymphatic vessel constriction
## 1214 organic substance biosynthetic process
## 1215 signal transduction in response to DNA damage
## 1216 positive regulation of synaptic transmission
## 1217 protein stabilization
## 1218 positive regulation of protein targeting to mitochondrion
## 1219 oxidation-reduction process
## 1220 ribonucleoside triphosphate metabolic process
## 1221 nucleobase-containing compound transport
## 1222 ribonucleotide biosynthetic process
## 1223 ribose phosphate biosynthetic process
## 1224 positive regulation of establishment of protein localization to mitochondrion
## 1225 regulation of cysteine-type endopeptidase activity
## 1226 macromolecule biosynthetic process
## 1227 cellular macromolecule biosynthetic process
## 1228 ameboidal-type cell migration
## 1229 positive regulation of autophagy
## 1230 regulation of defense response to virus
## 1231 RNA catabolic process
## 1232 regulation of protein stability
## 1233 response to peptide hormone
## 1234 organelle localization
## 1235 positive regulation of ion transport
## 1236 organonitrogen compound biosynthetic process
## 1237 regulation of chromosome organization
## 1238 cardiac muscle cell differentiation
## 1239 regulation of protein localization
## 1240 translation
## 1241 negative regulation of proteolysis
## 1242 sensory organ morphogenesis
## 1243 response to osmotic stress
## 1244 glutamine family amino acid metabolic process
## 1245 nucleoside monophosphate biosynthetic process
## 1246 ribonucleoside monophosphate biosynthetic process
## 1247 regulation of glucose transport
## 1248 regulation of telomere maintenance via telomerase
## 1249 modification of morphology or physiology of other organism
## 1250 regulation of megakaryocyte differentiation
## 1251 production of small RNA involved in gene silencing by RNA
## 1252 regulation of response to oxidative stress
## 1253 purine nucleoside triphosphate metabolic process
## 1254 purine ribonucleoside triphosphate metabolic process
## 1255 regulation of proteolysis involved in cellular protein catabolic process
## 1256 nuclear-transcribed mRNA catabolic process
## 1257 lymphocyte mediated immunity
## 1258 regulation of peptidase activity
## 1259 cellular amide metabolic process
## 1260 proteolysis
## 1261 chromosome organization
## 1262 retina homeostasis
## 1263 regulation of type 2 immune response
## 1264 regulation of T-helper 2 cell differentiation
## 1265 pyrimidine-containing compound biosynthetic process
## 1266 positive regulation of transport
## 1267 biosynthetic process
## 1268 protein processing
## 1269 regulation of endopeptidase activity
## 1270 oxidoreduction coenzyme metabolic process
## 1271 mitotic spindle organization
## 1272 tumor necrosis factor-mediated signaling pathway
## 1273 microtubule cytoskeleton organization involved in mitosis
## 1274 cellular biosynthetic process
## 1275 cellular amino acid metabolic process
## 1276 carbohydrate derivative metabolic process
## 1277 regulation of cellular protein metabolic process
## 1278 negative regulation of catalytic activity
## 1279 vacuolar transport
## 1280 nucleobase metabolic process
## 1281 tRNA methylation
## 1282 regulation of type I interferon production
## 1283 modulation by host of viral transcription
## 1284 negative regulation of smooth muscle cell proliferation
## 1285 modulation of transcription in other organism involved in symbiotic interaction
## 1286 mucopolysaccharide metabolic process
## 1287 peptide biosynthetic process
## 1288 negative regulation of RNA metabolic process
## 1289 cofactor metabolic process
## 1290 regulation of cyclin-dependent protein serine/threonine kinase activity
## 1291 humoral immune response mediated by circulating immunoglobulin
## 1292 protein transmembrane transport
## 1293 negative regulation of hydrolase activity
## 1294 positive regulation of cell cycle process
## 1295 mitotic nuclear division
## 1296 skeletal muscle tissue development
## 1297 negative regulation of cell cycle phase transition
## 1298 negative regulation of mitotic cell cycle phase transition
## 1299 N-glycan processing
## 1300 glutathione metabolic process
## 1301 lysosomal transport
## 1302 specification of symmetry
## 1303 determination of bilateral symmetry
## 1304 nicotinamide nucleotide biosynthetic process
## 1305 negative regulation of ossification
## 1306 ER-associated ubiquitin-dependent protein catabolic process
## 1307 regulation of interleukin-5 production
## 1308 positive regulation of interleukin-5 production
## 1309 segmentation
## 1310 regulation of urine volume
## 1311 regulation of renal sodium excretion
## 1312 protein alpha-1,2-demannosylation
## 1313 regulation of excretion
## 1314 positive regulation of vacuole organization
## 1315 positive regulation of viral genome replication
## 1316 negative regulation of osteoblast differentiation
## 1317 positive regulation of cilium assembly
## 1318 positive regulation of translational initiation
## 1319 vesicle transport along microtubule
## 1320 pyridine-containing compound biosynthetic process
## 1321 RNA phosphodiester bond hydrolysis, endonucleolytic
## 1322 regulation of renal system process
## 1323 regulation of protein acetylation
## 1324 regulation of cilium assembly
## 1325 epithelial cell apoptotic process
## 1326 regulation of T-helper 2 cell cytokine production
## 1327 positive regulation of T-helper 2 cell cytokine production
## 1328 positive regulation of autophagosome assembly
## 1329 positive regulation of cellular protein localization
## 1330 purine nucleoside monophosphate metabolic process
## 1331 purine ribonucleoside monophosphate metabolic process
## 1332 regulation of response to biotic stimulus
## 1333 circadian rhythm
## 1334 proteasomal protein catabolic process
## 1335 proteasome-mediated ubiquitin-dependent protein catabolic process
## 1336 cellular response to starvation
## 1337 cellular amino acid catabolic process
## 1338 negative regulation of cellular catabolic process
## 1339 organic acid metabolic process
## 1340 oxoacid metabolic process
## 1341 purine nucleotide metabolic process
## 1342 purine ribonucleotide metabolic process
## 1343 T cell cytokine production
## 1344 regulation of inflammatory response to antigenic stimulus
## 1345 peroxisome organization
## 1346 regulation of epidermal growth factor-activated receptor activity
## 1347 anterior/posterior axis specification
## 1348 regulation of Schwann cell proliferation
## 1349 negative regulation of Schwann cell proliferation
## 1350 oligodendrocyte development
## 1351 mevalonate transport
## 1352 snRNA processing
## 1353 receptor-mediated endocytosis of virus by host cell
## 1354 insulin secretion
## 1355 maturation of SSU-rRNA
## 1356 killing of cells of other organism
## 1357 leptin-mediated signaling pathway
## 1358 regulation of protein sumoylation
## 1359 microtubule anchoring
## 1360 protein localization to chromosome
## 1361 CD4-positive, alpha-beta T cell cytokine production
## 1362 lactate transmembrane transport
## 1363 plasma membrane lactate transport
## 1364 cellular response to leptin stimulus
## 1365 response to leptin
## 1366 late endosome to vacuole transport
## 1367 regulation of auditory receptor cell differentiation
## 1368 negative regulation of gluconeogenesis
## 1369 IMP metabolic process
## 1370 negative regulation of insulin receptor signaling pathway
## 1371 response to arsenic-containing substance
## 1372 clathrin coat assembly
## 1373 astrocyte differentiation
## 1374 intestinal absorption
## 1375 regulation of sequestering of calcium ion
## 1376 behavioral response to nutrient
## 1377 positive regulation of calcium ion transport
## 1378 negative regulation of glial cell proliferation
## 1379 neuroepithelial cell differentiation
## 1380 regulation of androgen receptor signaling pathway
## 1381 iris morphogenesis
## 1382 cellular response to arsenic-containing substance
## 1383 metanephric tubule development
## 1384 metanephric tubule morphogenesis
## 1385 RNA phosphodiester bond hydrolysis, exonucleolytic
## 1386 establishment of endothelial intestinal barrier
## 1387 plasma membrane invagination
## 1388 negative regulation of cellular response to insulin stimulus
## 1389 positive regulation of calcium ion transmembrane transport
## 1390 negative regulation of protein ubiquitination involved in ubiquitin-dependent protein catabolic process
## 1391 negative regulation of protein neddylation
## 1392 regulation of interleukin-5 secretion
## 1393 positive regulation of interleukin-5 secretion
## 1394 regulation of interleukin-13 secretion
## 1395 positive regulation of interleukin-13 secretion
## 1396 regulation of cytoplasmic translation
## 1397 positive regulation of cytoplasmic translation
## 1398 positive regulation of interleukin-10 secretion
## 1399 mRNA 3'-splice site recognition
## 1400 transcription-dependent tethering of RNA polymerase II gene DNA at nuclear periphery
## 1401 cell fate specification
## 1402 endodermal cell fate commitment
## 1403 intussusceptive angiogenesis
## 1404 chondrocyte development
## 1405 regulation of receptor internalization
## 1406 tRNA threonylcarbamoyladenosine modification
## 1407 regulation of animal organ formation
## 1408 apoptotic process involved in heart morphogenesis
## 1409 mitochondrial electron transport, NADH to ubiquinone
## 1410 mitochondrial electron transport, succinate to ubiquinone
## 1411 transcription-coupled nucleotide-excision repair
## 1412 base-excision repair, AP site formation
## 1413 transcription initiation from mitochondrial promoter
## 1414 asparaginyl-tRNA aminoacylation
## 1415 protein retention in ER lumen
## 1416 cellular response to nitrogen starvation
## 1417 mitotic G2 DNA damage checkpoint
## 1418 pentose-phosphate shunt, oxidative branch
## 1419 negative regulation of calcidiol 1-monooxygenase activity
## 1420 negative regulation of vitamin D biosynthetic process
## 1421 regulation of dopamine secretion
## 1422 myotube differentiation involved in skeletal muscle regeneration
## 1423 coenzyme A metabolic process
## 1424 coenzyme A biosynthetic process
## 1425 energy coupled proton transmembrane transport, against electrochemical gradient
## 1426 ATP hydrolysis coupled proton transport
## 1427 protein import into peroxisome matrix, translocation
## 1428 poly(A)+ mRNA export from nucleus
## 1429 pentose biosynthetic process
## 1430 peptidyl-proline hydroxylation
## 1431 D-gluconate metabolic process
## 1432 central nervous system projection neuron axonogenesis
## 1433 central nervous system neuron axonogenesis
## 1434 corpus callosum development
## 1435 vesicle transport along actin filament
## 1436 lipid glycosylation
## 1437 production of siRNA involved in RNA interference
## 1438 aminoglycoside antibiotic metabolic process
## 1439 regulation of vitamin metabolic process
## 1440 positive regulation of epithelial cell differentiation
## 1441 positive regulation of mRNA 3'-end processing
## 1442 regulation of nuclease activity
## 1443 regulation of deoxyribonuclease activity
## 1444 negative regulation of nuclease activity
## 1445 negative regulation of deoxyribonuclease activity
## 1446 positive regulation of DNA-templated transcription, elongation
## 1447 positive regulation of transcription elongation from RNA polymerase II promoter
## 1448 mitochondrial respiratory chain complex I assembly
## 1449 histone H2B ubiquitination
## 1450 mitochondrial respiratory chain complex IV assembly
## 1451 negative regulation of cell adhesion mediated by integrin
## 1452 positive regulation of osteoblast proliferation
## 1453 ribonucleoside bisphosphate metabolic process
## 1454 ribonucleoside bisphosphate biosynthetic process
## 1455 purine nucleoside bisphosphate metabolic process
## 1456 purine nucleoside bisphosphate biosynthetic process
## 1457 beta-amyloid formation
## 1458 recruitment of 3'-end processing factors to RNA polymerase II holoenzyme complex
## 1459 positive regulation of histone acetylation
## 1460 maintenance of protein localization in endoplasmic reticulum
## 1461 peroxisome transport along microtubule
## 1462 water-soluble vitamin biosynthetic process
## 1463 protein N-linked glycosylation via arginine
## 1464 keratinocyte proliferation
## 1465 ossification involved in bone maturation
## 1466 daunorubicin metabolic process
## 1467 doxorubicin metabolic process
## 1468 protein import into peroxisome matrix, substrate release
## 1469 depurination
## 1470 positive regulation of epidermal cell differentiation
## 1471 positive regulation of fibroblast growth factor receptor signaling pathway
## 1472 negative regulation of vitamin metabolic process
## 1473 paraxial mesoderm development
## 1474 animal organ maturation
## 1475 regulation of catecholamine secretion
## 1476 regulation of amine transport
## 1477 bone trabecula formation
## 1478 innervation
## 1479 regulation of vitamin D biosynthetic process
## 1480 regulation of calcidiol 1-monooxygenase activity
## 1481 apoptotic process involved in morphogenesis
## 1482 chondroblast differentiation
## 1483 mammary gland epithelial cell differentiation
## 1484 chorio-allantoic fusion
## 1485 cell fate commitment involved in formation of primary germ layer
## 1486 regulation of cartilage development
## 1487 positive regulation of cartilage development
## 1488 bone trabecula morphogenesis
## 1489 regulation of interleukin-6-mediated signaling pathway
## 1490 positive regulation of interleukin-6-mediated signaling pathway
## 1491 mitochondrial asparaginyl-tRNA aminoacylation
## 1492 thymocyte apoptotic process
## 1493 peptidyl-serine dephosphorylation
## 1494 regulation of oligodendrocyte progenitor proliferation
## 1495 positive regulation of oligodendrocyte progenitor proliferation
## 1496 protein K63-linked ubiquitination
## 1497 dephosphorylation of RNA polymerase II C-terminal domain
## 1498 bone maturation
## 1499 cellular response to zinc ion
## 1500 protein localization to centrosome
## 1501 regulation of mitochondrial fission
## 1502 positive regulation of mitochondrial fission
## 1503 regulation of histone H4 acetylation
## 1504 positive regulation of histone H4 acetylation
## 1505 mitochondrial respiratory chain complex IV biogenesis
## 1506 actin filament-based transport
## 1507 regulation of neurotransmitter receptor activity
## 1508 regulation of endoplasmic reticulum unfolded protein response
## 1509 negative regulation of endoplasmic reticulum unfolded protein response
## 1510 negative regulation of execution phase of apoptosis
## 1511 regulation of glutamate receptor signaling pathway
## 1512 negative regulation of protein homotetramerization
## 1513 negative regulation of post-translational protein modification
## 1514 positive regulation of protein acetylation
## 1515 regulation of apoptotic DNA fragmentation
## 1516 negative regulation of apoptotic DNA fragmentation
## 1517 apoptotic process involved in development
## 1518 regulation of late endosome to lysosome transport
## 1519 positive regulation of late endosome to lysosome transport
## 1520 negative regulation of alcohol biosynthetic process
## 1521 regulation of vacuolar transport
## 1522 negative regulation of ATP metabolic process
## 1523 regulation of DNA catabolic process
## 1524 negative regulation of DNA catabolic process
## 1525 regulation of PERK-mediated unfolded protein response
## 1526 negative regulation of PERK-mediated unfolded protein response
## 1527 negative regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## 1528 regulation of chaperone-mediated autophagy
## 1529 regulation of telomerase RNA localization to Cajal body
## 1530 ATP generation from poly-ADP-D-ribose
## 1531 positive regulation of protein localization to cell surface
## 1532 regulation of ceramide biosynthetic process
## 1533 positive regulation of ceramide biosynthetic process
## 1534 positive regulation of peptidyl-lysine acetylation
## 1535 negative regulation of interleukin-10 secretion
## 1536 regulation of interleukin-12 secretion
## 1537 negative regulation of interleukin-12 secretion
## 1538 negative regulation of mitotic cell cycle
## 1539 regulation of secretion
## 1540 negative regulation of gliogenesis
## 1541 regulation of CD4-positive, alpha-beta T cell activation
## 1542 regulation of cellular carbohydrate metabolic process
## 1543 regulation of nucleotide biosynthetic process
## 1544 protein complex localization
## 1545 cellular response to reactive oxygen species
## 1546 negative regulation of JUN kinase activity
## 1547 vitamin transport
## 1548 organelle transport along microtubule
## 1549 regulation of purine nucleotide biosynthetic process
## 1550 regulation of hematopoietic progenitor cell differentiation
## 1551 autophagosome organization
## 1552 negative regulation of nitrogen compound metabolic process
## 1553 regulation of protein ubiquitination
## 1554 glycosylation
## 1555 regulation of cellular protein catabolic process
## 1556 regulation of protein targeting
## 1557 positive regulation of organelle organization
## 1558 carboxylic acid biosynthetic process
## 1559 response to peptide
## 1560 skeletal muscle cell differentiation
## 1561 regulation of CD4-positive, alpha-beta T cell differentiation
## 1562 positive regulation of viral process
## 1563 spindle assembly
## 1564 positive regulation of viral life cycle
## 1565 regulation of cyclin-dependent protein kinase activity
## 1566 glial cell differentiation
## 1567 regulation of cellular response to growth factor stimulus
## 1568 import into cell
## 1569 embryonic organ morphogenesis
## 1570 T cell mediated immunity
## 1571 regulation of blood coagulation
## 1572 centromere complex assembly
## 1573 negative regulation of transmembrane transport
## 1574 photoreceptor cell maintenance
## 1575 ADP metabolic process
## 1576 monosaccharide biosynthetic process
## 1577 negative regulation of alpha-beta T cell activation
## 1578 response to antibiotic
## 1579 regulation of coagulation
## 1580 heterochromatin organization
## 1581 clathrin-dependent endocytosis
## 1582 regulation of execution phase of apoptosis
## 1583 regulation of transcription regulatory region DNA binding
## 1584 purine nucleoside metabolic process
## 1585 purine ribonucleoside metabolic process
## 1586 modulation of synaptic transmission
## 1587 negative regulation of protein metabolic process
## 1588 regulation of proteolysis
## 1589 negative regulation of nucleobase-containing compound metabolic process
## 1590 antigen processing and presentation of exogenous peptide antigen
## 1591 chromatin silencing
## 1592 cyclic nucleotide metabolic process
## 1593 mitochondrial translation
## 1594 intracellular protein transmembrane import
## 1595 regulation of fibroblast proliferation
## 1596 cardiac muscle cell development
## 1597 intrinsic apoptotic signaling pathway by p53 class mediator
## 1598 positive regulation of mRNA metabolic process
## 1599 regulation of DNA biosynthetic process
## 1600 positive regulation of CD4-positive, alpha-beta T cell activation
## 1601 positive regulation of chromosome organization
## 1602 regulation of secretion by cell
## 1603 cellular protein localization
## 1604 gene silencing by RNA
## 1605 positive regulation of mitotic cell cycle
## 1606 regulation of mitochondrion organization
## 1607 gene silencing
## 1608 anatomical structure homeostasis
## 1609 nucleobase-containing compound catabolic process
## 1610 skeletal muscle organ development
## 1611 positive regulation of intracellular protein transport
## 1612 leukocyte mediated immunity
## 1613 multi-organism reproductive process
## 1614 purine-containing compound metabolic process
## 1615 positive regulation of T cell cytokine production
## 1616 positive regulation of type 2 immune response
## 1617 cardiac muscle hypertrophy
## 1618 muscle hypertrophy
## 1619 striated muscle hypertrophy
## 1620 positive regulation of TOR signaling
## 1621 regulation of interleukin-13 production
## 1622 regulation of interleukin-4 production
## 1623 positive regulation of interleukin-13 production
## 1624 positive regulation of interleukin-4 production
## 1625 positive regulation of transcription from RNA polymerase II promoter in response to stress
## 1626 positive regulation by host of viral transcription
## 1627 positive regulation of T-helper 2 cell differentiation
## 1628 negative regulation of astrocyte differentiation
## 1629 regulation of mRNA catabolic process
## 1630 positive regulation of mRNA catabolic process
## 1631 energy homeostasis
## 1632 negative regulation of signal transduction by p53 class mediator
## 1633 regulation of alcohol biosynthetic process
## 1634 positive regulation of mitophagy
## 1635 regulation of clathrin-dependent endocytosis
## 1636 negative regulation of response to DNA damage stimulus
## 1637 positive regulation of extrinsic apoptotic signaling pathway
## 1638 cellular macromolecule localization
## 1639 negative regulation of apoptotic process
## 1640 negative regulation of programmed cell death
## 1641 regulation of cell cycle process
## 1642 cellular macromolecular complex assembly
## 1643 cellular response to external stimulus
## 1644 positive regulation of adaptive immune response
## 1645 positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## 1646 translational initiation
## 1647 protein O-linked glycosylation
## 1648 hyperosmotic response
## 1649 carbohydrate catabolic process
## 1650 respiratory electron transport chain
## 1651 production of miRNAs involved in gene silencing by miRNA
## 1652 positive regulation of CD4-positive, alpha-beta T cell differentiation
## 1653 positive regulation of T-helper cell differentiation
## 1654 regulation of oligodendrocyte differentiation
## 1655 regulation of mitochondrial membrane potential
## 1656 regulation of synaptic transmission, glutamatergic
## 1657 cellular response to osmotic stress
## 1658 cellular hyperosmotic response
## 1659 cellular response to dexamethasone stimulus
## 1660 pyrimidine-containing compound metabolic process
## 1661 protein maturation
## 1662 positive regulation of binding
## 1663 regulation of chromatin organization
## 1664 DNA damage response, signal transduction by p53 class mediator
## 1665 negative regulation of intracellular transport
## 1666 positive regulation of DNA replication
## 1667 protein localization to mitochondrion
## 1668 cellular response to molecule of bacterial origin
## 1669 cellular response to lipopolysaccharide
## 1670 establishment of protein localization to mitochondrion
## 1671 regulation of neural precursor cell proliferation
## 1672 cellular macromolecule catabolic process
## 1673 negative regulation of cellular macromolecule biosynthetic process
## 1674 sulfur compound metabolic process
## 1675 response to starvation
## 1676 negative regulation of macromolecule biosynthetic process
## 1677 sexual reproduction
## 1678 DNA damage checkpoint
## 1679 DNA integrity checkpoint
## 1680 cellular nitrogen compound catabolic process
## 1681 cellular response to mechanical stimulus
## 1682 centrosome cycle
## 1683 microtubule organizing center organization
## 1684 centrosome organization
## 1685 negative regulation of RNA biosynthetic process
## 1686 production of molecular mediator of immune response
## 1687 negative regulation of neuron apoptotic process
## 1688 small molecule metabolic process
## 1689 tRNA processing
## 1690 antigen processing and presentation of exogenous antigen
## 1691 cytoskeleton-dependent intracellular transport
## 1692 positive regulation of organelle assembly
## 1693 mitotic cytokinesis
## 1694 peptide secretion
## 1695 negative regulation of type 2 immune response
## 1696 CMP salvage
## 1697 membrane protein ectodomain proteolysis
## 1698 activation of adenylate cyclase activity
## 1699 Notch receptor processing
## 1700 long-term memory
## 1701 respiratory chain complex IV assembly
## 1702 hormone transport
## 1703 negative regulation of cellular carbohydrate metabolic process
## 1704 protein sumoylation
## 1705 keratan sulfate biosynthetic process
## 1706 olfactory bulb development
## 1707 forebrain generation of neurons
## 1708 olfactory lobe development
## 1709 peptide hormone secretion
## 1710 membrane protein intracellular domain proteolysis
## 1711 regulation of myelination
## 1712 membrane protein proteolysis
## 1713 regulation of toll-like receptor signaling pathway
## 1714 keratan sulfate metabolic process
## 1715 pyrimidine nucleoside salvage
## 1716 nucleoside salvage
## 1717 UMP salvage
## 1718 CTP salvage
## 1719 cellular response to fibroblast growth factor stimulus
## 1720 positive regulation of T-helper 1 cell differentiation
## 1721 negative regulation of T-helper 2 cell differentiation
## 1722 negative regulation of carbohydrate metabolic process
## 1723 hormone secretion
## 1724 embryonic digestive tract morphogenesis
## 1725 regulation of glial cell proliferation
## 1726 establishment of endothelial barrier
## 1727 protein kinase C signaling
## 1728 response to fibroblast growth factor
## 1729 endothelial cell apoptotic process
## 1730 positive regulation of wound healing
## 1731 dendritic spine organization
## 1732 modulation of excitatory postsynaptic potential
## 1733 negative regulation of protein acetylation
## 1734 regulation of synaptic vesicle transport
## 1735 positive regulation of response to wounding
## 1736 negative regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## 1737 regulation of tumor necrosis factor secretion
## 1738 neuron projection extension
## 1739 regulation of lymphocyte migration
## 1740 positive regulation of excitatory postsynaptic potential
## 1741 positive regulation of ATP biosynthetic process
## 1742 regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## 1743 skeletal system development
## 1744 cell fate determination
## 1745 DNA-dependent DNA replication
## 1746 regulation of Notch signaling pathway
## 1747 aerobic respiration
## 1748 NAD metabolic process
## 1749 flagellated sperm motility
## 1750 protein kinase B signaling
## 1751 negative regulation of nucleocytoplasmic transport
## 1752 lung alveolus development
## 1753 interaction with symbiont
## 1754 modification of morphology or physiology of other organism involved in symbiotic interaction
## 1755 modification by host of symbiont morphology or physiology
## 1756 protein homotrimerization
## 1757 regulation of cellular response to insulin stimulus
## 1758 positive regulation of cellular response to insulin stimulus
## 1759 positive regulation of protein localization to nucleus
## 1760 positive regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## 1761 regulation of cellular protein localization
## 1762 positive regulation of immune effector process
## 1763 positive regulation of protein catabolic process
## 1764 regulation of cell cycle
## 1765 regulation of macromolecule metabolic process
## 1766 divalent metal ion transport
## 1767 divalent inorganic cation transport
## 1768 negative regulation of metabolic process
## 1769 positive regulation of cell cycle
## 1770 amide biosynthetic process
## 1771 carboxylic acid metabolic process
## 1772 female pregnancy
## 1773 detection of stimulus
## 1774 regulation of cell cycle arrest
## 1775 macromolecule localization
## 1776 pattern specification process
## 1777 organic hydroxy compound transport
## 1778 cell growth
## 1779 immunoglobulin mediated immune response
## 1780 B cell mediated immunity
## 1781 positive regulation of multi-organism process
## 1782 aromatic compound catabolic process
## 1783 heterocycle catabolic process
## 1784 organic cyclic compound catabolic process
## 1785 organonitrogen compound metabolic process
## 1786 immunoglobulin production
## 1787 axon ensheathment
## 1788 regulation of epidermal growth factor receptor signaling pathway
## 1789 myelination
## 1790 membrane hyperpolarization
## 1791 cellular response to corticosteroid stimulus
## 1792 cellular response to glucocorticoid stimulus
## 1793 regulation of ERBB signaling pathway
## 1794 epidermal cell differentiation
## 1795 entry into host cell
## 1796 regulation of alpha-beta T cell activation
## 1797 viral entry into host cell
## 1798 RNA biosynthetic process
## 1799 negative regulation of nucleic acid-templated transcription
## 1800 glycosaminoglycan metabolic process
## 1801 cofactor biosynthetic process
## 1802 regulation of microtubule cytoskeleton organization
## 1803 cellular response to leukemia inhibitory factor
## 1804 rRNA 2'-O-methylation
## 1805 enzyme-directed rRNA 2'-O-methylation
## 1806 regulation of oxidative phosphorylation
## 1807 regulation of T cell cytokine production
## 1808 gluconeogenesis
## 1809 nucleosome disassembly
## 1810 mitotic metaphase plate congression
## 1811 hexose biosynthetic process
## 1812 notochord development
## 1813 protein-DNA complex disassembly
## 1814 regulation of sister chromatid segregation
## 1815 adherens junction assembly
## 1816 regulation of NF-kappaB import into nucleus
## 1817 regulation of epidermal cell differentiation
## 1818 AMP metabolic process
## 1819 regulation of astrocyte differentiation
## 1820 toxin transport
## 1821 regulation of TORC1 signaling
## 1822 regulation of actin cytoskeleton reorganization
## 1823 regulation of homeostatic process
## 1824 embryonic epithelial tube formation
## 1825 morphogenesis of embryonic epithelium
## 1826 epithelial tube formation
## 1827 positive regulation of apoptotic signaling pathway
## 1828 regulation of interleukin-10 production
## 1829 negative regulation of glial cell differentiation
## 1830 negative regulation of gene expression, epigenetic
## 1831 antigen processing and presentation of peptide antigen
## 1832 positive regulation of cell cycle phase transition
## 1833 negative regulation of cell cycle process
## 1834 neural tube closure
## 1835 tube closure
## 1836 regulation of neuron apoptotic process
## 1837 rhythmic process
## 1838 DNA replication checkpoint
## 1839 spliceosomal tri-snRNP complex assembly
## 1840 endoderm formation
## 1841 establishment of lymphocyte polarity
## 1842 establishment of natural killer cell polarity
## 1843 blastocyst formation
## 1844 leukocyte mediated cytotoxicity
## 1845 negative regulation of endothelial cell proliferation
## 1846 heart looping
## 1847 natural killer cell mediated immunity
## 1848 MyD88-dependent toll-like receptor signaling pathway
## 1849 embryonic heart tube morphogenesis
## 1850 UDP-N-acetylglucosamine metabolic process
## 1851 pentose-phosphate shunt
## 1852 prolyl-tRNA aminoacylation
## 1853 'de novo' protein folding
## 1854 protein export from nucleus
## 1855 glycosphingolipid biosynthetic process
## 1856 protoporphyrinogen IX biosynthetic process
## 1857 cell volume homeostasis
## 1858 inner mitochondrial membrane organization
## 1859 endoderm development
## 1860 negative regulation of DNA replication
## 1861 nucleotide-sugar biosynthetic process
## 1862 embryonic pattern specification
## 1863 histone monoubiquitination
## 1864 response to acidic pH
## 1865 basic amino acid transport
## 1866 arginine transport
## 1867 histone ubiquitination
## 1868 protein hydroxylation
## 1869 glyceraldehyde-3-phosphate metabolic process
## 1870 secondary metabolic process
## 1871 maintenance of cell polarity
## 1872 dermatan sulfate metabolic process
## 1873 chondroitin sulfate catabolic process
## 1874 dermatan sulfate biosynthetic process
## 1875 hyaluronan metabolic process
## 1876 hyaluronan catabolic process
## 1877 male genitalia development
## 1878 positive regulation of intermediate filament depolymerization
## 1879 plasminogen activation
## 1880 protein destabilization
## 1881 TOR signaling
## 1882 negative regulation of ATPase activity
## 1883 lacrimal gland development
## 1884 mitotic DNA replication checkpoint
## 1885 S-adenosylmethionine cycle
## 1886 cholesterol biosynthetic process via desmosterol
## 1887 cholesterol biosynthetic process via lathosterol
## 1888 regulation of osteoblast proliferation
## 1889 toll-like receptor 5 signaling pathway
## 1890 lipid translocation
## 1891 protein localization to pre-autophagosomal structure
## 1892 embryonic heart tube development
## 1893 long-chain fatty-acyl-CoA metabolic process
## 1894 response to interferon-alpha
## 1895 cargo loading into vesicle
## 1896 endothelial cell chemotaxis
## 1897 endodermal cell differentiation
## 1898 epithelial fluid transport
## 1899 type 2 immune response
## 1900 natural killer cell mediated cytotoxicity
## 1901 cristae formation
## 1902 lipoprotein transport
## 1903 regulation of Golgi to plasma membrane protein transport
## 1904 positive regulation of Golgi to plasma membrane protein transport
## 1905 polysaccharide digestion
## 1906 protein K6-linked deubiquitination
## 1907 phospholipid translocation
## 1908 positive regulation of smoothened signaling pathway
## 1909 L-cysteine metabolic process
## 1910 S-adenosylhomocysteine metabolic process
## 1911 protoporphyrinogen IX metabolic process
## 1912 phosphatidylinositol dephosphorylation
## 1913 anterograde synaptic vesicle transport
## 1914 embryonic cranial skeleton morphogenesis
## 1915 genitalia development
## 1916 dermatan sulfate proteoglycan biosynthetic process
## 1917 dermatan sulfate proteoglycan metabolic process
## 1918 positive regulation of calcium-mediated signaling
## 1919 glucose 6-phosphate metabolic process
## 1920 regulation of histone H3-K4 methylation
## 1921 medium-chain fatty acid metabolic process
## 1922 mitochondrial depolarization
## 1923 positive regulation of mitochondrial depolarization
## 1924 determination of heart left/right asymmetry
## 1925 parkin-mediated mitophagy in response to mitochondrial depolarization
## 1926 cellular response to cold
## 1927 positive regulation of calcineurin-NFAT signaling cascade
## 1928 neuron death
## 1929 cellular response to antibiotic
## 1930 cellular response to pH
## 1931 cellular response to acidic pH
## 1932 response to nitric oxide
## 1933 cellular response to nitric oxide
## 1934 amino acid homeostasis
## 1935 regulation of cardiac muscle cell membrane potential
## 1936 regulation of the force of heart contraction by cardiac conduction
## 1937 cargo loading into COPII-coated vesicle
## 1938 positive regulation of release of cytochrome c from mitochondria
## 1939 protein localization to nuclear envelope
## 1940 establishment of protein localization to endoplasmic reticulum membrane
## 1941 establishment of Sertoli cell barrier
## 1942 positive regulation of the force of heart contraction
## 1943 cell aggregation
## 1944 positive regulation of protein depolymerization
## 1945 cellular response to reactive nitrogen species
## 1946 positive regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## 1947 regulation of endoplasmic reticulum tubular network organization
## 1948 positive regulation of endoplasmic reticulum tubular network organization
## 1949 L-lysine transmembrane transport
## 1950 arginine transmembrane transport
## 1951 positive regulation of membrane depolarization
## 1952 lens fiber cell apoptotic process
## 1953 retrograde transport, endosome to plasma membrane
## 1954 regulation of neuron migration
## 1955 macromolecule methylation
## 1956 regulation of translational initiation
## 1957 methionine metabolic process
## 1958 glial cell development
## 1959 lymphocyte costimulation
## 1960 T cell costimulation
## 1961 single-organism carbohydrate catabolic process
## 1962 positive regulation of inflammatory response
## 1963 negative regulation of ubiquitin-protein transferase activity
## 1964 protein autoubiquitination
## 1965 cellular oxidant detoxification
## 1966 negative regulation of cellular response to hypoxia
## 1967 positive regulation of purine nucleotide biosynthetic process
## 1968 regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## 1969 negative regulation of cellular protein metabolic process
## 1970 aminoglycan biosynthetic process
## 1971 glycosaminoglycan biosynthetic process
## 1972 gastrulation
## 1973 spermatogenesis
## 1974 male gamete generation
## 1975 nuclear division
## 1976 protein localization
## 1977 regulation of apoptotic process
## 1978 regulation of programmed cell death
## 1979 monocarboxylic acid biosynthetic process
## 1980 regulation of protein localization to nucleus
## 1981 sister chromatid segregation
## 1982 electron transport chain
## 1983 small molecule catabolic process
## 1984 transport along microtubule
## 1985 extracellular matrix disassembly
## 1986 positive regulation of interleukin-10 production
## 1987 cellular response to glucose starvation
## 1988 positive regulation of regulatory T cell differentiation
## 1989 negative regulation of synaptic transmission
## 1990 protein homotetramerization
## 1991 response to electrical stimulus
## 1992 Ras protein signal transduction
## 1993 alpha-amino acid metabolic process
## 1994 mitochondrion organization
## 1995 response to oxygen-containing compound
## 1996 negative regulation of biosynthetic process
## 1997 embryo development ending in birth or egg hatching
## 1998 chordate embryonic development
## 1999 gastrulation with mouth forming second
## 2000 positive regulation of acute inflammatory response
## 2001 optic cup formation involved in camera-type eye development
## 2002 maintenance of chromatin silencing
## 2003 endosome to lysosome transport
## 2004 dorsal/ventral pattern formation
## 2005 intracellular estrogen receptor signaling pathway
## 2006 activation of phospholipase D activity
## 2007 corticosteroid receptor signaling pathway
## 2008 negative regulation of protein dephosphorylation
## 2009 interleukin-15-mediated signaling pathway
## 2010 negative regulation of T cell proliferation
## 2011 pteridine-containing compound metabolic process
## 2012 nucleosome mobilization
## 2013 glucocorticoid receptor signaling pathway
## 2014 regulation of cholesterol biosynthetic process
## 2015 regulation of T-helper 1 cell differentiation
## 2016 negative regulation of mitotic nuclear division
## 2017 S-adenosylmethionine metabolic process
## 2018 acid secretion
## 2019 chromatin-mediated maintenance of transcription
## 2020 negative regulation of lymphocyte proliferation
## 2021 somite development
## 2022 cytoskeleton-dependent cytokinesis
## 2023 negative regulation of leukocyte proliferation
## 2024 response to interleukin-15
## 2025 epithelial cell fate commitment
## 2026 metanephric epithelium development
## 2027 positive regulation of cellular response to oxidative stress
## 2028 positive regulation of transcription from RNA polymerase II promoter involved in cellular response to chemical stimulus
## 2029 negative regulation of extrinsic apoptotic signaling pathway via death domain receptors
## 2030 positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## 2031 positive regulation of oxidative stress-induced cell death
## 2032 regulation of protein localization to cell surface
## 2033 regulation of cellular amino acid biosynthetic process
## 2034 regulation of forebrain neuron differentiation
## 2035 regulation of protein modification by small protein conjugation or removal
## 2036 aminoglycan metabolic process
## 2037 isoprenoid metabolic process
## 2038 endosomal transport
## 2039 multi-multicellular organism process
## 2040 negative regulation of protein transport
## 2041 negative regulation of establishment of protein localization
## 2042 double-strand break repair
## 2043 vacuole organization
## 2044 positive regulation of protein ubiquitination
## 2045 synaptic vesicle transport
## 2046 synaptic vesicle localization
## 2047 vesicle-mediated transport in synapse
## 2048 negative regulation of transcription, DNA-templated
## 2049 negative regulation of cell cycle
## 2050 regionalization
## 2051 regulation of ERK1 and ERK2 cascade
## 2052 negative regulation of phosphorylation
## 2053 interaction with host
## 2054 cytokinesis
## 2055 cytokine production involved in immune response
## 2056 positive regulation of T cell mediated immunity
## 2057 C-terminal protein lipidation
## 2058 regulation of smoothened signaling pathway
## 2059 RNA secondary structure unwinding
## 2060 regulation of monooxygenase activity
## 2061 negative regulation of GTPase activity
## 2062 peptidyl-threonine dephosphorylation
## 2063 synaptic vesicle recycling
## 2064 cellular ketone metabolic process
## 2065 retinol metabolic process
## 2066 mitochondrial ATP synthesis coupled electron transport
## 2067 amide transport
## 2068 amyloid precursor protein catabolic process
## 2069 apical junction assembly
## 2070 sulfur compound catabolic process
## 2071 negative regulation of blood pressure
## 2072 negative regulation of retinoic acid receptor signaling pathway
## 2073 synaptic vesicle endocytosis
## 2074 positive regulation of mRNA processing
## 2075 metaphase plate congression
## 2076 regulation of respiratory burst
## 2077 regulation of respiratory burst involved in inflammatory response
## 2078 negative regulation of respiratory burst involved in inflammatory response
## 2079 negative regulation of respiratory burst
## 2080 positive regulation of execution phase of apoptosis
## 2081 positive regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## 2082 regulation of epithelium regeneration
## 2083 negative regulation of epithelium regeneration
## 2084 peptidyl-tyrosine dephosphorylation involved in inactivation of protein kinase activity
## 2085 regulation of smooth muscle cell proliferation
## 2086 negative regulation of cell death
## 2087 protein modification by small protein conjugation
## 2088 positive regulation of DNA metabolic process
## 2089 single-organism biosynthetic process
## 2090 response to lipopolysaccharide
## 2091 terpenoid metabolic process
## 2092 cellular response to oxidative stress
## 2093 sulfur amino acid metabolic process
## 2094 formation of primary germ layer
## 2095 oxidative phosphorylation
## 2096 purine ribonucleoside diphosphate metabolic process
## 2097 ribonucleoside diphosphate metabolic process
## 2098 G2 DNA damage checkpoint
## 2099 adherens junction organization
## 2100 hair cycle
## 2101 ATP synthesis coupled electron transport
## 2102 regulation of cellular response to hypoxia
## 2103 cellular detoxification
## 2104 nuclear chromosome segregation
## 2105 small molecule biosynthetic process
## 2106 neutrophil activation involved in immune response
## 2107 neutrophil mediated immunity
## 2108 granulocyte activation
## 2109 neutrophil activation
## 2110 neutrophil degranulation
## 2111 methylation
## 2112 response to calcium ion
## 2113 protein secretion
## 2114 positive regulation of macroautophagy
## 2115 cytosolic transport
## 2116 ribosomal large subunit biogenesis
## 2117 negative regulation of ERK1 and ERK2 cascade
## 2118 RNA phosphodiester bond hydrolysis
## 2119 negative regulation of cellular metabolic process
## 2120 actin cytoskeleton organization
## 2121 cellular metal ion homeostasis
## 2122 embryonic organ development
## 2123 single organism reproductive process
## 2124 glycosaminoglycan catabolic process
## 2125 protein targeting to mitochondrion
## 2126 antigen processing and presentation
## 2127 cartilage development
## 2128 vesicle organization
## 2129 regulation of neuron death
## 2130 activation of protein kinase activity
## 2131 retinoid metabolic process
## 2132 regulation of sodium ion transport
## 2133 purine nucleotide biosynthetic process
## 2134 purine ribonucleotide biosynthetic process
## 2135 nucleoside biosynthetic process
## 2136 diterpenoid metabolic process
## 2137 ribonucleoside biosynthetic process
## 2138 purine-containing compound biosynthetic process
## 2139 regulation of membrane permeability
## 2140 glycosyl compound biosynthetic process
## 2141 establishment of protein localization to organelle
## 2142 negative regulation of cellular biosynthetic process
## 2143 modification-dependent protein catabolic process
## 2144 calcium ion transport
## 2145 spindle organization
## 2146 response to ionizing radiation
## 2147 regulation of nitrogen compound metabolic process
## 2148 response to nutrient levels
## 2149 neural tube formation
## 2150 primary neural tube formation
## 2151 camera-type eye development
## 2152 sulfur amino acid biosynthetic process
## 2153 endochondral ossification
## 2154 sprouting angiogenesis
## 2155 positive regulation of T-helper 1 type immune response
## 2156 transcription elongation from RNA polymerase II promoter
## 2157 glycoprotein catabolic process
## 2158 one-carbon metabolic process
## 2159 mitotic nuclear envelope disassembly
## 2160 adenylate cyclase-activating G-protein coupled receptor signaling pathway
## 2161 isoprenoid biosynthetic process
## 2162 methionine biosynthetic process
## 2163 Schwann cell differentiation
## 2164 Schwann cell development
## 2165 peptide hormone processing
## 2166 myelination in peripheral nervous system
## 2167 regulation of centriole-centriole cohesion
## 2168 developmental induction
## 2169 positive regulation of cyclase activity
## 2170 response to food
## 2171 interleukin-10 production
## 2172 regulation of meiotic nuclear division
## 2173 negative regulation of DNA damage response, signal transduction by p53 class mediator
## 2174 histone H3 acetylation
## 2175 positive regulation of adenylate cyclase activity
## 2176 positive regulation of blood pressure
## 2177 digestive tract morphogenesis
## 2178 skeletal muscle fiber development
## 2179 muscle fiber development
## 2180 beta-amyloid metabolic process
## 2181 regulation of defense response to virus by virus
## 2182 nuclear envelope disassembly
## 2183 centrosome separation
## 2184 negative regulation of nuclear division
## 2185 regulation of feeding behavior
## 2186 membrane depolarization during action potential
## 2187 neuronal stem cell population maintenance
## 2188 calcium ion transmembrane import into cytosol
## 2189 regulation of substrate adhesion-dependent cell spreading
## 2190 regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## 2191 negative regulation of centriole-centriole cohesion
## 2192 regulation of T cell mediated immunity
## 2193 CTP biosynthetic process
## 2194 neuromuscular junction development
## 2195 associative learning
## 2196 pyrimidine nucleoside triphosphate metabolic process
## 2197 pyrimidine nucleoside triphosphate biosynthetic process
## 2198 pyrimidine ribonucleoside triphosphate metabolic process
## 2199 positive regulation of phospholipase activity
## 2200 monocarboxylic acid transport
## 2201 cellular response to amino acid starvation
## 2202 negative regulation of protein kinase activity by regulation of protein phosphorylation
## 2203 regulation of retinoic acid receptor signaling pathway
## 2204 chromosome localization
## 2205 establishment of chromosome localization
## 2206 regulation of mitotic spindle organization
## 2207 positive regulation of response to cytokine stimulus
## 2208 positive regulation of transforming growth factor beta production
## 2209 regulation of spindle organization
## 2210 negative regulation of p38MAPK cascade
## 2211 single-organism behavior
## 2212 endomembrane system organization
## 2213 Golgi organization
## 2214 regulation of protein dephosphorylation
## 2215 regulation of protein import into nucleus
## 2216 defense response to Gram-positive bacterium
## 2217 sperm motility
## 2218 regulation of protein import
## 2219 positive regulation of reactive oxygen species metabolic process
## 2220 macromolecule catabolic process
## 2221 organelle assembly
## 2222 post-Golgi vesicle-mediated transport
## 2223 nucleobase-containing small molecule interconversion
## 2224 positive regulation of transmembrane transport
## 2225 gene silencing by miRNA
## 2226 regulation of JUN kinase activity
## 2227 regulation of T-helper cell differentiation
## 2228 regulation of osteoblast differentiation
## 2229 tRNA transport
## 2230 positive regulation of mitotic cell cycle phase transition
## 2231 negative regulation of reactive oxygen species metabolic process
## 2232 myeloid leukocyte mediated immunity
## 2233 leukocyte degranulation
## 2234 citrulline metabolic process
## 2235 regulation of transcription involved in G1/S transition of mitotic cell cycle
## 2236 DNA catabolic process, endonucleolytic
## 2237 formation of translation preinitiation complex
## 2238 cytoplasmic translational initiation
## 2239 IRES-dependent translational initiation
## 2240 cytokine secretion involved in immune response
## 2241 cardiac conduction system development
## 2242 keratinocyte development
## 2243 DNA catabolic process
## 2244 apoptotic DNA fragmentation
## 2245 carnitine shuttle
## 2246 cellular component disassembly involved in execution phase of apoptosis
## 2247 DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## 2248 cytoplasm organization
## 2249 endoplasmic reticulum organization
## 2250 mitochondrial fusion
## 2251 vitamin biosynthetic process
## 2252 regulation of receptor biosynthetic process
## 2253 regulation of cardiac muscle contraction by calcium ion signaling
## 2254 phospholipid transport
## 2255 peptidyl-diphthamide biosynthetic process from peptidyl-histidine
## 2256 peptidyl-histidine modification
## 2257 protein-chromophore linkage
## 2258 protein prenylation
## 2259 protein geranylgeranylation
## 2260 viral translation
## 2261 citrulline biosynthetic process
## 2262 DNA strand elongation
## 2263 chondroitin sulfate metabolic process
## 2264 chondroitin sulfate biosynthetic process
## 2265 apoptotic nuclear changes
## 2266 polarized epithelial cell differentiation
## 2267 cytoplasmic microtubule organization
## 2268 regulation of pseudopodium assembly
## 2269 positive regulation of pseudopodium assembly
## 2270 regulation of lipopolysaccharide-mediated signaling pathway
## 2271 Cdc42 protein signal transduction
## 2272 late endosome to vacuole transport via multivesicular body sorting pathway
## 2273 interleukin-18 production
## 2274 negative regulation of interleukin-10 production
## 2275 ribosome disassembly
## 2276 receptor catabolic process
## 2277 collagen metabolic process
## 2278 response to vitamin D
## 2279 geranyl diphosphate biosynthetic process
## 2280 CENP-A containing nucleosome assembly
## 2281 positive regulation of toll-like receptor signaling pathway
## 2282 very-low-density lipoprotein particle assembly
## 2283 tooth mineralization
## 2284 histone H3-K4 demethylation, trimethyl-H3-K4-specific
## 2285 establishment of apical/basal cell polarity
## 2286 dendritic cell migration
## 2287 histone citrullination
## 2288 neuropilin signaling pathway
## 2289 error-prone translesion synthesis
## 2290 regulation of translation by machinery localization
## 2291 skeletal muscle tissue regeneration
## 2292 regulation of protein heterodimerization activity
## 2293 multicellular organismal macromolecule metabolic process
## 2294 wound healing, spreading of cells
## 2295 NLRP3 inflammasome complex assembly
## 2296 G0 to G1 transition
## 2297 establishment of epithelial cell apical/basal polarity
## 2298 farnesyl diphosphate biosynthetic process
## 2299 farnesyl diphosphate metabolic process
## 2300 negative regulation of myoblast differentiation
## 2301 glycerophospholipid catabolic process
## 2302 glycerolipid catabolic process
## 2303 filopodium assembly
## 2304 chondroitin sulfate proteoglycan biosynthetic process
## 2305 chondroitin sulfate proteoglycan metabolic process
## 2306 negative regulation of membrane protein ectodomain proteolysis
## 2307 RNA polymerase II transcriptional preinitiation complex assembly
## 2308 establishment of Golgi localization
## 2309 regulation of synapse structural plasticity
## 2310 positive regulation of synapse structural plasticity
## 2311 Sertoli cell differentiation
## 2312 Sertoli cell development
## 2313 regulation of growth hormone receptor signaling pathway
## 2314 negative regulation of growth hormone receptor signaling pathway
## 2315 positive regulation of epithelial cell proliferation involved in lung morphogenesis
## 2316 submandibular salivary gland formation
## 2317 embryonic placenta morphogenesis
## 2318 epithelial-mesenchymal cell signaling
## 2319 labyrinthine layer morphogenesis
## 2320 labyrinthine layer blood vessel development
## 2321 establishment of monopolar cell polarity
## 2322 establishment or maintenance of monopolar cell polarity
## 2323 transepithelial transport
## 2324 DNA-templated transcriptional preinitiation complex assembly
## 2325 UV-damage excision repair
## 2326 negative regulation of cell cycle arrest
## 2327 cellular response to peptidoglycan
## 2328 positive regulation of hair follicle cell proliferation
## 2329 cementum mineralization
## 2330 cellular response to leptomycin B
## 2331 IRES-dependent viral translational initiation
## 2332 actin filament branching
## 2333 epithelial cell-cell adhesion
## 2334 epiboly
## 2335 plasma membrane tubulation
## 2336 sodium ion import
## 2337 sodium ion import across plasma membrane
## 2338 modification of synaptic structure
## 2339 positive regulation of substrate adhesion-dependent cell spreading
## 2340 negative regulation of purine nucleotide biosynthetic process
## 2341 positive regulation of calcium ion transmembrane transporter activity
## 2342 positive regulation of signal transduction by p53 class mediator
## 2343 fatty acid transmembrane transport
## 2344 L-alpha-amino acid transmembrane transport
## 2345 regulation of calcium:sodium antiporter activity
## 2346 positive regulation of calcium:sodium antiporter activity
## 2347 positive regulation of regulated secretory pathway
## 2348 non-motile cilium assembly
## 2349 negative regulation of protein localization to cell surface
## 2350 regulation of anoikis
## 2351 regulation of synaptic vesicle exocytosis
## 2352 regulation of CD4-positive, alpha-beta T cell proliferation
## 2353 positive regulation of CD4-positive, alpha-beta T cell proliferation
## 2354 positive regulation of sodium ion transmembrane transporter activity
## 2355 regulation of epithelial cell proliferation involved in lung morphogenesis
## 2356 regulation of estradiol secretion
## 2357 modification-dependent macromolecule catabolic process
## 2358 cellular modified amino acid metabolic process
## 2359 regulation of histone modification
## 2360 B cell activation
## 2361 positive regulation of alpha-beta T cell activation
## 2362 epithelial cell proliferation
## 2363 regulation of cellular response to heat
## 2364 coenzyme metabolic process
## 2365 DNA conformation change
## 2366 aminoglycan catabolic process
## 2367 regulation of peptidyl-serine phosphorylation
## 2368 positive regulation of peptidyl-serine phosphorylation
## 2369 organ growth
## 2370 mesenchyme development
## 2371 establishment of protein localization to membrane
## 2372 extrinsic apoptotic signaling pathway
## 2373 cell cycle checkpoint
## 2374 organelle fission
## 2375 cellular response to peptide hormone stimulus
## 2376 reproduction
## 2377 reproductive process
## 2378 regulation of JNK cascade
## 2379 regulation of cell death
## 2380 transcription, DNA-templated
## 2381 nucleic acid-templated transcription
## 2382 myeloid cell activation involved in immune response
## 2383 striated muscle tissue development
## 2384 muscle tissue development
## 2385 protein modification by small protein conjugation or removal
## 2386 ubiquitin-dependent protein catabolic process
## 2387 telencephalon development
## 2388 negative regulation of neuron death
## 2389 tube formation
## 2390 response to molecule of bacterial origin
## 2391 peptidyl-lysine modification
## 2392 post-translational protein modification
## 2393 negative regulation of cellular component organization
## 2394 aspartate family amino acid metabolic process
## 2395 carbohydrate transmembrane transport
## 2396 positive regulation of alpha-beta T cell differentiation
## 2397 response to dexamethasone
## 2398 presynaptic process involved in chemical synaptic transmission
## 2399 actin cytoskeleton reorganization
## 2400 positive regulation of protein binding
## 2401 Fc-epsilon receptor signaling pathway
## 2402 regulation of receptor-mediated endocytosis
## 2403 regulation of oxidoreductase activity
## 2404 positive regulation of protein kinase B signaling
## 2405 alcohol biosynthetic process
## 2406 regulation of cell division
## 2407 positive regulation of ERK1 and ERK2 cascade
## 2408 regulation of mitotic cell cycle phase transition
## 2409 sulfur compound biosynthetic process
## 2410 mitochondrial RNA metabolic process
## 2411 endothelial cell proliferation
## 2412 metanephros morphogenesis
## 2413 ribonucleoside triphosphate biosynthetic process
## 2414 C-terminal protein amino acid modification
## 2415 dentate gyrus development
## 2416 intracellular steroid hormone receptor signaling pathway
## 2417 androgen receptor signaling pathway
## 2418 positive regulation of telomere maintenance
## 2419 positive regulation of telomere maintenance via telomerase
## 2420 negative regulation of epidermal growth factor receptor signaling pathway
## 2421 respiratory burst
## 2422 metanephric nephron morphogenesis
## 2423 negative regulation of ERBB signaling pathway
## 2424 pericyte cell differentiation
## 2425 positive regulation of telomere maintenance via telomere lengthening
## 2426 positive regulation of intrinsic apoptotic signaling pathway
## 2427 tissue homeostasis
## 2428 locomotory behavior
## 2429 stem cell population maintenance
## 2430 positive regulation of T cell differentiation
## 2431 positive regulation of lymphocyte differentiation
## 2432 maintenance of cell number
## 2433 positive regulation of neuron death
## 2434 gliogenesis
## 2435 regulation of DNA binding
## 2436 positive regulation of cytokine secretion
## 2437 positive regulation of sequence-specific DNA binding transcription factor activity
## 2438 actin filament-based process
## 2439 ribosomal large subunit assembly
## 2440 alternative mRNA splicing, via spliceosome
## 2441 long-chain fatty acid metabolic process
## 2442 regulation of T-helper 1 type immune response
## 2443 glomerular filtration
## 2444 regulation of gluconeogenesis
## 2445 DNA-templated transcription, elongation
## 2446 cysteine metabolic process
## 2447 bile acid biosynthetic process
## 2448 endosome organization
## 2449 mesoderm development
## 2450 aspartate family amino acid biosynthetic process
## 2451 peptide transport
## 2452 pentose metabolic process
## 2453 negative regulation of blood coagulation
## 2454 positive regulation of cyclic nucleotide metabolic process
## 2455 positive regulation of cyclic nucleotide biosynthetic process
## 2456 positive regulation of cAMP metabolic process
## 2457 positive regulation of cAMP biosynthetic process
## 2458 positive regulation of histone modification
## 2459 biomineral tissue development
## 2460 regulation of cyclase activity
## 2461 negative regulation of interleukin-2 production
## 2462 mitochondrial respiratory chain complex assembly
## 2463 response to vitamin
## 2464 mesangial cell-matrix adhesion
## 2465 paracrine signaling
## 2466 intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## 2467 histone exchange
## 2468 nose development
## 2469 regulation of adenylate cyclase activity
## 2470 negative regulation of smoothened signaling pathway
## 2471 GTP metabolic process
## 2472 regulation of defense response to virus by host
## 2473 negative regulation of coagulation
## 2474 positive regulation of filopodium assembly
## 2475 retina morphogenesis in camera-type eye
## 2476 angiogenesis involved in wound healing
## 2477 embryonic retina morphogenesis in camera-type eye
## 2478 transdifferentiation
## 2479 vascular wound healing
## 2480 kidney vasculature development
## 2481 cellular response to electrical stimulus
## 2482 regulation of granulocyte colony-stimulating factor production
## 2483 positive regulation of granulocyte colony-stimulating factor production
## 2484 extracellular exosome assembly
## 2485 mesangial cell differentiation
## 2486 glomerular mesangial cell differentiation
## 2487 glomerular endothelium development
## 2488 glomerulus vasculature development
## 2489 glomerular mesangium development
## 2490 metanephric glomerular mesangium development
## 2491 metanephric glomerulus vasculature development
## 2492 metanephric glomerular mesangial cell differentiation
## 2493 positive regulation of protein homodimerization activity
## 2494 renal filtration
## 2495 extracellular exosome biogenesis
## 2496 negative regulation of cellular response to heat
## 2497 negative regulation of interleukin-2 secretion
## 2498 positive regulation of glial cell-derived neurotrophic factor secretion
## 2499 regulation of macrophage colony-stimulating factor production
## 2500 positive regulation of response to oxidative stress
## 2501 metal ion homeostasis
## 2502 organelle organization
## 2503 cellular homeostasis
## 2504 small GTPase mediated signal transduction
## 2505 positive regulation of proteolysis
## 2506 cilium organization
## 2507 regulation of cytokine secretion
## 2508 embryo development
## 2509 establishment or maintenance of cell polarity
## 2510 positive regulation of T cell activation
## 2511 cellular response to peptide
## 2512 response to extracellular stimulus
## 2513 negative regulation of phosphorus metabolic process
## 2514 negative regulation of phosphate metabolic process
## 2515 cellular process
## 2516 gamete generation
## 2517 negative regulation of transcription from RNA polymerase II promoter
## 2518 nucleocytoplasmic transport
## 2519 negative regulation of kinase activity
## 2520 nuclear transport
## 2521 positive regulation of transcription from RNA polymerase II promoter
## 2522 response to hormone
## 2523 negative regulation of protein serine/threonine kinase activity
## 2524 regulation of glial cell differentiation
## 2525 mesenchymal cell differentiation
## 2526 negative regulation of intrinsic apoptotic signaling pathway
## 2527 regulation of primary metabolic process
## 2528 adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## 2529 cell junction assembly
## 2530 positive regulation of epithelial cell proliferation
## 2531 protein ubiquitination
## 2532 anterior/posterior pattern specification
## 2533 peptidyl-tyrosine dephosphorylation
## 2534 regulation of production of molecular mediator of immune response
## 2535 regulation of cytokine production involved in immune response
## 2536 renal system process
## 2537 DNA-templated transcription, initiation
## 2538 regulation of mitochondrial membrane permeability
## 2539 regulation of muscle cell differentiation
## 2540 negative regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## 2541 cellular response to ketone
## 2542 organic hydroxy compound metabolic process
## 2543 protein-DNA complex assembly
## 2544 organic anion transport
## 2545 single-organism metabolic process
## 2546 translational termination
## 2547 protein import into mitochondrial matrix
## 2548 mitochondrial translational elongation
## 2549 mitochondrial translational termination
## 2550 protein trimerization
## 2551 cellular response to ionizing radiation
## 2552 positive regulation of neural precursor cell proliferation
## 2553 protein catabolic process
## 2554 protein-DNA complex subunit organization
## 2555 positive regulation of leukocyte cell-cell adhesion
## 2556 polysaccharide catabolic process
## 2557 response to superoxide
## 2558 response to oxygen radical
## 2559 membrane raft polarization
## 2560 blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## 2561 cytoplasmic translation
## 2562 AMP biosynthetic process
## 2563 cAMP biosynthetic process
## 2564 NADP biosynthetic process
## 2565 folic acid-containing compound metabolic process
## 2566 iron ion transport
## 2567 phagocytosis, engulfment
## 2568 synapsis
## 2569 cytoplasmic sequestering of NF-kappaB
## 2570 determination of left/right symmetry
## 2571 adult heart development
## 2572 phospholipid catabolic process
## 2573 response to cold
## 2574 regulation of double-strand break repair via homologous recombination
## 2575 regulation of platelet-derived growth factor receptor signaling pathway
## 2576 negative regulation of transcription by competitive promoter binding
## 2577 ferric iron transport
## 2578 fatty acid transport
## 2579 long-chain fatty acid transport
## 2580 terpenoid biosynthetic process
## 2581 lateral ventricle development
## 2582 nerve development
## 2583 regulation of cerebellar granule cell precursor proliferation
## 2584 positive regulation of cerebellar granule cell precursor proliferation
## 2585 bone mineralization
## 2586 stabilization of membrane potential
## 2587 positive regulation of myeloid dendritic cell activation
## 2588 zymogen activation
## 2589 negative regulation of TOR signaling
## 2590 mitochondrial DNA metabolic process
## 2591 response to peptidoglycan
## 2592 negative regulation of interleukin-12 production
## 2593 response to vitamin B2
## 2594 transferrin transport
## 2595 mammary gland epithelial cell proliferation
## 2596 positive regulation of mammary gland epithelial cell proliferation
## 2597 protein localization to kinetochore
## 2598 response to nicotine
## 2599 gonad morphogenesis
## 2600 miRNA mediated inhibition of translation
## 2601 tetrahydrofolate interconversion
## 2602 viral RNA genome replication
## 2603 positive regulation of embryonic development
## 2604 regulation of fibroblast growth factor receptor signaling pathway
## 2605 plasma membrane ATP synthesis coupled electron transport
## 2606 cytoplasmic sequestering of transcription factor
## 2607 pigmentation
## 2608 cellular component maintenance
## 2609 'de novo' AMP biosynthetic process
## 2610 'de novo' CTP biosynthetic process
## 2611 positive regulation of TRAIL biosynthetic process
## 2612 regulation of myoblast differentiation
## 2613 positive regulation of exocytosis
## 2614 negative regulation of nucleotide metabolic process
## 2615 positive regulation of alpha-beta T cell proliferation
## 2616 tetrahydrofolate metabolic process
## 2617 folic acid metabolic process
## 2618 axial mesoderm development
## 2619 axial mesoderm morphogenesis
## 2620 axial mesoderm formation
## 2621 forebrain morphogenesis
## 2622 barbed-end actin filament capping
## 2623 actin filament bundle assembly
## 2624 response to folic acid
## 2625 Golgi localization
## 2626 membrane raft localization
## 2627 negative regulation of focal adhesion assembly
## 2628 notochord cell development
## 2629 mammary gland involution
## 2630 response to growth hormone
## 2631 actin filament bundle organization
## 2632 chromosome organization involved in meiotic cell cycle
## 2633 chromatin maintenance
## 2634 heterochromatin maintenance
## 2635 cellular response to superoxide
## 2636 protein localization to chromosome, centromeric region
## 2637 chromosome passenger complex localization to kinetochore
## 2638 phagosome maturation
## 2639 phagosome acidification
## 2640 negative regulation of substrate adhesion-dependent cell spreading
## 2641 regulation of ruffle assembly
## 2642 negative regulation of purine nucleotide metabolic process
## 2643 positive regulation of NIK/NF-kappaB signaling
## 2644 regulation of lymphangiogenesis
## 2645 negative regulation of lymphangiogenesis
## 2646 regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## 2647 negative regulation of cell junction assembly
## 2648 negative regulation of adherens junction organization
## 2649 negative regulation of TORC1 signaling
## 2650 positive regulation of actin cytoskeleton reorganization
## 2651 regulation of sodium ion transmembrane transporter activity
## 2652 regulation of double-strand break repair
## 2653 negative regulation of protein phosphorylation
## 2654 snRNA metabolic process
## 2655 cellular response to UV
## 2656 amyloid precursor protein metabolic process
## 2657 regulation of transcription factor import into nucleus
## 2658 response to estrogen
## 2659 positive regulation of lipase activity
## 2660 placenta blood vessel development
## 2661 regulation of brown fat cell differentiation
## 2662 regulation of hematopoietic stem cell differentiation
## 2663 neural tube development
## 2664 regulation of cellular metabolic process
## 2665 positive regulation of cell death
## 2666 single-organism intracellular transport
## 2667 cell activation involved in immune response
## 2668 leukocyte activation involved in immune response
## 2669 regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## 2670 protein methylation
## 2671 regulation of microtubule-based process
## 2672 regulation of intrinsic apoptotic signaling pathway
## 2673 mitochondrial membrane organization
## 2674 protein dephosphorylation
## 2675 cellular divalent inorganic cation homeostasis
## 2676 regulation of alpha-beta T cell differentiation
## 2677 negative regulation of inflammatory response
## 2678 epidermis development
## 2679 mitotic sister chromatid segregation
## 2680 metanephros development
## 2681 positive regulation of NF-kappaB transcription factor activity
## 2682 regulation of protein kinase B signaling
## 2683 regulation of calcium ion transport
## 2684 positive regulation of protein modification by small protein conjugation or removal
## 2685 positive regulation of lymphocyte activation
## 2686 cellular glucose homeostasis
## 2687 immunoglobulin biosynthetic process
## 2688 vesicle docking involved in exocytosis
## 2689 motor neuron axon guidance
## 2690 protein O-linked glycosylation via serine
## 2691 protein O-linked glycosylation via threonine
## 2692 regulation of cyclic nucleotide metabolic process
## 2693 regulation of cyclic nucleotide biosynthetic process
## 2694 regulation of cAMP metabolic process
## 2695 regulation of cAMP biosynthetic process
## 2696 axon regeneration
## 2697 regulation of interleukin-18 production
## 2698 positive regulation of interleukin-6 production
## 2699 positive regulation of RNA splicing
## 2700 positive regulation of dephosphorylation
## 2701 positive regulation of protein dephosphorylation
## 2702 sequestering of extracellular ligand from receptor
## 2703 negative regulation of NF-kappaB import into nucleus
## 2704 regulation of DNA damage response, signal transduction by p53 class mediator
## 2705 negative regulation by host of viral transcription
## 2706 positive regulation of mRNA splicing, via spliceosome
## 2707 response to axon injury
## 2708 homocysteine metabolic process
## 2709 positive regulation of oxidoreductase activity
## 2710 regulation of protein tyrosine kinase activity
## 2711 demethylation
## 2712 hematopoietic stem cell proliferation
## 2713 regulation of interleukin-2 secretion
## 2714 extracellular negative regulation of signal transduction
## 2715 regulation of sodium ion transmembrane transport
## 2716 regulation of energy homeostasis
## 2717 regulation of vasculogenesis
## 2718 positive regulation of vasculogenesis
## 2719 germ cell development
## 2720 metanephric nephron development
## 2721 negative regulation of hemopoiesis
## 2722 behavior
## 2723 dephosphorylation
## 2724 cellular protein catabolic process
## 2725 proteolysis involved in cellular protein catabolic process
## 2726 regulation of transport
## 2727 protein targeting
## 2728 complement activation, classical pathway
## 2729 cell-matrix adhesion
## 2730 positive regulation of tumor necrosis factor production
## 2731 positive regulation of cysteine-type endopeptidase activity involved in apoptotic process
## 2732 positive regulation of tumor necrosis factor superfamily cytokine production
## 2733 homeostatic process
## 2734 cellular response to abiotic stimulus
## 2735 inflammatory response
## 2736 growth
## 2737 anion transmembrane transport
## 2738 alcohol metabolic process
## 2739 regulation of gliogenesis
## 2740 regulation of inflammatory response
## 2741 activation of cysteine-type endopeptidase activity involved in apoptotic process
## 2742 female gamete generation
## 2743 negative regulation of epithelial cell migration
## 2744 L-amino acid transport
## 2745 keratinization
## 2746 positive regulation of transporter activity
## 2747 somatic stem cell population maintenance
## 2748 interleukin-12-mediated signaling pathway
## 2749 positive regulation of fibroblast proliferation
## 2750 oogenesis
## 2751 head morphogenesis
## 2752 response to interleukin-12
## 2753 positive regulation of cation transmembrane transport
## 2754 regulation of protein ubiquitination involved in ubiquitin-dependent protein catabolic process
## 2755 positive regulation of DNA biosynthetic process
## 2756 protein polyubiquitination
## 2757 regulation of acute inflammatory response
## 2758 steroid biosynthetic process
## 2759 humoral immune response
## 2760 keratinocyte differentiation
## 2761 negative regulation of protein complex assembly
## 2762 cellular response to radiation
## 2763 positive regulation of apoptotic process
## 2764 positive regulation of programmed cell death
## 2765 secretion
## 2766 regulation of cell cycle phase transition
## 2767 regulation of peptidyl-tyrosine phosphorylation
## 2768 cardiac cell development
## 2769 regulation of metabolic process
## 2770 membrane organization
## 2771 response to nitrogen compound
## 2772 eye development
## 2773 developmental growth
## 2774 protein transport
## 2775 hormone metabolic process
## 2776 regulation of regulatory T cell differentiation
## 2777 regulation of response to cytokine stimulus
## 2778 cellular catabolic process
## 2779 extracellular matrix organization
## 2780 extracellular structure organization
## 2781 divalent inorganic cation homeostasis
## 2782 positive regulation of response to external stimulus
## 2783 cardiocyte differentiation
## 2784 negative regulation of transferase activity
## 2785 receptor-mediated endocytosis
## 2786 regulation of stress-activated MAPK cascade
## 2787 regulation of stress-activated protein kinase signaling cascade
## 2788 regulation of humoral immune response
## 2789 transcription initiation from RNA polymerase II promoter
## 2790 translational elongation
## 2791 complement activation
## 2792 regulation of complement activation
## 2793 negative regulation of protein ubiquitination
## 2794 positive regulation of interleukin-8 production
## 2795 erythrocyte homeostasis
## 2796 ATP-dependent chromatin remodeling
## 2797 localization within membrane
## 2798 cellular response to amino acid stimulus
## 2799 negative regulation of protein modification by small protein conjugation or removal
## 2800 negative regulation of reactive oxygen species biosynthetic process
## 2801 glucose transmembrane transport
## 2802 regulation of protein activation cascade
## 2803 sulfur amino acid catabolic process
## 2804 somitogenesis
## 2805 skeletal muscle contraction
## 2806 regulation of membrane depolarization
## 2807 chitin catabolic process
## 2808 neuron cell-cell adhesion
## 2809 axo-dendritic transport
## 2810 anterograde axonal transport
## 2811 adult feeding behavior
## 2812 detection of biotic stimulus
## 2813 regulation of plasminogen activation
## 2814 positive regulation of plasminogen activation
## 2815 glycoside metabolic process
## 2816 protein-cofactor linkage
## 2817 protein-pyridoxal-5-phosphate linkage via peptidyl-N6-pyridoxal phosphate-L-lysine
## 2818 protein-pyridoxal-5-phosphate linkage
## 2819 cysteine biosynthetic process via cystathionine
## 2820 cysteine biosynthetic process
## 2821 transsulfuration
## 2822 arachidonic acid metabolic process
## 2823 ventricular system development
## 2824 substantia nigra development
## 2825 branchiomotor neuron axon guidance
## 2826 hindbrain tangential cell migration
## 2827 cerebellar granule cell precursor tangential migration
## 2828 intracellular lipid transport
## 2829 negative regulation of protein oligomerization
## 2830 negative regulation of protein homooligomerization
## 2831 endosome transport via multivesicular body sorting pathway
## 2832 regulation of mammary gland epithelial cell proliferation
## 2833 miRNA loading onto RISC involved in gene silencing by miRNA
## 2834 hippo signaling
## 2835 fatty-acyl-CoA metabolic process
## 2836 photoreceptor cell outer segment organization
## 2837 response to alkaloid
## 2838 endothelial cell migration
## 2839 protein sulfhydration
## 2840 homologous chromosome segregation
## 2841 establishment or maintenance of epithelial cell apical/basal polarity
## 2842 positive regulation of nitric oxide biosynthetic process
## 2843 negative regulation of viral entry into host cell
## 2844 positive regulation of viral entry into host cell
## 2845 phospholipid dephosphorylation
## 2846 embryonic skeletal system morphogenesis
## 2847 regulation of axon extension involved in axon guidance
## 2848 brain morphogenesis
## 2849 neural nucleus development
## 2850 interleukin-1 secretion
## 2851 negative regulation of interleukin-1 secretion
## 2852 negative regulation of interleukin-1 beta secretion
## 2853 positive regulation of interleukin-1 secretion
## 2854 positive regulation of interleukin-1 beta secretion
## 2855 regulation of smooth muscle cell differentiation
## 2856 positive regulation of smooth muscle cell differentiation
## 2857 positive regulation of ubiquitin-protein transferase activity
## 2858 regulation of mitochondrial depolarization
## 2859 regulation of resting membrane potential
## 2860 limb bud formation
## 2861 labyrinthine layer development
## 2862 hair follicle placode formation
## 2863 dendritic spine development
## 2864 dendritic spine morphogenesis
## 2865 positive regulation of dendritic spine development
## 2866 glycolytic process through glucose-6-phosphate
## 2867 canonical glycolysis
## 2868 tRNA threonylcarbamoyladenosine metabolic process
## 2869 hydrogen sulfide metabolic process
## 2870 hydrogen sulfide biosynthetic process
## 2871 L-methionine biosynthetic process
## 2872 'de novo' L-methionine biosynthetic process
## 2873 negative regulation of lipid kinase activity
## 2874 cellular response to virus
## 2875 axonal transport
## 2876 protein localization to axon
## 2877 positive regulation of dendrite development
## 2878 positive regulation of cellular response to heat
## 2879 glucosamine-containing compound catabolic process
## 2880 regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## 2881 negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## 2882 negative regulation of viral release from host cell
## 2883 regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## 2884 negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## 2885 negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## 2886 regulation of axon guidance
## 2887 positive regulation of bicellular tight junction assembly
## 2888 Golgi apparatus mannose trimming
## 2889 positive regulation of aortic smooth muscle cell differentiation
## 2890 regulation of vascular smooth muscle cell differentiation
## 2891 positive regulation of vascular smooth muscle cell differentiation
## 2892 positive regulation of T-helper 17 type immune response
## 2893 positive regulation of T-helper 17 cell differentiation
## 2894 regulation of hepatic stellate cell activation
## 2895 positive regulation of hepatic stellate cell activation
## 2896 regulation of bicellular tight junction assembly
## 2897 positive regulation of kinase activity
## 2898 chondrocyte differentiation
## 2899 columnar/cuboidal epithelial cell differentiation
## 2900 regulation of actin polymerization or depolymerization
## 2901 neutral amino acid transport
## 2902 Rac protein signal transduction
## 2903 peptidyl-threonine modification
## 2904 regulation of actin filament length
## 2905 regulation of actin filament polymerization
## 2906 negative regulation of histone modification
## 2907 hair follicle morphogenesis
## 2908 neuron projection regeneration
## 2909 epithelial cell differentiation involved in kidney development
## 2910 negative regulation of protein import into nucleus
## 2911 negative regulation of transcription factor import into nucleus
## 2912 regulation of carbohydrate biosynthetic process
## 2913 negative regulation of CD4-positive, alpha-beta T cell differentiation
## 2914 regulation of memory T cell differentiation
## 2915 positive regulation of memory T cell differentiation
## 2916 negative regulation of T cell differentiation
## 2917 negative regulation of T-helper cell differentiation
## 2918 negative regulation of alpha-beta T cell differentiation
## 2919 epidermis morphogenesis
## 2920 negative regulation of peptidyl-tyrosine phosphorylation
## 2921 regulation of striated muscle cell differentiation
## 2922 negative regulation of protein kinase B signaling
## 2923 long-term synaptic potentiation
## 2924 glomerular epithelium development
## 2925 metanephric glomerulus development
## 2926 regulation of protein depolymerization
## 2927 negative regulation of chromatin organization
## 2928 negative regulation of CD4-positive, alpha-beta T cell activation
## 2929 cellular response to oxygen-containing compound
## 2930 regulation of viral process
## 2931 regulation of viral life cycle
## 2932 response to corticosteroid
## 2933 intracellular protein transport
## 2934 respiratory system development
## 2935 protein deubiquitination
## 2936 protein modification by small protein removal
## 2937 inactivation of MAPK activity
## 2938 lymphocyte activation involved in immune response
## 2939 negative regulation of humoral immune response
## 2940 regulation of phospholipase activity
## 2941 negative regulation of viral transcription
## 2942 positive regulation of ion transmembrane transport
## 2943 negative regulation of complement activation
## 2944 regulation of synaptic plasticity
## 2945 calcium ion transmembrane transport
## 2946 stem cell proliferation
## 2947 response to tumor necrosis factor
## 2948 cellular response to tumor necrosis factor
## 2949 blastocyst development
## 2950 signal release
## 2951 regulation of T cell proliferation
## 2952 negative regulation of cellular response to growth factor stimulus
## 2953 nitrogen compound transport
## 2954 microtubule cytoskeleton organization
## 2955 response to bacterium
## 2956 regulation of reactive oxygen species metabolic process
## 2957 peptidyl-amino acid modification
## 2958 negative regulation of cell proliferation
## 2959 establishment of cell polarity
## 2960 defense response to bacterium
## 2961 carboxylic acid catabolic process
## 2962 male sex differentiation
## 2963 coenzyme biosynthetic process
## 2964 negative regulation of protein binding
## 2965 regulation of transcription from RNA polymerase II promoter in response to stress
## 2966 regulation of anion transport
## 2967 synaptic vesicle cycle
## 2968 regulation of p38MAPK cascade
## 2969 apoptotic signaling pathway
## 2970 regulation of binding
## 2971 organonitrogen compound catabolic process
## 2972 embryonic morphogenesis
## 2973 transmembrane receptor protein serine/threonine kinase signaling pathway
## 2974 microtubule-based process
## 2975 positive regulation of nitrogen compound metabolic process
## 2976 innate immune response activating cell surface receptor signaling pathway
## 2977 stimulatory C-type lectin receptor signaling pathway
## 2978 protein acetylation
## 2979 internal protein amino acid acetylation
## 2980 regulation of cellular amino acid metabolic process
## 2981 memory
## 2982 purine ribonucleoside monophosphate biosynthetic process
## 2983 post-embryonic development
## 2984 positive regulation of lamellipodium assembly
## 2985 positive regulation of glucose transport
## 2986 histone acetylation
## 2987 cytochrome complex assembly
## 2988 internal peptidyl-lysine acetylation
## 2989 peptidyl-lysine acetylation
## 2990 sphingolipid biosynthetic process
## 2991 regulation of histone methylation
## 2992 negative regulation of NF-kappaB transcription factor activity
## 2993 response to retinoic acid
## 2994 regulation of cellular amine metabolic process
## 2995 exocrine system development
## 2996 response to muscle stretch
## 2997 regulation of tyrosine phosphorylation of STAT protein
## 2998 positive regulation of tyrosine phosphorylation of STAT protein
## 2999 negative regulation of lymphocyte differentiation
## 3000 regulation of glucose import
## 3001 positive regulation of glucose import
## 3002 embryonic digestive tract development
## 3003 tissue remodeling
## 3004 defense response to Gram-negative bacterium
## 3005 regulation of filopodium assembly
## 3006 cytosolic calcium ion transport
## 3007 calcium ion transport into cytosol
## 3008 cornification
## 3009 negative regulation of protein localization to nucleus
## 3010 guanosine-containing compound metabolic process
## 3011 negative regulation of leukocyte differentiation
## 3012 positive regulation of lamellipodium organization
## 3013 regulation of cellular macromolecule biosynthetic process
## 3014 negative regulation of angiogenesis
## 3015 peptidyl-lysine methylation
## 3016 cerebral cortex development
## 3017 regulation of transmembrane transporter activity
## 3018 histone lysine methylation
## 3019 response to amino acid
## 3020 regulation of DNA-templated transcription in response to stress
## 3021 regulation of symbiosis, encompassing mutualism through parasitism
## 3022 organic hydroxy compound biosynthetic process
## 3023 response to biotic stimulus
## 3024 fatty acid biosynthetic process
## 3025 amino acid transport
## 3026 negative regulation of protein processing
## 3027 positive regulation of T cell proliferation
## 3028 regulation of fat cell differentiation
## 3029 renal tubule morphogenesis
## 3030 nephron morphogenesis
## 3031 nephron tubule morphogenesis
## 3032 nephron epithelium morphogenesis
## 3033 hydrogen ion transmembrane transport
## 3034 regulation of protein complex assembly
## 3035 mitochondrial transport
## 3036 negative regulation of cell development
## 3037 positive regulation of gene expression
## 3038 regulation of wound healing
## 3039 regulation of cation transmembrane transport
## 3040 negative regulation of neurogenesis
## 3041 ribosomal subunit export from nucleus
## 3042 ribosomal large subunit export from nucleus
## 3043 mesoderm formation
## 3044 morphogenesis of a polarized epithelium
## 3045 embryonic placenta development
## 3046 mast cell mediated immunity
## 3047 mast cell chemotaxis
## 3048 negative regulation of acute inflammatory response
## 3049 respiratory burst involved in defense response
## 3050 epithelial cilium movement
## 3051 DNA modification
## 3052 aspartate metabolic process
## 3053 glycosphingolipid metabolic process
## 3054 lysosome organization
## 3055 nuclear migration
## 3056 sensory perception of sound
## 3057 sensory perception of smell
## 3058 response to pH
## 3059 response to gamma radiation
## 3060 T cell chemotaxis
## 3061 positive regulation of protein processing
## 3062 notochord formation
## 3063 regulation of myeloid dendritic cell activation
## 3064 positive regulation of neutrophil apoptotic process
## 3065 positive regulation of myeloid cell apoptotic process
## 3066 plasma lipoprotein particle assembly
## 3067 regulation of histone acetylation
## 3068 natural killer cell chemotaxis
## 3069 B cell chemotaxis
## 3070 positive regulation of mitochondrial membrane permeability
## 3071 post-anal tail morphogenesis
## 3072 B cell proliferation
## 3073 tissue regeneration
## 3074 DNA damage response, signal transduction resulting in transcription
## 3075 positive regulation of protein complex disassembly
## 3076 mast cell degranulation
## 3077 regulation of blood vessel endothelial cell migration
## 3078 cellular extravasation
## 3079 mast cell activation
## 3080 amino sugar catabolic process
## 3081 regulation of viral entry into host cell
## 3082 focal adhesion assembly
## 3083 mesoderm morphogenesis
## 3084 notochord morphogenesis
## 3085 negative regulation of axon regeneration
## 3086 cytokine secretion
## 3087 regulation of lipoprotein metabolic process
## 3088 positive regulation of lipoprotein metabolic process
## 3089 musculoskeletal movement
## 3090 detection of chemical stimulus involved in sensory perception of smell
## 3091 sensory perception of mechanical stimulus
## 3092 regulation of sensory perception of pain
## 3093 mast cell differentiation
## 3094 uterus morphogenesis
## 3095 protein-lipid complex assembly
## 3096 negative regulation of neuron projection regeneration
## 3097 rRNA-containing ribonucleoprotein complex export from nucleus
## 3098 neutrophil extravasation
## 3099 regulation of membrane lipid distribution
## 3100 mast cell migration
## 3101 regulation of cell cycle checkpoint
## 3102 regulation of viral release from host cell
## 3103 positive regulation of interferon-gamma secretion
## 3104 regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## 3105 negative regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## 3106 regulation of protein lipidation
## 3107 positive regulation of protein lipidation
## 3108 negative regulation of protein localization to plasma membrane
## 3109 positive regulation of protein maturation
## 3110 negative regulation of protein localization to cell periphery
## 3111 negative regulation of protein localization to membrane
## 3112 positive regulation of membrane permeability
## 3113 regulation of peptidyl-lysine acetylation
## 3114 regulation of T cell differentiation
## 3115 cardiac muscle tissue development
## 3116 steroid metabolic process
## 3117 protein localization to nucleus
## 3118 learning
## 3119 ephrin receptor signaling pathway
## 3120 negative regulation of cytokine secretion
## 3121 negative regulation of T cell activation
## 3122 negative regulation of leukocyte cell-cell adhesion
## 3123 positive regulation of cysteine-type endopeptidase activity
## 3124 secretion by cell
## 3125 carbohydrate derivative catabolic process
## 3126 response to drug
## 3127 regulation of cellular component biogenesis
## 3128 negative regulation of protein modification process
## 3129 positive regulation of cell-cell adhesion
## 3130 negative regulation of transport
## 3131 transforming growth factor beta receptor signaling pathway
## 3132 negative regulation of MAPK cascade
## 3133 homeostasis of number of cells
## 3134 synapse organization
## 3135 connective tissue development
## 3136 histone methylation
## 3137 negative regulation of MAP kinase activity
## 3138 positive regulation of protein localization to membrane
## 3139 response to organonitrogen compound
## 3140 regulation of lymphocyte differentiation
## 3141 regulation of nucleobase-containing compound metabolic process
## 3142 cellular response to growth factor stimulus
## 3143 platelet degranulation
## 3144 serine family amino acid metabolic process
## 3145 negative regulation of G2/M transition of mitotic cell cycle
## 3146 macrophage differentiation
## 3147 midbrain development
## 3148 positive regulation of proteasomal ubiquitin-dependent protein catabolic process
## 3149 T cell proliferation
## 3150 positive regulation of osteoblast differentiation
## 3151 cAMP metabolic process
## 3152 regulation of behavior
## 3153 regulation of meiotic cell cycle
## 3154 lens fiber cell differentiation
## 3155 regulation of cholesterol metabolic process
## 3156 positive regulation of proteasomal protein catabolic process
## 3157 negative regulation of cell cycle G2/M phase transition
## 3158 regulation of phospholipid metabolic process
## 3159 regulation of telomere capping
## 3160 positive regulation of telomere capping
## 3161 regulation of ubiquitin protein ligase activity
## 3162 negative regulation of ubiquitin protein ligase activity
## 3163 regulation of gene expression
## 3164 positive regulation of lymphocyte mediated immunity
## 3165 cholesterol biosynthetic process
## 3166 outer mitochondrial membrane organization
## 3167 cell-cell junction assembly
## 3168 body morphogenesis
## 3169 tRNA import into mitochondrion
## 3170 sterol biosynthetic process
## 3171 intracellular receptor signaling pathway
## 3172 regulation of epithelial cell differentiation
## 3173 RNA import into mitochondrion
## 3174 regulation of epidermis development
## 3175 positive regulation of smooth muscle cell proliferation
## 3176 positive regulation of cell division
## 3177 renal tubule development
## 3178 mitochondrial outer membrane translocase complex assembly
## 3179 regulation of transforming growth factor beta production
## 3180 nephron tubule development
## 3181 ciliary basal body docking
## 3182 regulation of blood vessel diameter
## 3183 secondary alcohol biosynthetic process
## 3184 muscle organ development
## 3185 organic substance catabolic process
## 3186 regulation of cell projection assembly
## 3187 learning or memory
## 3188 cholesterol metabolic process
## 3189 male gonad development
## 3190 organic acid transport
## 3191 sterol metabolic process
## 3192 positive regulation of protein complex assembly
## 3193 development of primary male sexual characteristics
## 3194 carboxylic acid transport
## 3195 cognition
## 3196 regulation of protein processing
## 3197 secondary alcohol metabolic process
## 3198 regulation of protein maturation
## 3199 cell maturation
## 3200 negative regulation of lymphocyte activation
## 3201 protein activation cascade
## 3202 regulation of metal ion transport
## 3203 transport
## 3204 cilium assembly
## 3205 cellular response to hormone stimulus
## 3206 cellular response to nitrogen compound
## 3207 single-organism organelle organization
## 3208 regulation of macromolecule biosynthetic process
## 3209 multicellular organismal homeostasis
## 3210 cellular cation homeostasis
## 3211 response to stress
## 3212 sodium ion transport
## 3213 lipid transport
## 3214 regulation of lymphocyte proliferation
## 3215 nephron epithelium development
## 3216 kidney epithelium development
## 3217 regulation of extrinsic apoptotic signaling pathway
## 3218 regulation of MAP kinase activity
## 3219 sex differentiation
## 3220 response to steroid hormone
## 3221 negative regulation of molecular function
## 3222 cell proliferation
## 3223 positive regulation of leukocyte activation
## 3224 regulation of DNA recombination
## 3225 activation of MAPKKK activity
## 3226 microglial cell activation
## 3227 atrial septum development
## 3228 cilium movement
## 3229 transcription from mitochondrial promoter
## 3230 cell-substrate junction assembly
## 3231 meiosis I
## 3232 visual behavior
## 3233 serine family amino acid biosynthetic process
## 3234 epithelial cell migration
## 3235 negative regulation of mitochondrion organization
## 3236 regulation of actin filament depolymerization
## 3237 negative regulation of actin filament depolymerization
## 3238 negative regulation of actin filament polymerization
## 3239 membrane raft organization
## 3240 positive regulation of actin filament bundle assembly
## 3241 regulation of protein homooligomerization
## 3242 interleukin-1 beta production
## 3243 interleukin-1 production
## 3244 negative regulation of chemokine production
## 3245 positive regulation of interleukin-1 beta production
## 3246 positive regulation of interleukin-1 production
## 3247 negative regulation of monooxygenase activity
## 3248 histone H3-K4 demethylation
## 3249 leading edge cell differentiation
## 3250 protein localization to M-band
## 3251 positive regulation of protein import into nucleus
## 3252 photoreceptor cell development
## 3253 meiotic chromosome segregation
## 3254 negative regulation of JAK-STAT cascade
## 3255 photoreceptor cell differentiation
## 3256 bone remodeling
## 3257 regulation of axon regeneration
## 3258 regulation of interleukin-1 secretion
## 3259 regulation of interleukin-1 beta secretion
## 3260 negative regulation of oxidoreductase activity
## 3261 cellular response to potassium ion starvation
## 3262 positive regulation of stress fiber assembly
## 3263 actin filament capping
## 3264 atrial septum morphogenesis
## 3265 response to fungicide
## 3266 neuron cellular homeostasis
## 3267 regulation of neuron projection regeneration
## 3268 histone H3 deacetylation
## 3269 cellular response to cadmium ion
## 3270 semaphorin-plexin signaling pathway
## 3271 protein-lipid complex subunit organization
## 3272 plasma lipoprotein particle organization
## 3273 epithelium migration
## 3274 regulation of release of cytochrome c from mitochondria
## 3275 negative regulation of transcription from RNA polymerase II promoter in response to stress
## 3276 regulation of NIK/NF-kappaB signaling
## 3277 regulation of macromitophagy
## 3278 quinone metabolic process
## 3279 regulation of pri-miRNA transcription from RNA polymerase II promoter
## 3280 positive regulation of pri-miRNA transcription from RNA polymerase II promoter
## 3281 positive regulation of protein import
## 3282 regulation of protein localization to cell cortex
## 3283 positive regulation of protein localization to cell cortex
## 3284 regulation of mitophagy in response to mitochondrial depolarization
## 3285 positive regulation of mitophagy in response to mitochondrial depolarization
## 3286 negative regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## 3287 positive regulation of DNA-templated transcription, initiation
## 3288 cellular calcium ion homeostasis
## 3289 pallium development
## 3290 chemical homeostasis
## 3291 negative regulation of protein kinase activity
## 3292 forebrain development
## 3293 gonad development
## 3294 carbohydrate transport
## 3295 development of primary sexual characteristics
## 3296 negative regulation of neuron differentiation
## 3297 response to glucocorticoid
## 3298 establishment of protein localization
## 3299 cell junction organization
## 3300 nucleosome organization
## 3301 regulation of multi-organism process
## 3302 hydrogen transport
## 3303 regulation of lamellipodium assembly
## 3304 positive regulation of G2/M transition of mitotic cell cycle
## 3305 proton transport
## 3306 negative regulation of innate immune response
## 3307 regulation of JAK-STAT cascade
## 3308 negative regulation of developmental growth
## 3309 positive regulation of lymphocyte proliferation
## 3310 regulation of lipase activity
## 3311 kidney morphogenesis
## 3312 cellular response to light stimulus
## 3313 activation of GTPase activity
## 3314 regulation of lamellipodium organization
## 3315 positive regulation of cell cycle G2/M phase transition
## 3316 monocarboxylic acid metabolic process
## 3317 catabolic process
## 3318 positive regulation of cell activation
## 3319 positive regulation of receptor recycling
## 3320 cell communication by electrical coupling
## 3321 ammonium transport
## 3322 regulation of calcium ion-dependent exocytosis
## 3323 glomerulus development
## 3324 snRNA transcription from RNA polymerase II promoter
## 3325 negative regulation of I-kappaB kinase/NF-kappaB signaling
## 3326 positive regulation of JAK-STAT cascade
## 3327 vesicle docking
## 3328 cell differentiation involved in kidney development
## 3329 cell differentiation involved in metanephros development
## 3330 ncRNA transcription
## 3331 positive regulation of protein localization to plasma membrane
## 3332 positive regulation of chromatin organization
## 3333 actin filament organization
## 3334 positive regulation of cell-substrate adhesion
## 3335 limbic system development
## 3336 hippocampus development
## 3337 respiratory tube development
## 3338 lung development
## 3339 regulation of interleukin-8 production
## 3340 positive regulation of neuron apoptotic process
## 3341 positive regulation of nucleobase-containing compound metabolic process
## 3342 organophosphate biosynthetic process
## 3343 heart development
## 3344 peptidyl-serine modification
## 3345 positive regulation of homeostatic process
## 3346 cell-cell junction organization
## 3347 multicellular organism reproduction
## 3348 multicellular organismal reproductive process
## 3349 myeloid cell homeostasis
## 3350 hexose transport
## 3351 lipid localization
## 3352 positive regulation of peptidase activity
## 3353 monosaccharide transport
## 3354 cellular process involved in reproduction in multicellular organism
## 3355 regulation of transporter activity
## 3356 negative regulation of vasculature development
## 3357 mitochondrial transmembrane transport
## 3358 negative regulation of blood vessel morphogenesis
## 3359 cellular response to steroid hormone stimulus
## 3360 negative regulation of nervous system development
## 3361 cellular response to lipid
## 3362 anion transport
## 3363 positive regulation of protein kinase activity
## 3364 regulation of epithelial cell proliferation
## 3365 cellular response to transforming growth factor beta stimulus
## 3366 nucleosome assembly
## 3367 regulation of protein serine/threonine kinase activity
## 3368 regulation of immune effector process
## 3369 response to ketone
## 3370 regulation of catalytic activity
## 3371 muscle cell differentiation
## 3372 neurotransmitter secretion
## 3373 negative regulation of neuron projection development
## 3374 erythrocyte differentiation
## 3375 cellular hormone metabolic process
## 3376 negative regulation of dephosphorylation
## 3377 steroid hormone mediated signaling pathway
## 3378 regulation of viral genome replication
## 3379 exocytosis
## 3380 natural killer cell activation
## 3381 positive regulation of proteolysis involved in cellular protein catabolic process
## 3382 immune effector process
## 3383 positive regulation of cell proliferation
## 3384 striated muscle cell development
## 3385 calcium ion homeostasis
## 3386 organic substance transport
## 3387 mitochondrial electron transport, ubiquinol to cytochrome c
## 3388 ceramide metabolic process
## 3389 xenobiotic metabolic process
## 3390 female gonad development
## 3391 response to xenobiotic stimulus
## 3392 detection of visible light
## 3393 positive regulation of collagen metabolic process
## 3394 regulation of fibroblast migration
## 3395 phosphatidylinositol 3-kinase signaling
## 3396 regulation of bone mineralization
## 3397 pre-miRNA processing
## 3398 regulation of vesicle fusion
## 3399 positive regulation of collagen biosynthetic process
## 3400 cellular response to heat
## 3401 angiotensin-activated signaling pathway
## 3402 positive regulation of circadian rhythm
## 3403 receptor metabolic process
## 3404 negative regulation of protein complex disassembly
## 3405 positive regulation of phosphatidylinositol 3-kinase activity
## 3406 inositol phosphate metabolic process
## 3407 positive regulation of epidermis development
## 3408 organophosphate catabolic process
## 3409 ceramide biosynthetic process
## 3410 development of primary female sexual characteristics
## 3411 female sex differentiation
## 3412 embryonic skeletal system development
## 3413 mitochondrion localization
## 3414 nucleus localization
## 3415 ureteric bud elongation
## 3416 regulation of dendritic spine development
## 3417 regulation of biomineral tissue development
## 3418 lymphocyte apoptotic process
## 3419 T cell apoptotic process
## 3420 regulation of calcineurin-NFAT signaling cascade
## 3421 cellular response to xenobiotic stimulus
## 3422 leukocyte apoptotic process
## 3423 ureteric bud invasion
## 3424 metanephric renal vesicle formation
## 3425 metanephric renal vesicle morphogenesis
## 3426 T cell migration
## 3427 tissue migration
## 3428 positive regulation of lipid kinase activity
## 3429 inorganic cation import into cell
## 3430 ATP hydrolysis coupled ion transmembrane transport
## 3431 ATP hydrolysis coupled cation transmembrane transport
## 3432 carbohydrate derivative transport
## 3433 negative regulation of protein depolymerization
## 3434 regulation of interferon-gamma secretion
## 3435 positive regulation of phospholipid metabolic process
## 3436 cranial skeletal system development
## 3437 positive regulation of leukocyte apoptotic process
## 3438 regulation of T-helper 17 type immune response
## 3439 regulation of T-helper 17 cell differentiation
## 3440 regulation of heart morphogenesis
## 3441 positive regulation of RNA metabolic process
## 3442 striated muscle cell differentiation
## 3443 cell division
## 3444 MAPK cascade
## 3445 negative regulation of wound healing
## 3446 nephron development
## 3447 positive regulation of defense response
## 3448 protein localization to membrane
## 3449 activation of MAPK activity
## 3450 endothelial cell development
## 3451 regulation of receptor recycling
## 3452 hair follicle development
## 3453 neural retina development
## 3454 cellular sodium ion homeostasis
## 3455 bile acid metabolic process
## 3456 hair cycle process
## 3457 negative regulation of transforming growth factor beta receptor signaling pathway
## 3458 regulation of cytokinesis
## 3459 regulation of cell adhesion mediated by integrin
## 3460 regulation of fatty acid biosynthetic process
## 3461 regulation of protein complex disassembly
## 3462 protein acylation
## 3463 positive regulation of lipid biosynthetic process
## 3464 digestive tract development
## 3465 regulation of telomerase activity
## 3466 positive regulation of telomerase activity
## 3467 digestive system development
## 3468 canonical Wnt signaling pathway
## 3469 Wnt signaling pathway, planar cell polarity pathway
## 3470 sodium ion export
## 3471 regulation of establishment of planar polarity
## 3472 mitotic spindle assembly
## 3473 skin epidermis development
## 3474 negative regulation of cellular response to transforming growth factor beta stimulus
## 3475 regulation of reproductive process
## 3476 chromatin assembly or disassembly
## 3477 regulation of response to wounding
## 3478 cation homeostasis
## 3479 regulation of kinase activity
## 3480 cellular response to acid chemical
## 3481 regulation of protein localization to membrane
## 3482 myeloid leukocyte activation
## 3483 regulation of body fluid levels
## 3484 negative regulation of response to external stimulus
## 3485 regulation of cell proliferation
## 3486 cellular component organization or biogenesis
## 3487 biological regulation
## 3488 supramolecular fiber organization
## 3489 regulation of cellular biosynthetic process
## 3490 negative regulation of defense response
## 3491 negative regulation of cell differentiation
## 3492 epithelial cell differentiation
## 3493 reproductive structure development
## 3494 positive regulation of transcription, DNA-templated
## 3495 cellular ion homeostasis
## 3496 positive regulation of endopeptidase activity
## 3497 central nervous system neuron differentiation
## 3498 actin filament-based movement
## 3499 positive regulation of Wnt signaling pathway
## 3500 mammary gland development
## 3501 limb development
## 3502 positive regulation of cellular protein catabolic process
## 3503 cytoskeleton organization
## 3504 positive regulation of leukocyte mediated immunity
## 3505 heart process
## 3506 regulation of tube size
## 3507 regulation of blood vessel size
## 3508 heart contraction
## 3509 mammary gland epithelium development
## 3510 positive regulation of cytokine production
## 3511 cellular protein complex assembly
## 3512 regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## 3513 membrane docking
## 3514 BMP signaling pathway
## 3515 regulation of reactive oxygen species biosynthetic process
## 3516 chromatin remodeling
## 3517 regulation of apoptotic signaling pathway
## 3518 positive regulation of RNA biosynthetic process
## 3519 regulation of adaptive immune response
## 3520 negative regulation of response to wounding
## 3521 animal organ morphogenesis
## 3522 establishment of localization
## 3523 vasculogenesis
## 3524 integrin-mediated signaling pathway
## 3525 regulation of fatty acid metabolic process
## 3526 regulation of interleukin-2 production
## 3527 response to glucagon
## 3528 sodium ion homeostasis
## 3529 lipid homeostasis
## 3530 definitive hemopoiesis
## 3531 cellular response to glucagon stimulus
## 3532 cardiac muscle cell contraction
## 3533 regulation of sequence-specific DNA binding transcription factor activity
## 3534 regulation of biosynthetic process
## 3535 reproductive system development
## 3536 release of cytochrome c from mitochondria
## 3537 protein demethylation
## 3538 meiotic nuclear division
## 3539 salivary gland development
## 3540 salivary gland morphogenesis
## 3541 phototransduction
## 3542 feeding behavior
## 3543 detection of light stimulus
## 3544 thiamine transport
## 3545 histone demethylation
## 3546 prechordal plate formation
## 3547 midbrain-hindbrain boundary initiation
## 3548 megakaryocyte differentiation
## 3549 monocyte differentiation
## 3550 positive regulation of cytokinesis
## 3551 regulation of interleukin-12 production
## 3552 negative regulation of interleukin-1 beta production
## 3553 megakaryocyte development
## 3554 phosphatidylglycerol acyl-chain remodeling
## 3555 multicellular organism metabolic process
## 3556 azole transport
## 3557 sarcomere organization
## 3558 positive regulation of fatty acid biosynthetic process
## 3559 positive regulation of fatty acid metabolic process
## 3560 regulation of dendrite development
## 3561 neuromuscular process controlling balance
## 3562 centrosome localization
## 3563 histone lysine demethylation
## 3564 lens fiber cell development
## 3565 lens fiber cell morphogenesis
## 3566 3'-UTR-mediated mRNA stabilization
## 3567 bone cell development
## 3568 positive regulation of p38MAPK cascade
## 3569 meiotic cell cycle process
## 3570 cellular response to angiotensin
## 3571 response to angiotensin
## 3572 regulation of DNA-templated transcription, initiation
## 3573 negative regulation of transcription regulatory region DNA binding
## 3574 positive regulation of anterior head development
## 3575 cellular response to organic cyclic compound
## 3576 response to endogenous stimulus
## 3577 regulation of hydrolase activity
## 3578 regulation of T cell activation
## 3579 cellular chemical homeostasis
## 3580 cell projection assembly
## 3581 Fc receptor signaling pathway
## 3582 negative regulation of binding
## 3583 cellular response to decreased oxygen levels
## 3584 cellular response to oxygen levels
## 3585 cellular response to hypoxia
## 3586 positive regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## 3587 regulation of MAPK cascade
## 3588 regulation of dephosphorylation
## 3589 cellular response to BMP stimulus
## 3590 protein localization to plasma membrane
## 3591 regulation of response to stress
## 3592 placenta development
## 3593 regulation of protein polymerization
## 3594 regulation of protein localization to plasma membrane
## 3595 positive regulation of protein localization to cell periphery
## 3596 organophosphate metabolic process
## 3597 regulation of tumor necrosis factor production
## 3598 regulation of tumor necrosis factor superfamily cytokine production
## 3599 developmental maturation
## 3600 regulation of ossification
## 3601 cellular component organization
## 3602 response to abiotic stimulus
## 3603 regulation of ion transport
## 3604 regulation of leukocyte cell-cell adhesion
## 3605 negative regulation of developmental process
## 3606 ion homeostasis
## 3607 response to growth factor
## 3608 cellular protein metabolic process
## 3609 lymphocyte activation
## 3610 single-organism membrane organization
## 3611 transmembrane receptor protein tyrosine kinase signaling pathway
## 3612 response to transforming growth factor beta
## 3613 response to external biotic stimulus
## 3614 response to other organism
## 3615 acyl-CoA metabolic process
## 3616 chloride transport
## 3617 positive regulation of MAP kinase activity
## 3618 purine ribonucleoside biosynthetic process
## 3619 positive regulation of JNK cascade
## 3620 regulation of focal adhesion assembly
## 3621 chloride transmembrane transport
## 3622 regulation of calcium ion transmembrane transport
## 3623 regulation of adherens junction organization
## 3624 positive regulation of cellular component biogenesis
## 3625 signal transduction by protein phosphorylation
## 3626 palate development
## 3627 Fc receptor mediated stimulatory signaling pathway
## 3628 glucose transport
## 3629 regulation of endocytosis
## 3630 cell-substrate adhesion
## 3631 Fc-gamma receptor signaling pathway
## 3632 Fc-gamma receptor signaling pathway involved in phagocytosis
## 3633 regulation of steroid biosynthetic process
## 3634 negative regulation of cytoskeleton organization
## 3635 regulation of protein binding
## 3636 muscle cell development
## 3637 negative regulation of cellular process
## 3638 positive regulation of MAPK cascade
## 3639 cytokine production
## 3640 chromatin assembly
## 3641 negative regulation of biological process
## 3642 regulation of cellular process
## 3643 single-organism catabolic process
## 3644 muscle structure development
## 3645 positive regulation of cytokine-mediated signaling pathway
## 3646 atrioventricular valve development
## 3647 atrioventricular valve morphogenesis
## 3648 response to heat
## 3649 detection of external stimulus
## 3650 detection of abiotic stimulus
## 3651 rostrocaudal neural tube patterning
## 3652 neural plate anterior/posterior regionalization
## 3653 midbrain-hindbrain boundary development
## 3654 transposition
## 3655 negative regulation of protein polymerization
## 3656 lysosome localization
## 3657 regulation of microvillus organization
## 3658 regulation of microvillus assembly
## 3659 regulation of translation in response to stress
## 3660 negative regulation of myeloid cell differentiation
## 3661 positive regulation of action potential
## 3662 phosphatidylglycerol metabolic process
## 3663 homeostasis of number of cells within a tissue
## 3664 regulation of calcium-mediated signaling
## 3665 B cell receptor signaling pathway
## 3666 trabecula formation
## 3667 ectodermal placode formation
## 3668 neural plate pattern specification
## 3669 neural plate regionalization
## 3670 eyelid development in camera-type eye
## 3671 ectodermal placode development
## 3672 mitotic cell cycle arrest
## 3673 sulfur compound transport
## 3674 hepatocyte proliferation
## 3675 liver morphogenesis
## 3676 lamellipodium morphogenesis
## 3677 regulation of plasma lipoprotein particle levels
## 3678 positive regulation of cell junction assembly
## 3679 negative regulation of microvillus assembly
## 3680 regulation of anion transmembrane transport
## 3681 positive regulation of protein ubiquitination involved in ubiquitin-dependent protein catabolic process
## 3682 regulation of cytokine-mediated signaling pathway
## 3683 vascular process in circulatory system
## 3684 regulation of systemic arterial blood pressure
## 3685 regulation of nitric oxide biosynthetic process
## 3686 cardiac conduction
## 3687 regulation of cell junction assembly
## 3688 regulation of cytoskeleton organization
## 3689 inorganic ion homeostasis
## 3690 vesicle-mediated transport
## 3691 covalent chromatin modification
## 3692 regulation of RNA metabolic process
## 3693 regulation of actin cytoskeleton organization
## 3694 negative regulation of secretion by cell
## 3695 regulation of biological quality
## 3696 regulation of lymphocyte activation
## 3697 myeloid cell differentiation
## 3698 positive regulation of leukocyte differentiation
## 3699 regulation of phosphate metabolic process
## 3700 regulation of phosphorus metabolic process
## 3701 regulation of membrane potential
## 3702 cellular response to organonitrogen compound
## 3703 epithelial cell development
## 3704 negative regulation of epithelial cell proliferation
## 3705 response to organic cyclic compound
## 3706 peptidyl-serine phosphorylation
## 3707 positive regulation of angiogenesis
## 3708 negative regulation of protein secretion
## 3709 positive regulation of cellular protein metabolic process
## 3710 response to temperature stimulus
## 3711 myotube cell development
## 3712 regulation of transforming growth factor beta receptor signaling pathway
## 3713 regulation of odontogenesis
## 3714 positive regulation of odontogenesis
## 3715 regulation of lipid kinase activity
## 3716 negative regulation of nitric oxide biosynthetic process
## 3717 positive regulation of peptidyl-tyrosine phosphorylation
## 3718 cardiac muscle contraction
## 3719 actin-mediated cell contraction
## 3720 regulation of cellular response to transforming growth factor beta stimulus
## 3721 regulation of lipid biosynthetic process
## 3722 protein metabolic process
## 3723 regulated exocytosis
## 3724 positive regulation of cellular biosynthetic process
## 3725 defense response to other organism
## 3726 action potential
## 3727 innate immune response-activating signal transduction
## 3728 hormone-mediated signaling pathway
## 3729 regulation of actin filament bundle assembly
## 3730 regulation of stress fiber assembly
## 3731 cardiac muscle tissue growth
## 3732 heart growth
## 3733 mammary gland morphogenesis
## 3734 angiogenesis
## 3735 positive regulation of transferase activity
## 3736 positive regulation of cell communication
## 3737 regulation of angiogenesis
## 3738 epithelial tube morphogenesis
## 3739 mitochondrial genome maintenance
## 3740 heart valve development
## 3741 heart valve morphogenesis
## 3742 unsaturated fatty acid biosynthetic process
## 3743 vacuolar acidification
## 3744 detection of chemical stimulus
## 3745 organophosphate ester transport
## 3746 neural tube patterning
## 3747 lamellipodium assembly
## 3748 negative regulation of glucocorticoid biosynthetic process
## 3749 regulation of protein autophosphorylation
## 3750 negative regulation of protein autophosphorylation
## 3751 negative regulation of hormone metabolic process
## 3752 regulation of chemokine production
## 3753 negative regulation of interleukin-1 production
## 3754 regulation of neutrophil apoptotic process
## 3755 regulation of myeloid cell apoptotic process
## 3756 establishment or maintenance of apical/basal cell polarity
## 3757 positive regulation of tumor necrosis factor biosynthetic process
## 3758 negative regulation of G-protein coupled receptor protein signaling pathway
## 3759 positive regulation of endocytosis
## 3760 lymphocyte chemotaxis
## 3761 calcium ion-regulated exocytosis of neurotransmitter
## 3762 detection of chemical stimulus involved in sensory perception
## 3763 myeloid cell development
## 3764 response to epinephrine
## 3765 cellular response to epinephrine stimulus
## 3766 renal vesicle formation
## 3767 renal vesicle morphogenesis
## 3768 renal vesicle development
## 3769 regulation of action potential
## 3770 response to glycoside
## 3771 regulation of transferase activity
## 3772 skin development
## 3773 macromolecule modification
## 3774 regulation of I-kappaB kinase/NF-kappaB signaling
## 3775 negative regulation of intracellular signal transduction
## 3776 regulation of cell communication
## 3777 positive regulation of vasculature development
## 3778 regulation of biological process
## 3779 response to organic substance
## 3780 adenylate cyclase-modulating G-protein coupled receptor signaling pathway
## 3781 peptidyl-tyrosine phosphorylation
## 3782 peptidyl-tyrosine modification
## 3783 negative regulation of cell-cell adhesion
## 3784 developmental growth involved in morphogenesis
## 3785 regulation of protein localization to cell periphery
## 3786 histone modification
## 3787 regulation of phosphorylation
## 3788 enzyme linked receptor protein signaling pathway
## 3789 chromatin organization
## 3790 morphogenesis of an epithelium
## 3791 apoptotic mitochondrial changes
## 3792 sterol transport
## 3793 negative regulation of Ras protein signal transduction
## 3794 negative regulation of small GTPase mediated signal transduction
## 3795 positive regulation of muscle cell differentiation
## 3796 defense response to virus
## 3797 regulation of protein modification process
## 3798 regulation of transmembrane transport
## 3799 protein lipidation
## 3800 regulation of ion transmembrane transporter activity
## 3801 limb morphogenesis
## 3802 lipoprotein biosynthetic process
## 3803 tube morphogenesis
## 3804 protein import
## 3805 renal system development
## 3806 positive regulation of protein metabolic process
## 3807 sensory organ development
## 3808 plasma membrane organization
## 3809 positive regulation of cell growth
## 3810 tissue development
## 3811 regulation of G2/M transition of mitotic cell cycle
## 3812 regulation of cell cycle G2/M phase transition
## 3813 cellular response to inorganic substance
## 3814 protein localization to cell periphery
## 3815 tube development
## 3816 phosphorylation
## 3817 positive regulation of signaling
## 3818 positive regulation of macromolecule biosynthetic process
## 3819 antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-dependent
## 3820 cardiac atrium morphogenesis
## 3821 cardiac atrium development
## 3822 establishment or maintenance of transmembrane electrochemical gradient
## 3823 positive regulation of cell morphogenesis involved in differentiation
## 3824 cellular potassium ion homeostasis
## 3825 negative regulation of actin filament bundle assembly
## 3826 positive regulation of protein polymerization
## 3827 regulation of protein oligomerization
## 3828 phosphatidylinositol-3-phosphate biosynthetic process
## 3829 sodium ion export from cell
## 3830 macrophage activation
## 3831 retrograde transport, endosome to Golgi
## 3832 antigen processing and presentation of exogenous peptide antigen via MHC class I
## 3833 regulation of phosphatidylinositol 3-kinase activity
## 3834 lipid phosphorylation
## 3835 phosphatidylinositol phosphorylation
## 3836 phosphatidylinositol-mediated signaling
## 3837 inositol lipid-mediated signaling
## 3838 neuromuscular process
## 3839 detection of stimulus involved in sensory perception
## 3840 negative regulation of stress fiber assembly
## 3841 anion homeostasis
## 3842 uterus development
## 3843 interferon-gamma-mediated signaling pathway
## 3844 mammary duct terminal end bud growth
## 3845 cell communication by electrical coupling involved in cardiac conduction
## 3846 potassium ion import across plasma membrane
## 3847 regulation of innate immune response
## 3848 neuron migration
## 3849 positive regulation of cell-matrix adhesion
## 3850 embryonic limb morphogenesis
## 3851 branching involved in mammary gland duct morphogenesis
## 3852 mammary gland duct morphogenesis
## 3853 negative regulation of extrinsic apoptotic signaling pathway
## 3854 SMAD protein signal transduction
## 3855 negative regulation of cell adhesion
## 3856 positive regulation of biosynthetic process
## 3857 regulation of mononuclear cell proliferation
## 3858 regulation of leukocyte proliferation
## 3859 regulation of transcription, DNA-templated
## 3860 regulation of nucleic acid-templated transcription
## 3861 regulation of RNA biosynthetic process
## 3862 endothelium development
## 3863 negative regulation of DNA binding
## 3864 urogenital system development
## 3865 inorganic cation transmembrane transport
## 3866 regulation of cell growth
## 3867 programmed cell death
## 3868 regulation of hemopoiesis
## 3869 cytokine-mediated signaling pathway
## 3870 cation transmembrane transport
## 3871 regulation of supramolecular fiber organization
## 3872 regulation of blood pressure
## 3873 negative regulation of secretion
## 3874 response to hypoxia
## 3875 regulation of ion transmembrane transport
## 3876 response to decreased oxygen levels
## 3877 response to oxygen levels
## 3878 regulation of response to external stimulus
## 3879 negative regulation of growth
## 3880 myeloid leukocyte differentiation
## 3881 positive regulation of protein serine/threonine kinase activity
## 3882 ion transmembrane transport
## 3883 sodium ion transmembrane transport
## 3884 positive regulation of I-kappaB kinase/NF-kappaB signaling
## 3885 negative regulation of lipid metabolic process
## 3886 T cell receptor signaling pathway
## 3887 negative regulation of cell-matrix adhesion
## 3888 toll-like receptor signaling pathway
## 3889 Wnt signaling pathway, calcium modulating pathway
## 3890 myoblast fusion
## 3891 potassium ion import
## 3892 regulation of collagen metabolic process
## 3893 negative regulation of cell-substrate adhesion
## 3894 positive regulation of gliogenesis
## 3895 positive regulation of ion transmembrane transporter activity
## 3896 regulation of interleukin-1 beta production
## 3897 regulation of collagen biosynthetic process
## 3898 response to type I interferon
## 3899 regulation of multicellular organismal metabolic process
## 3900 potassium ion homeostasis
## 3901 type I interferon signaling pathway
## 3902 cellular response to fatty acid
## 3903 lymphocyte migration
## 3904 cardiac muscle cell action potential involved in contraction
## 3905 positive regulation of interleukin-8 secretion
## 3906 negative regulation of steroid biosynthetic process
## 3907 response to purine-containing compound
## 3908 negative regulation of tumor necrosis factor production
## 3909 odontogenesis
## 3910 positive regulation of ossification
## 3911 negative regulation of steroid metabolic process
## 3912 positive regulation of organ growth
## 3913 ATP hydrolysis coupled transmembrane transport
## 3914 negative regulation of supramolecular fiber organization
## 3915 negative regulation of tumor necrosis factor superfamily cytokine production
## 3916 regulation of protein phosphorylation
## 3917 regulation of vasculature development
## 3918 leukocyte activation
## 3919 myotube differentiation
## 3920 negative regulation of cell projection organization
## 3921 response to chemical
## 3922 circulatory system development
## 3923 regulation of receptor activity
## 3924 negative regulation of apoptotic signaling pathway
## 3925 single-organism cellular localization
## 3926 regulation of protein kinase activity
## 3927 DNA packaging
## 3928 phagocytosis
## 3929 regulation of cell-substrate adhesion
## 3930 negative regulation of cell growth
## 3931 positive regulation of hemopoiesis
## 3932 positive regulation of metabolic process
## 3933 cell death
## 3934 regulation of signaling
## 3935 positive regulation of macromolecule metabolic process
## 3936 striated muscle contraction
## 3937 positive regulation of mononuclear cell proliferation
## 3938 positive regulation of leukocyte proliferation
## 3939 inorganic anion transport
## 3940 mononuclear cell proliferation
## 3941 regulation of circadian rhythm
## 3942 endothelial cell differentiation
## 3943 lymphocyte proliferation
## 3944 vascular endothelial growth factor receptor signaling pathway
## 3945 negative regulation of lipid biosynthetic process
## 3946 negative regulation of canonical Wnt signaling pathway
## 3947 inorganic anion transmembrane transport
## 3948 import across plasma membrane
## 3949 outflow tract morphogenesis
## 3950 G-protein coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger
## 3951 visual perception
## 3952 regulation of steroid metabolic process
## 3953 negative regulation of sequence-specific DNA binding transcription factor activity
## 3954 sensory perception of light stimulus
## 3955 regulation of cytokine production
## 3956 blood coagulation
## 3957 hemostasis
## 3958 coagulation
## 3959 response to lipid
## 3960 chemical synaptic transmission
## 3961 microtubule bundle formation
## 3962 antigen processing and presentation of peptide antigen via MHC class I
## 3963 adenylate cyclase-inhibiting G-protein coupled receptor signaling pathway
## 3964 fatty acid catabolic process
## 3965 negative regulation of cell morphogenesis involved in differentiation
## 3966 synaptic vesicle exocytosis
## 3967 polyol metabolic process
## 3968 regulation of glucocorticoid metabolic process
## 3969 regulation of glucocorticoid biosynthetic process
## 3970 regulation of synapse assembly
## 3971 positive regulation of synapse assembly
## 3972 pharyngeal system development
## 3973 response to interleukin-1
## 3974 cardiac muscle cell action potential
## 3975 membrane repolarization
## 3976 membrane repolarization during cardiac muscle cell action potential
## 3977 cell communication involved in cardiac conduction
## 3978 regulation of steroid hormone biosynthetic process
## 3979 lamellipodium organization
## 3980 regulation of interleukin-8 secretion
## 3981 response to virus
## 3982 regulation of Wnt signaling pathway
## 3983 T cell activation
## 3984 lymphocyte aggregation
## 3985 positive regulation of innate immune response
## 3986 cell fate commitment
## 3987 apoptotic process
## 3988 regulation of defense response
## 3989 regulation of transcription from RNA polymerase II promoter
## 3990 negative regulation of signal transduction
## 3991 positive regulation of leukocyte migration
## 3992 regulation of lymphocyte mediated immunity
## 3993 negative regulation of viral process
## 3994 regulation of canonical Wnt signaling pathway
## 3995 cellular response to metal ion
## 3996 negative regulation of viral life cycle
## 3997 positive regulation of cell projection organization
## 3998 trans-synaptic signaling
## 3999 negative regulation of leukocyte activation
## 4000 regulation of cellular ketone metabolic process
## 4001 negative regulation of cell activation
## 4002 leukocyte cell-cell adhesion
## 4003 leukocyte aggregation
## 4004 positive regulation of signal transduction
## 4005 regulation of cardiac muscle hypertrophy
## 4006 regulation of muscle hypertrophy
## 4007 regulation of synapse organization
## 4008 regulation of regulated secretory pathway
## 4009 cellular protein modification process
## 4010 regulation of leukocyte differentiation
## 4011 syncytium formation by plasma membrane fusion
## 4012 ureteric bud development
## 4013 pattern recognition receptor signaling pathway
## 4014 protein deacetylation
## 4015 syncytium formation
## 4016 homophilic cell adhesion via plasma membrane adhesion molecules
## 4017 SMAD protein import into nucleus
## 4018 glycolipid biosynthetic process
## 4019 regulation of phosphatase activity
## 4020 negative regulation of phosphatase activity
## 4021 histone deacetylation
## 4022 osteoclast differentiation
## 4023 regulation of neurological system process
## 4024 regulation of hormone metabolic process
## 4025 regulation of interleukin-1 production
## 4026 regulation of tumor necrosis factor biosynthetic process
## 4027 regulation of hormone biosynthetic process
## 4028 relaxation of cardiac muscle
## 4029 ureteric bud morphogenesis
## 4030 mesonephric tubule development
## 4031 mesonephric tubule morphogenesis
## 4032 monocarboxylic acid catabolic process
## 4033 relaxation of muscle
## 4034 positive regulation of canonical Wnt signaling pathway
## 4035 regulation of calcium ion transmembrane transporter activity
## 4036 cell projection organization
## 4037 cellular response to cytokine stimulus
## 4038 brain development
## 4039 activation of innate immune response
## 4040 regulation of plasma membrane organization
## 4041 metal ion transport
## 4042 liver development
## 4043 hepaticobiliary system development
## 4044 actomyosin structure organization
## 4045 central nervous system development
## 4046 regulation of molecular function
## 4047 positive regulation of cellular component organization
## 4048 epithelial to mesenchymal transition
## 4049 regulation of endothelial cell proliferation
## 4050 regulation of the force of heart contraction
## 4051 regulation of muscle adaptation
## 4052 cell-cell adhesion via plasma-membrane adhesion molecules
## 4053 regulation of cardiac conduction
## 4054 negative regulation of cell communication
## 4055 developmental process involved in reproduction
## 4056 blood vessel morphogenesis
## 4057 positive regulation of immune response
## 4058 immune response-regulating cell surface receptor signaling pathway
## 4059 circulatory system process
## 4060 blood circulation
## 4061 positive regulation of hydrolase activity
## 4062 negative regulation of signaling
## 4063 head development
## 4064 hematopoietic progenitor cell differentiation
## 4065 sensory perception of chemical stimulus
## 4066 cell migration in hindbrain
## 4067 regulation of lipid transport
## 4068 positive regulation of cytokine biosynthetic process
## 4069 negative regulation of heart contraction
## 4070 response to organophosphorus
## 4071 dendrite morphogenesis
## 4072 response to cAMP
## 4073 negative regulation of blood circulation
## 4074 T cell differentiation
## 4075 non-canonical Wnt signaling pathway
## 4076 multicellular organismal signaling
## 4077 negative regulation of multi-organism process
## 4078 transmembrane transport
## 4079 localization
## 4080 gland morphogenesis
## 4081 nuclear import
## 4082 axon guidance
## 4083 regulation of myeloid cell differentiation
## 4084 regulation of vesicle-mediated transport
## 4085 neuron projection guidance
## 4086 positive regulation of cellular metabolic process
## 4087 negative regulation of response to stimulus
## 4088 peripheral nervous system development
## 4089 negative regulation of Wnt signaling pathway
## 4090 regulation of Rho protein signal transduction
## 4091 membrane lipid biosynthetic process
## 4092 single-organism localization
## 4093 cellular response to organic substance
## 4094 regulation of cell-cell adhesion
## 4095 negative regulation of immune effector process
## 4096 anatomical structure formation involved in morphogenesis
## 4097 positive regulation of cell adhesion
## 4098 positive regulation of cytosolic calcium ion concentration
## 4099 regulation of cytosolic calcium ion concentration
## 4100 regulation of leukocyte migration
## 4101 regulation of cell size
## 4102 regeneration
## 4103 positive regulation of lipid metabolic process
## 4104 regulation of leukocyte activation
## 4105 natural killer cell differentiation
## 4106 mesonephros development
## 4107 positive regulation of protein phosphorylation
## 4108 tissue morphogenesis
## 4109 sphingolipid metabolic process
## 4110 regulation of pH
## 4111 regulation of cellular pH
## 4112 positive regulation of stress-activated MAPK cascade
## 4113 unsaturated fatty acid metabolic process
## 4114 cellular lipid catabolic process
## 4115 regulation of organ growth
## 4116 regulation of synapse structure or activity
## 4117 regulation of intracellular pH
## 4118 positive regulation of stress-activated protein kinase signaling cascade
## 4119 positive regulation of phosphorylation
## 4120 epithelium development
## 4121 positive regulation of catalytic activity
## 4122 cardiac septum morphogenesis
## 4123 regulation of leukocyte mediated immunity
## 4124 lipoprotein metabolic process
## 4125 protein autophosphorylation
## 4126 negative regulation of locomotion
## 4127 retina development in camera-type eye
## 4128 cell activation
## 4129 blood vessel development
## 4130 adaptive immune response
## 4131 cellular response to endogenous stimulus
## 4132 regulation of endothelial cell migration
## 4133 dendrite development
## 4134 calcium-mediated signaling
## 4135 second-messenger-mediated signaling
## 4136 myofibril assembly
## 4137 regulation of axon extension
## 4138 heterotypic cell-cell adhesion
## 4139 regulation of monocyte differentiation
## 4140 positive regulation of monocyte differentiation
## 4141 regulation of embryonic development
## 4142 response to ammonium ion
## 4143 response to catecholamine
## 4144 cellular response to catecholamine stimulus
## 4145 vesicle-mediated transport to the plasma membrane
## 4146 response to acid chemical
## 4147 regulation of actin filament-based process
## 4148 inorganic ion transmembrane transport
## 4149 immune response-activating cell surface receptor signaling pathway
## 4150 single-organism transport
## 4151 regulation of exocytosis
## 4152 regulation of interleukin-6 production
## 4153 cellular response to calcium ion
## 4154 cellular response to interferon-gamma
## 4155 regulation of cell-matrix adhesion
## 4156 negative regulation of cell migration
## 4157 negative regulation of cell motility
## 4158 neuron projection development
## 4159 regulation of cell morphogenesis involved in differentiation
## 4160 phosphatidylinositol metabolic process
## 4161 antigen receptor-mediated signaling pathway
## 4162 regulation of cell activation
## 4163 kidney development
## 4164 negative regulation of immune response
## 4165 response to cytokine
## 4166 cation transport
## 4167 glycolipid metabolic process
## 4168 positive regulation of interferon-gamma production
## 4169 trabecula morphogenesis
## 4170 regulation of extent of cell growth
## 4171 anatomical structure maturation
## 4172 regulation of cardiac muscle cell contraction
## 4173 regulation of actin filament-based movement
## 4174 cardiac chamber morphogenesis
## 4175 regulation of cellular component size
## 4176 positive regulation of protein modification process
## 4177 wound healing
## 4178 leukocyte migration
## 4179 cardiac chamber development
## 4180 Wnt signaling pathway
## 4181 animal organ development
## 4182 regulation of immune response
## 4183 response to wounding
## 4184 immune response-regulating signaling pathway
## 4185 axon development
## 4186 positive regulation of phosphate metabolic process
## 4187 protein import into nucleus
## 4188 regulation of signal transduction
## 4189 regulation of response to stimulus
## 4190 phosphatidylinositol biosynthetic process
## 4191 regulation of cell shape
## 4192 lipid catabolic process
## 4193 response to interferon-gamma
## 4194 positive regulation of cytoskeleton organization
## 4195 heart morphogenesis
## 4196 regulation of anatomical structure size
## 4197 calcium ion regulated exocytosis
## 4198 positive regulation of striated muscle contraction
## 4199 positive regulation of intracellular signal transduction
## 4200 protein phosphorylation
## 4201 axonogenesis
## 4202 lipid biosynthetic process
## 4203 regulation of muscle contraction
## 4204 regulation of intracellular signal transduction
## 4205 regulation of growth
## 4206 regulation of striated muscle contraction
## 4207 regulation of cardiac muscle contraction
## 4208 regulation of morphogenesis of an epithelium
## 4209 lipid modification
## 4210 phosphorus metabolic process
## 4211 phosphate-containing compound metabolic process
## 4212 vasculature development
## 4213 cardiovascular system development
## 4214 positive regulation of endothelial cell proliferation
## 4215 icosanoid metabolic process
## 4216 regulation of G-protein coupled receptor protein signaling pathway
## 4217 pH reduction
## 4218 intracellular pH reduction
## 4219 regulation of epithelial cell migration
## 4220 positive regulation of molecular function
## 4221 cellular monovalent inorganic cation homeostasis
## 4222 organelle fusion
## 4223 leukocyte proliferation
## 4224 intracellular signal transduction
## 4225 regulation of cell projection organization
## 4226 phospholipid biosynthetic process
## 4227 positive regulation of cellular process
## 4228 positive regulation of myeloid leukocyte differentiation
## 4229 positive regulation of epithelial cell migration
## 4230 protein deacylation
## 4231 regulation of cytokine biosynthetic process
## 4232 macromolecule deacylation
## 4233 regulation of leukocyte apoptotic process
## 4234 sensory perception
## 4235 cardiac septum development
## 4236 immune response-activating signal transduction
## 4237 neuron projection morphogenesis
## 4238 positive regulation of muscle contraction
## 4239 regulation of organ morphogenesis
## 4240 regulation of lipid metabolic process
## 4241 cell surface receptor signaling pathway involved in cell-cell signaling
## 4242 ion transport
## 4243 fatty acid metabolic process
## 4244 platelet activation
## 4245 ammonium ion metabolic process
## 4246 positive regulation of supramolecular fiber organization
## 4247 monovalent inorganic cation homeostasis
## 4248 cell part morphogenesis
## 4249 cell projection morphogenesis
## 4250 cell-cell adhesion
## 4251 monovalent inorganic cation transport
## 4252 immune system development
## 4253 response to external stimulus
## 4254 neuron development
## 4255 cellular component assembly involved in morphogenesis
## 4256 lymphocyte differentiation
## 4257 positive regulation of biological process
## 4258 defense response
## 4259 regulation of localization
## 4260 positive regulation of neuron projection development
## 4261 inner ear development
## 4262 endocytosis
## 4263 regulation of cellular component organization
## 4264 activation of immune response
## 4265 regulation of neuron projection development
## 4266 positive regulation of GTPase activity
## 4267 regulation of myeloid leukocyte differentiation
## 4268 vesicle fusion
## 4269 regulation of axonogenesis
## 4270 response to fatty acid
## 4271 organelle membrane fusion
## 4272 cellular response to chemical stimulus
## 4273 negative regulation of cellular component movement
## 4274 positive regulation of growth
## 4275 single-organism membrane fusion
## 4276 neurological system process
## 4277 regulation of neurogenesis
## 4278 gland development
## 4279 positive regulation of response to stimulus
## 4280 muscle system process
## 4281 cell morphogenesis involved in neuron differentiation
## 4282 negative regulation of cytokine production
## 4283 regulation of interferon-gamma production
## 4284 regulation of cell development
## 4285 branching morphogenesis of an epithelial tube
## 4286 membrane fusion
## 4287 multicellular organism development
## 4288 ear development
## 4289 cell morphogenesis
## 4290 single-multicellular organism process
## 4291 hemopoiesis
## 4292 phospholipid metabolic process
## 4293 positive regulation of myeloid cell differentiation
## 4294 glycerolipid biosynthetic process
## 4295 glycerophospholipid biosynthetic process
## 4296 cell morphogenesis involved in differentiation
## 4297 negative regulation of immune system process
## 4298 leukocyte differentiation
## 4299 positive regulation of cell development
## 4300 cell surface receptor signaling pathway
## 4301 membrane lipid metabolic process
## 4302 regulation of GTPase activity
## 4303 glycerophospholipid metabolic process
## 4304 regulation of muscle system process
## 4305 neuron differentiation
## 4306 lipid metabolic process
## 4307 positive regulation of neurogenesis
## 4308 hindbrain development
## 4309 regulation of cell adhesion
## 4310 muscle contraction
## 4311 single organismal cell-cell adhesion
## 4312 positive regulation of nervous system development
## 4313 glycerolipid metabolic process
## 4314 regulation of immune system process
## 4315 potassium ion transport
## 4316 potassium ion transmembrane transport
## 4317 positive regulation of immune system process
## 4318 hematopoietic or lymphoid organ development
## 4319 cell-cell signaling
## 4320 regulation of nervous system development
## 4321 positive regulation of cell differentiation
## 4322 cellular component morphogenesis
## 4323 morphogenesis of a branching epithelium
## 4324 anatomical structure development
## 4325 regulation of neuron differentiation
## 4326 neutrophil chemotaxis
## 4327 granulocyte chemotaxis
## 4328 granulocyte migration
## 4329 neutrophil migration
## 4330 immune response
## 4331 cell development
## 4332 cellular response to stimulus
## 4333 cell chemotaxis
## 4334 cell motility
## 4335 immune system process
## 4336 ventricular septum development
## 4337 positive regulation of heart contraction
## 4338 regulation of chemotaxis
## 4339 regulation of heart contraction
## 4340 regulation of small GTPase mediated signal transduction
## 4341 positive regulation of cell migration
## 4342 positive regulation of locomotion
## 4343 positive regulation of cell motility
## 4344 positive regulation of developmental growth
## 4345 regulation of Ras protein signal transduction
## 4346 cardiac ventricle development
## 4347 myeloid leukocyte migration
## 4348 positive regulation of blood circulation
## 4349 positive regulation of neuron differentiation
## 4350 single organism cell adhesion
## 4351 cellular lipid metabolic process
## 4352 chemotaxis
## 4353 regulation of cell morphogenesis
## 4354 single-organism cellular process
## 4355 single-organism developmental process
## 4356 regulation of blood circulation
## 4357 cell migration
## 4358 system development
## 4359 anatomical structure morphogenesis
## 4360 developmental process
## 4361 nervous system development
## 4362 innate immune response
## 4363 cell adhesion
## 4364 biological adhesion
## 4365 multicellular organismal process
## 4366 movement of cell or subcellular component
## 4367 system process
## 4368 regulation of system process
## 4369 positive regulation of cellular component movement
## 4370 regulation of developmental growth
## 4371 regulation of cell differentiation
## 4372 morphogenesis of a branching structure
## 4373 leukocyte chemotaxis
## 4374 positive regulation of developmental process
## 4375 response to stimulus
## 4376 positive regulation of multicellular organismal process
## 4377 locomotion
## 4378 generation of neurons
## 4379 neurogenesis
## 4380 negative regulation of multicellular organismal process
## 4381 cell communication
## 4382 single-organism process
## 4383 regulation of multicellular organismal development
## 4384 signal transduction
## 4385 regulation of cell migration
## 4386 cellular developmental process
## 4387 regulation of locomotion
## 4388 cell differentiation
## 4389 regulation of cell motility
## 4390 regulation of multicellular organismal process
## 4391 regulation of developmental process
## 4392 regulation of anatomical structure morphogenesis
## 4393 single organism signaling
## 4394 signaling
## 4395 G-protein coupled receptor signaling pathway
## 4396 regulation of cellular component movement
## 4397 vacuole inheritance
## 4398 single strand break repair
## 4399 regulation of mitotic recombination
## 4400 mitotic spindle elongation
## 4401 maltose metabolic process
## 4402 cell wall mannoprotein biosynthetic process
## 4403 very long-chain fatty acid metabolic process
## 4404 protein targeting to Golgi
## 4405 urea cycle
## 4406 argininosuccinate metabolic process
## 4407 ribosomal small subunit export from nucleus
## 4408 protein import into nucleus, translocation
## 4409 mitochondrial ornithine transport
## 4410 sulfur amino acid transport
## 4411 sulfate assimilation
## 4412 histidine biosynthetic process
## 4413 regulation of transcription involved in G2/M transition of mitotic cell cycle
## 4414 establishment of mitotic spindle orientation
## 4415 phosphorelay signal transduction system
## 4416 inactivation of MAPK activity involved in osmosensory signaling pathway
## 4417 MAPK import into nucleus
## 4418 meiotic spindle organization
## 4419 allantoin metabolic process
## 4420 allantoin catabolic process
## 4421 mitochondrial fission
## 4422 polysaccharide biosynthetic process
## 4423 nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## 4424 nuclear-transcribed mRNA poly(A) tail shortening
## 4425 deadenylation-dependent decapping of nuclear-transcribed mRNA
## 4426 nuclear-transcribed mRNA catabolic process, exonucleolytic
## 4427 nuclear-transcribed mRNA catabolic process, endonucleolytic cleavage-dependent decay
## 4428 spermine transport
## 4429 retrograde transport, vesicle recycling within Golgi
## 4430 re-entry into mitotic cell cycle
## 4431 protein deneddylation
## 4432 generation of catalytic spliceosome for first transesterification step
## 4433 generation of catalytic spliceosome for second transesterification step
## 4434 cis assembly of pre-catalytic spliceosome
## 4435 tRNA-type intron splice site recognition and cleavage
## 4436 spliceosomal complex disassembly
## 4437 spliceosomal conformational changes to generate catalytic conformation
## 4438 RNA splicing, via endonucleolytic cleavage and ligation
## 4439 mRNA 5'-splice site recognition
## 4440 histone peptidyl-prolyl isomerization
## 4441 regulation of histone H3-K36 methylation
## 4442 negative regulation of histone H3-K36 methylation
## 4443 positive regulation of histone H3-K36 methylation
## 4444 negative regulation of transcription from RNA polymerase II promoter by glucose
## 4445 positive regulation of transcription from RNA polymerase II promoter by galactose
## 4446 endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 4447 cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 4448 snoRNA guided rRNA pseudouridine synthesis
## 4449 enzyme-directed rRNA pseudouridine synthesis
## 4450 maturation of 5.8S rRNA
## 4451 endonucleolytic cleavage to generate mature 3'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 4452 maturation of LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 4453 maturation of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 4454 exonucleolytic trimming to generate mature 3'-end of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 4455 cleavage involved in rRNA processing
## 4456 maturation of LSU-rRNA
## 4457 endonucleolytic cleavage to generate mature 5'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 4458 endonucleolytic cleavage involved in rRNA processing
## 4459 endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 4460 endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 4461 maturation of 5S rRNA
## 4462 small nucleolar ribonucleoprotein complex assembly
## 4463 box C/D snoRNP assembly
## 4464 box H/ACA snoRNP assembly
## 4465 box C/D snoRNA 3'-end processing
## 4466 box H/ACA snoRNA 3'-end processing
## 4467 meiotic DNA double-strand break processing
## 4468 meiotic DNA recombinase assembly
## 4469 meiotic mismatch repair
## 4470 meiotic DNA repair synthesis
## 4471 resolution of meiotic recombination intermediates
## 4472 nucleotide-excision repair, DNA damage removal
## 4473 pyrimidine dimer repair by nucleotide-excision repair
## 4474 telomere maintenance via recombination
## 4475 non-recombinational repair
## 4476 double-strand break repair via break-induced replication
## 4477 DNA double-strand break processing
## 4478 DNA recombinase assembly
## 4479 DNA catabolic process, exonucleolytic
## 4480 regulation of glutamine family amino acid metabolic process
## 4481 regulation of arginine metabolic process
## 4482 actomyosin contractile ring assembly
## 4483 actomyosin contractile ring contraction
## 4484 barrier septum assembly
## 4485 cell separation after cytokinesis
## 4486 septin ring assembly
## 4487 mitochondrial mRNA catabolic process
## 4488 regulation of mitochondrial RNA catabolic process
## 4489 negative regulation of mitochondrial RNA catabolic process
## 4490 positive regulation of mitochondrial RNA catabolic process
## 4491 mitochondrial RNA processing
## 4492 mitochondrial RNA 5'-end processing
## 4493 mitochondrial RNA 3'-end processing
## 4494 RNA 5'-end processing
## 4495 posttranscriptional tethering of RNA polymerase II gene DNA at nuclear periphery
## 4496 RNA polymerase III type 1 promoter transcriptional preinitiation complex assembly
## 4497 transcription from RNA polymerase III type 2 promoter
## 4498 nitrogen catabolite activation of transcription from RNA polymerase II promoter
## 4499 negative regulation of exit from mitosis
## 4500 transcription, RNA-templated
## 4501 transcription initiation from RNA polymerase I promoter for nuclear large rRNA transcript
## 4502 RNA polymerase I transcriptional preinitiation complex assembly at the promoter for the nuclear large rRNA transcript
## 4503 maintenance of transcriptional fidelity during DNA-templated transcription elongation from RNA polymerase II promoter
## 4504 histone displacement
## 4505 chronological cell aging
## 4506 replicative cell aging
## 4507 age-dependent response to reactive oxygen species
## 4508 cartilage condensation
## 4509 acetylcholine catabolic process in synaptic cleft
## 4510 selenocysteine incorporation
## 4511 prostaglandin biosynthetic process
## 4512 peptide amidation
## 4513 cilium or flagellum-dependent cell motility
## 4514 ovarian follicle development
## 4515 ovulation from ovarian follicle
## 4516 ovarian follicle rupture
## 4517 initiation of primordial ovarian follicle growth
## 4518 primary ovarian follicle growth
## 4519 preantral ovarian follicle growth
## 4520 antral ovarian follicle growth
## 4521 ovarian cumulus expansion
## 4522 ovarian follicle atresia
## 4523 luteinization
## 4524 luteolysis
## 4525 oocyte growth
## 4526 oocyte maturation
## 4527 regulation of cell growth by extracellular stimulus
## 4528 fatty acid alpha-oxidation
## 4529 response to protozoan
## 4530 branching involved in blood vessel morphogenesis
## 4531 lactosylceramide biosynthetic process
## 4532 ganglioside metabolic process
## 4533 ganglioside biosynthetic process
## 4534 globoside metabolic process
## 4535 globoside biosynthetic process
## 4536 medium-chain fatty acid transport
## 4537 detection of chemical stimulus involved in sensory perception of bitter taste
## 4538 detection of chemical stimulus involved in sensory perception of sour taste
## 4539 detection of chemical stimulus involved in sensory perception of sweet taste
## 4540 branching involved in ureteric bud morphogenesis
## 4541 temperature homeostasis
## 4542 fever generation
## 4543 conditioned taste aversion
## 4544 behavioral fear response
## 4545 regulation of chromatin assembly or disassembly
## 4546 acrosome assembly
## 4547 tRNA 3'-terminal CCA addition
## 4548 tRNA 5'-leader removal
## 4549 histamine metabolic process
## 4550 histamine biosynthetic process
## 4551 histamine catabolic process
## 4552 gastric acid secretion
## 4553 histamine-induced gastric acid secretion
## 4554 gastrin-induced gastric acid secretion
## 4555 ectoderm formation
## 4556 mesodermal cell fate commitment
## 4557 ectodermal cell fate commitment
## 4558 endodermal cell fate specification
## 4559 formation of cytoplasmic translation initiation complex
## 4560 establishment of planar polarity
## 4561 optic placode formation
## 4562 eye photoreceptor cell differentiation
## 4563 somite specification
## 4564 organ induction
## 4565 membrane raft assembly
## 4566 establishment of T cell polarity
## 4567 immunological synapse formation
## 4568 myeloid dendritic cell activation
## 4569 leukocyte homeostasis
## 4570 T cell homeostatic proliferation
## 4571 plasma membrane repair
## 4572 neutrophil homeostasis
## 4573 neutrophil apoptotic process
## 4574 B cell homeostasis
## 4575 B cell apoptotic process
## 4576 natural killer cell proliferation
## 4577 regulation of type IIa hypersensitivity
## 4578 positive regulation of type IIa hypersensitivity
## 4579 positive regulation of type III hypersensitivity
## 4580 type IV hypersensitivity
## 4581 regulation of type IV hypersensitivity
## 4582 negative regulation of type IV hypersensitivity
## 4583 positive regulation of type IV hypersensitivity
## 4584 regulation of type I hypersensitivity
## 4585 negative regulation of type I hypersensitivity
## 4586 positive regulation of type I hypersensitivity
## 4587 negative regulation of antibody-dependent cellular cytotoxicity
## 4588 serotonin secretion
## 4589 histamine secretion
## 4590 inner cell mass cell differentiation
## 4591 inner cell mass cell fate commitment
## 4592 inner cell mass cellular morphogenesis
## 4593 trophectodermal cell differentiation
## 4594 trophectodermal cellular morphogenesis
## 4595 blastocyst growth
## 4596 inner cell mass cell proliferation
## 4597 trophectodermal cell proliferation
## 4598 blastocyst hatching
## 4599 neural plate morphogenesis
## 4600 neural plate development
## 4601 neural fold formation
## 4602 protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## 4603 phagolysosome assembly
## 4604 NK T cell differentiation
## 4605 NK T cell proliferation
## 4606 complement activation, lectin pathway
## 4607 negative regulation of complement activation, lectin pathway
## 4608 response to yeast
## 4609 Mullerian duct regression
## 4610 receptor recycling
## 4611 endothelial cell morphogenesis
## 4612 selenium compound metabolic process
## 4613 maternal placenta development
## 4614 negative regulation of cytolysis by symbiont of host cells
## 4615 killing by symbiont of host cells
## 4616 regulation of leukocyte mediated cytotoxicity
## 4617 negative regulation of leukocyte mediated cytotoxicity
## 4618 positive regulation of leukocyte mediated cytotoxicity
## 4619 T cell mediated cytotoxicity
## 4620 regulation of T cell mediated cytotoxicity
## 4621 negative regulation of T cell mediated cytotoxicity
## 4622 positive regulation of T cell mediated cytotoxicity
## 4623 negative regulation of receptor recycling
## 4624 B-1 B cell homeostasis
## 4625 B-1 B cell differentiation
## 4626 regulation of exocyst assembly
## 4627 postsynaptic membrane organization
## 4628 lymph vessel development
## 4629 lymphangiogenesis
## 4630 sebaceous gland cell differentiation
## 4631 intestinal D-glucose absorption
## 4632 blood vessel maturation
## 4633 positive regulation of neurotransmitter secretion
## 4634 intramembranous ossification
## 4635 negative regulation of cytokine-mediated signaling pathway
## 4636 startle response
## 4637 suckling behavior
## 4638 regulation of activation of membrane attack complex
## 4639 positive regulation of activation of membrane attack complex
## 4640 negative regulation of activation of membrane attack complex
## 4641 adenosine receptor signaling pathway
## 4642 blood vessel remodeling
## 4643 response to amphetamine
## 4644 neurological system process involved in regulation of systemic arterial blood pressure
## 4645 renal system process involved in regulation of blood volume
## 4646 regulation of systemic arterial blood pressure by carotid sinus baroreceptor feedback
## 4647 regulation of systemic arterial blood pressure by ischemic conditions
## 4648 baroreceptor response to increased systemic arterial blood pressure
## 4649 vasodilation of artery involved in baroreceptor response to increased systemic arterial blood pressure
## 4650 negative regulation of heart rate involved in baroreceptor response to increased systemic arterial blood pressure
## 4651 positive regulation of heart rate involved in baroreceptor response to decreased systemic arterial blood pressure
## 4652 regulation of systemic arterial blood pressure by hormone
## 4653 regulation of systemic arterial blood pressure by circulatory renin-angiotensin
## 4654 regulation of systemic arterial blood pressure by vasopressin
## 4655 regulation of systemic arterial blood pressure by norepinephrine-epinephrine
## 4656 norepinephrine-epinephrine vasoconstriction involved in regulation of systemic arterial blood pressure
## 4657 positive regulation of heart rate by epinephrine-norepinephrine
## 4658 positive regulation of the force of heart contraction by epinephrine-norepinephrine
## 4659 renin secretion into blood stream
## 4660 regulation of angiotensin levels in blood
## 4661 angiotensin maturation
## 4662 angiotensin catabolic process in blood
## 4663 regulation of blood volume by renin-angiotensin
## 4664 regulation of blood volume by renal aldosterone
## 4665 renin-angiotensin regulation of aldosterone production
## 4666 regulation of renal output by angiotensin
## 4667 response to dietary excess
## 4668 reduction of food intake in response to dietary excess
## 4669 diet induced thermogenesis
## 4670 vasodilation by norepinephrine-epinephrine involved in regulation of systemic arterial blood pressure
## 4671 regulation of heart rate
## 4672 desensitization of G-protein coupled receptor protein signaling pathway
## 4673 G-protein coupled receptor internalization
## 4674 desensitization of G-protein coupled receptor protein signaling pathway by arrestin
## 4675 angiotensin-mediated vasodilation involved in regulation of systemic arterial blood pressure
## 4676 regulation of blood vessel diameter by renin-angiotensin
## 4677 brain renin-angiotensin system
## 4678 regulation of L-glutamate transport
## 4679 negative regulation of L-glutamate transport
## 4680 positive regulation of L-glutamate transport
## 4681 cell migration involved in sprouting angiogenesis
## 4682 osteoblast fate commitment
## 4683 positive regulation of neuroblast proliferation
## 4684 positive regulation of mesenchymal cell proliferation
## 4685 columnar/cuboidal epithelial cell development
## 4686 glandular epithelial cell differentiation
## 4687 glandular epithelial cell development
## 4688 columnar/cuboidal epithelial cell maturation
## 4689 epithelial cell maturation
## 4690 glandular epithelial cell maturation
## 4691 extraocular skeletal muscle development
## 4692 osteoblast development
## 4693 acrosome matrix dispersal
## 4694 protein depalmitoylation
## 4695 inhibition of neuroepithelial cell differentiation
## 4696 diaphragm contraction
## 4697 regulation of respiratory gaseous exchange by neurological system process
## 4698 negative regulation of receptor internalization
## 4699 positive regulation of receptor internalization
## 4700 auditory receptor cell morphogenesis
## 4701 tRNA wobble base modification
## 4702 tRNA wobble uridine modification
## 4703 tRNA wobble adenosine to inosine editing
## 4704 tRNA wobble cytosine modification
## 4705 store-operated calcium entry
## 4706 aggressive behavior
## 4707 inter-male aggressive behavior
## 4708 maternal aggressive behavior
## 4709 wobble base cytosine methylation
## 4710 retinoic acid biosynthetic process
## 4711 tRNA wobble position uridine thiolation
## 4712 hypochlorous acid biosynthetic process
## 4713 bile acid conjugation
## 4714 thyroid hormone mediated signaling pathway
## 4715 regulation of thyroid hormone mediated signaling pathway
## 4716 osteoclast proliferation
## 4717 desmosome assembly
## 4718 protein localization to paranode region of axon
## 4719 male germ cell proliferation
## 4720 cytoplasmic translational termination
## 4721 translation reinitiation
## 4722 cap-dependent translational initiation
## 4723 hepatocyte cell migration
## 4724 defense response to nematode
## 4725 innate immune response in mucosa
## 4726 positive regulation of defense response to virus by host
## 4727 leukocyte chemotaxis involved in inflammatory response
## 4728 wound healing involved in inflammatory response
## 4729 connective tissue replacement involved in inflammatory response wound healing
## 4730 organ or tissue specific immune response
## 4731 lymphocyte homeostasis
## 4732 endothelial cell activation involved in immune response
## 4733 astrocyte activation involved in immune response
## 4734 follicular dendritic cell activation
## 4735 follicular dendritic cell differentiation
## 4736 plasmacytoid dendritic cell activation
## 4737 basophil activation involved in immune response
## 4738 myeloid dendritic cell activation involved in immune response
## 4739 macrophage activation involved in immune response
## 4740 microglial cell activation involved in immune response
## 4741 T cell activation involved in immune response
## 4742 T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## 4743 T cell differentiation involved in immune response
## 4744 alpha-beta T cell differentiation involved in immune response
## 4745 T-helper cell lineage commitment
## 4746 T-helper 1 cell lineage commitment
## 4747 CD8-positive, alpha-beta intraepithelial T cell differentiation
## 4748 CD8-positive, alpha-beta T cell differentiation involved in immune response
## 4749 CD8-positive, gamma-delta intraepithelial T cell differentiation
## 4750 T cell proliferation involved in immune response
## 4751 mature B cell differentiation involved in immune response
## 4752 germinal center B cell differentiation
## 4753 marginal zone B cell differentiation
## 4754 follicular B cell differentiation
## 4755 plasma cell differentiation
## 4756 myeloid progenitor cell differentiation
## 4757 lymphoid progenitor cell differentiation
## 4758 B cell proliferation involved in immune response
## 4759 natural killer cell activation involved in immune response
## 4760 B cell lineage commitment
## 4761 immature B cell differentiation
## 4762 pro-B cell differentiation
## 4763 pre-B cell differentiation
## 4764 pre-B cell allelic exclusion
## 4765 transitional one stage B cell differentiation
## 4766 mature B cell differentiation
## 4767 B-1a B cell differentiation
## 4768 B cell selection
## 4769 B cell affinity maturation
## 4770 B cell negative selection
## 4771 plasma kallikrein-kinin cascade
## 4772 detection of tumor cell
## 4773 defense response to tumor cell
## 4774 B cell homeostatic proliferation
## 4775 T cell lineage commitment
## 4776 CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## 4777 CD4-positive, CD25-positive, alpha-beta regulatory T cell lineage commitment
## 4778 alpha-beta T cell lineage commitment
## 4779 B cell cytokine production
## 4780 dendritic cell cytokine production
## 4781 immunoglobulin secretion involved in immune response
## 4782 hepatic immune response
## 4783 mucosal immune response
## 4784 immune response in mucosal-associated lymphoid tissue
## 4785 immune response in nasopharyngeal-associated lymphoid tissue
## 4786 MHC protein complex assembly
## 4787 MHC class II protein complex assembly
## 4788 dendritic cell chemotaxis
## 4789 myeloid dendritic cell chemotaxis
## 4790 immunoglobulin transcytosis in epithelial cells
## 4791 immunoglobulin transcytosis in epithelial cells mediated by polymeric immunoglobulin receptor
## 4792 IgG immunoglobulin transcytosis in epithelial cells mediated by FcRn immunoglobulin receptor
## 4793 immune response to tumor cell
## 4794 immunoglobulin production in mucosal tissue
## 4795 antigen processing and presentation of peptide antigen via MHC class Ib
## 4796 complement receptor mediated signaling pathway
## 4797 granuloma formation
## 4798 immune complex clearance by monocytes and macrophages
## 4799 inflammatory response to antigenic stimulus
## 4800 acute inflammatory response to antigenic stimulus
## 4801 chronic inflammatory response to antigenic stimulus
## 4802 T cell antigen processing and presentation
## 4803 peripheral T cell tolerance induction
## 4804 germinal center formation
## 4805 dendritic cell antigen processing and presentation
## 4806 antigen processing and presentation via MHC class Ib
## 4807 antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-independent
## 4808 antigen processing and presentation of exogenous protein antigen via MHC class Ib, TAP-dependent
## 4809 antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway, TAP-dependent
## 4810 peptide antigen assembly with MHC protein complex
## 4811 peptide antigen assembly with MHC class I protein complex
## 4812 peptide antigen assembly with MHC class II protein complex
## 4813 polysaccharide assembly with MHC class II protein complex
## 4814 tolerance induction
## 4815 central tolerance induction
## 4816 central tolerance induction to self antigen
## 4817 tolerance induction to self antigen
## 4818 T cell tolerance induction
## 4819 natural killer cell tolerance induction
## 4820 leukocyte migration involved in immune response
## 4821 leukocyte migration involved in inflammatory response
## 4822 acute inflammatory response
## 4823 regulation of vascular permeability involved in acute inflammatory response
## 4824 production of molecular mediator involved in inflammatory response
## 4825 cytokine production involved in inflammatory response
## 4826 nitric oxide production involved in inflammatory response
## 4827 leukotriene production involved in inflammatory response
## 4828 activation of plasma proteins involved in acute inflammatory response
## 4829 Factor XII activation
## 4830 activation of blood coagulation via clotting cascade
## 4831 chronic inflammatory response
## 4832 monocyte chemotaxis
## 4833 histamine secretion by mast cell
## 4834 serotonin secretion by platelet
## 4835 pro-T cell differentiation
## 4836 regulation of antigen processing and presentation
## 4837 negative regulation of antigen processing and presentation
## 4838 positive regulation of antigen processing and presentation
## 4839 regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## 4840 negative regulation of antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## 4841 regulation of antigen processing and presentation of peptide antigen
## 4842 negative regulation of antigen processing and presentation of peptide antigen
## 4843 regulation of antigen processing and presentation of peptide antigen via MHC class II
## 4844 negative regulation of antigen processing and presentation of peptide antigen via MHC class II
## 4845 positive regulation of antigen processing and presentation of peptide antigen via MHC class II
## 4846 negative regulation of antigen processing and presentation of peptide antigen via MHC class I
## 4847 regulation of dendritic cell antigen processing and presentation
## 4848 negative regulation of dendritic cell antigen processing and presentation
## 4849 positive regulation of dendritic cell antigen processing and presentation
## 4850 regulation of B cell antigen processing and presentation
## 4851 regulation of T cell antigen processing and presentation
## 4852 negative regulation of T cell antigen processing and presentation
## 4853 regulation of germinal center formation
## 4854 negative regulation of germinal center formation
## 4855 positive regulation of germinal center formation
## 4856 regulation of immunoglobulin production
## 4857 negative regulation of immunoglobulin production
## 4858 positive regulation of immunoglobulin production
## 4859 positive regulation of immunoglobulin biosynthetic process
## 4860 regulation of tolerance induction
## 4861 negative regulation of tolerance induction
## 4862 positive regulation of tolerance induction
## 4863 positive regulation of tolerance induction to self antigen
## 4864 regulation of tolerance induction dependent upon immune response
## 4865 positive regulation of B cell tolerance induction
## 4866 regulation of T cell tolerance induction
## 4867 positive regulation of T cell tolerance induction
## 4868 regulation of T cell anergy
## 4869 negative regulation of T cell anergy
## 4870 positive regulation of T cell anergy
## 4871 regulation of chronic inflammatory response
## 4872 negative regulation of chronic inflammatory response
## 4873 positive regulation of chronic inflammatory response
## 4874 negative regulation of leukocyte migration
## 4875 regulation of leukocyte chemotaxis
## 4876 negative regulation of leukocyte chemotaxis
## 4877 positive regulation of leukocyte chemotaxis
## 4878 regulation of cellular extravasation
## 4879 negative regulation of cellular extravasation
## 4880 positive regulation of cellular extravasation
## 4881 negative regulation of production of molecular mediator of immune response
## 4882 negative regulation of leukocyte mediated immunity
## 4883 negative regulation of lymphocyte mediated immunity
## 4884 negative regulation of T cell mediated immunity
## 4885 regulation of natural killer cell mediated immunity
## 4886 negative regulation of natural killer cell mediated immunity
## 4887 positive regulation of natural killer cell mediated immunity
## 4888 negative regulation of cytokine production involved in immune response
## 4889 regulation of B cell cytokine production
## 4890 negative regulation of T cell cytokine production
## 4891 regulation of natural killer cell cytokine production
## 4892 negative regulation of natural killer cell cytokine production
## 4893 positive regulation of natural killer cell cytokine production
## 4894 regulation of dendritic cell cytokine production
## 4895 negative regulation of dendritic cell cytokine production
## 4896 positive regulation of dendritic cell cytokine production
## 4897 negative regulation of plasmacytoid dendritic cell cytokine production
## 4898 negative regulation of cytokine secretion involved in immune response
## 4899 cell surface pattern recognition receptor signaling pathway
## 4900 cytoplasmic pattern recognition receptor signaling pathway
## 4901 MyD88-independent toll-like receptor signaling pathway
## 4902 regulation of antimicrobial humoral response
## 4903 positive regulation of antimicrobial humoral response
## 4904 negative regulation of myeloid leukocyte differentiation
## 4905 immune response-inhibiting signal transduction
## 4906 immune response-inhibiting cell surface receptor signaling pathway
## 4907 natural killer cell inhibitory signaling pathway
## 4908 Fc receptor mediated inhibitory signaling pathway
## 4909 antibacterial peptide production
## 4910 regulation of antibacterial peptide production
## 4911 negative regulation of antibacterial peptide production
## 4912 negative regulation of peptide secretion
## 4913 positive regulation of antibacterial peptide production
## 4914 biosynthetic process of antibacterial peptides active against Gram-negative bacteria
## 4915 intracellular defense response
## 4916 negative regulation of adaptive immune response
## 4917 negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## 4918 negative regulation of T-helper 1 type immune response
## 4919 negative regulation of response to biotic stimulus
## 4920 regulation of immune response to tumor cell
## 4921 positive regulation of immune response to tumor cell
## 4922 regulation of T cell mediated immune response to tumor cell
## 4923 positive regulation of T cell mediated immune response to tumor cell
## 4924 positive regulation of peripheral T cell tolerance induction
## 4925 regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## 4926 negative regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## 4927 positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## 4928 negative regulation of inflammatory response to antigenic stimulus
## 4929 negative regulation of acute inflammatory response to antigenic stimulus
## 4930 regulation of chronic inflammatory response to antigenic stimulus
## 4931 negative regulation of chronic inflammatory response to antigenic stimulus
## 4932 positive regulation of chronic inflammatory response to antigenic stimulus
## 4933 regulation of acute inflammatory response to non-antigenic stimulus
## 4934 negative regulation of acute inflammatory response to non-antigenic stimulus
## 4935 positive regulation of acute inflammatory response to non-antigenic stimulus
## 4936 regulation of chronic inflammatory response to non-antigenic stimulus
## 4937 negative regulation of chronic inflammatory response to non-antigenic stimulus
## 4938 positive regulation of chronic inflammatory response to non-antigenic stimulus
## 4939 regulation of hypersensitivity
## 4940 negative regulation of hypersensitivity
## 4941 positive regulation of hypersensitivity
## 4942 regulation of myeloid leukocyte mediated immunity
## 4943 negative regulation of myeloid leukocyte mediated immunity
## 4944 positive regulation of myeloid leukocyte mediated immunity
## 4945 regulation of immunoglobulin mediated immune response
## 4946 negative regulation of immunoglobulin mediated immune response
## 4947 positive regulation of immunoglobulin mediated immune response
## 4948 positive regulation of central B cell tolerance induction
## 4949 regulation of B cell apoptotic process
## 4950 negative regulation of B cell apoptotic process
## 4951 positive regulation of B cell apoptotic process
## 4952 negative regulation of mature B cell apoptotic process
## 4953 positive regulation of humoral immune response
## 4954 regulation of humoral immune response mediated by circulating immunoglobulin
## 4955 negative regulation of humoral immune response mediated by circulating immunoglobulin
## 4956 positive regulation of humoral immune response mediated by circulating immunoglobulin
## 4957 trabecular meshwork development
## 4958 lipid hydroxylation
## 4959 desmosome organization
## 4960 tRNA N2-guanine methylation
## 4961 tRNA dihydrouridine synthesis
## 4962 involuntary skeletal muscle contraction
## 4963 lymph circulation
## 4964 regulation of systemic arterial blood pressure by baroreceptor feedback
## 4965 regulation of systemic arterial blood pressure by aortic arch baroreceptor feedback
## 4966 detection of hypoxic conditions in blood by carotid body chemoreceptor signaling
## 4967 detection of oxygen
## 4968 regulation of systemic arterial blood pressure mediated by a chemical signal
## 4969 regulation of systemic arterial blood pressure by atrial natriuretic peptide
## 4970 angiotensin-mediated drinking behavior
## 4971 regulation of vascular smooth muscle contraction
## 4972 regulation of the force of heart contraction by chemical signal
## 4973 hormonal regulation of the force of heart contraction
## 4974 regulation of heart rate by chemical signal
## 4975 regulation of heart rate by hormone
## 4976 positive regulation of heart rate by epinephrine
## 4977 vasodilation by acetylcholine involved in regulation of systemic arterial blood pressure
## 4978 renal system process involved in regulation of systemic arterial blood pressure
## 4979 regulation of systemic arterial blood pressure by renin-angiotensin
## 4980 positive regulation of systemic arterial blood pressure
## 4981 renal water homeostasis
## 4982 regulation of glomerular filtration
## 4983 pressure natriuresis
## 4984 renal sodium ion transport
## 4985 renal water transport
## 4986 positive regulation of the force of heart contraction by chemical signal
## 4987 regulation of systemic arterial blood pressure by endothelin
## 4988 positive regulation of glomerular filtration
## 4989 negative regulation of glomerular filtration
## 4990 negative regulation of glomerular filtration by angiotensin
## 4991 negative regulation of the force of heart contraction by chemical signal
## 4992 detection of nodal flow
## 4993 BMP signaling pathway involved in heart induction
## 4994 mesodermal-endodermal cell signaling
## 4995 negative regulation of heart induction by canonical Wnt signaling pathway
## 4996 primary heart field specification
## 4997 secondary heart field specification
## 4998 determination of left/right asymmetry in lateral mesoderm
## 4999 cardiogenic plate morphogenesis
## 5000 embryonic heart tube formation
## 5001 neural crest cell migration involved in heart formation
## 5002 outflow tract septum morphogenesis
## 5003 membranous septum morphogenesis
## 5004 muscular septum morphogenesis
## 5005 endocardium development
## 5006 morphogenesis of an endothelium
## 5007 endocardium morphogenesis
## 5008 atrioventricular node development
## 5009 His-Purkinje system development
## 5010 Purkinje myocyte development
## 5011 bundle of His development
## 5012 atrioventricular bundle cell differentiation
## 5013 Purkinje myocyte differentiation
## 5014 coronary vein morphogenesis
## 5015 mitral valve development
## 5016 tricuspid valve development
## 5017 aortic valve morphogenesis
## 5018 mitral valve morphogenesis
## 5019 pulmonary valve morphogenesis
## 5020 sinoatrial valve morphogenesis
## 5021 tricuspid valve morphogenesis
## 5022 heart valve formation
## 5023 atrioventricular valve formation
## 5024 mitral valve formation
## 5025 pulmonary valve formation
## 5026 tricuspid valve formation
## 5027 endocardial cushion development
## 5028 epithelial to mesenchymal transition involved in endocardial cushion formation
## 5029 endocardial cushion to mesenchymal transition involved in heart valve formation
## 5030 endocardial cushion morphogenesis
## 5031 cardiac chamber formation
## 5032 cardiac ventricle morphogenesis
## 5033 cardiac atrium formation
## 5034 cardiac ventricle formation
## 5035 cardiac right atrium morphogenesis
## 5036 cardiac left ventricle morphogenesis
## 5037 cardiac right ventricle morphogenesis
## 5038 cardiac left ventricle formation
## 5039 cardiac right ventricle formation
## 5040 left ventricular cardiac muscle tissue morphogenesis
## 5041 right ventricular cardiac muscle tissue morphogenesis
## 5042 ventricular trabecula myocardium morphogenesis
## 5043 ventricular compact myocardium morphogenesis
## 5044 right ventricular compact myocardium morphogenesis
## 5045 ventricular cardiac muscle tissue development
## 5046 sinus venosus morphogenesis
## 5047 growth involved in heart morphogenesis
## 5048 cardiac muscle tissue growth involved in heart morphogenesis
## 5049 post-embryonic cardiac muscle cell growth involved in heart morphogenesis
## 5050 regulation of cell proliferation involved in heart valve morphogenesis
## 5051 positive regulation of cell proliferation involved in heart valve morphogenesis
## 5052 negative regulation of cell proliferation involved in heart valve morphogenesis
## 5053 cardiac neural crest cell migration involved in outflow tract morphogenesis
## 5054 regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## 5055 positive regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## 5056 cardioblast anterior-lateral migration
## 5057 Notch signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## 5058 endocardial cushion formation
## 5059 cell migration involved in endocardial cushion formation
## 5060 endocardial cushion fusion
## 5061 septum primum development
## 5062 septum secundum development
## 5063 atrial septum primum morphogenesis
## 5064 atrial septum secundum morphogenesis
## 5065 atrial ventricular junction remodeling
## 5066 Wnt signaling pathway involved in heart development
## 5067 regulation of Wnt signaling pathway involved in heart development
## 5068 negative regulation of Wnt signaling pathway involved in heart development
## 5069 type B pancreatic cell differentiation
## 5070 pancreatic A cell differentiation
## 5071 pancreatic D cell differentiation
## 5072 positive regulation of blood pressure by epinephrine-norepinephrine
## 5073 pancreatic A cell development
## 5074 type B pancreatic cell development
## 5075 pancreatic A cell fate commitment
## 5076 type B pancreatic cell fate commitment
## 5077 pancreatic PP cell fate commitment
## 5078 positive regulation of extracellular matrix constituent secretion
## 5079 corneocyte development
## 5080 mesenchymal to epithelial transition involved in metanephros morphogenesis
## 5081 regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## 5082 negative regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## 5083 proepicardium development
## 5084 pericardium morphogenesis
## 5085 proepicardium cell migration involved in pericardium morphogenesis
## 5086 pulmonary myocardium development
## 5087 regulation of cilium movement
## 5088 positive regulation of cilium movement
## 5089 regulation of cilium beat frequency
## 5090 noradrenergic neuron differentiation
## 5091 noradrenergic neuron development
## 5092 noradrenergic neuron fate commitment
## 5093 brainstem development
## 5094 lamellipodium assembly involved in ameboidal cell migration
## 5095 establishment of cell polarity involved in ameboidal cell migration
## 5096 cell-matrix adhesion involved in ameboidal cell migration
## 5097 dynamin family protein polymerization involved in mitochondrial fission
## 5098 sphingosine-1-phosphate signaling pathway
## 5099 epithelial cell morphogenesis
## 5100 apical constriction
## 5101 regulation of COPII vesicle coating
## 5102 axis elongation
## 5103 planar cell polarity pathway involved in axis elongation
## 5104 optic vesicle morphogenesis
## 5105 retinal pigment epithelium development
## 5106 optic cup structural organization
## 5107 chondrocyte hypertrophy
## 5108 growth plate cartilage chondrocyte proliferation
## 5109 regulation of growth plate cartilage chondrocyte proliferation
## 5110 growth plate cartilage axis specification
## 5111 growth plate cartilage chondrocyte growth
## 5112 growth plate cartilage chondrocyte development
## 5113 detection of calcium ion
## 5114 glycogen biosynthetic process
## 5115 regulation of glycogen biosynthetic process
## 5116 glycogen catabolic process
## 5117 regulation of glycogen catabolic process
## 5118 starch catabolic process
## 5119 sucrose metabolic process
## 5120 sucrose biosynthetic process
## 5121 trehalose catabolic process
## 5122 xylulose metabolic process
## 5123 xylulose catabolic process
## 5124 xylulose biosynthetic process
## 5125 fructose 6-phosphate metabolic process
## 5126 fucose metabolic process
## 5127 UDP-glucose metabolic process
## 5128 galactose metabolic process
## 5129 mannose metabolic process
## 5130 D-ribose metabolic process
## 5131 5-phosphoribose 1-diphosphate biosynthetic process
## 5132 inositol metabolic process
## 5133 inositol biosynthetic process
## 5134 cell wall chitin metabolic process
## 5135 glucosamine metabolic process
## 5136 glucosamine catabolic process
## 5137 N-acetylglucosamine biosynthetic process
## 5138 N-acetylglucosamine catabolic process
## 5139 UDP-N-acetylglucosamine catabolic process
## 5140 N-acetylmannosamine metabolic process
## 5141 N-acetylneuraminate metabolic process
## 5142 CMP-N-acetylneuraminate biosynthetic process
## 5143 hexitol metabolic process
## 5144 sorbitol metabolic process
## 5145 sorbitol biosynthetic process
## 5146 sorbitol catabolic process
## 5147 UDP-glucuronate biosynthetic process
## 5148 ethanol metabolic process
## 5149 ethanol catabolic process
## 5150 ethanol oxidation
## 5151 glycerol metabolic process
## 5152 glycerol-3-phosphate metabolic process
## 5153 acetate metabolic process
## 5154 acetyl-CoA metabolic process
## 5155 acetyl-CoA biosynthetic process
## 5156 acetyl-CoA biosynthetic process from pyruvate
## 5157 glyoxylate cycle
## 5158 isocitrate metabolic process
## 5159 2-oxoglutarate metabolic process
## 5160 succinyl-CoA metabolic process
## 5161 succinate metabolic process
## 5162 oxaloacetate metabolic process
## 5163 glycerol biosynthetic process
## 5164 NADH oxidation
## 5165 acetaldehyde metabolic process
## 5166 mitochondrial electron transport, cytochrome c to oxygen
## 5167 glycerophosphate shuttle
## 5168 purine nucleobase metabolic process
## 5169 purine nucleobase catabolic process
## 5170 guanine catabolic process
## 5171 inosine catabolic process
## 5172 adenosine catabolic process
## 5173 deoxyadenosine catabolic process
## 5174 purine ribonucleoside salvage
## 5175 adenine salvage
## 5176 adenosine salvage
## 5177 ADP biosynthetic process
## 5178 dADP biosynthetic process
## 5179 dADP phosphorylation
## 5180 dATP biosynthetic process
## 5181 GMP biosynthetic process
## 5182 guanine salvage
## 5183 GTP biosynthetic process
## 5184 dGDP biosynthetic process
## 5185 dGDP phosphorylation
## 5186 'de novo' IMP biosynthetic process
## 5187 ITP catabolic process
## 5188 purine nucleotide catabolic process
## 5189 AMP catabolic process
## 5190 cAMP catabolic process
## 5191 dGTP catabolic process
## 5192 thymine catabolic process
## 5193 5-methylcytosine catabolic process
## 5194 uracil catabolic process
## 5195 thymidine catabolic process
## 5196 uridine catabolic process
## 5197 dUMP biosynthetic process
## 5198 dUDP biosynthetic process
## 5199 UTP biosynthetic process
## 5200 dTMP biosynthetic process
## 5201 dTDP biosynthetic process
## 5202 dTTP biosynthetic process
## 5203 pyrimidine nucleotide catabolic process
## 5204 dCTP catabolic process
## 5205 UDP catabolic process
## 5206 UDP-glucose catabolic process
## 5207 mitochondrial DNA replication
## 5208 DNA topological change
## 5209 pre-replicative complex assembly involved in nuclear cell cycle DNA replication
## 5210 DNA unwinding involved in DNA replication
## 5211 DNA replication, synthesis of RNA primer
## 5212 DNA replication initiation
## 5213 leading strand elongation
## 5214 RNA-dependent DNA biosynthetic process
## 5215 base-excision repair, base-free sugar-phosphate removal
## 5216 base-excision repair, gap-filling
## 5217 base-excision repair, DNA ligation
## 5218 pyrimidine dimer repair
## 5219 double-strand break repair via nonhomologous end joining
## 5220 DNA methylation
## 5221 DNA dealkylation involved in DNA repair
## 5222 meiotic gene conversion
## 5223 mitotic recombination
## 5224 transposition, DNA-mediated
## 5225 DNA replication-dependent nucleosome assembly
## 5226 establishment of chromatin silencing
## 5227 methylation-dependent chromatin silencing
## 5228 chromatin silencing at telomere
## 5229 regulation of gene expression by genetic imprinting
## 5230 regulation of transcription from RNA polymerase I promoter
## 5231 regulation of transcription from RNA polymerase III promoter
## 5232 transcription from RNA polymerase I promoter
## 5233 transcription initiation from RNA polymerase I promoter
## 5234 transcription elongation from RNA polymerase I promoter
## 5235 termination of RNA polymerase I transcription
## 5236 7-methylguanosine mRNA capping
## 5237 mRNA cleavage
## 5238 adenosine to inosine editing
## 5239 transcription initiation from RNA polymerase III promoter
## 5240 termination of RNA polymerase III transcription
## 5241 tRNA splicing, via endonucleolytic cleavage and ligation
## 5242 termination of mitochondrial transcription
## 5243 mRNA 3'-end processing by stem-loop binding and cleavage
## 5244 RNA import into nucleus
## 5245 rRNA export from nucleus
## 5246 snRNA export from nucleus
## 5247 alanyl-tRNA aminoacylation
## 5248 arginyl-tRNA aminoacylation
## 5249 aspartyl-tRNA aminoacylation
## 5250 cysteinyl-tRNA aminoacylation
## 5251 glutaminyl-tRNA aminoacylation
## 5252 histidyl-tRNA aminoacylation
## 5253 isoleucyl-tRNA aminoacylation
## 5254 leucyl-tRNA aminoacylation
## 5255 lysyl-tRNA aminoacylation
## 5256 methionyl-tRNA aminoacylation
## 5257 phenylalanyl-tRNA aminoacylation
## 5258 seryl-tRNA aminoacylation
## 5259 tyrosyl-tRNA aminoacylation
## 5260 valyl-tRNA aminoacylation
## 5261 regulation of translational initiation by iron
## 5262 regulation of translational termination
## 5263 translational frameshifting
## 5264 steroid hormone receptor complex assembly
## 5265 signal peptide processing
## 5266 N-terminal protein amino acid acetylation
## 5267 protein sulfation
## 5268 peptidyl-tyrosine sulfation
## 5269 N-terminal protein amino acid methylation
## 5270 C-terminal protein methylation
## 5271 N-terminal protein lipidation
## 5272 N-terminal protein myristoylation
## 5273 GPI anchor metabolic process
## 5274 GPI anchor biosynthetic process
## 5275 GPI anchor release
## 5276 misfolded or incompletely synthesized protein catabolic process
## 5277 alanine catabolic process
## 5278 arginine metabolic process
## 5279 arginine biosynthetic process
## 5280 arginine catabolic process
## 5281 asparagine metabolic process
## 5282 asparagine biosynthetic process
## 5283 asparagine catabolic process
## 5284 aspartate biosynthetic process
## 5285 aspartate catabolic process
## 5286 cysteine biosynthetic process from serine
## 5287 glutamate biosynthetic process
## 5288 glutamate decarboxylation to succinate
## 5289 glutamine catabolic process
## 5290 glycine metabolic process
## 5291 glycine biosynthetic process
## 5292 glycine catabolic process
## 5293 histidine metabolic process
## 5294 histidine catabolic process
## 5295 isoleucine metabolic process
## 5296 isoleucine catabolic process
## 5297 leucine metabolic process
## 5298 leucine catabolic process
## 5299 lysine metabolic process
## 5300 lysine catabolic process
## 5301 S-adenosylmethionine biosynthetic process
## 5302 S-adenosylmethioninamine biosynthetic process
## 5303 L-phenylalanine catabolic process
## 5304 proline metabolic process
## 5305 proline biosynthetic process
## 5306 proline catabolic process
## 5307 L-serine metabolic process
## 5308 L-serine biosynthetic process
## 5309 L-serine catabolic process
## 5310 tryptophan metabolic process
## 5311 tryptophan catabolic process
## 5312 tyrosine metabolic process
## 5313 tyrosine catabolic process
## 5314 valine metabolic process
## 5315 valine catabolic process
## 5316 cellular biogenic amine metabolic process
## 5317 amino-acid betaine metabolic process
## 5318 amino-acid betaine biosynthetic process
## 5319 amino-acid betaine catabolic process
## 5320 ethanolamine metabolic process
## 5321 melanin metabolic process
## 5322 melanin biosynthetic process from tyrosine
## 5323 catecholamine metabolic process
## 5324 dopamine biosynthetic process from tyrosine
## 5325 indolalkylamine metabolic process
## 5326 octopamine biosynthetic process
## 5327 thyroid hormone generation
## 5328 ornithine metabolic process
## 5329 ornithine biosynthetic process
## 5330 ornithine catabolic process
## 5331 polyamine metabolic process
## 5332 polyamine biosynthetic process
## 5333 spermine biosynthetic process
## 5334 polyamine catabolic process
## 5335 creatine metabolic process
## 5336 creatine biosynthetic process
## 5337 NLS-bearing protein import into nucleus
## 5338 ribosomal protein import into nucleus
## 5339 SRP-dependent cotranslational protein targeting to membrane, signal sequence recognition
## 5340 posttranslational protein targeting to membrane
## 5341 protein targeting to lysosome
## 5342 protein targeting to vacuole
## 5343 vacuolar protein processing
## 5344 protein processing involved in protein targeting to mitochondrion
## 5345 fatty acid beta-oxidation
## 5346 neutral lipid metabolic process
## 5347 acylglycerol metabolic process
## 5348 triglyceride metabolic process
## 5349 triglyceride mobilization
## 5350 phosphatidylethanolamine biosynthetic process
## 5351 phospholipid transfer to membrane
## 5352 diacylglycerol biosynthetic process
## 5353 phosphatidic acid biosynthetic process
## 5354 phosphatidylglycerol biosynthetic process
## 5355 phosphatidylcholine biosynthetic process
## 5356 CDP-choline pathway
## 5357 phosphatidylserine metabolic process
## 5358 phosphatidylserine biosynthetic process
## 5359 phosphatidylserine catabolic process
## 5360 glycerol ether metabolic process
## 5361 platelet activating factor biosynthetic process
## 5362 3-keto-sphinganine metabolic process
## 5363 sphinganine metabolic process
## 5364 sphinganine-1-phosphate metabolic process
## 5365 sphinganine-1-phosphate biosynthetic process
## 5366 sphingosine metabolic process
## 5367 glycosylceramide metabolic process
## 5368 glucosylceramide metabolic process
## 5369 glucosylceramide biosynthetic process
## 5370 glucosylceramide catabolic process
## 5371 galactosylceramide metabolic process
## 5372 galactosylceramide biosynthetic process
## 5373 galactosylceramide catabolic process
## 5374 sphingomyelin metabolic process
## 5375 sphingomyelin catabolic process
## 5376 sphingomyelin biosynthetic process
## 5377 ganglioside catabolic process
## 5378 leukotriene metabolic process
## 5379 prostaglandin metabolic process
## 5380 ergosterol biosynthetic process
## 5381 C21-steroid hormone biosynthetic process
## 5382 progesterone biosynthetic process
## 5383 androgen biosynthetic process
## 5384 estrogen biosynthetic process
## 5385 glucocorticoid biosynthetic process
## 5386 mineralocorticoid biosynthetic process
## 5387 steroid catabolic process
## 5388 cholesterol catabolic process
## 5389 androgen catabolic process
## 5390 estrogen catabolic process
## 5391 glucocorticoid catabolic process
## 5392 eye pigment biosynthetic process
## 5393 tetrahydrobiopterin biosynthetic process
## 5394 nicotinamide riboside catabolic process
## 5395 NADPH regeneration
## 5396 NADP catabolic process
## 5397 ubiquinone metabolic process
## 5398 ubiquinone biosynthetic process
## 5399 FAD biosynthetic process
## 5400 glutathione biosynthetic process
## 5401 glutathione catabolic process
## 5402 ATP biosynthetic process
## 5403 AMP phosphorylation
## 5404 biotin metabolic process
## 5405 riboflavin metabolic process
## 5406 thiamine metabolic process
## 5407 fat-soluble vitamin metabolic process
## 5408 vitamin A metabolic process
## 5409 Mo-molybdopterin cofactor biosynthetic process
## 5410 uroporphyrinogen III biosynthetic process
## 5411 succinyl-CoA pathway
## 5412 heme a biosynthetic process
## 5413 heme oxidation
## 5414 bilirubin conjugation
## 5415 polyphosphate metabolic process
## 5416 regulation of nitrogen utilization
## 5417 nitric oxide biosynthetic process
## 5418 phosphate ion transport
## 5419 cobalt ion transport
## 5420 copper ion transport
## 5421 manganese ion transport
## 5422 dicarboxylic acid transport
## 5423 serotonin transport
## 5424 mitochondrial citrate transport
## 5425 mitochondrial calcium ion transport
## 5426 drug transmembrane transport
## 5427 oligopeptide transport
## 5428 extracellular transport
## 5429 nucleotide transport
## 5430 purine nucleobase transport
## 5431 asparagine transport
## 5432 glutamine transport
## 5433 cellular cadmium ion homeostasis
## 5434 intracellular sequestering of iron ion
## 5435 Golgi to plasma membrane transport
## 5436 Golgi to vacuole transport
## 5437 pinocytosis
## 5438 phagocytosis, recognition
## 5439 activation-induced cell death of T cells
## 5440 inflammatory cell apoptotic process
## 5441 substrate-dependent cell migration
## 5442 substrate-dependent cell migration, cell extension
## 5443 substrate-dependent cell migration, cell attachment to substrate
## 5444 negative regulation of cell adhesion involved in substrate-bound cell migration
## 5445 smooth muscle contraction
## 5446 regulation of smooth muscle contraction
## 5447 induction by virus of host cell-cell fusion
## 5448 acute-phase response
## 5449 complement activation, alternative pathway
## 5450 cellular defense response
## 5451 hypotonic response
## 5452 DNA damage induced protein phosphorylation
## 5453 response to lipid hydroperoxide
## 5454 activation of signaling protein activity involved in unfolded protein response
## 5455 positive regulation of transcription from RNA polymerase II promoter involved in unfolded protein response
## 5456 response to sterol depletion
## 5457 nucleolus organization
## 5458 telomere maintenance via telomerase
## 5459 actin ubiquitination
## 5460 cytoskeletal anchoring at plasma membrane
## 5461 microtubule nucleation
## 5462 tubulin complex assembly
## 5463 post-chaperonin tubulin folding pathway
## 5464 negative regulation of microtubule depolymerization
## 5465 vacuolar phosphate transport
## 5466 protein catabolic process in the vacuole
## 5467 lysosomal lumen acidification
## 5468 spindle assembly involved in female meiosis
## 5469 spindle assembly involved in female meiosis I
## 5470 male meiosis chromosome segregation
## 5471 regulation of sister chromatid cohesion
## 5472 mitotic sister chromatid cohesion
## 5473 female meiosis sister chromatid cohesion
## 5474 negative regulation of transcription from RNA polymerase II promoter during mitotic cell cycle
## 5475 positive regulation of transcription involved in exit from mitosis
## 5476 mitotic chromosome condensation
## 5477 mitotic chromosome movement towards spindle pole
## 5478 mitotic nuclear envelope reassembly
## 5479 traversing start control point of mitotic cell cycle
## 5480 metaphase/anaphase transition of mitotic cell cycle
## 5481 mitotic spindle assembly checkpoint
## 5482 regulation of exit from mitosis
## 5483 mitotic centrosome separation
## 5484 synaptonemal complex assembly
## 5485 reciprocal meiotic recombination
## 5486 meiosis II
## 5487 male meiosis
## 5488 male meiosis I
## 5489 female meiotic division
## 5490 female meiosis I
## 5491 female meiosis II
## 5492 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules
## 5493 calcium-independent cell-matrix adhesion
## 5494 activation of transmembrane receptor protein tyrosine kinase activity
## 5495 signal complex assembly
## 5496 epidermal growth factor catabolic process
## 5497 negative regulation of epidermal growth factor-activated receptor activity
## 5498 transforming growth factor beta receptor complex assembly
## 5499 common-partner SMAD protein phosphorylation
## 5500 SMAD protein complex assembly
## 5501 transmembrane receptor protein tyrosine phosphatase signaling pathway
## 5502 adenylate cyclase-activating dopamine receptor signaling pathway
## 5503 negative regulation of adenylate cyclase activity
## 5504 adenylate cyclase-inhibiting dopamine receptor signaling pathway
## 5505 adenylate cyclase-inhibiting G-protein coupled glutamate receptor signaling pathway
## 5506 adenylate cyclase-inhibiting G-protein coupled acetylcholine receptor signaling pathway
## 5507 adenylate cyclase-inhibiting serotonin receptor signaling pathway
## 5508 G-protein coupled receptor signaling pathway coupled to cGMP nucleotide second messenger
## 5509 phospholipase C-activating G-protein coupled receptor signaling pathway
## 5510 activation of phospholipase C activity
## 5511 protein kinase C-activating G-protein coupled receptor signaling pathway
## 5512 phospholipase C-activating G-protein coupled glutamate receptor signaling pathway
## 5513 phospholipase C-activating G-protein coupled acetylcholine receptor signaling pathway
## 5514 phospholipase C-activating serotonin receptor signaling pathway
## 5515 serotonin receptor signaling pathway
## 5516 dopamine receptor signaling pathway
## 5517 G-protein coupled acetylcholine receptor signaling pathway
## 5518 gamma-aminobutyric acid signaling pathway
## 5519 glutamate receptor signaling pathway
## 5520 G-protein coupled glutamate receptor signaling pathway
## 5521 tachykinin receptor signaling pathway
## 5522 neuropeptide signaling pathway
## 5523 positive regulation of transcription of Notch receptor target
## 5524 patched ligand maturation
## 5525 signal transduction downstream of smoothened
## 5526 positive regulation of hh target transcription factor activity
## 5527 osmosensory signaling pathway
## 5528 I-kappaB kinase/NF-kappaB signaling
## 5529 activation of NF-kappaB-inducing kinase activity
## 5530 I-kappaB phosphorylation
## 5531 JNK cascade
## 5532 activation of JNKK activity
## 5533 activation of JUN kinase activity
## 5534 JUN phosphorylation
## 5535 JAK-STAT cascade
## 5536 tyrosine phosphorylation of STAT protein
## 5537 STAT protein import into nucleus
## 5538 nitric oxide mediated signal transduction
## 5539 synaptic transmission, cholinergic
## 5540 neuromuscular synaptic transmission
## 5541 spermatogonial cell division
## 5542 sperm axoneme assembly
## 5543 spermatid nucleus differentiation
## 5544 spermatid nucleus elongation
## 5545 sperm individualization
## 5546 vitellogenesis
## 5547 insemination
## 5548 sperm displacement
## 5549 acrosome reaction
## 5550 penetration of zona pellucida
## 5551 fusion of sperm to egg plasma membrane
## 5552 egg activation
## 5553 pronuclear fusion
## 5554 blastoderm segmentation
## 5555 zygotic specification of dorsal/ventral axis
## 5556 zygotic determination of anterior/posterior axis, embryo
## 5557 thorax and anterior abdomen determination
## 5558 ventral midline determination
## 5559 compartment pattern specification
## 5560 anterior compartment pattern formation
## 5561 posterior compartment specification
## 5562 neuroblast fate determination
## 5563 ganglion mother cell fate determination
## 5564 glial cell fate determination
## 5565 neuroblast proliferation
## 5566 negative regulation of neuroblast proliferation
## 5567 axon target recognition
## 5568 axonal fasciculation
## 5569 synapse assembly
## 5570 ventral midline development
## 5571 foregut morphogenesis
## 5572 hindgut morphogenesis
## 5573 regulation of rhodopsin gene expression
## 5574 endodermal cell fate determination
## 5575 midgut development
## 5576 visceral mesoderm-endoderm interaction involved in midgut development
## 5577 posterior midgut development
## 5578 ectoderm and mesoderm interaction
## 5579 mesodermal cell fate determination
## 5580 mesodermal cell fate specification
## 5581 gonadal mesoderm development
## 5582 mesoderm migration involved in gastrulation
## 5583 myoblast fate determination
## 5584 muscle cell fate determination
## 5585 visceral muscle development
## 5586 somatic muscle development
## 5587 establishment of synaptic specificity at neuromuscular junction
## 5588 sex determination
## 5589 primary sex determination
## 5590 parturition
## 5591 cell aging
## 5592 nucleolar fragmentation
## 5593 excretion
## 5594 lactation
## 5595 blood coagulation, intrinsic pathway
## 5596 blood coagulation, extrinsic pathway
## 5597 phototransduction, visible light
## 5598 short-term memory
## 5599 mating behavior
## 5600 mating
## 5601 courtship behavior
## 5602 copulation
## 5603 negative regulation of female receptivity
## 5604 rhythmic behavior
## 5605 ultradian rhythm
## 5606 grooming behavior
## 5607 adult walking behavior
## 5608 optokinetic behavior
## 5609 chemosensory behavior
## 5610 mechanosensory behavior
## 5611 neuron recognition
## 5612 male courtship behavior
## 5613 female courtship behavior
## 5614 sensory organ boundary specification
## 5615 eye pigment granule organization
## 5616 Toll signaling pathway
## 5617 establishment of blood-nerve barrier
## 5618 mesodermal cell migration
## 5619 retrograde axonal transport
## 5620 asymmetric protein localization
## 5621 C21-steroid hormone metabolic process
## 5622 androgen metabolic process
## 5623 estrogen metabolic process
## 5624 glucocorticoid metabolic process
## 5625 spermine metabolic process
## 5626 spermidine metabolic process
## 5627 bioluminescence
## 5628 opsonization
## 5629 sulfate transport
## 5630 acetylcholine metabolic process
## 5631 acetylcholine biosynthetic process
## 5632 spermidine biosynthetic process
## 5633 intracellular mRNA localization
## 5634 isoprenoid catabolic process
## 5635 glial cell migration
## 5636 germ cell migration
## 5637 olfactory learning
## 5638 asymmetric cell division
## 5639 visual learning
## 5640 fibroblast growth factor receptor signaling pathway
## 5641 regulation of synaptic growth at neuromuscular junction
## 5642 release of cytoplasmic sequestered NF-kappaB
## 5643 photoreceptor cell morphogenesis
## 5644 anterior/posterior axis specification, embryo
## 5645 ether lipid biosynthetic process
## 5646 peptidyl-lysine modification to peptidyl-hypusine
## 5647 pyridoxine biosynthetic process
## 5648 queuosine biosynthetic process
## 5649 guanosine metabolic process
## 5650 extrinsic apoptotic signaling pathway via death domain receptors
## 5651 granzyme-mediated apoptotic signaling pathway
## 5652 intrinsic apoptotic signaling pathway in response to osmotic stress
## 5653 hormone-mediated apoptotic signaling pathway
## 5654 intrinsic apoptotic signaling pathway in response to oxidative stress
## 5655 pentose-phosphate shunt, non-oxidative branch
## 5656 anaerobic respiration
## 5657 aspartate family amino acid catabolic process
## 5658 serine family amino acid catabolic process
## 5659 aromatic amino acid family metabolic process
## 5660 aromatic amino acid family catabolic process
## 5661 branched-chain amino acid metabolic process
## 5662 branched-chain amino acid catabolic process
## 5663 methionine catabolic process
## 5664 leucine biosynthetic process
## 5665 valine biosynthetic process
## 5666 lipoate metabolic process
## 5667 lipoate biosynthetic process
## 5668 vitamin catabolic process
## 5669 purine nucleobase biosynthetic process
## 5670 xanthine catabolic process
## 5671 deoxyribonucleoside metabolic process
## 5672 nucleoside monophosphate catabolic process
## 5673 purine nucleoside monophosphate catabolic process
## 5674 nucleoside diphosphate biosynthetic process
## 5675 nucleoside diphosphate catabolic process
## 5676 pyrimidine nucleoside diphosphate metabolic process
## 5677 nucleoside triphosphate catabolic process
## 5678 purine nucleoside triphosphate biosynthetic process
## 5679 purine nucleoside triphosphate catabolic process
## 5680 purine deoxyribonucleotide metabolic process
## 5681 purine deoxyribonucleotide biosynthetic process
## 5682 purine ribonucleotide catabolic process
## 5683 purine deoxyribonucleotide catabolic process
## 5684 deoxyribonucleoside monophosphate biosynthetic process
## 5685 deoxyribonucleoside monophosphate catabolic process
## 5686 deoxyribonucleoside monophosphate metabolic process
## 5687 nucleoside catabolic process
## 5688 nucleotide catabolic process
## 5689 purine ribonucleoside monophosphate catabolic process
## 5690 pyrimidine deoxyribonucleoside monophosphate metabolic process
## 5691 pyrimidine deoxyribonucleoside monophosphate biosynthetic process
## 5692 purine ribonucleoside diphosphate biosynthetic process
## 5693 purine ribonucleoside diphosphate catabolic process
## 5694 purine deoxyribonucleoside diphosphate metabolic process
## 5695 purine deoxyribonucleoside diphosphate biosynthetic process
## 5696 deoxyribonucleoside diphosphate metabolic process
## 5697 deoxyribonucleoside diphosphate biosynthetic process
## 5698 ribonucleoside diphosphate catabolic process
## 5699 deoxyribonucleoside triphosphate metabolic process
## 5700 deoxyribonucleoside triphosphate biosynthetic process
## 5701 deoxyribonucleoside triphosphate catabolic process
## 5702 purine ribonucleoside triphosphate biosynthetic process
## 5703 pyrimidine deoxyribonucleoside triphosphate metabolic process
## 5704 pyrimidine deoxyribonucleoside triphosphate catabolic process
## 5705 cyclic nucleotide catabolic process
## 5706 purine deoxyribonucleoside triphosphate metabolic process
## 5707 purine deoxyribonucleoside triphosphate biosynthetic process
## 5708 purine deoxyribonucleoside triphosphate catabolic process
## 5709 pyrimidine deoxyribonucleotide metabolic process
## 5710 pyrimidine deoxyribonucleotide biosynthetic process
## 5711 pyrimidine deoxyribonucleotide catabolic process
## 5712 nucleotide-sugar catabolic process
## 5713 thiamine diphosphate biosynthetic process
## 5714 riboflavin biosynthetic process
## 5715 menaquinone metabolic process
## 5716 menaquinone biosynthetic process
## 5717 isopentenyl diphosphate biosynthetic process
## 5718 lipid A biosynthetic process
## 5719 protein lipoylation
## 5720 glucan catabolic process
## 5721 peptidoglycan catabolic process
## 5722 10-formyltetrahydrofolate metabolic process
## 5723 10-formyltetrahydrofolate biosynthetic process
## 5724 10-formyltetrahydrofolate catabolic process
## 5725 ribonucleotide catabolic process
## 5726 deoxyribonucleotide metabolic process
## 5727 deoxyribonucleotide biosynthetic process
## 5728 deoxyribonucleotide catabolic process
## 5729 2'-deoxyribonucleotide biosynthetic process
## 5730 GDP-mannose biosynthetic process
## 5731 mRNA transcription
## 5732 rRNA transcription
## 5733 tRNA transcription
## 5734 amine metabolic process
## 5735 amine biosynthetic process
## 5736 oligosaccharide catabolic process
## 5737 translational attenuation
## 5738 2'-deoxyribonucleotide metabolic process
## 5739 folic acid-containing compound biosynthetic process
## 5740 folic acid-containing compound catabolic process
## 5741 FMN biosynthetic process
## 5742 toxin biosynthetic process
## 5743 toxin metabolic process
## 5744 pathogenesis
## 5745 toxin catabolic process
## 5746 response to water deprivation
## 5747 response to water
## 5748 glyoxylate catabolic process
## 5749 carnitine metabolic process
## 5750 cyanate catabolic process
## 5751 pyridoxal 5'-phosphate salvage
## 5752 pyruvate oxidation
## 5753 putrescine metabolic process
## 5754 putrescine biosynthetic process
## 5755 putrescine catabolic process
## 5756 gamma-aminobutyric acid metabolic process
## 5757 gamma-aminobutyric acid biosynthetic process
## 5758 gamma-aminobutyric acid catabolic process
## 5759 7-methylguanosine RNA capping
## 5760 detection of gravity
## 5761 detection of virus
## 5762 response to symbiotic bacterium
## 5763 response to fungus
## 5764 response to nematode
## 5765 response to gravity
## 5766 cold acclimation
## 5767 response to herbicide
## 5768 response to light intensity
## 5769 response to high light intensity
## 5770 response to low light intensity stimulus
## 5771 photoperiodism
## 5772 entrainment of circadian clock
## 5773 UV protection
## 5774 response to salt stress
## 5775 ethylene metabolic process
## 5776 detection of hormone stimulus
## 5777 detection of endogenous stimulus
## 5778 response to sucrose
## 5779 response to fructose
## 5780 response to salicylic acid
## 5781 carbohydrate mediated signaling
## 5782 blue light signaling pathway
## 5783 regulation of asymmetric cell division
## 5784 positive regulation of abscisic acid-activated signaling pathway
## 5785 regulation of mitotic cell cycle, embryonic
## 5786 coumarin metabolic process
## 5787 flavonoid metabolic process
## 5788 defense response to fungus, incompatible interaction
## 5789 alkaloid metabolic process
## 5790 alkaloid catabolic process
## 5791 unidimensional cell growth
## 5792 abscission
## 5793 post-embryonic animal morphogenesis
## 5794 proximal/distal axis specification
## 5795 polarity specification of anterior/posterior axis
## 5796 dorsal/ventral axis specification
## 5797 radial pattern formation
## 5798 cytidine deamination
## 5799 cellular water homeostasis
## 5800 oocyte differentiation
## 5801 negative regulation of cell fate specification
## 5802 cardioblast differentiation
## 5803 amylopectin biosynthetic process
## 5804 wax biosynthetic process
## 5805 meiotic chromosome condensation
## 5806 response to acetate
## 5807 response to carbon dioxide
## 5808 response to iron ion
## 5809 response to iron(II) ion
## 5810 response to iron(III) ion
## 5811 response to manganese ion
## 5812 response to aluminum ion
## 5813 response to nickel cation
## 5814 response to mycotoxin
## 5815 zygote asymmetric cell division
## 5816 polarity specification of proximal/distal axis
## 5817 specification of animal organ identity
## 5818 cellular response to iron ion starvation
## 5819 phenylacetate catabolic process
## 5820 proline catabolic process to glutamate
## 5821 response to chlorate
## 5822 specification of animal organ position
## 5823 response to cesium ion
## 5824 embryonic body morphogenesis
## 5825 vitamin E biosynthetic process
## 5826 response to ozone
## 5827 maintenance of DNA methylation
## 5828 response to UV-B
## 5829 response to UV-C
## 5830 response to lithium ion
## 5831 vascular transport
## 5832 glucose mediated signaling pathway
## 5833 animal organ senescence
## 5834 SCF complex assembly
## 5835 response to vitamin B1
## 5836 response to selenium ion
## 5837 response to lead ion
## 5838 regulation of anion channel activity
## 5839 negative regulation of anion channel activity
## 5840 COP9 signalosome assembly
## 5841 fatty acid omega-oxidation
## 5842 response to alkaline pH
## 5843 histone H3-K36 methylation
## 5844 regulation of cell fate commitment
## 5845 negative regulation of cell fate commitment
## 5846 positive regulation of cell fate commitment
## 5847 exit from mitosis
## 5848 negative regulation of heart rate
## 5849 positive regulation of heart rate
## 5850 mesenchymal cell proliferation
## 5851 regulation of mesenchymal cell proliferation
## 5852 regulation of gastrulation
## 5853 response to sulfur dioxide
## 5854 epidermal cell division
## 5855 regulation of epidermal cell division
## 5856 proteasomal ubiquitin-independent protein catabolic process
## 5857 polyamine homeostasis
## 5858 regulation of acetyl-CoA biosynthetic process from pyruvate
## 5859 regulation of phosphatidylinositol biosynthetic process
## 5860 negative regulation of phosphatidylinositol biosynthetic process
## 5861 positive regulation of phosphatidylinositol biosynthetic process
## 5862 negative regulation of phospholipase activity
## 5863 regulation of reciprocal meiotic recombination
## 5864 regulation of calcium ion transport into cytosol
## 5865 negative regulation of calcium ion transport into cytosol
## 5866 positive regulation of calcium ion transport into cytosol
## 5867 negative regulation of transposition
## 5868 regulation of activation of Janus kinase activity
## 5869 positive regulation of activation of Janus kinase activity
## 5870 regulation of platelet activation
## 5871 negative regulation of platelet activation
## 5872 regulation of glycoprotein biosynthetic process
## 5873 positive regulation of glycoprotein biosynthetic process
## 5874 negative regulation of glycoprotein biosynthetic process
## 5875 regulation of ketone biosynthetic process
## 5876 positive regulation of nuclear cell cycle DNA replication
## 5877 positive regulation of platelet activation
## 5878 vascular endothelial growth factor production
## 5879 regulation of vascular endothelial growth factor production
## 5880 positive regulation of vascular endothelial growth factor production
## 5881 positive regulation of adenylate cyclase activity involved in G-protein coupled receptor signaling pathway
## 5882 glutamine secretion
## 5883 miRNA metabolic process
## 5884 miRNA catabolic process
## 5885 negative regulation of lamellipodium assembly
## 5886 positive regulation of endothelial cell migration
## 5887 negative regulation of endothelial cell migration
## 5888 regulation of cytoplasmic mRNA processing body assembly
## 5889 positive regulation of cytoplasmic mRNA processing body assembly
## 5890 negative regulation of cytoplasmic mRNA processing body assembly
## 5891 mRNA localization resulting in posttranscriptional regulation of gene expression
## 5892 regulation of mRNA stability involved in response to stress
## 5893 negative regulation of cardiac muscle hypertrophy
## 5894 negative regulation of transcription by transcription factor localization
## 5895 programmed cell death involved in cell development
## 5896 positive regulation of Schwann cell proliferation
## 5897 regulation of mitochondrial fusion
## 5898 positive regulation of mitochondrial fusion
## 5899 negative regulation of mitochondrial fusion
## 5900 positive regulation of platelet-derived growth factor receptor signaling pathway
## 5901 negative regulation of platelet-derived growth factor receptor signaling pathway
## 5902 cell communication by chemical coupling
## 5903 regulation of cell communication by electrical coupling
## 5904 positive regulation of cell communication by electrical coupling
## 5905 positive regulation of cell communication by chemical coupling
## 5906 negative regulation of muscle cell apoptotic process
## 5907 muscle cell apoptotic process
## 5908 cardiac muscle cell apoptotic process
## 5909 regulation of muscle cell apoptotic process
## 5910 positive regulation of muscle cell apoptotic process
## 5911 regulation of striated muscle cell apoptotic process
## 5912 negative regulation of striated muscle cell apoptotic process
## 5913 regulation of cardiac muscle cell apoptotic process
## 5914 positive regulation of cardiac muscle cell apoptotic process
## 5915 negative regulation of cardiac muscle cell apoptotic process
## 5916 ectodermal cell differentiation
## 5917 regulation of alkaline phosphatase activity
## 5918 negative regulation of alkaline phosphatase activity
## 5919 positive regulation of alkaline phosphatase activity
## 5920 negative regulation of norepinephrine secretion
## 5921 positive regulation of norepinephrine secretion
## 5922 meiotic DNA double-strand break processing involved in reciprocal meiotic recombination
## 5923 regulation of collagen catabolic process
## 5924 negative regulation of collagen catabolic process
## 5925 negative regulation of collagen metabolic process
## 5926 regulation of extracellular matrix disassembly
## 5927 negative regulation of extracellular matrix disassembly
## 5928 regulation of epithelial to mesenchymal transition
## 5929 positive regulation of epithelial to mesenchymal transition
## 5930 negative regulation of epithelial to mesenchymal transition
## 5931 regulation of ferrochelatase activity
## 5932 regulation of definitive erythrocyte differentiation
## 5933 regulation of primitive erythrocyte differentiation
## 5934 positive regulation of hydrogen peroxide metabolic process
## 5935 negative regulation of hydrogen peroxide metabolic process
## 5936 regulation of hydrogen peroxide biosynthetic process
## 5937 positive regulation of hydrogen peroxide biosynthetic process
## 5938 negative regulation of hydrogen peroxide biosynthetic process
## 5939 negative regulation of protein glutathionylation
## 5940 positive regulation of transcription via serum response element binding
## 5941 regulation of protein kinase A signaling
## 5942 positive regulation of protein kinase A signaling
## 5943 macrophage derived foam cell differentiation
## 5944 regulation of macrophage derived foam cell differentiation
## 5945 positive regulation of macrophage derived foam cell differentiation
## 5946 negative regulation of macrophage derived foam cell differentiation
## 5947 negative regulation of plasma membrane long-chain fatty acid transport
## 5948 regulation of nitric oxide mediated signal transduction
## 5949 positive regulation of nitric oxide mediated signal transduction
## 5950 negative regulation of nitric oxide mediated signal transduction
## 5951 regulation of cGMP-mediated signaling
## 5952 negative regulation of cGMP-mediated signaling
## 5953 negative regulation of plasminogen activation
## 5954 regulation of macrophage chemotaxis
## 5955 positive regulation of macrophage chemotaxis
## 5956 negative regulation of macrophage chemotaxis
## 5957 fibroblast migration
## 5958 positive regulation of fibroblast migration
## 5959 negative regulation of fibroblast migration
## 5960 negative regulation of sodium ion transport
## 5961 regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## 5962 negative regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## 5963 meiotic sister chromatid cohesion involved in meiosis I
## 5964 DNA double-strand break processing involved in repair via single-strand annealing
## 5965 regulation of mRNA export from nucleus
## 5966 regulation of ubiquinone biosynthetic process
## 5967 regulation of multivesicular body size
## 5968 regulation of multivesicular body size involved in endosome transport
## 5969 regulation of peptidyl-threonine phosphorylation
## 5970 positive regulation of peptidyl-threonine phosphorylation
## 5971 negative regulation of peptidyl-threonine phosphorylation
## 5972 negative regulation of tumor necrosis factor-mediated signaling pathway
## 5973 regulation of synaptic vesicle priming
## 5974 positive regulation of synaptic vesicle priming
## 5975 neuropeptide catabolic process
## 5976 substance P catabolic process
## 5977 bradykinin catabolic process
## 5978 calcitonin catabolic process
## 5979 regulation of T cell chemotaxis
## 5980 positive regulation of T cell chemotaxis
## 5981 positive regulation of centrosome duplication
## 5982 negative regulation of centrosome duplication
## 5983 negative regulation of glucose transport
## 5984 regulation of myotube differentiation
## 5985 positive regulation of myotube differentiation
## 5986 negative regulation of myotube differentiation
## 5987 telomere maintenance via telomere lengthening
## 5988 regulation of protein ADP-ribosylation
## 5989 negative regulation of protein ADP-ribosylation
## 5990 regulation of keratinocyte proliferation
## 5991 positive regulation of keratinocyte proliferation
## 5992 negative regulation of keratinocyte proliferation
## 5993 regulation of circadian sleep/wake cycle, wakefulness
## 5994 positive regulation of circadian sleep/wake cycle, wakefulness
## 5995 positive regulation of reciprocal meiotic recombination
## 5996 regulation of chromatin assembly
## 5997 regulation of chromatin disassembly
## 5998 regulation of proton-transporting ATPase activity, rotational mechanism
## 5999 positive regulation of pathway-restricted SMAD protein phosphorylation
## 6000 positive regulation of phospholipase C activity
## 6001 regulation of triglyceride biosynthetic process
## 6002 positive regulation of triglyceride biosynthetic process
## 6003 negative regulation of triglyceride biosynthetic process
## 6004 positive regulation of receptor biosynthetic process
## 6005 negative regulation of receptor biosynthetic process
## 6006 regulation of cholesterol esterification
## 6007 positive regulation of cholesterol esterification
## 6008 regulation of cholesterol efflux
## 6009 positive regulation of cholesterol efflux
## 6010 lipid transport involved in lipid storage
## 6011 cholesterol storage
## 6012 cholesterol transport involved in cholesterol storage
## 6013 regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## 6014 regulation of cardiac muscle contraction by regulation of the release of sequestered calcium ion
## 6015 regulation of lipid storage
## 6016 positive regulation of lipid storage
## 6017 regulation of cholesterol storage
## 6018 positive regulation of cholesterol storage
## 6019 negative regulation of cholesterol storage
## 6020 negative regulation of lipid storage
## 6021 regulation of sequestering of triglyceride
## 6022 positive regulation of sequestering of triglyceride
## 6023 negative regulation of sequestering of triglyceride
## 6024 positive regulation of steroid biosynthetic process
## 6025 regulation of triglyceride catabolic process
## 6026 negative regulation of triglyceride catabolic process
## 6027 positive regulation of triglyceride catabolic process
## 6028 regulation of phosphatidylcholine catabolic process
## 6029 negative regulation of phosphatidylcholine catabolic process
## 6030 regulation of very-low-density lipoprotein particle remodeling
## 6031 positive regulation of very-low-density lipoprotein particle remodeling
## 6032 negative regulation of very-low-density lipoprotein particle remodeling
## 6033 negative regulation of UDP-glucose catabolic process
## 6034 positive regulation of glucose metabolic process
## 6035 positive regulation of heparan sulfate proteoglycan biosynthetic process
## 6036 negative regulation of very-low-density lipoprotein particle clearance
## 6037 negative regulation of mitochondrial membrane potential
## 6038 positive regulation of mitochondrial membrane potential
## 6039 regulation of inositol phosphate biosynthetic process
## 6040 negative regulation of inositol phosphate biosynthetic process
## 6041 positive regulation of phosphatase activity
## 6042 positive regulation of inositol-polyphosphate 5-phosphatase activity
## 6043 positive regulation of macrophage tolerance induction
## 6044 macrophage cytokine production
## 6045 regulation of macrophage cytokine production
## 6046 negative regulation of macrophage cytokine production
## 6047 regulation of necrotic cell death
## 6048 positive regulation of necrotic cell death
## 6049 negative regulation of intestinal phytosterol absorption
## 6050 regulation of amino acid import
## 6051 magnesium ion homeostasis
## 6052 cellular magnesium ion homeostasis
## 6053 regulation of L-arginine import
## 6054 regulation of mitotic sister chromatid separation
## 6055 regulation of phosphate transport
## 6056 regulation of microtubule nucleation
## 6057 positive regulation of vitamin D 24-hydroxylase activity
## 6058 regulation of high-density lipoprotein particle clearance
## 6059 positive regulation of high-density lipoprotein particle clearance
## 6060 regulation of lipoprotein particle clearance
## 6061 negative regulation of lipoprotein particle clearance
## 6062 positive regulation of lipoprotein particle clearance
## 6063 negative regulation of high-density lipoprotein particle clearance
## 6064 regulation of low-density lipoprotein particle clearance
## 6065 negative regulation of low-density lipoprotein particle clearance
## 6066 negative regulation of SMAD protein complex assembly
## 6067 ubiquitin homeostasis
## 6068 free ubiquitin chain polymerization
## 6069 response to auditory stimulus
## 6070 regulation of translational initiation by eIF2 alpha phosphorylation
## 6071 regulation of eIF2 alpha phosphorylation by heme
## 6072 astrocyte development
## 6073 microglia development
## 6074 glial cell proliferation
## 6075 Schwann cell proliferation
## 6076 peripheral nervous system axon regeneration
## 6077 neuroblast differentiation
## 6078 neural crest cell fate commitment
## 6079 neural crest cell fate specification
## 6080 regulation of Schwann cell differentiation
## 6081 positive regulation of Schwann cell differentiation
## 6082 regulation of neuron maturation
## 6083 positive regulation of neuron maturation
## 6084 negative regulation of neuron maturation
## 6085 glutamate secretion
## 6086 regulation of glutamate secretion
## 6087 positive regulation of glutamate secretion
## 6088 negative regulation of glutamate secretion
## 6089 gamma-aminobutyric acid secretion
## 6090 regulation of gamma-aminobutyric acid secretion
## 6091 negative regulation of gamma-aminobutyric acid secretion
## 6092 positive regulation of gamma-aminobutyric acid secretion
## 6093 regulation of acetylcholine secretion, neurotransmission
## 6094 positive regulation of acetylcholine secretion, neurotransmission
## 6095 regulation of epinephrine secretion
## 6096 regulation of norepinephrine secretion
## 6097 regulation of serotonin secretion
## 6098 negative regulation of serotonin secretion
## 6099 positive regulation of serotonin secretion
## 6100 regulation of phosphatidylinositol 3-kinase signaling
## 6101 negative regulation of phosphatidylinositol 3-kinase signaling
## 6102 positive regulation of phosphatidylinositol 3-kinase signaling
## 6103 response to amine
## 6104 branchiomeric skeletal muscle development
## 6105 regulation of satellite cell activation involved in skeletal muscle regeneration
## 6106 positive regulation of satellite cell activation involved in skeletal muscle regeneration
## 6107 skeletal muscle satellite cell activation
## 6108 twitch skeletal muscle contraction
## 6109 regulation of skeletal muscle contraction by calcium ion signaling
## 6110 regulation of twitch skeletal muscle contraction
## 6111 regulation of the force of skeletal muscle contraction
## 6112 skeletal muscle atrophy
## 6113 regulation of skeletal muscle adaptation
## 6114 skeletal muscle hypertrophy
## 6115 regulation of muscle atrophy
## 6116 negative regulation of muscle atrophy
## 6117 positive regulation of muscle atrophy
## 6118 regulation of muscle hyperplasia
## 6119 positive regulation of muscle hyperplasia
## 6120 negative regulation of muscle hyperplasia
## 6121 negative regulation of muscle hypertrophy
## 6122 positive regulation of muscle adaptation
## 6123 negative regulation of muscle adaptation
## 6124 smooth muscle adaptation
## 6125 smooth muscle hyperplasia
## 6126 regulation of somitogenesis
## 6127 release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## 6128 regulation of skeletal muscle contraction by regulation of release of sequestered calcium ion
## 6129 positive regulation of skeletal muscle contraction by regulation of release of sequestered calcium ion
## 6130 muscle cell migration
## 6131 skeletal muscle satellite cell commitment
## 6132 skeletal muscle satellite cell differentiation
## 6133 regulation of skeletal muscle contraction
## 6134 tonic smooth muscle contraction
## 6135 phasic smooth muscle contraction
## 6136 detection of wounding
## 6137 response to activity
## 6138 artery smooth muscle contraction
## 6139 vein smooth muscle contraction
## 6140 intestine smooth muscle contraction
## 6141 vascular smooth muscle contraction
## 6142 gastro-intestinal system smooth muscle contraction
## 6143 urinary bladder smooth muscle contraction
## 6144 skeletal muscle satellite cell maintenance involved in skeletal muscle regeneration
## 6145 myoblast differentiation involved in skeletal muscle regeneration
## 6146 myoblast migration involved in skeletal muscle regeneration
## 6147 skeletal muscle satellite cell proliferation
## 6148 regulation of skeletal muscle satellite cell proliferation
## 6149 growth factor dependent regulation of skeletal muscle satellite cell proliferation
## 6150 esophagus smooth muscle contraction
## 6151 response to muscle activity
## 6152 regulation of excitatory postsynaptic membrane potential involved in skeletal muscle contraction
## 6153 response to inactivity
## 6154 striated muscle cell proliferation
## 6155 regulation of skeletal muscle cell proliferation
## 6156 positive regulation of skeletal muscle cell proliferation
## 6157 regulation of skeletal muscle contraction via regulation of action potential
## 6158 skeletal myofibril assembly
## 6159 response to muscle inactivity
## 6160 response to muscle activity involved in regulation of muscle adaptation
## 6161 response to stimulus involved in regulation of muscle adaptation
## 6162 response to injury involved in regulation of muscle adaptation
## 6163 response to electrical stimulus involved in regulation of muscle adaptation
## 6164 transition between fast and slow fiber
## 6165 transition between slow and fast fiber
## 6166 striated muscle adaptation
## 6167 muscle atrophy
## 6168 striated muscle atrophy
## 6169 response to denervation involved in regulation of muscle adaptation
## 6170 smooth muscle hypertrophy
## 6171 cardiac muscle hypertrophy in response to stress
## 6172 myoblast fusion involved in skeletal muscle regeneration
## 6173 smooth muscle cell migration
## 6174 regulation of smooth muscle cell migration
## 6175 positive regulation of smooth muscle cell migration
## 6176 negative regulation of smooth muscle cell migration
## 6177 regulation of lung blood pressure
## 6178 heparan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## 6179 heparan sulfate proteoglycan biosynthetic process, enzymatic modification
## 6180 gas transport
## 6181 carbon dioxide transport
## 6182 oxygen transport
## 6183 copper ion import
## 6184 plasma membrane copper ion transport
## 6185 intracellular copper ion transport
## 6186 molybdate ion transport
## 6187 lead ion transport
## 6188 magnesium ion transport
## 6189 mercury ion transport
## 6190 organic cation transport
## 6191 quaternary ammonium group transport
## 6192 bicarbonate transport
## 6193 iodide transport
## 6194 nitrate transport
## 6195 nitrite transport
## 6196 thiosulfate transport
## 6197 bile acid and bile salt transport
## 6198 canalicular bile acid transport
## 6199 bilirubin transport
## 6200 formate transport
## 6201 prostaglandin transport
## 6202 taurine transport
## 6203 sialic acid transport
## 6204 C4-dicarboxylate transport
## 6205 alpha-ketoglutarate transport
## 6206 citrate transport
## 6207 urate transport
## 6208 fructose transport
## 6209 glucose-6-phosphate transport
## 6210 mannose transport
## 6211 sucrose transport
## 6212 nucleotide-sugar transport
## 6213 pyrimidine nucleotide-sugar transport
## 6214 CMP-N-acetylneuraminate transport
## 6215 GDP-fucose transport
## 6216 UDP-glucose transport
## 6217 UDP-glucuronic acid transport
## 6218 UDP-xylose transport
## 6219 mannitol transport
## 6220 myo-inositol transport
## 6221 acidic amino acid transport
## 6222 aromatic amino acid transport
## 6223 branched-chain amino acid transport
## 6224 L-alanine transport
## 6225 aspartate transport
## 6226 L-cystine transport
## 6227 gamma-aminobutyric acid transport
## 6228 L-glutamate transport
## 6229 leucine transport
## 6230 methionine transport
## 6231 proline transport
## 6232 L-serine transport
## 6233 threonine transport
## 6234 tryptophan transport
## 6235 tyrosine transport
## 6236 amine transport
## 6237 amino-acid betaine transport
## 6238 aminergic neurotransmitter loading into synaptic vesicle
## 6239 polyamine transport
## 6240 putrescine transport
## 6241 nucleobase transport
## 6242 adenine transport
## 6243 pyrimidine nucleobase transport
## 6244 nucleoside transport
## 6245 purine nucleoside transmembrane transport
## 6246 uridine transport
## 6247 pyrimidine nucleoside transport
## 6248 purine nucleotide transport
## 6249 ADP transport
## 6250 ATP transport
## 6251 purine ribonucleotide transport
## 6252 acetylcholine transport
## 6253 choline transport
## 6254 norepinephrine transport
## 6255 acetyl-CoA transport
## 6256 biotin transport
## 6257 carnitine transport
## 6258 folic acid transport
## 6259 heme transport
## 6260 pantothenate transmembrane transport
## 6261 cobalamin transport
## 6262 siderophore transport
## 6263 drug transport
## 6264 tetracycline transport
## 6265 peroxisomal long-chain fatty acid import
## 6266 plasma membrane long-chain fatty acid transport
## 6267 short-chain fatty acid import
## 6268 aminophospholipid transport
## 6269 peroxisomal membrane transport
## 6270 lipopolysaccharide transport
## 6271 coenzyme A catabolic process
## 6272 pantothenate metabolic process
## 6273 formate metabolic process
## 6274 diadenosine polyphosphate metabolic process
## 6275 diadenosine tetraphosphate biosynthetic process
## 6276 ATP synthesis coupled proton transport
## 6277 electron transport coupled proton transport
## 6278 molecular hydrogen transport
## 6279 CDP-diacylglycerol biosynthetic process
## 6280 cellular response to phosphate starvation
## 6281 absorption of visible light
## 6282 detection of bacterium
## 6283 detection of fungus
## 6284 detection of temperature stimulus
## 6285 rhodopsin mediated signaling pathway
## 6286 adaptation of rhodopsin mediated signaling
## 6287 snoRNA metabolic process
## 6288 rRNA catabolic process
## 6289 snoRNA catabolic process
## 6290 tRNA catabolic process
## 6291 synaptic vesicle targeting
## 6292 synaptic vesicle docking
## 6293 synaptic vesicle priming
## 6294 polyprenol catabolic process
## 6295 monoterpenoid metabolic process
## 6296 diterpenoid biosynthetic process
## 6297 terpenoid catabolic process
## 6298 carotene metabolic process
## 6299 carotene catabolic process
## 6300 xanthophyll metabolic process
## 6301 phytosteroid biosynthetic process
## 6302 brassinosteroid biosynthetic process
## 6303 glycoside catabolic process
## 6304 synaptic vesicle budding from endosome
## 6305 synaptic vesicle budding from presynaptic endocytic zone membrane
## 6306 synaptic vesicle maturation
## 6307 synaptic vesicle to endosome fusion
## 6308 axon choice point recognition
## 6309 axon midline choice point recognition
## 6310 regulation of striated muscle tissue development
## 6311 telomere capping
## 6312 autophagosome docking
## 6313 regulation of autophagosome size
## 6314 preassembly of GPI anchor in ER membrane
## 6315 attachment of GPI anchor to protein
## 6316 N-glycan processing to lysosome
## 6317 selenocysteine metabolic process
## 6318 selenocysteine biosynthetic process
## 6319 gap junction assembly
## 6320 O-glycan processing, core 1
## 6321 O-glycan processing, core 3
## 6322 endoplasmic reticulum membrane fusion
## 6323 female meiosis chromosome segregation
## 6324 neuron remodeling
## 6325 establishment or maintenance of polarity of embryonic epithelium
## 6326 calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules
## 6327 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules
## 6328 calcium-dependent cell-matrix adhesion
## 6329 meiotic chromosome movement towards spindle pole
## 6330 regulation of embryonic cell shape
## 6331 negative regulation of transcription from RNA polymerase I promoter
## 6332 negative regulation of transcription from RNA polymerase III promoter
## 6333 farnesol catabolic process
## 6334 intein-mediated protein splicing
## 6335 base conversion or substitution editing
## 6336 cytidine to uridine editing
## 6337 mRNA modification
## 6338 peroxisome membrane biogenesis
## 6339 peroxisome fission
## 6340 protein import into peroxisome matrix, docking
## 6341 histone phosphorylation
## 6342 histone dephosphorylation
## 6343 histone deubiquitination
## 6344 nucleosome positioning
## 6345 protein arginylation
## 6346 protein desumoylation
## 6347 cell wall macromolecule catabolic process
## 6348 antibiotic metabolic process
## 6349 negative regulation of RNA polymerase II transcriptional preinitiation complex assembly
## 6350 response to insecticide
## 6351 phospholipid scrambling
## 6352 nucleologenesis
## 6353 insecticide metabolic process
## 6354 drug metabolic process
## 6355 stem cell division
## 6356 peptidyl-lysine hydroxylation
## 6357 peptidyl-pyroglutamic acid biosynthetic process, using glutaminyl-peptide cyclotransferase
## 6358 peptidyl-glutamic acid carboxylation
## 6359 N-terminal peptidyl-methionine acetylation
## 6360 N-terminal peptidyl-serine acetylation
## 6361 N-terminal peptidyl-glutamic acid acetylation
## 6362 peptidyl-lysine N6-acetylation
## 6363 N-terminal peptidyl-glycine N-myristoylation
## 6364 N-terminal peptidyl-L-cysteine N-palmitoylation
## 6365 N-terminal peptidyl-alanine trimethylation
## 6366 N-terminal peptidyl-glycine methylation
## 6367 N-terminal peptidyl-proline dimethylation
## 6368 peptidyl-lysine trimethylation
## 6369 peptidyl-lysine monomethylation
## 6370 peptidyl-lysine dimethylation
## 6371 protein amidation
## 6372 peptidyl-lysine oxidation
## 6373 cytochrome c-heme linkage
## 6374 N-terminal peptidyl-lysine acetylation
## 6375 protein polyglycylation
## 6376 protein polyglutamylation
## 6377 peptidyl-histidine phosphorylation
## 6378 peptidyl-threonine phosphorylation
## 6379 protein adenylylation
## 6380 peptidyl-cysteine S-nitrosylation
## 6381 peptidyl-cysteine methylation
## 6382 peptide cross-linking
## 6383 isopeptide cross-linking via N6-(L-isoglutamyl)-L-lysine
## 6384 peptidyl-pyrromethane cofactor linkage
## 6385 C-terminal protein-tyrosinylation
## 6386 peptidyl-serine octanoylation
## 6387 enzyme active site formation via cysteine modification to L-cysteine persulfide
## 6388 peptidyl-aspartic acid modification
## 6389 peptidyl-glutamine modification
## 6390 peptidyl-glutamic acid modification
## 6391 peptidyl-glycine modification
## 6392 peptidyl-methionine modification
## 6393 peptidyl-arginine methylation
## 6394 peptidyl-L-cysteine S-palmitoylation
## 6395 protein deamination
## 6396 iron incorporation into metallo-sulfur cluster
## 6397 protein-FAD linkage
## 6398 molybdenum incorporation into molybdenum-molybdopterin complex
## 6399 protein farnesylation
## 6400 protein palmitoylation
## 6401 protein esterification
## 6402 peptidyl-glutamine methylation
## 6403 protein myristoylation
## 6404 peptidyl-lysine hydroxylation to 5-hydroxy-L-lysine
## 6405 peptidyl-proline hydroxylation to 3-hydroxy-L-proline
## 6406 peptidyl-proline hydroxylation to 4-hydroxy-L-proline
## 6407 protein C-linked glycosylation via 2'-alpha-mannosyl-L-tryptophan
## 6408 arsonoacetate metabolic process
## 6409 benzoate metabolic process
## 6410 biphenyl metabolic process
## 6411 carbon tetrachloride metabolic process
## 6412 dibenzo-p-dioxin metabolic process
## 6413 ether metabolic process
## 6414 benzene metabolic process
## 6415 nitrobenzene metabolic process
## 6416 fluorene metabolic process
## 6417 naphthalene metabolic process
## 6418 phenol-containing compound metabolic process
## 6419 phthalate metabolic process
## 6420 propylene metabolic process
## 6421 thiocyanate metabolic process
## 6422 trichloroethylene metabolic process
## 6423 somatic sex determination
## 6424 establishment of viral latency
## 6425 modulation by virus of host morphology or physiology
## 6426 evasion or tolerance of host defenses by virus
## 6427 suppression by virus of host apoptotic process
## 6428 modulation by virus of host process
## 6429 modulation by virus of host transcription
## 6430 intracellular transport of viral protein in host cell
## 6431 uncoating of virus
## 6432 virion attachment to host cell
## 6433 fusion of virus membrane with host plasma membrane
## 6434 virion assembly
## 6435 viral RNA genome packaging
## 6436 virus maturation
## 6437 viral release from host cell
## 6438 viral protein processing
## 6439 early viral transcription
## 6440 transformation of host cell by virus
## 6441 immortalization of host cell by virus
## 6442 transmission of virus
## 6443 reproductive behavior
## 6444 male germ-line sex determination
## 6445 female somatic sex determination
## 6446 male somatic sex determination
## 6447 nonribosomal peptide biosynthetic process
## 6448 transmission of nerve impulse
## 6449 neuronal action potential propagation
## 6450 neuronal action potential
## 6451 regulation of vasoconstriction
## 6452 proprioception
## 6453 sensory perception of pain
## 6454 response to pheromone
## 6455 methylglyoxal biosynthetic process
## 6456 methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione
## 6457 lactate biosynthetic process from pyruvate
## 6458 carnitine metabolic process, CoA-linked
## 6459 glucose 1-phosphate metabolic process
## 6460 N-acetylneuraminate catabolic process
## 6461 glycine biosynthetic process from serine
## 6462 glycine biosynthetic process, by transamination of glyoxylate
## 6463 glycine betaine biosynthetic process from choline
## 6464 isopentenyl diphosphate biosynthetic process, mevalonate pathway
## 6465 siderophore biosynthetic process
## 6466 D-ribose catabolic process
## 6467 inositol catabolic process
## 6468 pentose catabolic process
## 6469 phenol-containing compound catabolic process
## 6470 dibenzo-p-dioxin catabolic process
## 6471 dolichol metabolic process
## 6472 nicotinate nucleotide salvage
## 6473 fatty acid elongation, saturated fatty acid
## 6474 leukotriene biosynthetic process
## 6475 cyclooxygenase pathway
## 6476 lipoxygenase pathway
## 6477 epoxygenase P450 pathway
## 6478 glycolipid catabolic process
## 6479 galactose catabolic process
## 6480 glucuronoside catabolic process
## 6481 fatty acid oxidation
## 6482 alditol metabolic process
## 6483 alditol biosynthetic process
## 6484 galactitol metabolic process
## 6485 alditol catabolic process
## 6486 dolichol biosynthetic process
## 6487 acetate biosynthetic process
## 6488 sulfur oxidation
## 6489 acetyl-CoA biosynthetic process from acetate
## 6490 allantoin biosynthetic process
## 6491 triglyceride biosynthetic process
## 6492 triglyceride catabolic process
## 6493 tryptophan catabolic process to kynurenine
## 6494 tryptophan catabolic process to acetyl-CoA
## 6495 L-cysteine catabolic process
## 6496 glycine decarboxylation via glycine cleavage system
## 6497 4-hydroxyproline catabolic process
## 6498 L-lysine catabolic process to acetyl-CoA
## 6499 D-amino acid catabolic process
## 6500 L-alanine catabolic process, by transamination
## 6501 beta-alanine metabolic process
## 6502 beta-alanine biosynthetic process
## 6503 L-methionine biosynthetic process from methylthioadenosine
## 6504 S-adenosylhomocysteine catabolic process
## 6505 lactate oxidation
## 6506 L-threonine catabolic process to glycine
## 6507 taurine metabolic process
## 6508 oxalate transport
## 6509 propionate metabolic process
## 6510 propionate biosynthetic process
## 6511 arginine deiminase pathway
## 6512 arginine catabolic process to ornithine
## 6513 glutamate catabolic process to aspartate
## 6514 glutamate catabolic process to 2-oxoglutarate
## 6515 histidine catabolic process to glutamate and formamide
## 6516 histidine catabolic process to glutamate and formate
## 6517 glycerol catabolic process
## 6518 glucuronate metabolic process
## 6519 butyrate metabolic process
## 6520 short-chain fatty acid catabolic process
## 6521 urea metabolic process
## 6522 urate catabolic process
## 6523 glucuronate catabolic process to xylulose 5-phosphate
## 6524 aerobic electron transport chain
## 6525 GDP-mannose metabolic process
## 6526 NAD catabolic process
## 6527 propionate metabolic process, methylcitrate cycle
## 6528 deoxyribose phosphate metabolic process
## 6529 choline metabolic process
## 6530 antimicrobial humoral response
## 6531 antibacterial humoral response
## 6532 antifungal humoral response
## 6533 pentacyclic triterpenoid metabolic process
## 6534 regulation of isoprenoid metabolic process
## 6535 peptide cross-linking via chondroitin 4-sulfate glycosaminoglycan
## 6536 quinolinate biosynthetic process
## 6537 cytolysis
## 6538 hemolysis by symbiont of host erythrocytes
## 6539 L-ascorbic acid biosynthetic process
## 6540 cytosine metabolic process
## 6541 uracil metabolic process
## 6542 lysine biosynthetic process via aminoadipic acid
## 6543 antigen processing and presentation of endogenous antigen
## 6544 antigen processing and presentation of endogenous peptide antigen via MHC class I
## 6545 axonal transport of mitochondrion
## 6546 lipid storage
## 6547 peptidyl-arginine methylation, to symmetrical-dimethyl arginine
## 6548 peptidyl-arginine methylation, to asymmetrical-dimethyl arginine
## 6549 cAMP-mediated signaling
## 6550 cGMP-mediated signaling
## 6551 cyclic-nucleotide-mediated signaling
## 6552 hemoglobin metabolic process
## 6553 neural fold elevation formation
## 6554 neural fold bending
## 6555 floor plate formation
## 6556 roof plate formation
## 6557 spinal cord development
## 6558 spinal cord patterning
## 6559 spinal cord anterior/posterior patterning
## 6560 spinal cord dorsal/ventral patterning
## 6561 ventral spinal cord interneuron differentiation
## 6562 cell differentiation in spinal cord
## 6563 dorsal spinal cord development
## 6564 ventral spinal cord development
## 6565 spinal cord motor neuron cell fate specification
## 6566 ventral spinal cord interneuron specification
## 6567 spinal cord motor neuron differentiation
## 6568 somatic motor neuron differentiation
## 6569 visceral motor neuron differentiation
## 6570 medial motor column neuron differentiation
## 6571 spinal cord association neuron differentiation
## 6572 commissural neuron differentiation in spinal cord
## 6573 spinal cord oligodendrocyte cell fate specification
## 6574 cell differentiation in hindbrain
## 6575 cell proliferation in hindbrain
## 6576 diencephalon development
## 6577 subthalamus development
## 6578 ammon gyrus development
## 6579 subpallium development
## 6580 cranial nerve development
## 6581 rhombomere development
## 6582 pons development
## 6583 cerebellum development
## 6584 medulla oblongata development
## 6585 central nervous system morphogenesis
## 6586 olfactory nerve development
## 6587 optic nerve development
## 6588 midbrain-hindbrain boundary morphogenesis
## 6589 oculomotor nerve development
## 6590 trochlear nerve development
## 6591 trigeminal nerve development
## 6592 vestibulocochlear nerve development
## 6593 glossopharyngeal nerve development
## 6594 vagus nerve development
## 6595 rhombomere 2 development
## 6596 rhombomere 3 development
## 6597 rhombomere 4 development
## 6598 rhombomere 5 development
## 6599 rhombomere 6 development
## 6600 hindbrain morphogenesis
## 6601 hindbrain maturation
## 6602 pons maturation
## 6603 cerebellum morphogenesis
## 6604 cerebellum formation
## 6605 cerebellum structural organization
## 6606 fourth ventricle development
## 6607 abducens nerve formation
## 6608 cranial nerve morphogenesis
## 6609 cranial nerve formation
## 6610 cranial nerve structural organization
## 6611 facial nerve morphogenesis
## 6612 facial nerve structural organization
## 6613 glossopharyngeal nerve morphogenesis
## 6614 hypoglossal nerve morphogenesis
## 6615 oculomotor nerve formation
## 6616 optic nerve morphogenesis
## 6617 optic nerve structural organization
## 6618 trigeminal nerve structural organization
## 6619 trochlear nerve formation
## 6620 vagus nerve morphogenesis
## 6621 vestibulocochlear nerve morphogenesis
## 6622 vestibulocochlear nerve structural organization
## 6623 vestibulocochlear nerve formation
## 6624 rhombomere 3 formation
## 6625 rhombomere 5 formation
## 6626 third ventricle development
## 6627 cerebellar Purkinje cell layer development
## 6628 cerebellar granular layer development
## 6629 nerve maturation
## 6630 cerebellar granular layer morphogenesis
## 6631 cerebellar granular layer structural organization
## 6632 cerebellar granular layer maturation
## 6633 cerebellar molecular layer morphogenesis
## 6634 cerebellar molecular layer formation
## 6635 cerebellar Purkinje cell layer maturation
## 6636 cerebellar Purkinje cell layer morphogenesis
## 6637 cerebellar Purkinje cell layer structural organization
## 6638 cerebellar cortex development
## 6639 cerebellar cortex morphogenesis
## 6640 cerebellar cortex formation
## 6641 cerebellar cortex maturation
## 6642 cerebellar Purkinje cell differentiation
## 6643 locus ceruleus development
## 6644 cerebellar granule cell differentiation
## 6645 superior olivary nucleus maturation
## 6646 medullary reticular formation development
## 6647 principal sensory nucleus of trigeminal nerve development
## 6648 cochlear nucleus development
## 6649 vestibular nucleus development
## 6650 facial nucleus development
## 6651 striatum development
## 6652 caudate nucleus development
## 6653 putamen development
## 6654 globus pallidus development
## 6655 subthalamic nucleus development
## 6656 amygdala development
## 6657 nucleus accumbens development
## 6658 orbitofrontal cortex development
## 6659 lateral geniculate nucleus development
## 6660 striatal medium spiny neuron differentiation
## 6661 smoothened signaling pathway involved in ventral spinal cord interneuron specification
## 6662 smoothened signaling pathway involved in spinal cord motor neuron cell fate specification
## 6663 oligodendrocyte cell fate specification
## 6664 preganglionic parasympathetic fiber development
## 6665 postganglionic parasympathetic fiber development
## 6666 chemorepulsion of branchiomotor axon
## 6667 thalamus development
## 6668 cerebral cortex cell migration
## 6669 cerebral cortex regionalization
## 6670 forebrain anterior/posterior pattern specification
## 6671 forebrain dorsal/ventral pattern formation
## 6672 cerebral cortex radially oriented cell migration
## 6673 cerebral cortex tangential migration
## 6674 cerebral cortex radial glia guided migration
## 6675 neuronal-glial interaction involved in cerebral cortex radial glia guided migration
## 6676 cell-cell adhesion involved in neuronal-glial interactions involved in cerebral cortex radial glia guided migration
## 6677 cell motility involved in cerebral cortex radial glia guided migration
## 6678 modulation of microtubule cytoskeleton involved in cerebral cortex radial glia guided migration
## 6679 extension of a leading process involved in cell motility in cerebral cortex radial glia guided migration
## 6680 nucleokinesis involved in cell motility in cerebral cortex radial glia guided migration
## 6681 layer formation in cerebral cortex
## 6682 negative regulation of cell motility involved in cerebral cortex radial glia guided migration
## 6683 substrate-dependent cerebral cortex tangential migration
## 6684 gonadotrophin-releasing hormone neuronal migration to the hypothalamus
## 6685 interneuron migration from the subpallium to the cortex
## 6686 embryonic olfactory bulb interneuron precursor migration
## 6687 chemorepulsion involved in postnatal olfactory bulb interneuron migration
## 6688 chemorepulsion involved in interneuron migration from the subpallium to the cortex
## 6689 cell proliferation in forebrain
## 6690 ventricular zone neuroblast division
## 6691 neuroblast division in subventricular zone
## 6692 pyramidal neuron migration
## 6693 cerebral cortex GABAergic interneuron migration
## 6694 hypothalamus development
## 6695 hypothalamus cell migration
## 6696 GABAergic neuron differentiation in basal ganglia
## 6697 pyramidal neuron differentiation
## 6698 pyramidal neuron development
## 6699 forebrain ventricular zone progenitor cell division
## 6700 Cajal-Retzius cell differentiation
## 6701 forebrain regionalization
## 6702 forebrain neuroblast division
## 6703 Wnt signaling pathway involved in forebrain neuroblast division
## 6704 forebrain neuron fate commitment
## 6705 forebrain neuron differentiation
## 6706 Wnt-activated signaling pathway involved in forebrain neuron fate commitment
## 6707 regulation of transcription from RNA polymerase II promoter involved in forebrain neuron fate commitment
## 6708 forebrain neuron development
## 6709 forebrain cell migration
## 6710 olfactory bulb interneuron differentiation
## 6711 olfactory bulb interneuron development
## 6712 cerebral cortex GABAergic interneuron differentiation
## 6713 cerebral cortex GABAergic interneuron fate commitment
## 6714 cerebral cortex GABAergic interneuron development
## 6715 cerebral cortex neuron differentiation
## 6716 forebrain astrocyte development
## 6717 commitment of multipotent stem cells to neuronal lineage in forebrain
## 6718 commitment of neuronal cell to specific neuron type in forebrain
## 6719 dorsal/ventral neural tube patterning
## 6720 forebrain-midbrain boundary formation
## 6721 smoothened signaling pathway involved in ventral spinal cord patterning
## 6722 regulation of transcription from RNA polymerase II promoter involved in spinal cord motor neuron fate specification
## 6723 regulation of transcription from RNA polymerase II promoter involved in ventral spinal cord interneuron specification
## 6724 negative regulation of smoothened signaling pathway involved in ventral spinal cord patterning
## 6725 regulation of transcription from RNA polymerase II promoter involved in somatic motor neuron fate commitment
## 6726 BMP signaling pathway involved in spinal cord dorsal/ventral patterning
## 6727 regulation of transcription from RNA polymerase II promoter involved in spinal cord association neuron specification
## 6728 cerebellar granule cell precursor proliferation
## 6729 hindbrain radial glia guided cell migration
## 6730 radial glia guided migration of cerebellar granule cell
## 6731 cerebellar Purkinje cell-granule cell precursor cell signaling involved in regulation of granule cell precursor cell proliferation
## 6732 smoothened signaling pathway involved in regulation of cerebellar granule cell precursor cell proliferation
## 6733 negative regulation of cerebellar granule cell precursor proliferation
## 6734 radial glia guided migration of Purkinje cell
## 6735 formation of radial glial scaffolds
## 6736 central nervous system interneuron axonogenesis
## 6737 corticospinal tract morphogenesis
## 6738 anterior commissure morphogenesis
## 6739 spinal cord ventral commissure morphogenesis
## 6740 corticospinal neuron axon guidance
## 6741 corticospinal neuron axon guidance through spinal cord
## 6742 telencephalon regionalization
## 6743 hypothalamus cell differentiation
## 6744 pituitary gland development
## 6745 adenohypophysis development
## 6746 neurohypophysis development
## 6747 habenula development
## 6748 initiation of neural tube closure
## 6749 neural plate axis specification
## 6750 neural plate mediolateral regionalization
## 6751 midbrain-hindbrain boundary maturation during brain development
## 6752 convergent extension involved in neural plate elongation
## 6753 central nervous system vasculogenesis
## 6754 pallium cell proliferation in forebrain
## 6755 lateral ganglionic eminence cell proliferation
## 6756 interkinetic nuclear migration
## 6757 tangential migration from the subventricular zone to the olfactory bulb
## 6758 telencephalon cell migration
## 6759 metencephalon development
## 6760 regulation of rhodopsin mediated signaling pathway
## 6761 circadian sleep/wake cycle process
## 6762 menstrual cycle phase
## 6763 ovulation cycle process
## 6764 oogenesis stage
## 6765 membrane to membrane docking
## 6766 protein to membrane docking
## 6767 signal transduction by trans-phosphorylation
## 6768 termination of signal transduction
## 6769 CD40 signaling pathway
## 6770 neuronal signal transduction
## 6771 adaptation of signaling pathway
## 6772 microvillus assembly
## 6773 microspike assembly
## 6774 actin filament reorganization involved in cell cycle
## 6775 actin filament polymerization
## 6776 actin filament depolymerization
## 6777 actin filament fragmentation
## 6778 parallel actin filament bundle assembly
## 6779 actin modification
## 6780 muscle filament sliding
## 6781 regulation of mitotic metaphase/anaphase transition
## 6782 vasopressin secretion
## 6783 water homeostasis
## 6784 sphingolipid catabolic process
## 6785 proteoglycan catabolic process
## 6786 regulation of DNA-dependent DNA replication initiation
## 6787 B cell differentiation
## 6788 nitric oxide transport
## 6789 melatonin biosynthetic process
## 6790 collagen fibril organization
## 6791 heparan sulfate proteoglycan catabolic process
## 6792 dermatan sulfate catabolic process
## 6793 heparin biosynthetic process
## 6794 hyaluronan biosynthetic process
## 6795 basophil differentiation
## 6796 eosinophil differentiation
## 6797 neutrophil differentiation
## 6798 female sex determination
## 6799 male sex determination
## 6800 skeletal muscle thin filament assembly
## 6801 skeletal muscle myosin thick filament assembly
## 6802 pexophagy
## 6803 growth hormone secretion
## 6804 chromosome condensation
## 6805 apoptotic chromosome condensation
## 6806 nuclear fragmentation involved in apoptotic nuclear change
## 6807 maintenance of gastrointestinal epithelium
## 6808 intestinal cholesterol absorption
## 6809 regulation of intestinal cholesterol absorption
## 6810 cholesterol transport
## 6811 deoxynucleotide transport
## 6812 poly-N-acetyllactosamine metabolic process
## 6813 poly-N-acetyllactosamine biosynthetic process
## 6814 melanocyte differentiation
## 6815 cellular monovalent inorganic anion homeostasis
## 6816 transepithelial chloride transport
## 6817 adrenal gland development
## 6818 prenylcysteine catabolic process
## 6819 sperm mitochondrion organization
## 6820 fructose 1,6-bisphosphate metabolic process
## 6821 fructoselysine metabolic process
## 6822 defecation
## 6823 sleep
## 6824 peristalsis
## 6825 mitotic spindle organization in nucleus
## 6826 fatty acid elongation
## 6827 positive regulation of bone mineralization
## 6828 negative regulation of bone mineralization
## 6829 inorganic diphosphate transport
## 6830 positive regulation of transforming growth factor beta receptor signaling pathway
## 6831 negative regulation of axon extension
## 6832 embryonic genitalia morphogenesis
## 6833 female genitalia development
## 6834 bile acid catabolic process
## 6835 collagen catabolic process
## 6836 nuclear body organization
## 6837 Cajal body organization
## 6838 PML body organization
## 6839 ubiquitin-dependent SMAD protein catabolic process
## 6840 cellular phosphate ion homeostasis
## 6841 cellular chloride ion homeostasis
## 6842 evasion or tolerance by virus of host immune response
## 6843 vitelline membrane formation
## 6844 germ-line stem cell population maintenance
## 6845 P granule organization
## 6846 ovulation
## 6847 sequestering of triglyceride
## 6848 negative regulation of cyclic nucleotide metabolic process
## 6849 negative regulation of cyclic nucleotide biosynthetic process
## 6850 negative regulation of cAMP metabolic process
## 6851 negative regulation of cAMP biosynthetic process
## 6852 regulation of cAMP catabolic process
## 6853 negative regulation of cAMP catabolic process
## 6854 positive regulation of cAMP catabolic process
## 6855 regulation of cGMP metabolic process
## 6856 positive regulation of cGMP metabolic process
## 6857 regulation of cGMP biosynthetic process
## 6858 positive regulation of cGMP biosynthetic process
## 6859 positive regulation of actin filament depolymerization
## 6860 positive regulation of actin filament polymerization
## 6861 phospholipase C-inhibiting G-protein coupled receptor signaling pathway
## 6862 prostate gland development
## 6863 granulocyte differentiation
## 6864 regulation of granulocyte differentiation
## 6865 negative regulation of granulocyte differentiation
## 6866 positive regulation of granulocyte differentiation
## 6867 negative regulation of epithelial cell differentiation
## 6868 regulation of polarized epithelial cell differentiation
## 6869 positive regulation of polarized epithelial cell differentiation
## 6870 thyroid gland development
## 6871 negative regulation of myeloid dendritic cell activation
## 6872 regulation of B cell proliferation
## 6873 negative regulation of B cell proliferation
## 6874 positive regulation of B cell proliferation
## 6875 olfactory placode formation
## 6876 paranodal junction assembly
## 6877 otic vesicle formation
## 6878 regulation of vascular endothelial growth factor receptor signaling pathway
## 6879 negative regulation of vascular endothelial growth factor receptor signaling pathway
## 6880 positive regulation of vascular endothelial growth factor receptor signaling pathway
## 6881 establishment or maintenance of actin cytoskeleton polarity
## 6882 astral microtubule organization
## 6883 peptidyl-arginine hydroxylation
## 6884 retrograde protein transport, ER to cytosol
## 6885 thiamine pyrophosphate transport
## 6886 response to caffeine
## 6887 response to brefeldin A
## 6888 pancreas development
## 6889 exocrine pancreas development
## 6890 endocrine pancreas development
## 6891 nuclear migration along microfilament
## 6892 myosin filament assembly
## 6893 chromatin silencing by small RNA
## 6894 chromosome breakage
## 6895 primary miRNA processing
## 6896 negative regulation of histone methylation
## 6897 positive regulation of histone methylation
## 6898 post-embryonic camera-type eye development
## 6899 stress-activated protein kinase signaling cascade
## 6900 animal organ regeneration
## 6901 dendrite regeneration
## 6902 regulation of microtubule polymerization or depolymerization
## 6903 negative regulation of microtubule polymerization or depolymerization
## 6904 positive regulation of microtubule polymerization or depolymerization
## 6905 regulation of microtubule polymerization
## 6906 regulation of microtubule depolymerization
## 6907 negative regulation of microtubule polymerization
## 6908 positive regulation of microtubule polymerization
## 6909 positive regulation of microtubule depolymerization
## 6910 rRNA pseudouridine synthesis
## 6911 snRNA pseudouridine synthesis
## 6912 rRNA 3'-end processing
## 6913 snoRNA 3'-end processing
## 6914 inductive cell-cell signaling
## 6915 regulation of axon diameter
## 6916 sister chromatid biorientation
## 6917 anaphase-promoting complex-dependent catabolic process
## 6918 SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## 6919 phosphatidylinositol catabolic process
## 6920 posttranslational protein targeting to membrane, translocation
## 6921 auditory behavior
## 6922 actin rod assembly
## 6923 pseudopodium organization
## 6924 regulation of lateral pseudopodium assembly
## 6925 negative regulation of cyclase activity
## 6926 regulation of guanylate cyclase activity
## 6927 negative regulation of guanylate cyclase activity
## 6928 positive regulation of guanylate cyclase activity
## 6929 retinal ganglion cell axon guidance
## 6930 Ran protein signal transduction
## 6931 B cell costimulation
## 6932 negative regulation of vesicle fusion
## 6933 positive regulation of vesicle fusion
## 6934 regulation of cell killing
## 6935 negative regulation of cell killing
## 6936 positive regulation of cell killing
## 6937 N-terminal protein amino acid modification
## 6938 regulation of prostaglandin biosynthetic process
## 6939 negative regulation of prostaglandin biosynthetic process
## 6940 positive regulation of prostaglandin biosynthetic process
## 6941 response to methotrexate
## 6942 negative regulation of mRNA 3'-end processing
## 6943 fast-twitch skeletal muscle fiber contraction
## 6944 slow-twitch skeletal muscle fiber contraction
## 6945 positive regulation of fast-twitch skeletal muscle fiber contraction
## 6946 regulation of slow-twitch skeletal muscle fiber contraction
## 6947 positive regulation of heterochromatin assembly
## 6948 glycine betaine transport
## 6949 nuclear envelope reassembly
## 6950 ruffle organization
## 6951 positive regulation of exit from mitosis
## 6952 brain-derived neurotrophic factor receptor signaling pathway
## 6953 regulation of brain-derived neurotrophic factor receptor signaling pathway
## 6954 negative regulation of brain-derived neurotrophic factor receptor signaling pathway
## 6955 positive regulation of brain-derived neurotrophic factor receptor signaling pathway
## 6956 intra-S DNA damage checkpoint
## 6957 spindle checkpoint
## 6958 hemidesmosome assembly
## 6959 phospholipase D-activating G-protein coupled receptor signaling pathway
## 6960 regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## 6961 positive regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## 6962 wybutosine biosynthetic process
## 6963 regulation of fever generation
## 6964 positive regulation of fever generation
## 6965 receptor internalization
## 6966 telomeric loop formation
## 6967 synaptic vesicle fusion to presynaptic active zone membrane
## 6968 regulation of synaptic vesicle fusion to presynaptic membrane
## 6969 adenylate cyclase-inhibiting opioid receptor signaling pathway
## 6970 negative regulation of myelination
## 6971 positive regulation of myelination
## 6972 negative regulation of neurological system process
## 6973 positive regulation of neurological system process
## 6974 heat generation
## 6975 regulation of heat generation
## 6976 negative regulation of heat generation
## 6977 positive regulation of heat generation
## 6978 regulation of cyclin-dependent protein serine/threonine kinase activity involved in G1/S transition of mitotic cell cycle
## 6979 negative regulation of cyclin-dependent protein serine/threonine kinase activity involved in G1/S transition of mitotic cell cycle
## 6980 positive regulation of cyclin-dependent protein serine/threonine kinase activity involved in G1/S transition of mitotic cell cycle
## 6981 positive regulation of cyclin-dependent protein serine/threonine kinase activity involved in G2/M transition of mitotic cell cycle
## 6982 lipopolysaccharide-mediated signaling pathway
## 6983 negative regulation of lipopolysaccharide-mediated signaling pathway
## 6984 positive regulation of lipopolysaccharide-mediated signaling pathway
## 6985 protection from non-homologous end joining at telomere
## 6986 telomeric 3' overhang formation
## 6987 negative regulation of synaptic plasticity
## 6988 positive regulation of synaptic plasticity
## 6989 mitochondria-nucleus signaling pathway
## 6990 regulation of chromatin silencing
## 6991 negative regulation of chromatin silencing
## 6992 positive regulation of chromatin silencing
## 6993 regulation of chromatin silencing at telomere
## 6994 positive regulation of chromatin silencing at telomere
## 6995 positive regulation of protein autophosphorylation
## 6996 mineralocorticoid receptor signaling pathway
## 6997 locomotion involved in locomotory behavior
## 6998 bombesin receptor signaling pathway
## 6999 mRNA export from nucleus in response to heat stress
## 7000 regulation of fatty acid beta-oxidation
## 7001 negative regulation of fatty acid beta-oxidation
## 7002 positive regulation of fatty acid beta-oxidation
## 7003 regulation of ARF protein signal transduction
## 7004 ISG15-protein conjugation
## 7005 trypsinogen activation
## 7006 response to magnesium ion
## 7007 cardiolipin metabolic process
## 7008 cardiolipin biosynthetic process
## 7009 negative regulation of translation in response to stress
## 7010 positive regulation of translation in response to stress
## 7011 negative regulation of translational initiation in response to stress
## 7012 positive regulation of translational initiation in response to stress
## 7013 bleb assembly
## 7014 nucleolus to nucleoplasm transport
## 7015 regulation of endodeoxyribonuclease activity
## 7016 regulation of restriction endodeoxyribonuclease activity
## 7017 positive regulation of nuclease activity
## 7018 positive regulation of deoxyribonuclease activity
## 7019 negative regulation of endodeoxyribonuclease activity
## 7020 positive regulation of endodeoxyribonuclease activity
## 7021 positive regulation of appetite
## 7022 positive regulation of response to nutrient levels
## 7023 septin cytoskeleton organization
## 7024 ubiquinone biosynthetic process via 3,4-dihydroxy-5-polyprenylbenzoate
## 7025 transposition, RNA-mediated
## 7026 telomere assembly
## 7027 telomere formation via telomerase
## 7028 negative regulation of telomere maintenance via recombination
## 7029 negative regulation of telomere maintenance via semi-conservative replication
## 7030 riboflavin transport
## 7031 regulation of synaptic transmission, cholinergic
## 7032 negative regulation of synaptic transmission, cholinergic
## 7033 positive regulation of synaptic transmission, cholinergic
## 7034 negative regulation of synaptic transmission, dopaminergic
## 7035 regulation of synaptic transmission, GABAergic
## 7036 negative regulation of synaptic transmission, GABAergic
## 7037 positive regulation of synaptic transmission, GABAergic
## 7038 activation of store-operated calcium channel activity
## 7039 regulation of nucleoside transport
## 7040 positive regulation of nucleoside transport
## 7041 secretory granule localization
## 7042 gonadotropin secretion
## 7043 luteinizing hormone secretion
## 7044 regulation of gonadotropin secretion
## 7045 negative regulation of gonadotropin secretion
## 7046 positive regulation of gonadotropin secretion
## 7047 central nervous system myelin maintenance
## 7048 peripheral nervous system myelin maintenance
## 7049 myelin assembly
## 7050 central nervous system myelin formation
## 7051 peripheral nervous system myelin formation
## 7052 positive regulation of DNA-dependent DNA replication initiation
## 7053 regulation of icosanoid secretion
## 7054 negative regulation of icosanoid secretion
## 7055 positive regulation of icosanoid secretion
## 7056 positive regulation of prostaglandin secretion
## 7057 icosanoid secretion
## 7058 prostaglandin secretion
## 7059 molybdopterin cofactor biosynthetic process
## 7060 alanine transport
## 7061 serine transport
## 7062 regulation of chondrocyte differentiation
## 7063 negative regulation of chondrocyte differentiation
## 7064 positive regulation of chondrocyte differentiation
## 7065 aldosterone biosynthetic process
## 7066 regulation of aldosterone biosynthetic process
## 7067 negative regulation of aldosterone biosynthetic process
## 7068 positive regulation of aldosterone biosynthetic process
## 7069 positive regulation of hormone metabolic process
## 7070 response to follicle-stimulating hormone
## 7071 pyridoxal phosphate catabolic process
## 7072 oxygen homeostasis
## 7073 intracellular cholesterol transport
## 7074 negative regulation of lipid transport
## 7075 positive regulation of lipid transport
## 7076 regulation of cholesterol transport
## 7077 negative regulation of cholesterol transport
## 7078 positive regulation of cholesterol transport
## 7079 regulation of intracellular cholesterol transport
## 7080 positive regulation of intracellular cholesterol transport
## 7081 melanosome localization
## 7082 establishment of melanosome localization
## 7083 melanosome transport
## 7084 negative regulation of transporter activity
## 7085 negative regulation of ion transmembrane transporter activity
## 7086 regulation of sodium:proton antiporter activity
## 7087 negative regulation of sodium:proton antiporter activity
## 7088 positive regulation of sodium:proton antiporter activity
## 7089 regulation of mismatch repair
## 7090 positive regulation of mismatch repair
## 7091 regulation of phospholipase A2 activity
## 7092 positive regulation of phospholipase A2 activity
## 7093 activation of phospholipase A2 activity
## 7094 melanosome organization
## 7095 endosome localization
## 7096 protein urmylation
## 7097 nerve growth factor processing
## 7098 slow endocytic recycling
## 7099 positive regulation of protein oligomerization
## 7100 positive regulation of protein homooligomerization
## 7101 negative regulation of cytokinesis
## 7102 Golgi calcium ion homeostasis
## 7103 positive regulation of endoplasmic reticulum calcium ion concentration
## 7104 negative regulation of endoplasmic reticulum calcium ion concentration
## 7105 Golgi calcium ion transport
## 7106 otolith morphogenesis
## 7107 otolith formation
## 7108 negative regulation of type I interferon production
## 7109 Rab protein signal transduction
## 7110 regulation of Rab protein signal transduction
## 7111 regulation of Ral protein signal transduction
## 7112 Rap protein signal transduction
## 7113 regulation of Rap protein signal transduction
## 7114 regulation of Cdc42 protein signal transduction
## 7115 detection of molecule of bacterial origin
## 7116 response to bacterial lipoprotein
## 7117 response to muramyl dipeptide
## 7118 detection of lipopolysaccharide
## 7119 detection of muramyl dipeptide
## 7120 detection of peptidoglycan
## 7121 endosome to lysosome transport via multivesicular body sorting pathway
## 7122 negative regulation of phosphoprotein phosphatase activity
## 7123 positive regulation of phosphoprotein phosphatase activity
## 7124 somite rostral/caudal axis specification
## 7125 protein exit from endoplasmic reticulum
## 7126 microvillus organization
## 7127 regulation of microvillus length
## 7128 regulation of cell projection size
## 7129 response to vitamin K
## 7130 ER-dependent peroxisome organization
## 7131 protein transport within lipid bilayer
## 7132 protein transport into membrane raft
## 7133 B cell receptor transport into membrane raft
## 7134 chemokine receptor transport out of membrane raft
## 7135 chemokine production
## 7136 granulocyte macrophage colony-stimulating factor production
## 7137 type I interferon production
## 7138 interferon-alpha production
## 7139 interferon-beta production
## 7140 interferon-gamma production
## 7141 interleukin-12 production
## 7142 interleukin-13 production
## 7143 interleukin-15 production
## 7144 interleukin-17 production
## 7145 interleukin-2 production
## 7146 interleukin-3 production
## 7147 interleukin-4 production
## 7148 interleukin-5 production
## 7149 interleukin-6 production
## 7150 interleukin-8 production
## 7151 tumor necrosis factor production
## 7152 regulation of granulocyte macrophage colony-stimulating factor production
## 7153 regulation of interleukin-1 alpha production
## 7154 regulation of interleukin-17 production
## 7155 regulation of interleukin-23 production
## 7156 regulation of interleukin-3 production
## 7157 negative regulation of granulocyte macrophage colony-stimulating factor production
## 7158 negative regulation of interferon-alpha production
## 7159 negative regulation of interferon-beta production
## 7160 negative regulation of interferon-gamma production
## 7161 negative regulation of interleukin-13 production
## 7162 negative regulation of interleukin-17 production
## 7163 negative regulation of interleukin-18 production
## 7164 negative regulation of interleukin-23 production
## 7165 negative regulation of interleukin-3 production
## 7166 negative regulation of interleukin-4 production
## 7167 negative regulation of interleukin-5 production
## 7168 negative regulation of interleukin-6 production
## 7169 negative regulation of interleukin-8 production
## 7170 positive regulation of chemokine production
## 7171 positive regulation of connective tissue growth factor production
## 7172 positive regulation of granulocyte macrophage colony-stimulating factor production
## 7173 positive regulation of interleukin-1 alpha production
## 7174 positive regulation of interleukin-12 production
## 7175 positive regulation of interleukin-15 production
## 7176 positive regulation of interleukin-17 production
## 7177 positive regulation of interleukin-2 production
## 7178 positive regulation of interleukin-23 production
## 7179 mast cell cytokine production
## 7180 regulation of mast cell cytokine production
## 7181 negative regulation of mast cell cytokine production
## 7182 positive regulation of mast cell cytokine production
## 7183 positive regulation of monophenol monooxygenase activity
## 7184 DNA methylation on adenine
## 7185 DNA methylation on cytosine
## 7186 bile acid secretion
## 7187 saturated monocarboxylic acid metabolic process
## 7188 unsaturated monocarboxylic acid metabolic process
## 7189 negative regulation of CREB transcription factor activity
## 7190 positive regulation of CREB transcription factor activity
## 7191 uropod organization
## 7192 low-density lipoprotein receptor particle metabolic process
## 7193 receptor biosynthetic process
## 7194 low-density lipoprotein particle receptor catabolic process
## 7195 regulation of low-density lipoprotein particle receptor catabolic process
## 7196 negative regulation of low-density lipoprotein particle receptor catabolic process
## 7197 positive regulation of low-density lipoprotein particle receptor catabolic process
## 7198 negative regulation of epinephrine secretion
## 7199 positive regulation of epinephrine secretion
## 7200 regulation of natural killer cell activation
## 7201 negative regulation of natural killer cell activation
## 7202 positive regulation of natural killer cell activation
## 7203 regulation of natural killer cell proliferation
## 7204 positive regulation of natural killer cell proliferation
## 7205 regulation of natural killer cell differentiation
## 7206 positive regulation of natural killer cell differentiation
## 7207 regulation of natural killer cell differentiation involved in immune response
## 7208 negative regulation of natural killer cell differentiation involved in immune response
## 7209 positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## 7210 positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## 7211 glomerular basement membrane development
## 7212 regulation of cellular pH reduction
## 7213 negative regulation of cellular pH reduction
## 7214 positive regulation of cellular pH reduction
## 7215 regulation of DNA endoreduplication
## 7216 negative regulation of DNA endoreduplication
## 7217 positive regulation of DNA endoreduplication
## 7218 regulation of establishment or maintenance of cell polarity
## 7219 regulation of polysaccharide metabolic process
## 7220 regulation of polysaccharide biosynthetic process
## 7221 regulation of vacuole fusion, non-autophagic
## 7222 regulation of organic acid transport
## 7223 negative regulation of organic acid transport
## 7224 positive regulation of organic acid transport
## 7225 regulation of neurotrophin production
## 7226 negative regulation of neurotrophin production
## 7227 positive regulation of neurotrophin production
## 7228 nerve growth factor production
## 7229 regulation of transforming growth factor beta1 production
## 7230 regulation of transforming growth factor beta2 production
## 7231 regulation of transforming growth factor beta3 production
## 7232 negative regulation of transforming growth factor beta1 production
## 7233 negative regulation of transforming growth factor beta2 production
## 7234 negative regulation of transforming growth factor beta3 production
## 7235 positive regulation of transforming growth factor beta1 production
## 7236 positive regulation of transforming growth factor beta2 production
## 7237 positive regulation of transforming growth factor beta3 production
## 7238 spermidine acetylation
## 7239 spermine acetylation
## 7240 putrescine acetylation
## 7241 positive regulation of activin receptor signaling pathway
## 7242 regulation of superoxide anion generation
## 7243 negative regulation of superoxide anion generation
## 7244 positive regulation of superoxide anion generation
## 7245 SREBP signaling pathway
## 7246 inositol trisphosphate metabolic process
## 7247 inositol phosphate biosynthetic process
## 7248 inositol trisphosphate biosynthetic process
## 7249 regulation of inositol trisphosphate biosynthetic process
## 7250 positive regulation of inositol trisphosphate biosynthetic process
## 7251 collagen biosynthetic process
## 7252 negative regulation of collagen biosynthetic process
## 7253 regulation of muscle filament sliding
## 7254 regulation of muscle filament sliding speed
## 7255 release of matrix enzymes from mitochondria
## 7256 protein insertion into mitochondrial membrane from inner side
## 7257 keratinocyte activation
## 7258 muscle cell proliferation
## 7259 regulation of mast cell activation
## 7260 negative regulation of mast cell activation
## 7261 positive regulation of mast cell activation
## 7262 negative regulation of mast cell activation involved in immune response
## 7263 regulation of mast cell apoptotic process
## 7264 negative regulation of mast cell apoptotic process
## 7265 myeloid cell apoptotic process
## 7266 negative regulation of neutrophil apoptotic process
## 7267 negative regulation of myeloid cell apoptotic process
## 7268 polysaccharide localization
## 7269 negative regulation of sister chromatid segregation
## 7270 negative regulation of mitotic sister chromatid segregation
## 7271 directional locomotion
## 7272 cellular pigmentation
## 7273 isoquinoline alkaloid metabolic process
## 7274 T cell differentiation in thymus
## 7275 immature T cell proliferation in thymus
## 7276 regulation of T cell differentiation in thymus
## 7277 regulation of extrathymic T cell differentiation
## 7278 regulation of immature T cell proliferation
## 7279 regulation of immature T cell proliferation in thymus
## 7280 negative regulation of T cell differentiation in thymus
## 7281 negative regulation of immature T cell proliferation
## 7282 negative regulation of immature T cell proliferation in thymus
## 7283 positive regulation of T cell differentiation in thymus
## 7284 positive regulation of immature T cell proliferation
## 7285 positive regulation of immature T cell proliferation in thymus
## 7286 regulation of histone phosphorylation
## 7287 negative regulation of histone phosphorylation
## 7288 positive regulation of histone phosphorylation
## 7289 negative regulation of glucokinase activity
## 7290 negative regulation of peptidyl-serine phosphorylation
## 7291 regulation of peptidyl-serine phosphorylation of STAT protein
## 7292 negative regulation of peptidyl-serine phosphorylation of STAT protein
## 7293 positive regulation of peptidyl-serine phosphorylation of STAT protein
## 7294 negative regulation of intracellular steroid hormone receptor signaling pathway
## 7295 negative regulation of intracellular estrogen receptor signaling pathway
## 7296 V(D)J recombination
## 7297 immunoglobulin V(D)J recombination
## 7298 T cell receptor V(D)J recombination
## 7299 regulation of protein import into nucleus, translocation
## 7300 negative regulation of protein import into nucleus, translocation
## 7301 positive regulation of protein import into nucleus, translocation
## 7302 conversion of ds siRNA to ss siRNA involved in RNA interference
## 7303 histone H3-K9 demethylation
## 7304 calcineurin-NFAT signaling cascade
## 7305 regulation of histone ubiquitination
## 7306 positive regulation of histone ubiquitination
## 7307 response to vitamin A
## 7308 response to hydroperoxide
## 7309 response to vitamin E
## 7310 response to ATP
## 7311 meiotic cytokinesis
## 7312 adiponectin-activated signaling pathway
## 7313 iron assimilation by chelation and transport
## 7314 ferric iron import
## 7315 dsRNA transport
## 7316 carbohydrate export
## 7317 positive regulation of protein sumoylation
## 7318 negative regulation of cellular amine metabolic process
## 7319 regulation of nuclear cell cycle DNA replication
## 7320 abortive mitotic cell cycle
## 7321 cell proliferation in midbrain
## 7322 T-tubule organization
## 7323 secretion of lysosomal enzymes
## 7324 cell cycle comprising mitosis without cytokinesis
## 7325 phytol metabolic process
## 7326 meiotic cell cycle checkpoint
## 7327 meiotic spindle assembly checkpoint
## 7328 UDP-D-xylose biosynthetic process
## 7329 cerebrospinal fluid secretion
## 7330 Leydig cell differentiation
## 7331 regulation of collagen binding
## 7332 negative regulation of collagen binding
## 7333 positive regulation of collagen binding
## 7334 cholesterol efflux
## 7335 asparagine catabolic process via L-aspartate
## 7336 secretory granule organization
## 7337 mast cell secretory granule organization
## 7338 maintenance of protease location in mast cell secretory granule
## 7339 maintenance of granzyme B location in T cell secretory granule
## 7340 geranylgeranyl diphosphate biosynthetic process
## 7341 putrescine biosynthetic process from ornithine
## 7342 putrescine biosynthetic process from arginine
## 7343 S-methylmethionine metabolic process
## 7344 gas homeostasis
## 7345 nitric oxide homeostasis
## 7346 cholesterol biosynthetic process via 24,25-dihydrolanosterol
## 7347 galactose catabolic process via UDP-galactose
## 7348 floor plate morphogenesis
## 7349 L-lysine catabolic process to acetyl-CoA via saccharopine
## 7350 L-lysine catabolic process to acetyl-CoA via L-pipecolate
## 7351 histone H2A ubiquitination
## 7352 fatty acid beta-oxidation using acyl-CoA dehydrogenase
## 7353 fatty acid beta-oxidation using acyl-CoA oxidase
## 7354 response to vitamin B3
## 7355 multicellular organismal response to stress
## 7356 regulation of water loss via skin
## 7357 dorsal/ventral axon guidance
## 7358 anterior/posterior axon guidance
## 7359 gamma-tubulin complex localization
## 7360 DNA replication, Okazaki fragment processing
## 7361 response to testosterone
## 7362 protein glycosylation in endoplasmic reticulum
## 7363 protein glycosylation in Golgi
## 7364 response to cobalamin
## 7365 response to L-ascorbic acid
## 7366 response to hydroxyisoflavone
## 7367 response to genistein
## 7368 negative regulation of mammary gland epithelial cell proliferation
## 7369 negative regulation of dopamine secretion
## 7370 negative regulation of catecholamine secretion
## 7371 oxalate metabolic process
## 7372 mitochondrial proton-transporting ATP synthase complex assembly
## 7373 integrin activation
## 7374 regulation of integrin activation
## 7375 negative regulation of integrin activation
## 7376 positive regulation of integrin activation
## 7377 positive regulation of integrin activation by cell surface receptor linked signal transduction
## 7378 cell adhesion mediated by integrin
## 7379 positive regulation of cell adhesion mediated by integrin
## 7380 cell-cell adhesion mediated by integrin
## 7381 regulation of cell-cell adhesion mediated by integrin
## 7382 negative regulation of cell-cell adhesion mediated by integrin
## 7383 positive regulation of cell-cell adhesion mediated by integrin
## 7384 negative regulation by symbiont of host apoptotic process
## 7385 regulation of luteinizing hormone secretion
## 7386 negative regulation of luteinizing hormone secretion
## 7387 positive regulation of luteinizing hormone secretion
## 7388 osteoblast proliferation
## 7389 negative regulation of osteoblast proliferation
## 7390 cellular polysaccharide biosynthetic process
## 7391 neurofilament bundle assembly
## 7392 phospholipid efflux
## 7393 negative regulation of NAD(P)H oxidase activity
## 7394 cytoplasmic mRNA processing body assembly
## 7395 response to silicon dioxide
## 7396 endosomal vesicle fusion
## 7397 response to anoxia
## 7398 stress granule assembly
## 7399 protein localization to Golgi apparatus
## 7400 establishment of mitotic sister chromatid cohesion
## 7401 maintenance of mitotic sister chromatid cohesion
## 7402 negative regulation of tissue remodeling
## 7403 positive regulation of tissue remodeling
## 7404 homotypic cell-cell adhesion
## 7405 regulation of homotypic cell-cell adhesion
## 7406 negative regulation of homotypic cell-cell adhesion
## 7407 positive regulation of homotypic cell-cell adhesion
## 7408 regulation of heterotypic cell-cell adhesion
## 7409 negative regulation of heterotypic cell-cell adhesion
## 7410 positive regulation of heterotypic cell-cell adhesion
## 7411 positive regulation of erythrocyte aggregation
## 7412 negative regulation of toll-like receptor signaling pathway
## 7413 regulation of MyD88-dependent toll-like receptor signaling pathway
## 7414 negative regulation of MyD88-dependent toll-like receptor signaling pathway
## 7415 regulation of MyD88-independent toll-like receptor signaling pathway
## 7416 negative regulation of MyD88-independent toll-like receptor signaling pathway
## 7417 toll-like receptor 1 signaling pathway
## 7418 toll-like receptor 2 signaling pathway
## 7419 regulation of toll-like receptor 2 signaling pathway
## 7420 negative regulation of toll-like receptor 2 signaling pathway
## 7421 positive regulation of toll-like receptor 2 signaling pathway
## 7422 toll-like receptor 3 signaling pathway
## 7423 regulation of toll-like receptor 3 signaling pathway
## 7424 negative regulation of toll-like receptor 3 signaling pathway
## 7425 positive regulation of toll-like receptor 3 signaling pathway
## 7426 toll-like receptor 4 signaling pathway
## 7427 regulation of toll-like receptor 4 signaling pathway
## 7428 negative regulation of toll-like receptor 4 signaling pathway
## 7429 positive regulation of toll-like receptor 4 signaling pathway
## 7430 negative regulation of toll-like receptor 5 signaling pathway
## 7431 toll-like receptor 6 signaling pathway
## 7432 toll-like receptor 7 signaling pathway
## 7433 regulation of toll-like receptor 7 signaling pathway
## 7434 negative regulation of toll-like receptor 7 signaling pathway
## 7435 positive regulation of toll-like receptor 7 signaling pathway
## 7436 toll-like receptor 8 signaling pathway
## 7437 toll-like receptor 9 signaling pathway
## 7438 regulation of toll-like receptor 9 signaling pathway
## 7439 negative regulation of toll-like receptor 9 signaling pathway
## 7440 positive regulation of toll-like receptor 9 signaling pathway
## 7441 toll-like receptor 10 signaling pathway
## 7442 regulation of maintenance of mitotic sister chromatid cohesion
## 7443 negative regulation of maintenance of mitotic sister chromatid cohesion
## 7444 positive regulation of maintenance of mitotic sister chromatid cohesion
## 7445 triglyceride transport
## 7446 activation of protein kinase A activity
## 7447 response to oleic acid
## 7448 glycolipid translocation
## 7449 quinolinate catabolic process
## 7450 protein hexamerization
## 7451 cellular response to zinc ion starvation
## 7452 tRNA thio-modification
## 7453 enkephalin processing
## 7454 islet amyloid polypeptide processing
## 7455 positive regulation of macrophage fusion
## 7456 negative regulation of syncytium formation by plasma membrane fusion
## 7457 snoRNA splicing
## 7458 regulation of urea metabolic process
## 7459 kynurenic acid biosynthetic process
## 7460 primary alcohol catabolic process
## 7461 diol metabolic process
## 7462 diol biosynthetic process
## 7463 Arp2/3 complex-mediated actin nucleation
## 7464 negative regulation of Arp2/3 complex-mediated actin nucleation
## 7465 cell junction maintenance
## 7466 adherens junction maintenance
## 7467 RNA folding
## 7468 response to type III interferon
## 7469 regulation of type III interferon production
## 7470 positive regulation of type III interferon production
## 7471 negative regulation of glial cell apoptotic process
## 7472 plasma lipoprotein particle remodeling
## 7473 triglyceride-rich lipoprotein particle remodeling
## 7474 chylomicron remodeling
## 7475 very-low-density lipoprotein particle remodeling
## 7476 intermediate-density lipoprotein particle remodeling
## 7477 low-density lipoprotein particle remodeling
## 7478 high-density lipoprotein particle remodeling
## 7479 chylomicron assembly
## 7480 high-density lipoprotein particle assembly
## 7481 plasma lipoprotein particle clearance
## 7482 chylomicron remnant clearance
## 7483 low-density lipoprotein particle clearance
## 7484 high-density lipoprotein particle clearance
## 7485 lipid particle organization
## 7486 regulation of smooth muscle cell apoptotic process
## 7487 negative regulation of smooth muscle cell apoptotic process
## 7488 positive regulation of smooth muscle cell apoptotic process
## 7489 protein localization to cell surface
## 7490 regulation of transcription from RNA polymerase II promoter in response to iron
## 7491 telomere localization
## 7492 telomere tethering at nuclear periphery
## 7493 response to fluid shear stress
## 7494 tRNA 3'-trailer cleavage, endonucleolytic
## 7495 urate biosynthetic process
## 7496 post-translational protein acetylation
## 7497 nuclear-transcribed mRNA catabolic process, exonucleolytic, 3'-5'
## 7498 cholesterol esterification
## 7499 glycoprotein transport
## 7500 lipid oxidation
## 7501 plasma lipoprotein particle oxidation
## 7502 regulation of lipoprotein oxidation
## 7503 negative regulation of lipoprotein oxidation
## 7504 negative regulation of plasma lipoprotein particle oxidation
## 7505 substrate adhesion-dependent cell spreading
## 7506 very-low-density lipoprotein particle clearance
## 7507 microtubule anchoring at centrosome
## 7508 small-subunit processome assembly
## 7509 90S preribosome assembly
## 7510 response to carbon monoxide
## 7511 U1 snRNA 3'-end processing
## 7512 U2 snRNA 3'-end processing
## 7513 U4 snRNA 3'-end processing
## 7514 U5 snRNA 3'-end processing
## 7515 U6 snRNA 3'-end processing
## 7516 early endosome to Golgi transport
## 7517 late endosome to Golgi transport
## 7518 response to vitamin B6
## 7519 mitochondrial respiratory chain complex III assembly
## 7520 mitochondrial respiratory chain complex II assembly
## 7521 piRNA metabolic process
## 7522 hydroxyproline transport
## 7523 response to laminar fluid shear stress
## 7524 fatty acid elongation, monounsaturated fatty acid
## 7525 fatty acid elongation, polyunsaturated fatty acid
## 7526 'de novo' NAD biosynthetic process from aspartate
## 7527 retinol transport
## 7528 glutathione transport
## 7529 phosphatidylcholine catabolic process
## 7530 establishment of mitochondrion localization by microtubule attachment
## 7531 cortisol biosynthetic process
## 7532 retinoic acid catabolic process
## 7533 nucleobase-containing small molecule catabolic process
## 7534 ncRNA catabolic process
## 7535 chemotaxis to arachidonic acid
## 7536 response to prostaglandin
## 7537 response to prostaglandin E
## 7538 response to prostaglandin F
## 7539 response to gonadotropin
## 7540 response to luteinizing hormone
## 7541 piecemeal microautophagy of nucleus
## 7542 histone H3-K79 methylation
## 7543 iron ion transmembrane transport
## 7544 regulation of iron ion transmembrane transport
## 7545 negative regulation of iron ion transmembrane transport
## 7546 basement membrane disassembly
## 7547 histone H4-K20 methylation
## 7548 histone H4-K20 trimethylation
## 7549 glutathione transmembrane transport
## 7550 response to histamine
## 7551 endothelin maturation
## 7552 histone arginine methylation
## 7553 histone H3-R2 methylation
## 7554 histone H3-R17 methylation
## 7555 histone H3-R26 methylation
## 7556 mitochondrial protein processing
## 7557 peptidyl-lysine deacetylation
## 7558 regulation of Rac protein signal transduction
## 7559 negative regulation of Rac protein signal transduction
## 7560 positive regulation of Rac protein signal transduction
## 7561 negative regulation of Rho protein signal transduction
## 7562 positive regulation of Rho protein signal transduction
## 7563 sperm entry
## 7564 female pronucleus assembly
## 7565 male pronucleus assembly
## 7566 fertilization, exchange of chromosomal proteins
## 7567 splicing factor protein import into nucleus
## 7568 embryonic heart tube anterior/posterior pattern specification
## 7569 nuclear speck organization
## 7570 negative regulation of histone acetylation
## 7571 axoneme assembly
## 7572 siRNA loading onto RISC involved in RNA interference
## 7573 sperm chromatin condensation
## 7574 spermatogenesis, exchange of chromosomal proteins
## 7575 behavioral response to nicotine
## 7576 sterol regulatory element binding protein import into nucleus
## 7577 operant conditioning
## 7578 genitalia morphogenesis
## 7579 embryonic forelimb morphogenesis
## 7580 embryonic hindlimb morphogenesis
## 7581 post-embryonic forelimb morphogenesis
## 7582 forelimb morphogenesis
## 7583 hindlimb morphogenesis
## 7584 embryonic hemopoiesis
## 7585 post-embryonic hemopoiesis
## 7586 social behavior
## 7587 cell competition in a multicellular organism
## 7588 positive regulation of glutamate-cysteine ligase activity
## 7589 ectopic germ cell programmed cell death
## 7590 ionotropic glutamate receptor signaling pathway
## 7591 vitamin A biosynthetic process
## 7592 peptidyl-arginine N-methylation
## 7593 peptidyl-arginine omega-N-methylation
## 7594 external genitalia morphogenesis
## 7595 protein mannosylation
## 7596 protein O-linked mannosylation
## 7597 endocrine system development
## 7598 mRNA cleavage involved in gene silencing by miRNA
## 7599 pre-miRNA export from nucleus
## 7600 brain segmentation
## 7601 wound healing, spreading of epidermal cells
## 7602 regulation of hippo signaling
## 7603 negative regulation of hippo signaling
## 7604 positive regulation of hippo signaling
## 7605 long-chain fatty-acyl-CoA biosynthetic process
## 7606 coenzyme A transmembrane transport
## 7607 FAD transmembrane transport
## 7608 cellular triglyceride homeostasis
## 7609 peroxisome proliferator activated receptor signaling pathway
## 7610 regulation of peroxisome proliferator activated receptor signaling pathway
## 7611 negative regulation of peroxisome proliferator activated receptor signaling pathway
## 7612 positive regulation of peroxisome proliferator activated receptor signaling pathway
## 7613 transepithelial water transport
## 7614 carbon dioxide transmembrane transport
## 7615 Roundabout signaling pathway
## 7616 helper T cell enhancement of adaptive immune response
## 7617 histone-serine phosphorylation
## 7618 histone-threonine phosphorylation
## 7619 histone H3-T11 phosphorylation
## 7620 histone H3-T6 phosphorylation
## 7621 histone H3-Y41 phosphorylation
## 7622 catenin import into nucleus
## 7623 regulation of catenin import into nucleus
## 7624 positive regulation of catenin import into nucleus
## 7625 negative regulation of catenin import into nucleus
## 7626 protein localization to synapse
## 7627 autocrine signaling
## 7628 extracellular matrix-cell signaling
## 7629 copper ion transmembrane transport
## 7630 phosphate ion transmembrane transport
## 7631 cell migration involved in vasculogenesis
## 7632 borate transmembrane transport
## 7633 response to interferon-beta
## 7634 cellular response to interferon-alpha
## 7635 cellular response to interferon-beta
## 7636 vitamin transmembrane transport
## 7637 determination of pancreatic left/right asymmetry
## 7638 positive regulation of vascular wound healing
## 7639 positive regulation of Notch signaling pathway involved in heart induction
## 7640 gastric emptying
## 7641 positive regulation of leukotriene production involved in inflammatory response
## 7642 SNARE complex assembly
## 7643 SNARE complex disassembly
## 7644 carnosine metabolic process
## 7645 carnosine biosynthetic process
## 7646 metanephric part of ureteric bud development
## 7647 positive regulation of myosin light chain kinase activity
## 7648 regulation of myosin-light-chain-phosphatase activity
## 7649 positive regulation of myosin-light-chain-phosphatase activity
## 7650 negative regulation of myosin-light-chain-phosphatase activity
## 7651 DNA dealkylation
## 7652 oxidative DNA demethylation
## 7653 oxidative RNA demethylation
## 7654 histone H2A monoubiquitination
## 7655 monoubiquitinated histone H2A deubiquitination
## 7656 proline transmembrane transport
## 7657 retrograde transport, plasma membrane to Golgi
## 7658 regulation of SNARE complex assembly
## 7659 positive regulation of SNARE complex assembly
## 7660 negative regulation of SNARE complex assembly
## 7661 determination of left/right asymmetry in nervous system
## 7662 oxidative single-stranded DNA demethylation
## 7663 oxidative single-stranded RNA demethylation
## 7664 regulation of chromatin binding
## 7665 negative regulation of chromatin binding
## 7666 positive regulation of chromatin binding
## 7667 regulation of kidney size
## 7668 regulation of pronephros size
## 7669 regulation of metanephros size
## 7670 N-terminal peptidyl-serine dimethylation
## 7671 N-terminal peptidyl-serine trimethylation
## 7672 histone H4-K20 demethylation
## 7673 sequestering of BMP in extracellular matrix
## 7674 sequestering of TGFbeta in extracellular matrix
## 7675 calcium-mediated signaling using intracellular calcium source
## 7676 calcium-mediated signaling using extracellular calcium source
## 7677 purinergic receptor signaling pathway
## 7678 G-protein coupled purinergic receptor signaling pathway
## 7679 G-protein coupled purinergic nucleotide receptor signaling pathway
## 7680 purinergic nucleotide receptor signaling pathway
## 7681 tRNA methylthiolation
## 7682 fibroblast growth factor receptor signaling pathway involved in negative regulation of apoptotic process in bone marrow
## 7683 fibroblast growth factor receptor signaling pathway involved in hemopoiesis
## 7684 fibroblast growth factor receptor signaling pathway involved in positive regulation of cell proliferation in bone marrow
## 7685 peptidyl-cysteine S-trans-nitrosylation
## 7686 fibroblast growth factor receptor signaling pathway involved in orbitofrontal cortex development
## 7687 protein deglutamylation
## 7688 C-terminal protein deglutamylation
## 7689 protein side chain deglutamylation
## 7690 protein branching point deglutamylation
## 7691 histone H2B conserved C-terminal lysine deubiquitination
## 7692 ER to Golgi ceramide transport
## Hyper_Total_Regions Hyper_Expected Hyper_Foreground_Region_Hits
## 1 217 47.1489600 72
## 2 120 26.0731600 43
## 3 5 1.0863820 5
## 4 5 1.0863820 5
## 5 9 1.9554870 7
## 6 151 32.8087300 50
## 7 30 6.5182900 15
## 8 26 5.6491850 13
## 9 72 15.6439000 27
## 10 72 15.6439000 27
## 11 933 202.7188000 232
## 12 939 204.0225000 233
## 13 18 3.9109740 10
## 14 21 4.5628030 11
## 15 910 197.7215000 226
## 16 6 1.3036580 5
## 17 6 1.3036580 5
## 18 16 3.4764210 9
## 19 22 4.7800790 11
## 20 41 8.9083300 17
## 21 105 22.8140100 35
## 22 990 215.1036000 242
## 23 52 11.2983700 20
## 24 29 6.3010140 13
## 25 985 214.0172000 240
## 26 9 1.9554870 6
## 27 9 1.9554870 6
## 28 9 1.9554870 6
## 29 9 1.9554870 6
## 30 9 1.9554870 6
## 31 9 1.9554870 6
## 32 27 5.8664610 12
## 33 7 1.5209340 5
## 34 7 1.5209340 5
## 35 7 1.5209340 5
## 36 7 1.5209340 5
## 37 7 1.5209340 5
## 38 7 1.5209340 5
## 39 7 1.5209340 5
## 40 7 1.5209340 5
## 41 15 3.2591450 8
## 42 18 3.9109740 9
## 43 18 3.9109740 9
## 44 31 6.7355660 13
## 45 31 6.7355660 13
## 46 5 1.0863820 4
## 47 5 1.0863820 4
## 48 28 6.0837370 12
## 49 327 71.0493600 88
## 50 10 2.1727630 6
## 51 10 2.1727630 6
## 52 10 2.1727630 6
## 53 3 0.6518290 3
## 54 3 0.6518290 3
## 55 3 0.6518290 3
## 56 3 0.6518290 3
## 57 3 0.6518290 3
## 58 3 0.6518290 3
## 59 3 0.6518290 3
## 60 3 0.6518290 3
## 61 3 0.6518290 3
## 62 3 0.6518290 3
## 63 3 0.6518290 3
## 64 3 0.6518290 3
## 65 3 0.6518290 3
## 66 3 0.6518290 3
## 67 3 0.6518290 3
## 68 22 4.7800790 10
## 69 22 4.7800790 10
## 70 101 21.9449100 32
## 71 19 4.1282500 9
## 72 152 33.0260000 45
## 73 109 23.6831200 34
## 74 815 177.0802000 199
## 75 113 24.5522300 35
## 76 64 13.9056900 22
## 77 161 34.9814900 47
## 78 29 6.3010140 12
## 79 26 5.6491850 11
## 80 76 16.5130000 25
## 81 84 18.2512100 27
## 82 40 8.6910530 15
## 83 40 8.6910530 15
## 84 40 8.6910530 15
## 85 11 2.3900400 6
## 86 11 2.3900400 6
## 87 11 2.3900400 6
## 88 30 6.5182900 12
## 89 14 3.0418690 7
## 90 14 3.0418690 7
## 91 141 30.6359600 41
## 92 1066 231.6166000 252
## 93 24 5.2146320 10
## 94 24 5.2146320 10
## 95 24 5.2146320 10
## 96 6 1.3036580 4
## 97 6 1.3036580 4
## 98 6 1.3036580 4
## 99 6 1.3036580 4
## 100 6 1.3036580 4
## 101 6 1.3036580 4
## 102 6 1.3036580 4
## 103 6 1.3036580 4
## 104 6 1.3036580 4
## 105 31 6.7355660 12
## 106 31 6.7355660 12
## 107 31 6.7355660 12
## 108 21 4.5628030 9
## 109 42 9.1256060 15
## 110 42 9.1256060 15
## 111 18 3.9109740 8
## 112 18 3.9109740 8
## 113 35 7.6046720 13
## 114 9 1.9554870 5
## 115 9 1.9554870 5
## 116 9 1.9554870 5
## 117 9 1.9554870 5
## 118 15 3.2591450 7
## 119 15 3.2591450 7
## 120 15 3.2591450 7
## 121 15 3.2591450 7
## 122 12 2.6073160 6
## 123 61 13.2538600 20
## 124 61 13.2538600 20
## 125 25 5.4319080 10
## 126 152 33.0260000 43
## 127 152 33.0260000 43
## 128 324 70.3975300 84
## 129 32 6.9528430 12
## 130 54 11.7329200 18
## 131 36 7.8219480 13
## 132 47 10.2119900 16
## 133 47 10.2119900 16
## 134 47 10.2119900 16
## 135 29 6.3010140 11
## 136 29 6.3010140 11
## 137 29 6.3010140 11
## 138 4 0.8691053 3
## 139 4 0.8691053 3
## 140 4 0.8691053 3
## 141 4 0.8691053 3
## 142 4 0.8691053 3
## 143 4 0.8691053 3
## 144 4 0.8691053 3
## 145 4 0.8691053 3
## 146 4 0.8691053 3
## 147 4 0.8691053 3
## 148 4 0.8691053 3
## 149 4 0.8691053 3
## 150 4 0.8691053 3
## 151 4 0.8691053 3
## 152 4 0.8691053 3
## 153 4 0.8691053 3
## 154 4 0.8691053 3
## 155 4 0.8691053 3
## 156 4 0.8691053 3
## 157 4 0.8691053 3
## 158 4 0.8691053 3
## 159 4 0.8691053 3
## 160 4 0.8691053 3
## 161 4 0.8691053 3
## 162 4 0.8691053 3
## 163 4 0.8691053 3
## 164 4 0.8691053 3
## 165 4 0.8691053 3
## 166 4 0.8691053 3
## 167 4 0.8691053 3
## 168 4 0.8691053 3
## 169 4 0.8691053 3
## 170 4 0.8691053 3
## 171 4 0.8691053 3
## 172 4 0.8691053 3
## 173 4 0.8691053 3
## 174 4 0.8691053 3
## 175 4 0.8691053 3
## 176 4 0.8691053 3
## 177 4 0.8691053 3
## 178 4 0.8691053 3
## 179 4 0.8691053 3
## 180 162 35.1987700 45
## 181 162 35.1987700 45
## 182 51 11.0810900 17
## 183 19 4.1282500 8
## 184 26 5.6491850 10
## 185 44 9.5601590 15
## 186 16 3.4764210 7
## 187 16 3.4764210 7
## 188 16 3.4764210 7
## 189 277 60.1855400 72
## 190 37 8.0392240 13
## 191 13 2.8245920 6
## 192 13 2.8245920 6
## 193 13 2.8245920 6
## 194 13 2.8245920 6
## 195 13 2.8245920 6
## 196 30 6.5182900 11
## 197 23 4.9973560 9
## 198 23 4.9973560 9
## 199 7 1.5209340 4
## 200 7 1.5209340 4
## 201 7 1.5209340 4
## 202 7 1.5209340 4
## 203 7 1.5209340 4
## 204 7 1.5209340 4
## 205 10 2.1727630 5
## 206 10 2.1727630 5
## 207 10 2.1727630 5
## 208 10 2.1727630 5
## 209 10 2.1727630 5
## 210 10 2.1727630 5
## 211 10 2.1727630 5
## 212 10 2.1727630 5
## 213 232 50.4081100 61
## 214 232 50.4081100 61
## 215 2 0.4345527 2
## 216 2 0.4345527 2
## 217 2 0.4345527 2
## 218 2 0.4345527 2
## 219 2 0.4345527 2
## 220 2 0.4345527 2
## 221 2 0.4345527 2
## 222 2 0.4345527 2
## 223 2 0.4345527 2
## 224 2 0.4345527 2
## 225 2 0.4345527 2
## 226 2 0.4345527 2
## 227 2 0.4345527 2
## 228 2 0.4345527 2
## 229 2 0.4345527 2
## 230 2 0.4345527 2
## 231 2 0.4345527 2
## 232 2 0.4345527 2
## 233 2 0.4345527 2
## 234 2 0.4345527 2
## 235 2 0.4345527 2
## 236 2 0.4345527 2
## 237 2 0.4345527 2
## 238 2 0.4345527 2
## 239 2 0.4345527 2
## 240 2 0.4345527 2
## 241 2 0.4345527 2
## 242 2 0.4345527 2
## 243 2 0.4345527 2
## 244 34 7.3873950 12
## 245 737 160.1327000 176
## 246 72 15.6439000 22
## 247 20 4.3455270 8
## 248 20 4.3455270 8
## 249 20 4.3455270 8
## 250 92 19.9894200 27
## 251 53 11.5156500 17
## 252 53 11.5156500 17
## 253 38 8.2565010 13
## 254 42 9.1256060 14
## 255 65 14.1229600 20
## 256 69 14.9920700 21
## 257 17 3.6936980 7
## 258 77 16.7302800 23
## 259 46 9.9947110 15
## 260 24 5.2146320 9
## 261 316 68.6593200 80
## 262 138 29.9841300 38
## 263 50 10.8638200 16
## 264 50 10.8638200 16
## 265 35 7.6046720 12
## 266 35 7.6046720 12
## 267 35 7.6046720 12
## 268 54 11.7329200 17
## 269 54 11.7329200 17
## 270 787 170.9965000 186
## 271 62 13.4711300 19
## 272 14 3.0418690 6
## 273 14 3.0418690 6
## 274 14 3.0418690 6
## 275 14 3.0418690 6
## 276 14 3.0418690 6
## 277 43 9.3428820 14
## 278 43 9.3428820 14
## 279 21 4.5628030 8
## 280 21 4.5628030 8
## 281 194 42.1516100 51
## 282 32 6.9528430 11
## 283 11 2.3900400 5
## 284 11 2.3900400 5
## 285 11 2.3900400 5
## 286 11 2.3900400 5
## 287 11 2.3900400 5
## 288 11 2.3900400 5
## 289 11 2.3900400 5
## 290 11 2.3900400 5
## 291 55 11.9502000 17
## 292 36 7.8219480 12
## 293 5 1.0863820 3
## 294 5 1.0863820 3
## 295 5 1.0863820 3
## 296 5 1.0863820 3
## 297 5 1.0863820 3
## 298 5 1.0863820 3
## 299 5 1.0863820 3
## 300 5 1.0863820 3
## 301 5 1.0863820 3
## 302 5 1.0863820 3
## 303 5 1.0863820 3
## 304 5 1.0863820 3
## 305 5 1.0863820 3
## 306 5 1.0863820 3
## 307 5 1.0863820 3
## 308 5 1.0863820 3
## 309 5 1.0863820 3
## 310 5 1.0863820 3
## 311 5 1.0863820 3
## 312 5 1.0863820 3
## 313 5 1.0863820 3
## 314 5 1.0863820 3
## 315 5 1.0863820 3
## 316 5 1.0863820 3
## 317 5 1.0863820 3
## 318 5 1.0863820 3
## 319 5 1.0863820 3
## 320 75 16.2957200 22
## 321 25 5.4319080 9
## 322 8 1.7382110 4
## 323 8 1.7382110 4
## 324 8 1.7382110 4
## 325 8 1.7382110 4
## 326 8 1.7382110 4
## 327 8 1.7382110 4
## 328 8 1.7382110 4
## 329 8 1.7382110 4
## 330 8 1.7382110 4
## 331 18 3.9109740 7
## 332 18 3.9109740 7
## 333 48 10.4292600 15
## 334 48 10.4292600 15
## 335 52 11.2983700 16
## 336 80 17.3821100 23
## 337 33 7.1701190 11
## 338 33 7.1701190 11
## 339 33 7.1701190 11
## 340 22 4.7800790 8
## 341 15 3.2591450 6
## 342 15 3.2591450 6
## 343 15 3.2591450 6
## 344 15 3.2591450 6
## 345 15 3.2591450 6
## 346 15 3.2591450 6
## 347 41 8.9083300 13
## 348 41 8.9083300 13
## 349 93 20.2067000 26
## 350 45 9.7774350 14
## 351 26 5.6491850 9
## 352 26 5.6491850 9
## 353 26 5.6491850 9
## 354 1268 275.5064000 289
## 355 30 6.5182900 10
## 356 30 6.5182900 10
## 357 30 6.5182900 10
## 358 30 6.5182900 10
## 359 186 40.4134000 48
## 360 199 43.2379900 51
## 361 12 2.6073160 5
## 362 12 2.6073160 5
## 363 12 2.6073160 5
## 364 12 2.6073160 5
## 365 12 2.6073160 5
## 366 12 2.6073160 5
## 367 12 2.6073160 5
## 368 12 2.6073160 5
## 369 12 2.6073160 5
## 370 12 2.6073160 5
## 371 12 2.6073160 5
## 372 34 7.3873950 11
## 373 413 89.7351300 100
## 374 74 16.0784500 21
## 375 23 4.9973560 8
## 376 23 4.9973560 8
## 377 62 13.4711300 18
## 378 103 22.3794600 28
## 379 99 21.5103600 27
## 380 9 1.9554870 4
## 381 9 1.9554870 4
## 382 9 1.9554870 4
## 383 9 1.9554870 4
## 384 9 1.9554870 4
## 385 9 1.9554870 4
## 386 9 1.9554870 4
## 387 9 1.9554870 4
## 388 9 1.9554870 4
## 389 9 1.9554870 4
## 390 9 1.9554870 4
## 391 9 1.9554870 4
## 392 9 1.9554870 4
## 393 9 1.9554870 4
## 394 9 1.9554870 4
## 395 9 1.9554870 4
## 396 9 1.9554870 4
## 397 9 1.9554870 4
## 398 9 1.9554870 4
## 399 9 1.9554870 4
## 400 9 1.9554870 4
## 401 9 1.9554870 4
## 402 9 1.9554870 4
## 403 9 1.9554870 4
## 404 9 1.9554870 4
## 405 9 1.9554870 4
## 406 9 1.9554870 4
## 407 27 5.8664610 9
## 408 27 5.8664610 9
## 409 16 3.4764210 6
## 410 16 3.4764210 6
## 411 16 3.4764210 6
## 412 16 3.4764210 6
## 413 702 152.5280000 164
## 414 31 6.7355660 10
## 415 31 6.7355660 10
## 416 104 22.5967400 28
## 417 35 7.6046720 11
## 418 35 7.6046720 11
## 419 67 14.5575100 19
## 420 753 163.6091000 175
## 421 39 8.4737770 12
## 422 6 1.3036580 3
## 423 6 1.3036580 3
## 424 6 1.3036580 3
## 425 6 1.3036580 3
## 426 6 1.3036580 3
## 427 6 1.3036580 3
## 428 6 1.3036580 3
## 429 6 1.3036580 3
## 430 6 1.3036580 3
## 431 6 1.3036580 3
## 432 6 1.3036580 3
## 433 6 1.3036580 3
## 434 6 1.3036580 3
## 435 6 1.3036580 3
## 436 6 1.3036580 3
## 437 6 1.3036580 3
## 438 6 1.3036580 3
## 439 6 1.3036580 3
## 440 6 1.3036580 3
## 441 6 1.3036580 3
## 442 6 1.3036580 3
## 443 6 1.3036580 3
## 444 3 0.6518290 2
## 445 3 0.6518290 2
## 446 3 0.6518290 2
## 447 3 0.6518290 2
## 448 3 0.6518290 2
## 449 3 0.6518290 2
## 450 3 0.6518290 2
## 451 3 0.6518290 2
## 452 3 0.6518290 2
## 453 3 0.6518290 2
## 454 3 0.6518290 2
## 455 3 0.6518290 2
## 456 3 0.6518290 2
## 457 3 0.6518290 2
## 458 3 0.6518290 2
## 459 3 0.6518290 2
## 460 3 0.6518290 2
## 461 3 0.6518290 2
## 462 3 0.6518290 2
## 463 3 0.6518290 2
## 464 3 0.6518290 2
## 465 3 0.6518290 2
## 466 3 0.6518290 2
## 467 3 0.6518290 2
## 468 3 0.6518290 2
## 469 3 0.6518290 2
## 470 3 0.6518290 2
## 471 3 0.6518290 2
## 472 3 0.6518290 2
## 473 3 0.6518290 2
## 474 3 0.6518290 2
## 475 3 0.6518290 2
## 476 3 0.6518290 2
## 477 3 0.6518290 2
## 478 3 0.6518290 2
## 479 3 0.6518290 2
## 480 3 0.6518290 2
## 481 3 0.6518290 2
## 482 3 0.6518290 2
## 483 3 0.6518290 2
## 484 3 0.6518290 2
## 485 3 0.6518290 2
## 486 3 0.6518290 2
## 487 3 0.6518290 2
## 488 3 0.6518290 2
## 489 3 0.6518290 2
## 490 3 0.6518290 2
## 491 3 0.6518290 2
## 492 3 0.6518290 2
## 493 3 0.6518290 2
## 494 3 0.6518290 2
## 495 3 0.6518290 2
## 496 3 0.6518290 2
## 497 3 0.6518290 2
## 498 3 0.6518290 2
## 499 3 0.6518290 2
## 500 3 0.6518290 2
## 501 3 0.6518290 2
## 502 3 0.6518290 2
## 503 3 0.6518290 2
## 504 3 0.6518290 2
## 505 3 0.6518290 2
## 506 3 0.6518290 2
## 507 3 0.6518290 2
## 508 3 0.6518290 2
## 509 3 0.6518290 2
## 510 3 0.6518290 2
## 511 3 0.6518290 2
## 512 3 0.6518290 2
## 513 3 0.6518290 2
## 514 3 0.6518290 2
## 515 3 0.6518290 2
## 516 3 0.6518290 2
## 517 3 0.6518290 2
## 518 3 0.6518290 2
## 519 3 0.6518290 2
## 520 3 0.6518290 2
## 521 3 0.6518290 2
## 522 3 0.6518290 2
## 523 3 0.6518290 2
## 524 3 0.6518290 2
## 525 3 0.6518290 2
## 526 3 0.6518290 2
## 527 3 0.6518290 2
## 528 3 0.6518290 2
## 529 3 0.6518290 2
## 530 3 0.6518290 2
## 531 3 0.6518290 2
## 532 3 0.6518290 2
## 533 3 0.6518290 2
## 534 3 0.6518290 2
## 535 3 0.6518290 2
## 536 3 0.6518290 2
## 537 3 0.6518290 2
## 538 3 0.6518290 2
## 539 3 0.6518290 2
## 540 3 0.6518290 2
## 541 3 0.6518290 2
## 542 3 0.6518290 2
## 543 3 0.6518290 2
## 544 3 0.6518290 2
## 545 3 0.6518290 2
## 546 3 0.6518290 2
## 547 3 0.6518290 2
## 548 3 0.6518290 2
## 549 3 0.6518290 2
## 550 3 0.6518290 2
## 551 3 0.6518290 2
## 552 3 0.6518290 2
## 553 3 0.6518290 2
## 554 3 0.6518290 2
## 555 3 0.6518290 2
## 556 3 0.6518290 2
## 557 3 0.6518290 2
## 558 3 0.6518290 2
## 559 3 0.6518290 2
## 560 3 0.6518290 2
## 561 3 0.6518290 2
## 562 3 0.6518290 2
## 563 3 0.6518290 2
## 564 3 0.6518290 2
## 565 3 0.6518290 2
## 566 3 0.6518290 2
## 567 3 0.6518290 2
## 568 3 0.6518290 2
## 569 3 0.6518290 2
## 570 3 0.6518290 2
## 571 3 0.6518290 2
## 572 96 20.8585300 26
## 573 47 10.2119900 14
## 574 47 10.2119900 14
## 575 51 11.0810900 15
## 576 20 4.3455270 7
## 577 705 153.1798000 164
## 578 24 5.2146320 8
## 579 24 5.2146320 8
## 580 24 5.2146320 8
## 581 13 2.8245920 5
## 582 13 2.8245920 5
## 583 13 2.8245920 5
## 584 13 2.8245920 5
## 585 13 2.8245920 5
## 586 13 2.8245920 5
## 587 13 2.8245920 5
## 588 13 2.8245920 5
## 589 28 6.0837370 9
## 590 28 6.0837370 9
## 591 1553 337.4301000 348
## 592 148 32.1569000 38
## 593 32 6.9528430 10
## 594 32 6.9528430 10
## 595 32 6.9528430 10
## 596 1591 345.6866000 356
## 597 40 8.6910530 12
## 598 1372 298.1031000 309
## 599 460 99.9471100 109
## 600 17 3.6936980 6
## 601 17 3.6936980 6
## 602 17 3.6936980 6
## 603 17 3.6936980 6
## 604 17 3.6936980 6
## 605 288 62.5755800 70
## 606 132 28.6804800 34
## 607 21 4.5628030 7
## 608 21 4.5628030 7
## 609 65 14.1229600 18
## 610 90 19.5548700 24
## 611 10 2.1727630 4
## 612 10 2.1727630 4
## 613 10 2.1727630 4
## 614 10 2.1727630 4
## 615 10 2.1727630 4
## 616 10 2.1727630 4
## 617 10 2.1727630 4
## 618 10 2.1727630 4
## 619 10 2.1727630 4
## 620 10 2.1727630 4
## 621 687 149.2688000 159
## 622 219 47.5835200 54
## 623 25 5.4319080 8
## 624 25 5.4319080 8
## 625 25 5.4319080 8
## 626 25 5.4319080 8
## 627 742 161.2190000 171
## 628 29 6.3010140 9
## 629 29 6.3010140 9
## 630 45 9.7774350 13
## 631 99 21.5103600 26
## 632 33 7.1701190 10
## 633 33 7.1701190 10
## 634 33 7.1701190 10
## 635 1544 335.4747000 345
## 636 255 55.4054600 62
## 637 142 30.8532400 36
## 638 527 114.5046000 123
## 639 66 14.3402400 18
## 640 14 3.0418690 5
## 641 14 3.0418690 5
## 642 14 3.0418690 5
## 643 62 13.4711300 17
## 644 296 64.3137900 71
## 645 1635 355.2468000 364
## 646 18 3.9109740 6
## 647 18 3.9109740 6
## 648 18 3.9109740 6
## 649 18 3.9109740 6
## 650 7 1.5209340 3
## 651 7 1.5209340 3
## 652 7 1.5209340 3
## 653 7 1.5209340 3
## 654 7 1.5209340 3
## 655 7 1.5209340 3
## 656 7 1.5209340 3
## 657 7 1.5209340 3
## 658 7 1.5209340 3
## 659 7 1.5209340 3
## 660 7 1.5209340 3
## 661 7 1.5209340 3
## 662 7 1.5209340 3
## 663 7 1.5209340 3
## 664 7 1.5209340 3
## 665 7 1.5209340 3
## 666 7 1.5209340 3
## 667 7 1.5209340 3
## 668 7 1.5209340 3
## 669 7 1.5209340 3
## 670 7 1.5209340 3
## 671 7 1.5209340 3
## 672 152 33.0260000 38
## 673 109 23.6831200 28
## 674 46 9.9947110 13
## 675 22 4.7800790 7
## 676 22 4.7800790 7
## 677 22 4.7800790 7
## 678 122 26.5077100 31
## 679 26 5.6491850 8
## 680 26 5.6491850 8
## 681 26 5.6491850 8
## 682 26 5.6491850 8
## 683 26 5.6491850 8
## 684 26 5.6491850 8
## 685 26 5.6491850 8
## 686 26 5.6491850 8
## 687 30 6.5182900 9
## 688 30 6.5182900 9
## 689 30 6.5182900 9
## 690 67 14.5575100 18
## 691 67 14.5575100 18
## 692 131 28.4632000 33
## 693 144 31.2877900 36
## 694 63 13.6884100 17
## 695 110 23.9004000 28
## 696 110 23.9004000 28
## 697 93 20.2067000 24
## 698 11 2.3900400 4
## 699 11 2.3900400 4
## 700 11 2.3900400 4
## 701 11 2.3900400 4
## 702 11 2.3900400 4
## 703 11 2.3900400 4
## 704 11 2.3900400 4
## 705 11 2.3900400 4
## 706 11 2.3900400 4
## 707 11 2.3900400 4
## 708 11 2.3900400 4
## 709 11 2.3900400 4
## 710 11 2.3900400 4
## 711 11 2.3900400 4
## 712 11 2.3900400 4
## 713 11 2.3900400 4
## 714 11 2.3900400 4
## 715 11 2.3900400 4
## 716 11 2.3900400 4
## 717 11 2.3900400 4
## 718 11 2.3900400 4
## 719 11 2.3900400 4
## 720 11 2.3900400 4
## 721 11 2.3900400 4
## 722 11 2.3900400 4
## 723 47 10.2119900 13
## 724 47 10.2119900 13
## 725 102 22.1621900 26
## 726 68 14.7747900 18
## 727 68 14.7747900 18
## 728 43 9.3428820 12
## 729 4 0.8691053 2
## 730 4 0.8691053 2
## 731 4 0.8691053 2
## 732 4 0.8691053 2
## 733 4 0.8691053 2
## 734 4 0.8691053 2
## 735 4 0.8691053 2
## 736 4 0.8691053 2
## 737 4 0.8691053 2
## 738 4 0.8691053 2
## 739 4 0.8691053 2
## 740 4 0.8691053 2
## 741 4 0.8691053 2
## 742 4 0.8691053 2
## 743 4 0.8691053 2
## 744 4 0.8691053 2
## 745 4 0.8691053 2
## 746 4 0.8691053 2
## 747 4 0.8691053 2
## 748 4 0.8691053 2
## 749 4 0.8691053 2
## 750 4 0.8691053 2
## 751 4 0.8691053 2
## 752 4 0.8691053 2
## 753 4 0.8691053 2
## 754 4 0.8691053 2
## 755 4 0.8691053 2
## 756 4 0.8691053 2
## 757 4 0.8691053 2
## 758 4 0.8691053 2
## 759 4 0.8691053 2
## 760 4 0.8691053 2
## 761 4 0.8691053 2
## 762 4 0.8691053 2
## 763 4 0.8691053 2
## 764 4 0.8691053 2
## 765 4 0.8691053 2
## 766 4 0.8691053 2
## 767 4 0.8691053 2
## 768 4 0.8691053 2
## 769 4 0.8691053 2
## 770 4 0.8691053 2
## 771 4 0.8691053 2
## 772 4 0.8691053 2
## 773 4 0.8691053 2
## 774 4 0.8691053 2
## 775 4 0.8691053 2
## 776 4 0.8691053 2
## 777 4 0.8691053 2
## 778 4 0.8691053 2
## 779 4 0.8691053 2
## 780 4 0.8691053 2
## 781 4 0.8691053 2
## 782 98 21.2930800 25
## 783 64 13.9056900 17
## 784 39 8.4737770 11
## 785 39 8.4737770 11
## 786 81 17.5993800 21
## 787 15 3.2591450 5
## 788 15 3.2591450 5
## 789 15 3.2591450 5
## 790 15 3.2591450 5
## 791 15 3.2591450 5
## 792 15 3.2591450 5
## 793 15 3.2591450 5
## 794 15 3.2591450 5
## 795 15 3.2591450 5
## 796 15 3.2591450 5
## 797 15 3.2591450 5
## 798 35 7.6046720 10
## 799 60 13.0365800 16
## 800 31 6.7355660 9
## 801 77 16.7302800 20
## 802 19 4.1282500 6
## 803 19 4.1282500 6
## 804 19 4.1282500 6
## 805 19 4.1282500 6
## 806 19 4.1282500 6
## 807 19 4.1282500 6
## 808 19 4.1282500 6
## 809 19 4.1282500 6
## 810 27 5.8664610 8
## 811 27 5.8664610 8
## 812 23 4.9973560 7
## 813 23 4.9973560 7
## 814 23 4.9973560 7
## 815 23 4.9973560 7
## 816 23 4.9973560 7
## 817 23 4.9973560 7
## 818 23 4.9973560 7
## 819 23 4.9973560 7
## 820 23 4.9973560 7
## 821 1 0.2172763 1
## 822 1 0.2172763 1
## 823 1 0.2172763 1
## 824 1 0.2172763 1
## 825 1 0.2172763 1
## 826 1 0.2172763 1
## 827 1 0.2172763 1
## 828 1 0.2172763 1
## 829 1 0.2172763 1
## 830 1 0.2172763 1
## 831 1 0.2172763 1
## 832 1 0.2172763 1
## 833 1 0.2172763 1
## 834 1 0.2172763 1
## 835 1 0.2172763 1
## 836 1 0.2172763 1
## 837 1 0.2172763 1
## 838 1 0.2172763 1
## 839 1 0.2172763 1
## 840 1 0.2172763 1
## 841 1 0.2172763 1
## 842 1 0.2172763 1
## 843 1 0.2172763 1
## 844 1 0.2172763 1
## 845 1 0.2172763 1
## 846 1 0.2172763 1
## 847 1 0.2172763 1
## 848 1 0.2172763 1
## 849 1 0.2172763 1
## 850 1 0.2172763 1
## 851 1 0.2172763 1
## 852 1 0.2172763 1
## 853 1 0.2172763 1
## 854 1 0.2172763 1
## 855 1 0.2172763 1
## 856 1 0.2172763 1
## 857 1 0.2172763 1
## 858 1 0.2172763 1
## 859 1 0.2172763 1
## 860 1 0.2172763 1
## 861 1 0.2172763 1
## 862 1 0.2172763 1
## 863 1 0.2172763 1
## 864 1 0.2172763 1
## 865 1 0.2172763 1
## 866 1 0.2172763 1
## 867 1 0.2172763 1
## 868 1 0.2172763 1
## 869 1 0.2172763 1
## 870 1 0.2172763 1
## 871 1 0.2172763 1
## 872 1 0.2172763 1
## 873 1 0.2172763 1
## 874 1 0.2172763 1
## 875 1 0.2172763 1
## 876 1 0.2172763 1
## 877 1 0.2172763 1
## 878 1 0.2172763 1
## 879 1 0.2172763 1
## 880 1 0.2172763 1
## 881 1 0.2172763 1
## 882 1 0.2172763 1
## 883 1 0.2172763 1
## 884 1 0.2172763 1
## 885 1 0.2172763 1
## 886 1 0.2172763 1
## 887 1 0.2172763 1
## 888 1 0.2172763 1
## 889 1 0.2172763 1
## 890 1 0.2172763 1
## 891 1 0.2172763 1
## 892 1 0.2172763 1
## 893 1 0.2172763 1
## 894 1 0.2172763 1
## 895 1 0.2172763 1
## 896 1 0.2172763 1
## 897 1 0.2172763 1
## 898 1 0.2172763 1
## 899 1 0.2172763 1
## 900 1 0.2172763 1
## 901 1 0.2172763 1
## 902 1 0.2172763 1
## 903 1 0.2172763 1
## 904 1 0.2172763 1
## 905 1 0.2172763 1
## 906 1 0.2172763 1
## 907 1 0.2172763 1
## 908 1 0.2172763 1
## 909 1 0.2172763 1
## 910 1 0.2172763 1
## 911 1 0.2172763 1
## 912 1 0.2172763 1
## 913 1 0.2172763 1
## 914 1 0.2172763 1
## 915 1 0.2172763 1
## 916 1 0.2172763 1
## 917 1 0.2172763 1
## 918 1 0.2172763 1
## 919 1 0.2172763 1
## 920 1 0.2172763 1
## 921 1 0.2172763 1
## 922 1 0.2172763 1
## 923 1 0.2172763 1
## 924 1 0.2172763 1
## 925 1 0.2172763 1
## 926 1 0.2172763 1
## 927 1 0.2172763 1
## 928 1 0.2172763 1
## 929 1 0.2172763 1
## 930 1 0.2172763 1
## 931 1 0.2172763 1
## 932 1 0.2172763 1
## 933 1 0.2172763 1
## 934 1 0.2172763 1
## 935 1 0.2172763 1
## 936 1 0.2172763 1
## 937 1 0.2172763 1
## 938 1 0.2172763 1
## 939 1 0.2172763 1
## 940 1 0.2172763 1
## 941 1 0.2172763 1
## 942 1 0.2172763 1
## 943 1 0.2172763 1
## 944 1 0.2172763 1
## 945 1 0.2172763 1
## 946 1 0.2172763 1
## 947 1 0.2172763 1
## 948 1 0.2172763 1
## 949 1 0.2172763 1
## 950 1 0.2172763 1
## 951 1 0.2172763 1
## 952 1 0.2172763 1
## 953 1 0.2172763 1
## 954 1 0.2172763 1
## 955 1 0.2172763 1
## 956 1 0.2172763 1
## 957 1 0.2172763 1
## 958 1 0.2172763 1
## 959 1 0.2172763 1
## 960 1 0.2172763 1
## 961 1 0.2172763 1
## 962 1 0.2172763 1
## 963 1 0.2172763 1
## 964 1 0.2172763 1
## 965 1 0.2172763 1
## 966 1 0.2172763 1
## 967 1 0.2172763 1
## 968 1 0.2172763 1
## 969 1 0.2172763 1
## 970 1 0.2172763 1
## 971 1 0.2172763 1
## 972 1 0.2172763 1
## 973 1 0.2172763 1
## 974 1 0.2172763 1
## 975 1 0.2172763 1
## 976 1 0.2172763 1
## 977 1 0.2172763 1
## 978 1 0.2172763 1
## 979 1 0.2172763 1
## 980 1 0.2172763 1
## 981 1 0.2172763 1
## 982 1 0.2172763 1
## 983 1 0.2172763 1
## 984 52 11.2983700 14
## 985 52 11.2983700 14
## 986 69 14.9920700 18
## 987 69 14.9920700 18
## 988 99 21.5103600 25
## 989 99 21.5103600 25
## 990 65 14.1229600 17
## 991 65 14.1229600 17
## 992 44 9.5601590 12
## 993 143 31.0705200 35
## 994 61 13.2538600 16
## 995 61 13.2538600 16
## 996 40 8.6910530 11
## 997 40 8.6910530 11
## 998 40 8.6910530 11
## 999 139 30.2014100 34
## 1000 478 103.8581000 110
## 1001 379 82.3477300 88
## 1002 74 16.0784500 19
## 1003 36 7.8219480 10
## 1004 87 18.9030400 22
## 1005 8 1.7382110 3
## 1006 8 1.7382110 3
## 1007 8 1.7382110 3
## 1008 8 1.7382110 3
## 1009 8 1.7382110 3
## 1010 8 1.7382110 3
## 1011 8 1.7382110 3
## 1012 8 1.7382110 3
## 1013 8 1.7382110 3
## 1014 8 1.7382110 3
## 1015 8 1.7382110 3
## 1016 8 1.7382110 3
## 1017 8 1.7382110 3
## 1018 8 1.7382110 3
## 1019 8 1.7382110 3
## 1020 8 1.7382110 3
## 1021 8 1.7382110 3
## 1022 8 1.7382110 3
## 1023 8 1.7382110 3
## 1024 8 1.7382110 3
## 1025 8 1.7382110 3
## 1026 8 1.7382110 3
## 1027 201 43.6725400 48
## 1028 241 52.3636000 57
## 1029 53 11.5156500 14
## 1030 53 11.5156500 14
## 1031 28 6.0837370 8
## 1032 28 6.0837370 8
## 1033 28 6.0837370 8
## 1034 28 6.0837370 8
## 1035 24 5.2146320 7
## 1036 24 5.2146320 7
## 1037 24 5.2146320 7
## 1038 24 5.2146320 7
## 1039 24 5.2146320 7
## 1040 12 2.6073160 4
## 1041 12 2.6073160 4
## 1042 12 2.6073160 4
## 1043 12 2.6073160 4
## 1044 12 2.6073160 4
## 1045 12 2.6073160 4
## 1046 12 2.6073160 4
## 1047 12 2.6073160 4
## 1048 12 2.6073160 4
## 1049 12 2.6073160 4
## 1050 12 2.6073160 4
## 1051 12 2.6073160 4
## 1052 12 2.6073160 4
## 1053 12 2.6073160 4
## 1054 12 2.6073160 4
## 1055 12 2.6073160 4
## 1056 12 2.6073160 4
## 1057 12 2.6073160 4
## 1058 79 17.1648300 20
## 1059 79 17.1648300 20
## 1060 20 4.3455270 6
## 1061 20 4.3455270 6
## 1062 20 4.3455270 6
## 1063 16 3.4764210 5
## 1064 16 3.4764210 5
## 1065 16 3.4764210 5
## 1066 16 3.4764210 5
## 1067 16 3.4764210 5
## 1068 16 3.4764210 5
## 1069 16 3.4764210 5
## 1070 16 3.4764210 5
## 1071 16 3.4764210 5
## 1072 16 3.4764210 5
## 1073 16 3.4764210 5
## 1074 16 3.4764210 5
## 1075 58 12.6020300 15
## 1076 41 8.9083300 11
## 1077 41 8.9083300 11
## 1078 119 25.8558800 29
## 1079 37 8.0392240 10
## 1080 37 8.0392240 10
## 1081 527 114.5046000 120
## 1082 33 7.1701190 9
## 1083 33 7.1701190 9
## 1084 33 7.1701190 9
## 1085 50 10.8638200 13
## 1086 63 13.6884100 16
## 1087 76 16.5130000 19
## 1088 29 6.3010140 8
## 1089 29 6.3010140 8
## 1090 29 6.3010140 8
## 1091 29 6.3010140 8
## 1092 29 6.3010140 8
## 1093 29 6.3010140 8
## 1094 29 6.3010140 8
## 1095 46 9.9947110 12
## 1096 46 9.9947110 12
## 1097 85 18.4684900 21
## 1098 59 12.8193000 15
## 1099 72 15.6439000 18
## 1100 25 5.4319080 7
## 1101 25 5.4319080 7
## 1102 25 5.4319080 7
## 1103 42 9.1256060 11
## 1104 21 4.5628030 6
## 1105 21 4.5628030 6
## 1106 21 4.5628030 6
## 1107 21 4.5628030 6
## 1108 55 11.9502000 14
## 1109 5 1.0863820 2
## 1110 5 1.0863820 2
## 1111 5 1.0863820 2
## 1112 5 1.0863820 2
## 1113 5 1.0863820 2
## 1114 5 1.0863820 2
## 1115 5 1.0863820 2
## 1116 5 1.0863820 2
## 1117 5 1.0863820 2
## 1118 5 1.0863820 2
## 1119 5 1.0863820 2
## 1120 5 1.0863820 2
## 1121 5 1.0863820 2
## 1122 5 1.0863820 2
## 1123 5 1.0863820 2
## 1124 5 1.0863820 2
## 1125 5 1.0863820 2
## 1126 5 1.0863820 2
## 1127 5 1.0863820 2
## 1128 5 1.0863820 2
## 1129 5 1.0863820 2
## 1130 5 1.0863820 2
## 1131 5 1.0863820 2
## 1132 5 1.0863820 2
## 1133 5 1.0863820 2
## 1134 5 1.0863820 2
## 1135 5 1.0863820 2
## 1136 5 1.0863820 2
## 1137 5 1.0863820 2
## 1138 5 1.0863820 2
## 1139 5 1.0863820 2
## 1140 5 1.0863820 2
## 1141 5 1.0863820 2
## 1142 5 1.0863820 2
## 1143 5 1.0863820 2
## 1144 5 1.0863820 2
## 1145 5 1.0863820 2
## 1146 5 1.0863820 2
## 1147 5 1.0863820 2
## 1148 5 1.0863820 2
## 1149 5 1.0863820 2
## 1150 5 1.0863820 2
## 1151 5 1.0863820 2
## 1152 5 1.0863820 2
## 1153 5 1.0863820 2
## 1154 5 1.0863820 2
## 1155 5 1.0863820 2
## 1156 5 1.0863820 2
## 1157 5 1.0863820 2
## 1158 5 1.0863820 2
## 1159 5 1.0863820 2
## 1160 5 1.0863820 2
## 1161 5 1.0863820 2
## 1162 5 1.0863820 2
## 1163 5 1.0863820 2
## 1164 5 1.0863820 2
## 1165 38 8.2565010 10
## 1166 38 8.2565010 10
## 1167 17 3.6936980 5
## 1168 17 3.6936980 5
## 1169 17 3.6936980 5
## 1170 17 3.6936980 5
## 1171 17 3.6936980 5
## 1172 17 3.6936980 5
## 1173 17 3.6936980 5
## 1174 17 3.6936980 5
## 1175 17 3.6936980 5
## 1176 51 11.0810900 13
## 1177 51 11.0810900 13
## 1178 13 2.8245920 4
## 1179 13 2.8245920 4
## 1180 13 2.8245920 4
## 1181 13 2.8245920 4
## 1182 13 2.8245920 4
## 1183 13 2.8245920 4
## 1184 540 117.3292000 122
## 1185 9 1.9554870 3
## 1186 9 1.9554870 3
## 1187 9 1.9554870 3
## 1188 9 1.9554870 3
## 1189 9 1.9554870 3
## 1190 9 1.9554870 3
## 1191 9 1.9554870 3
## 1192 9 1.9554870 3
## 1193 9 1.9554870 3
## 1194 9 1.9554870 3
## 1195 9 1.9554870 3
## 1196 9 1.9554870 3
## 1197 9 1.9554870 3
## 1198 9 1.9554870 3
## 1199 9 1.9554870 3
## 1200 9 1.9554870 3
## 1201 9 1.9554870 3
## 1202 9 1.9554870 3
## 1203 9 1.9554870 3
## 1204 9 1.9554870 3
## 1205 9 1.9554870 3
## 1206 9 1.9554870 3
## 1207 9 1.9554870 3
## 1208 9 1.9554870 3
## 1209 9 1.9554870 3
## 1210 9 1.9554870 3
## 1211 9 1.9554870 3
## 1212 9 1.9554870 3
## 1213 9 1.9554870 3
## 1214 988 214.6690000 220
## 1215 34 7.3873950 9
## 1216 34 7.3873950 9
## 1217 34 7.3873950 9
## 1218 34 7.3873950 9
## 1219 157 34.1123800 37
## 1220 60 13.0365800 15
## 1221 60 13.0365800 15
## 1222 47 10.2119900 12
## 1223 47 10.2119900 12
## 1224 47 10.2119900 12
## 1225 47 10.2119900 12
## 1226 778 169.0410000 174
## 1227 751 163.1745000 168
## 1228 30 6.5182900 8
## 1229 30 6.5182900 8
## 1230 30 6.5182900 8
## 1231 43 9.3428820 11
## 1232 43 9.3428820 11
## 1233 109 23.6831200 26
## 1234 109 23.6831200 26
## 1235 26 5.6491850 7
## 1236 221 48.0180700 51
## 1237 39 8.4737770 10
## 1238 39 8.4737770 10
## 1239 262 56.9264000 60
## 1240 61 13.2538600 15
## 1241 61 13.2538600 15
## 1242 61 13.2538600 15
## 1243 22 4.7800790 6
## 1244 22 4.7800790 6
## 1245 22 4.7800790 6
## 1246 22 4.7800790 6
## 1247 22 4.7800790 6
## 1248 22 4.7800790 6
## 1249 22 4.7800790 6
## 1250 22 4.7800790 6
## 1251 22 4.7800790 6
## 1252 22 4.7800790 6
## 1253 48 10.4292600 12
## 1254 48 10.4292600 12
## 1255 48 10.4292600 12
## 1256 35 7.6046720 9
## 1257 35 7.6046720 9
## 1258 70 15.2093400 17
## 1259 101 21.9449100 24
## 1260 204 44.3243700 47
## 1261 128 27.8113700 30
## 1262 18 3.9109740 5
## 1263 18 3.9109740 5
## 1264 18 3.9109740 5
## 1265 18 3.9109740 5
## 1266 209 45.4107500 48
## 1267 998 216.8418000 221
## 1268 44 9.5601590 11
## 1269 66 14.3402400 16
## 1270 31 6.7355660 8
## 1271 31 6.7355660 8
## 1272 31 6.7355660 8
## 1273 31 6.7355660 8
## 1274 948 205.9780000 210
## 1275 75 16.2957200 18
## 1276 223 48.4526200 51
## 1277 509 110.5937000 114
## 1278 205 44.5416500 47
## 1279 14 3.0418690 4
## 1280 14 3.0418690 4
## 1281 14 3.0418690 4
## 1282 14 3.0418690 4
## 1283 14 3.0418690 4
## 1284 14 3.0418690 4
## 1285 14 3.0418690 4
## 1286 14 3.0418690 4
## 1287 62 13.4711300 15
## 1288 305 66.2692800 69
## 1289 71 15.4266200 17
## 1290 27 5.8664610 7
## 1291 27 5.8664610 7
## 1292 27 5.8664610 7
## 1293 80 17.3821100 19
## 1294 80 17.3821100 19
## 1295 49 10.6465400 12
## 1296 49 10.6465400 12
## 1297 49 10.6465400 12
## 1298 49 10.6465400 12
## 1299 10 2.1727630 3
## 1300 10 2.1727630 3
## 1301 10 2.1727630 3
## 1302 10 2.1727630 3
## 1303 10 2.1727630 3
## 1304 10 2.1727630 3
## 1305 10 2.1727630 3
## 1306 10 2.1727630 3
## 1307 10 2.1727630 3
## 1308 10 2.1727630 3
## 1309 10 2.1727630 3
## 1310 10 2.1727630 3
## 1311 10 2.1727630 3
## 1312 10 2.1727630 3
## 1313 10 2.1727630 3
## 1314 10 2.1727630 3
## 1315 10 2.1727630 3
## 1316 10 2.1727630 3
## 1317 10 2.1727630 3
## 1318 10 2.1727630 3
## 1319 10 2.1727630 3
## 1320 10 2.1727630 3
## 1321 10 2.1727630 3
## 1322 10 2.1727630 3
## 1323 10 2.1727630 3
## 1324 10 2.1727630 3
## 1325 10 2.1727630 3
## 1326 10 2.1727630 3
## 1327 10 2.1727630 3
## 1328 10 2.1727630 3
## 1329 107 23.2485700 25
## 1330 58 12.6020300 14
## 1331 58 12.6020300 14
## 1332 36 7.8219480 9
## 1333 36 7.8219480 9
## 1334 36 7.8219480 9
## 1335 36 7.8219480 9
## 1336 67 14.5575100 16
## 1337 23 4.9973560 6
## 1338 23 4.9973560 6
## 1339 193 41.9343300 44
## 1340 193 41.9343300 44
## 1341 85 18.4684900 20
## 1342 85 18.4684900 20
## 1343 6 1.3036580 2
## 1344 6 1.3036580 2
## 1345 6 1.3036580 2
## 1346 6 1.3036580 2
## 1347 6 1.3036580 2
## 1348 6 1.3036580 2
## 1349 6 1.3036580 2
## 1350 6 1.3036580 2
## 1351 6 1.3036580 2
## 1352 6 1.3036580 2
## 1353 6 1.3036580 2
## 1354 6 1.3036580 2
## 1355 6 1.3036580 2
## 1356 6 1.3036580 2
## 1357 6 1.3036580 2
## 1358 6 1.3036580 2
## 1359 6 1.3036580 2
## 1360 6 1.3036580 2
## 1361 6 1.3036580 2
## 1362 6 1.3036580 2
## 1363 6 1.3036580 2
## 1364 6 1.3036580 2
## 1365 6 1.3036580 2
## 1366 6 1.3036580 2
## 1367 6 1.3036580 2
## 1368 6 1.3036580 2
## 1369 6 1.3036580 2
## 1370 6 1.3036580 2
## 1371 6 1.3036580 2
## 1372 6 1.3036580 2
## 1373 6 1.3036580 2
## 1374 6 1.3036580 2
## 1375 6 1.3036580 2
## 1376 6 1.3036580 2
## 1377 6 1.3036580 2
## 1378 6 1.3036580 2
## 1379 6 1.3036580 2
## 1380 6 1.3036580 2
## 1381 6 1.3036580 2
## 1382 6 1.3036580 2
## 1383 6 1.3036580 2
## 1384 6 1.3036580 2
## 1385 6 1.3036580 2
## 1386 6 1.3036580 2
## 1387 6 1.3036580 2
## 1388 6 1.3036580 2
## 1389 6 1.3036580 2
## 1390 6 1.3036580 2
## 1391 6 1.3036580 2
## 1392 6 1.3036580 2
## 1393 6 1.3036580 2
## 1394 6 1.3036580 2
## 1395 6 1.3036580 2
## 1396 6 1.3036580 2
## 1397 6 1.3036580 2
## 1398 6 1.3036580 2
## 1399 2 0.4345527 1
## 1400 2 0.4345527 1
## 1401 2 0.4345527 1
## 1402 2 0.4345527 1
## 1403 2 0.4345527 1
## 1404 2 0.4345527 1
## 1405 2 0.4345527 1
## 1406 2 0.4345527 1
## 1407 2 0.4345527 1
## 1408 2 0.4345527 1
## 1409 2 0.4345527 1
## 1410 2 0.4345527 1
## 1411 2 0.4345527 1
## 1412 2 0.4345527 1
## 1413 2 0.4345527 1
## 1414 2 0.4345527 1
## 1415 2 0.4345527 1
## 1416 2 0.4345527 1
## 1417 2 0.4345527 1
## 1418 2 0.4345527 1
## 1419 2 0.4345527 1
## 1420 2 0.4345527 1
## 1421 2 0.4345527 1
## 1422 2 0.4345527 1
## 1423 2 0.4345527 1
## 1424 2 0.4345527 1
## 1425 2 0.4345527 1
## 1426 2 0.4345527 1
## 1427 2 0.4345527 1
## 1428 2 0.4345527 1
## 1429 2 0.4345527 1
## 1430 2 0.4345527 1
## 1431 2 0.4345527 1
## 1432 2 0.4345527 1
## 1433 2 0.4345527 1
## 1434 2 0.4345527 1
## 1435 2 0.4345527 1
## 1436 2 0.4345527 1
## 1437 2 0.4345527 1
## 1438 2 0.4345527 1
## 1439 2 0.4345527 1
## 1440 2 0.4345527 1
## 1441 2 0.4345527 1
## 1442 2 0.4345527 1
## 1443 2 0.4345527 1
## 1444 2 0.4345527 1
## 1445 2 0.4345527 1
## 1446 2 0.4345527 1
## 1447 2 0.4345527 1
## 1448 2 0.4345527 1
## 1449 2 0.4345527 1
## 1450 2 0.4345527 1
## 1451 2 0.4345527 1
## 1452 2 0.4345527 1
## 1453 2 0.4345527 1
## 1454 2 0.4345527 1
## 1455 2 0.4345527 1
## 1456 2 0.4345527 1
## 1457 2 0.4345527 1
## 1458 2 0.4345527 1
## 1459 2 0.4345527 1
## 1460 2 0.4345527 1
## 1461 2 0.4345527 1
## 1462 2 0.4345527 1
## 1463 2 0.4345527 1
## 1464 2 0.4345527 1
## 1465 2 0.4345527 1
## 1466 2 0.4345527 1
## 1467 2 0.4345527 1
## 1468 2 0.4345527 1
## 1469 2 0.4345527 1
## 1470 2 0.4345527 1
## 1471 2 0.4345527 1
## 1472 2 0.4345527 1
## 1473 2 0.4345527 1
## 1474 2 0.4345527 1
## 1475 2 0.4345527 1
## 1476 2 0.4345527 1
## 1477 2 0.4345527 1
## 1478 2 0.4345527 1
## 1479 2 0.4345527 1
## 1480 2 0.4345527 1
## 1481 2 0.4345527 1
## 1482 2 0.4345527 1
## 1483 2 0.4345527 1
## 1484 2 0.4345527 1
## 1485 2 0.4345527 1
## 1486 2 0.4345527 1
## 1487 2 0.4345527 1
## 1488 2 0.4345527 1
## 1489 2 0.4345527 1
## 1490 2 0.4345527 1
## 1491 2 0.4345527 1
## 1492 2 0.4345527 1
## 1493 2 0.4345527 1
## 1494 2 0.4345527 1
## 1495 2 0.4345527 1
## 1496 2 0.4345527 1
## 1497 2 0.4345527 1
## 1498 2 0.4345527 1
## 1499 2 0.4345527 1
## 1500 2 0.4345527 1
## 1501 2 0.4345527 1
## 1502 2 0.4345527 1
## 1503 2 0.4345527 1
## 1504 2 0.4345527 1
## 1505 2 0.4345527 1
## 1506 2 0.4345527 1
## 1507 2 0.4345527 1
## 1508 2 0.4345527 1
## 1509 2 0.4345527 1
## 1510 2 0.4345527 1
## 1511 2 0.4345527 1
## 1512 2 0.4345527 1
## 1513 2 0.4345527 1
## 1514 2 0.4345527 1
## 1515 2 0.4345527 1
## 1516 2 0.4345527 1
## 1517 2 0.4345527 1
## 1518 2 0.4345527 1
## 1519 2 0.4345527 1
## 1520 2 0.4345527 1
## 1521 2 0.4345527 1
## 1522 2 0.4345527 1
## 1523 2 0.4345527 1
## 1524 2 0.4345527 1
## 1525 2 0.4345527 1
## 1526 2 0.4345527 1
## 1527 2 0.4345527 1
## 1528 2 0.4345527 1
## 1529 2 0.4345527 1
## 1530 2 0.4345527 1
## 1531 2 0.4345527 1
## 1532 2 0.4345527 1
## 1533 2 0.4345527 1
## 1534 2 0.4345527 1
## 1535 2 0.4345527 1
## 1536 2 0.4345527 1
## 1537 2 0.4345527 1
## 1538 63 13.6884100 15
## 1539 180 39.1097400 41
## 1540 32 6.9528430 8
## 1541 32 6.9528430 8
## 1542 19 4.1282500 5
## 1543 19 4.1282500 5
## 1544 19 4.1282500 5
## 1545 19 4.1282500 5
## 1546 19 4.1282500 5
## 1547 19 4.1282500 5
## 1548 19 4.1282500 5
## 1549 19 4.1282500 5
## 1550 19 4.1282500 5
## 1551 19 4.1282500 5
## 1552 367 79.7404100 82
## 1553 50 10.8638200 12
## 1554 50 10.8638200 12
## 1555 50 10.8638200 12
## 1556 59 12.8193000 14
## 1557 131 28.4632000 30
## 1558 68 14.7747900 16
## 1559 113 24.5522300 26
## 1560 28 6.0837370 7
## 1561 28 6.0837370 7
## 1562 28 6.0837370 7
## 1563 28 6.0837370 7
## 1564 28 6.0837370 7
## 1565 28 6.0837370 7
## 1566 37 8.0392240 9
## 1567 37 8.0392240 9
## 1568 37 8.0392240 9
## 1569 55 11.9502000 13
## 1570 15 3.2591450 4
## 1571 15 3.2591450 4
## 1572 15 3.2591450 4
## 1573 15 3.2591450 4
## 1574 15 3.2591450 4
## 1575 15 3.2591450 4
## 1576 15 3.2591450 4
## 1577 15 3.2591450 4
## 1578 15 3.2591450 4
## 1579 15 3.2591450 4
## 1580 15 3.2591450 4
## 1581 15 3.2591450 4
## 1582 15 3.2591450 4
## 1583 15 3.2591450 4
## 1584 64 13.9056900 15
## 1585 64 13.9056900 15
## 1586 64 13.9056900 15
## 1587 250 54.3190800 56
## 1588 150 32.5914500 34
## 1589 314 68.2247700 70
## 1590 24 5.2146320 6
## 1591 24 5.2146320 6
## 1592 24 5.2146320 6
## 1593 24 5.2146320 6
## 1594 24 5.2146320 6
## 1595 24 5.2146320 6
## 1596 24 5.2146320 6
## 1597 24 5.2146320 6
## 1598 24 5.2146320 6
## 1599 24 5.2146320 6
## 1600 24 5.2146320 6
## 1601 24 5.2146320 6
## 1602 164 35.6333200 37
## 1603 246 53.4499800 55
## 1604 33 7.1701190 8
## 1605 33 7.1701190 8
## 1606 69 14.9920700 16
## 1607 60 13.0365800 14
## 1608 60 13.0365800 14
## 1609 51 11.0810900 12
## 1610 51 11.0810900 12
## 1611 51 11.0810900 12
## 1612 137 29.7668600 31
## 1613 160 34.7642100 36
## 1614 92 19.9894200 21
## 1615 11 2.3900400 3
## 1616 11 2.3900400 3
## 1617 11 2.3900400 3
## 1618 11 2.3900400 3
## 1619 11 2.3900400 3
## 1620 11 2.3900400 3
## 1621 11 2.3900400 3
## 1622 11 2.3900400 3
## 1623 11 2.3900400 3
## 1624 11 2.3900400 3
## 1625 11 2.3900400 3
## 1626 11 2.3900400 3
## 1627 11 2.3900400 3
## 1628 11 2.3900400 3
## 1629 11 2.3900400 3
## 1630 11 2.3900400 3
## 1631 11 2.3900400 3
## 1632 11 2.3900400 3
## 1633 11 2.3900400 3
## 1634 11 2.3900400 3
## 1635 11 2.3900400 3
## 1636 11 2.3900400 3
## 1637 11 2.3900400 3
## 1638 247 53.6672500 55
## 1639 174 37.8060800 39
## 1640 174 37.8060800 39
## 1641 165 35.8505900 37
## 1642 165 35.8505900 37
## 1643 115 24.9867800 26
## 1644 20 4.3455270 5
## 1645 20 4.3455270 5
## 1646 20 4.3455270 5
## 1647 20 4.3455270 5
## 1648 20 4.3455270 5
## 1649 20 4.3455270 5
## 1650 20 4.3455270 5
## 1651 20 4.3455270 5
## 1652 20 4.3455270 5
## 1653 20 4.3455270 5
## 1654 20 4.3455270 5
## 1655 20 4.3455270 5
## 1656 20 4.3455270 5
## 1657 20 4.3455270 5
## 1658 20 4.3455270 5
## 1659 20 4.3455270 5
## 1660 20 4.3455270 5
## 1661 47 10.2119900 11
## 1662 38 8.2565010 9
## 1663 38 8.2565010 9
## 1664 29 6.3010140 7
## 1665 29 6.3010140 7
## 1666 29 6.3010140 7
## 1667 29 6.3010140 7
## 1668 29 6.3010140 7
## 1669 29 6.3010140 7
## 1670 29 6.3010140 7
## 1671 29 6.3010140 7
## 1672 138 29.9841300 31
## 1673 335 72.7875700 74
## 1674 70 15.2093400 16
## 1675 70 15.2093400 16
## 1676 349 75.8294400 77
## 1677 134 29.1150300 30
## 1678 52 11.2983700 12
## 1679 52 11.2983700 12
## 1680 52 11.2983700 12
## 1681 52 11.2983700 12
## 1682 43 9.3428820 10
## 1683 43 9.3428820 10
## 1684 43 9.3428820 10
## 1685 299 64.9656200 66
## 1686 34 7.3873950 8
## 1687 34 7.3873950 8
## 1688 368 79.9576900 81
## 1689 25 5.4319080 6
## 1690 25 5.4319080 6
## 1691 25 5.4319080 6
## 1692 25 5.4319080 6
## 1693 7 1.5209340 2
## 1694 7 1.5209340 2
## 1695 7 1.5209340 2
## 1696 7 1.5209340 2
## 1697 7 1.5209340 2
## 1698 7 1.5209340 2
## 1699 7 1.5209340 2
## 1700 7 1.5209340 2
## 1701 7 1.5209340 2
## 1702 7 1.5209340 2
## 1703 7 1.5209340 2
## 1704 7 1.5209340 2
## 1705 7 1.5209340 2
## 1706 7 1.5209340 2
## 1707 7 1.5209340 2
## 1708 7 1.5209340 2
## 1709 7 1.5209340 2
## 1710 7 1.5209340 2
## 1711 7 1.5209340 2
## 1712 7 1.5209340 2
## 1713 7 1.5209340 2
## 1714 7 1.5209340 2
## 1715 7 1.5209340 2
## 1716 7 1.5209340 2
## 1717 7 1.5209340 2
## 1718 7 1.5209340 2
## 1719 7 1.5209340 2
## 1720 7 1.5209340 2
## 1721 7 1.5209340 2
## 1722 7 1.5209340 2
## 1723 7 1.5209340 2
## 1724 7 1.5209340 2
## 1725 7 1.5209340 2
## 1726 7 1.5209340 2
## 1727 7 1.5209340 2
## 1728 7 1.5209340 2
## 1729 7 1.5209340 2
## 1730 7 1.5209340 2
## 1731 7 1.5209340 2
## 1732 7 1.5209340 2
## 1733 7 1.5209340 2
## 1734 7 1.5209340 2
## 1735 7 1.5209340 2
## 1736 7 1.5209340 2
## 1737 7 1.5209340 2
## 1738 7 1.5209340 2
## 1739 7 1.5209340 2
## 1740 7 1.5209340 2
## 1741 7 1.5209340 2
## 1742 7 1.5209340 2
## 1743 98 21.2930800 22
## 1744 16 3.4764210 4
## 1745 16 3.4764210 4
## 1746 16 3.4764210 4
## 1747 16 3.4764210 4
## 1748 16 3.4764210 4
## 1749 16 3.4764210 4
## 1750 16 3.4764210 4
## 1751 16 3.4764210 4
## 1752 16 3.4764210 4
## 1753 16 3.4764210 4
## 1754 16 3.4764210 4
## 1755 16 3.4764210 4
## 1756 16 3.4764210 4
## 1757 16 3.4764210 4
## 1758 16 3.4764210 4
## 1759 16 3.4764210 4
## 1760 16 3.4764210 4
## 1761 153 33.2432800 34
## 1762 57 12.3847500 13
## 1763 57 12.3847500 13
## 1764 286 62.1410300 63
## 1765 1164 252.9097000 254
## 1766 48 10.4292600 11
## 1767 48 10.4292600 11
## 1768 571 124.0648000 125
## 1769 103 22.3794600 23
## 1770 71 15.4266200 16
## 1771 181 39.3270200 40
## 1772 39 8.4737770 9
## 1773 39 8.4737770 9
## 1774 39 8.4737770 9
## 1775 397 86.2587000 87
## 1776 62 13.4711300 14
## 1777 30 6.5182900 7
## 1778 30 6.5182900 7
## 1779 30 6.5182900 7
## 1780 30 6.5182900 7
## 1781 30 6.5182900 7
## 1782 53 11.5156500 12
## 1783 53 11.5156500 12
## 1784 53 11.5156500 12
## 1785 338 73.4394000 74
## 1786 21 4.5628030 5
## 1787 21 4.5628030 5
## 1788 21 4.5628030 5
## 1789 21 4.5628030 5
## 1790 21 4.5628030 5
## 1791 21 4.5628030 5
## 1792 21 4.5628030 5
## 1793 21 4.5628030 5
## 1794 44 9.5601590 10
## 1795 44 9.5601590 10
## 1796 44 9.5601590 10
## 1797 44 9.5601590 10
## 1798 605 131.4522000 132
## 1799 297 64.5310700 65
## 1800 35 7.6046720 8
## 1801 35 7.6046720 8
## 1802 35 7.6046720 8
## 1803 35 7.6046720 8
## 1804 12 2.6073160 3
## 1805 12 2.6073160 3
## 1806 12 2.6073160 3
## 1807 12 2.6073160 3
## 1808 12 2.6073160 3
## 1809 12 2.6073160 3
## 1810 12 2.6073160 3
## 1811 12 2.6073160 3
## 1812 12 2.6073160 3
## 1813 12 2.6073160 3
## 1814 12 2.6073160 3
## 1815 12 2.6073160 3
## 1816 12 2.6073160 3
## 1817 12 2.6073160 3
## 1818 12 2.6073160 3
## 1819 12 2.6073160 3
## 1820 12 2.6073160 3
## 1821 12 2.6073160 3
## 1822 12 2.6073160 3
## 1823 95 20.6412500 21
## 1824 49 10.6465400 11
## 1825 49 10.6465400 11
## 1826 49 10.6465400 11
## 1827 49 10.6465400 11
## 1828 26 5.6491850 6
## 1829 26 5.6491850 6
## 1830 26 5.6491850 6
## 1831 26 5.6491850 6
## 1832 26 5.6491850 6
## 1833 63 13.6884100 14
## 1834 40 8.6910530 9
## 1835 40 8.6910530 9
## 1836 54 11.7329200 12
## 1837 54 11.7329200 12
## 1838 3 0.6518290 1
## 1839 3 0.6518290 1
## 1840 3 0.6518290 1
## 1841 3 0.6518290 1
## 1842 3 0.6518290 1
## 1843 3 0.6518290 1
## 1844 3 0.6518290 1
## 1845 3 0.6518290 1
## 1846 3 0.6518290 1
## 1847 3 0.6518290 1
## 1848 3 0.6518290 1
## 1849 3 0.6518290 1
## 1850 3 0.6518290 1
## 1851 3 0.6518290 1
## 1852 3 0.6518290 1
## 1853 3 0.6518290 1
## 1854 3 0.6518290 1
## 1855 3 0.6518290 1
## 1856 3 0.6518290 1
## 1857 3 0.6518290 1
## 1858 3 0.6518290 1
## 1859 3 0.6518290 1
## 1860 3 0.6518290 1
## 1861 3 0.6518290 1
## 1862 3 0.6518290 1
## 1863 3 0.6518290 1
## 1864 3 0.6518290 1
## 1865 3 0.6518290 1
## 1866 3 0.6518290 1
## 1867 3 0.6518290 1
## 1868 3 0.6518290 1
## 1869 3 0.6518290 1
## 1870 3 0.6518290 1
## 1871 3 0.6518290 1
## 1872 3 0.6518290 1
## 1873 3 0.6518290 1
## 1874 3 0.6518290 1
## 1875 3 0.6518290 1
## 1876 3 0.6518290 1
## 1877 3 0.6518290 1
## 1878 3 0.6518290 1
## 1879 3 0.6518290 1
## 1880 3 0.6518290 1
## 1881 3 0.6518290 1
## 1882 3 0.6518290 1
## 1883 3 0.6518290 1
## 1884 3 0.6518290 1
## 1885 3 0.6518290 1
## 1886 3 0.6518290 1
## 1887 3 0.6518290 1
## 1888 3 0.6518290 1
## 1889 3 0.6518290 1
## 1890 3 0.6518290 1
## 1891 3 0.6518290 1
## 1892 3 0.6518290 1
## 1893 3 0.6518290 1
## 1894 3 0.6518290 1
## 1895 3 0.6518290 1
## 1896 3 0.6518290 1
## 1897 3 0.6518290 1
## 1898 3 0.6518290 1
## 1899 3 0.6518290 1
## 1900 3 0.6518290 1
## 1901 3 0.6518290 1
## 1902 3 0.6518290 1
## 1903 3 0.6518290 1
## 1904 3 0.6518290 1
## 1905 3 0.6518290 1
## 1906 3 0.6518290 1
## 1907 3 0.6518290 1
## 1908 3 0.6518290 1
## 1909 3 0.6518290 1
## 1910 3 0.6518290 1
## 1911 3 0.6518290 1
## 1912 3 0.6518290 1
## 1913 3 0.6518290 1
## 1914 3 0.6518290 1
## 1915 3 0.6518290 1
## 1916 3 0.6518290 1
## 1917 3 0.6518290 1
## 1918 3 0.6518290 1
## 1919 3 0.6518290 1
## 1920 3 0.6518290 1
## 1921 3 0.6518290 1
## 1922 3 0.6518290 1
## 1923 3 0.6518290 1
## 1924 3 0.6518290 1
## 1925 3 0.6518290 1
## 1926 3 0.6518290 1
## 1927 3 0.6518290 1
## 1928 3 0.6518290 1
## 1929 3 0.6518290 1
## 1930 3 0.6518290 1
## 1931 3 0.6518290 1
## 1932 3 0.6518290 1
## 1933 3 0.6518290 1
## 1934 3 0.6518290 1
## 1935 3 0.6518290 1
## 1936 3 0.6518290 1
## 1937 3 0.6518290 1
## 1938 3 0.6518290 1
## 1939 3 0.6518290 1
## 1940 3 0.6518290 1
## 1941 3 0.6518290 1
## 1942 3 0.6518290 1
## 1943 3 0.6518290 1
## 1944 3 0.6518290 1
## 1945 3 0.6518290 1
## 1946 3 0.6518290 1
## 1947 3 0.6518290 1
## 1948 3 0.6518290 1
## 1949 3 0.6518290 1
## 1950 3 0.6518290 1
## 1951 3 0.6518290 1
## 1952 3 0.6518290 1
## 1953 3 0.6518290 1
## 1954 3 0.6518290 1
## 1955 68 14.7747900 15
## 1956 17 3.6936980 4
## 1957 17 3.6936980 4
## 1958 17 3.6936980 4
## 1959 17 3.6936980 4
## 1960 17 3.6936980 4
## 1961 17 3.6936980 4
## 1962 17 3.6936980 4
## 1963 17 3.6936980 4
## 1964 17 3.6936980 4
## 1965 17 3.6936980 4
## 1966 17 3.6936980 4
## 1967 17 3.6936980 4
## 1968 17 3.6936980 4
## 1969 239 51.9290400 52
## 1970 31 6.7355660 7
## 1971 31 6.7355660 7
## 1972 31 6.7355660 7
## 1973 82 17.8166600 18
## 1974 82 17.8166600 18
## 1975 59 12.8193000 13
## 1976 346 75.1776100 75
## 1977 323 70.1802600 70
## 1978 323 70.1802600 70
## 1979 36 7.8219480 8
## 1980 36 7.8219480 8
## 1981 50 10.8638200 11
## 1982 50 10.8638200 11
## 1983 50 10.8638200 11
## 1984 22 4.7800790 5
## 1985 22 4.7800790 5
## 1986 22 4.7800790 5
## 1987 22 4.7800790 5
## 1988 22 4.7800790 5
## 1989 22 4.7800790 5
## 1990 22 4.7800790 5
## 1991 22 4.7800790 5
## 1992 64 13.9056900 14
## 1993 64 13.9056900 14
## 1994 129 28.0286500 28
## 1995 351 76.2639900 76
## 1996 388 84.3032200 84
## 1997 143 31.0705200 31
## 1998 143 31.0705200 31
## 1999 8 1.7382110 2
## 2000 8 1.7382110 2
## 2001 8 1.7382110 2
## 2002 8 1.7382110 2
## 2003 8 1.7382110 2
## 2004 8 1.7382110 2
## 2005 8 1.7382110 2
## 2006 8 1.7382110 2
## 2007 8 1.7382110 2
## 2008 8 1.7382110 2
## 2009 8 1.7382110 2
## 2010 8 1.7382110 2
## 2011 8 1.7382110 2
## 2012 8 1.7382110 2
## 2013 8 1.7382110 2
## 2014 8 1.7382110 2
## 2015 8 1.7382110 2
## 2016 8 1.7382110 2
## 2017 8 1.7382110 2
## 2018 8 1.7382110 2
## 2019 8 1.7382110 2
## 2020 8 1.7382110 2
## 2021 8 1.7382110 2
## 2022 8 1.7382110 2
## 2023 8 1.7382110 2
## 2024 8 1.7382110 2
## 2025 8 1.7382110 2
## 2026 8 1.7382110 2
## 2027 8 1.7382110 2
## 2028 8 1.7382110 2
## 2029 8 1.7382110 2
## 2030 8 1.7382110 2
## 2031 8 1.7382110 2
## 2032 8 1.7382110 2
## 2033 8 1.7382110 2
## 2034 8 1.7382110 2
## 2035 55 11.9502000 12
## 2036 41 8.9083300 9
## 2037 41 8.9083300 9
## 2038 41 8.9083300 9
## 2039 41 8.9083300 9
## 2040 41 8.9083300 9
## 2041 41 8.9083300 9
## 2042 27 5.8664610 6
## 2043 27 5.8664610 6
## 2044 27 5.8664610 6
## 2045 27 5.8664610 6
## 2046 27 5.8664610 6
## 2047 27 5.8664610 6
## 2048 292 63.4446900 63
## 2049 153 33.2432800 33
## 2050 60 13.0365800 13
## 2051 60 13.0365800 13
## 2052 116 25.2040500 25
## 2053 46 9.9947110 10
## 2054 13 2.8245920 3
## 2055 13 2.8245920 3
## 2056 13 2.8245920 3
## 2057 13 2.8245920 3
## 2058 13 2.8245920 3
## 2059 13 2.8245920 3
## 2060 13 2.8245920 3
## 2061 13 2.8245920 3
## 2062 13 2.8245920 3
## 2063 13 2.8245920 3
## 2064 13 2.8245920 3
## 2065 13 2.8245920 3
## 2066 13 2.8245920 3
## 2067 13 2.8245920 3
## 2068 13 2.8245920 3
## 2069 13 2.8245920 3
## 2070 13 2.8245920 3
## 2071 13 2.8245920 3
## 2072 13 2.8245920 3
## 2073 13 2.8245920 3
## 2074 13 2.8245920 3
## 2075 13 2.8245920 3
## 2076 13 2.8245920 3
## 2077 13 2.8245920 3
## 2078 13 2.8245920 3
## 2079 13 2.8245920 3
## 2080 13 2.8245920 3
## 2081 13 2.8245920 3
## 2082 13 2.8245920 3
## 2083 13 2.8245920 3
## 2084 13 2.8245920 3
## 2085 32 6.9528430 7
## 2086 200 43.4552700 43
## 2087 121 26.2904400 26
## 2088 51 11.0810900 11
## 2089 284 61.7064800 61
## 2090 98 21.2930800 21
## 2091 37 8.0392240 8
## 2092 37 8.0392240 8
## 2093 18 3.9109740 4
## 2094 18 3.9109740 4
## 2095 18 3.9109740 4
## 2096 18 3.9109740 4
## 2097 18 3.9109740 4
## 2098 18 3.9109740 4
## 2099 18 3.9109740 4
## 2100 18 3.9109740 4
## 2101 18 3.9109740 4
## 2102 18 3.9109740 4
## 2103 18 3.9109740 4
## 2104 56 12.1674700 12
## 2105 117 25.4213300 25
## 2106 103 22.3794600 22
## 2107 103 22.3794600 22
## 2108 103 22.3794600 22
## 2109 103 22.3794600 22
## 2110 103 22.3794600 22
## 2111 75 16.2957200 16
## 2112 42 9.1256060 9
## 2113 23 4.9973560 5
## 2114 23 4.9973560 5
## 2115 23 4.9973560 5
## 2116 23 4.9973560 5
## 2117 23 4.9973560 5
## 2118 23 4.9973560 5
## 2119 549 119.2847000 118
## 2120 108 23.4658400 23
## 2121 80 17.3821100 17
## 2122 80 17.3821100 17
## 2123 197 42.8034400 42
## 2124 28 6.0837370 6
## 2125 28 6.0837370 6
## 2126 28 6.0837370 6
## 2127 28 6.0837370 6
## 2128 66 14.3402400 14
## 2129 85 18.4684900 18
## 2130 52 11.2983700 11
## 2131 33 7.1701190 7
## 2132 33 7.1701190 7
## 2133 33 7.1701190 7
## 2134 33 7.1701190 7
## 2135 33 7.1701190 7
## 2136 33 7.1701190 7
## 2137 33 7.1701190 7
## 2138 33 7.1701190 7
## 2139 33 7.1701190 7
## 2140 33 7.1701190 7
## 2141 90 19.5548700 19
## 2142 384 83.4341100 82
## 2143 76 16.5130000 16
## 2144 38 8.2565010 8
## 2145 38 8.2565010 8
## 2146 38 8.2565010 8
## 2147 898 195.1141000 193
## 2148 114 24.7695000 24
## 2149 43 9.3428820 9
## 2150 43 9.3428820 9
## 2151 100 21.7276300 21
## 2152 9 1.9554870 2
## 2153 9 1.9554870 2
## 2154 9 1.9554870 2
## 2155 9 1.9554870 2
## 2156 9 1.9554870 2
## 2157 9 1.9554870 2
## 2158 9 1.9554870 2
## 2159 9 1.9554870 2
## 2160 9 1.9554870 2
## 2161 9 1.9554870 2
## 2162 9 1.9554870 2
## 2163 9 1.9554870 2
## 2164 9 1.9554870 2
## 2165 9 1.9554870 2
## 2166 9 1.9554870 2
## 2167 9 1.9554870 2
## 2168 9 1.9554870 2
## 2169 9 1.9554870 2
## 2170 9 1.9554870 2
## 2171 9 1.9554870 2
## 2172 9 1.9554870 2
## 2173 9 1.9554870 2
## 2174 9 1.9554870 2
## 2175 9 1.9554870 2
## 2176 9 1.9554870 2
## 2177 9 1.9554870 2
## 2178 9 1.9554870 2
## 2179 9 1.9554870 2
## 2180 9 1.9554870 2
## 2181 9 1.9554870 2
## 2182 9 1.9554870 2
## 2183 9 1.9554870 2
## 2184 9 1.9554870 2
## 2185 9 1.9554870 2
## 2186 9 1.9554870 2
## 2187 9 1.9554870 2
## 2188 9 1.9554870 2
## 2189 9 1.9554870 2
## 2190 9 1.9554870 2
## 2191 9 1.9554870 2
## 2192 14 3.0418690 3
## 2193 14 3.0418690 3
## 2194 14 3.0418690 3
## 2195 14 3.0418690 3
## 2196 14 3.0418690 3
## 2197 14 3.0418690 3
## 2198 14 3.0418690 3
## 2199 14 3.0418690 3
## 2200 14 3.0418690 3
## 2201 14 3.0418690 3
## 2202 14 3.0418690 3
## 2203 14 3.0418690 3
## 2204 14 3.0418690 3
## 2205 14 3.0418690 3
## 2206 14 3.0418690 3
## 2207 14 3.0418690 3
## 2208 14 3.0418690 3
## 2209 14 3.0418690 3
## 2210 14 3.0418690 3
## 2211 67 14.5575100 14
## 2212 86 18.6857600 18
## 2213 19 4.1282500 4
## 2214 19 4.1282500 4
## 2215 19 4.1282500 4
## 2216 19 4.1282500 4
## 2217 19 4.1282500 4
## 2218 19 4.1282500 4
## 2219 19 4.1282500 4
## 2220 185 40.1961200 39
## 2221 124 26.9422700 26
## 2222 24 5.2146320 5
## 2223 24 5.2146320 5
## 2224 24 5.2146320 5
## 2225 24 5.2146320 5
## 2226 24 5.2146320 5
## 2227 24 5.2146320 5
## 2228 24 5.2146320 5
## 2229 24 5.2146320 5
## 2230 24 5.2146320 5
## 2231 24 5.2146320 5
## 2232 110 23.9004000 23
## 2233 110 23.9004000 23
## 2234 4 0.8691053 1
## 2235 4 0.8691053 1
## 2236 4 0.8691053 1
## 2237 4 0.8691053 1
## 2238 4 0.8691053 1
## 2239 4 0.8691053 1
## 2240 4 0.8691053 1
## 2241 4 0.8691053 1
## 2242 4 0.8691053 1
## 2243 4 0.8691053 1
## 2244 4 0.8691053 1
## 2245 4 0.8691053 1
## 2246 4 0.8691053 1
## 2247 4 0.8691053 1
## 2248 4 0.8691053 1
## 2249 4 0.8691053 1
## 2250 4 0.8691053 1
## 2251 4 0.8691053 1
## 2252 4 0.8691053 1
## 2253 4 0.8691053 1
## 2254 4 0.8691053 1
## 2255 4 0.8691053 1
## 2256 4 0.8691053 1
## 2257 4 0.8691053 1
## 2258 4 0.8691053 1
## 2259 4 0.8691053 1
## 2260 4 0.8691053 1
## 2261 4 0.8691053 1
## 2262 4 0.8691053 1
## 2263 4 0.8691053 1
## 2264 4 0.8691053 1
## 2265 4 0.8691053 1
## 2266 4 0.8691053 1
## 2267 4 0.8691053 1
## 2268 4 0.8691053 1
## 2269 4 0.8691053 1
## 2270 4 0.8691053 1
## 2271 4 0.8691053 1
## 2272 4 0.8691053 1
## 2273 4 0.8691053 1
## 2274 4 0.8691053 1
## 2275 4 0.8691053 1
## 2276 4 0.8691053 1
## 2277 4 0.8691053 1
## 2278 4 0.8691053 1
## 2279 4 0.8691053 1
## 2280 4 0.8691053 1
## 2281 4 0.8691053 1
## 2282 4 0.8691053 1
## 2283 4 0.8691053 1
## 2284 4 0.8691053 1
## 2285 4 0.8691053 1
## 2286 4 0.8691053 1
## 2287 4 0.8691053 1
## 2288 4 0.8691053 1
## 2289 4 0.8691053 1
## 2290 4 0.8691053 1
## 2291 4 0.8691053 1
## 2292 4 0.8691053 1
## 2293 4 0.8691053 1
## 2294 4 0.8691053 1
## 2295 4 0.8691053 1
## 2296 4 0.8691053 1
## 2297 4 0.8691053 1
## 2298 4 0.8691053 1
## 2299 4 0.8691053 1
## 2300 4 0.8691053 1
## 2301 4 0.8691053 1
## 2302 4 0.8691053 1
## 2303 4 0.8691053 1
## 2304 4 0.8691053 1
## 2305 4 0.8691053 1
## 2306 4 0.8691053 1
## 2307 4 0.8691053 1
## 2308 4 0.8691053 1
## 2309 4 0.8691053 1
## 2310 4 0.8691053 1
## 2311 4 0.8691053 1
## 2312 4 0.8691053 1
## 2313 4 0.8691053 1
## 2314 4 0.8691053 1
## 2315 4 0.8691053 1
## 2316 4 0.8691053 1
## 2317 4 0.8691053 1
## 2318 4 0.8691053 1
## 2319 4 0.8691053 1
## 2320 4 0.8691053 1
## 2321 4 0.8691053 1
## 2322 4 0.8691053 1
## 2323 4 0.8691053 1
## 2324 4 0.8691053 1
## 2325 4 0.8691053 1
## 2326 4 0.8691053 1
## 2327 4 0.8691053 1
## 2328 4 0.8691053 1
## 2329 4 0.8691053 1
## 2330 4 0.8691053 1
## 2331 4 0.8691053 1
## 2332 4 0.8691053 1
## 2333 4 0.8691053 1
## 2334 4 0.8691053 1
## 2335 4 0.8691053 1
## 2336 4 0.8691053 1
## 2337 4 0.8691053 1
## 2338 4 0.8691053 1
## 2339 4 0.8691053 1
## 2340 4 0.8691053 1
## 2341 4 0.8691053 1
## 2342 4 0.8691053 1
## 2343 4 0.8691053 1
## 2344 4 0.8691053 1
## 2345 4 0.8691053 1
## 2346 4 0.8691053 1
## 2347 4 0.8691053 1
## 2348 4 0.8691053 1
## 2349 4 0.8691053 1
## 2350 4 0.8691053 1
## 2351 4 0.8691053 1
## 2352 4 0.8691053 1
## 2353 4 0.8691053 1
## 2354 4 0.8691053 1
## 2355 4 0.8691053 1
## 2356 4 0.8691053 1
## 2357 77 16.7302800 16
## 2358 29 6.3010140 6
## 2359 29 6.3010140 6
## 2360 29 6.3010140 6
## 2361 29 6.3010140 6
## 2362 29 6.3010140 6
## 2363 29 6.3010140 6
## 2364 58 12.6020300 12
## 2365 58 12.6020300 12
## 2366 34 7.3873950 7
## 2367 34 7.3873950 7
## 2368 34 7.3873950 7
## 2369 34 7.3873950 7
## 2370 34 7.3873950 7
## 2371 34 7.3873950 7
## 2372 34 7.3873950 7
## 2373 63 13.6884100 13
## 2374 63 13.6884100 13
## 2375 63 13.6884100 13
## 2376 233 50.6253900 49
## 2377 233 50.6253900 49
## 2378 39 8.4737770 8
## 2379 350 76.0467200 74
## 2380 592 128.6276000 126
## 2381 592 128.6276000 126
## 2382 111 24.1176700 23
## 2383 111 24.1176700 23
## 2384 111 24.1176700 23
## 2385 182 39.5442900 38
## 2386 73 15.8611700 15
## 2387 73 15.8611700 15
## 2388 49 10.6465400 10
## 2389 54 11.7329200 11
## 2390 102 22.1621900 21
## 2391 59 12.8193000 12
## 2392 88 19.1203200 18
## 2393 150 32.5914500 31
## 2394 25 5.4319080 5
## 2395 25 5.4319080 5
## 2396 25 5.4319080 5
## 2397 25 5.4319080 5
## 2398 25 5.4319080 5
## 2399 20 4.3455270 4
## 2400 20 4.3455270 4
## 2401 20 4.3455270 4
## 2402 20 4.3455270 4
## 2403 20 4.3455270 4
## 2404 20 4.3455270 4
## 2405 30 6.5182900 6
## 2406 30 6.5182900 6
## 2407 30 6.5182900 6
## 2408 93 20.2067000 19
## 2409 35 7.6046720 7
## 2410 15 3.2591450 3
## 2411 15 3.2591450 3
## 2412 15 3.2591450 3
## 2413 15 3.2591450 3
## 2414 15 3.2591450 3
## 2415 15 3.2591450 3
## 2416 15 3.2591450 3
## 2417 15 3.2591450 3
## 2418 15 3.2591450 3
## 2419 15 3.2591450 3
## 2420 15 3.2591450 3
## 2421 15 3.2591450 3
## 2422 15 3.2591450 3
## 2423 15 3.2591450 3
## 2424 15 3.2591450 3
## 2425 15 3.2591450 3
## 2426 15 3.2591450 3
## 2427 40 8.6910530 8
## 2428 40 8.6910530 8
## 2429 40 8.6910530 8
## 2430 40 8.6910530 8
## 2431 40 8.6910530 8
## 2432 40 8.6910530 8
## 2433 40 8.6910530 8
## 2434 45 9.7774350 9
## 2435 45 9.7774350 9
## 2436 50 10.8638200 10
## 2437 50 10.8638200 10
## 2438 127 27.5940900 26
## 2439 10 2.1727630 2
## 2440 10 2.1727630 2
## 2441 10 2.1727630 2
## 2442 10 2.1727630 2
## 2443 10 2.1727630 2
## 2444 10 2.1727630 2
## 2445 10 2.1727630 2
## 2446 10 2.1727630 2
## 2447 10 2.1727630 2
## 2448 10 2.1727630 2
## 2449 10 2.1727630 2
## 2450 10 2.1727630 2
## 2451 10 2.1727630 2
## 2452 10 2.1727630 2
## 2453 10 2.1727630 2
## 2454 10 2.1727630 2
## 2455 10 2.1727630 2
## 2456 10 2.1727630 2
## 2457 10 2.1727630 2
## 2458 10 2.1727630 2
## 2459 10 2.1727630 2
## 2460 10 2.1727630 2
## 2461 10 2.1727630 2
## 2462 10 2.1727630 2
## 2463 10 2.1727630 2
## 2464 10 2.1727630 2
## 2465 10 2.1727630 2
## 2466 10 2.1727630 2
## 2467 10 2.1727630 2
## 2468 10 2.1727630 2
## 2469 10 2.1727630 2
## 2470 10 2.1727630 2
## 2471 10 2.1727630 2
## 2472 10 2.1727630 2
## 2473 10 2.1727630 2
## 2474 10 2.1727630 2
## 2475 10 2.1727630 2
## 2476 10 2.1727630 2
## 2477 10 2.1727630 2
## 2478 10 2.1727630 2
## 2479 10 2.1727630 2
## 2480 10 2.1727630 2
## 2481 10 2.1727630 2
## 2482 10 2.1727630 2
## 2483 10 2.1727630 2
## 2484 10 2.1727630 2
## 2485 10 2.1727630 2
## 2486 10 2.1727630 2
## 2487 10 2.1727630 2
## 2488 10 2.1727630 2
## 2489 10 2.1727630 2
## 2490 10 2.1727630 2
## 2491 10 2.1727630 2
## 2492 10 2.1727630 2
## 2493 10 2.1727630 2
## 2494 10 2.1727630 2
## 2495 10 2.1727630 2
## 2496 10 2.1727630 2
## 2497 10 2.1727630 2
## 2498 10 2.1727630 2
## 2499 10 2.1727630 2
## 2500 10 2.1727630 2
## 2501 84 18.2512100 17
## 2502 596 129.4967000 126
## 2503 151 32.8087300 31
## 2504 89 19.3375900 18
## 2505 89 19.3375900 18
## 2506 60 13.0365800 12
## 2507 60 13.0365800 12
## 2508 194 42.1516100 40
## 2509 65 14.1229600 13
## 2510 65 14.1229600 13
## 2511 65 14.1229600 13
## 2512 118 25.6386100 24
## 2513 142 30.8532400 29
## 2514 142 30.8532400 29
## 2515 2094 454.9766000 453
## 2516 99 21.5103600 20
## 2517 223 48.4526200 46
## 2518 80 17.3821100 16
## 2519 80 17.3821100 16
## 2520 80 17.3821100 16
## 2521 294 63.8792400 61
## 2522 228 49.5390000 47
## 2523 36 7.8219480 7
## 2524 31 6.7355660 6
## 2525 31 6.7355660 6
## 2526 31 6.7355660 6
## 2527 1176 255.5170000 251
## 2528 41 8.9083300 8
## 2529 41 8.9083300 8
## 2530 41 8.9083300 8
## 2531 114 24.7695000 23
## 2532 46 9.9947110 9
## 2533 46 9.9947110 9
## 2534 26 5.6491850 5
## 2535 26 5.6491850 5
## 2536 26 5.6491850 5
## 2537 26 5.6491850 5
## 2538 26 5.6491850 5
## 2539 26 5.6491850 5
## 2540 26 5.6491850 5
## 2541 26 5.6491850 5
## 2542 90 19.5548700 18
## 2543 51 11.0810900 10
## 2544 56 12.1674700 11
## 2545 608 132.1040000 128
## 2546 21 4.5628030 4
## 2547 21 4.5628030 4
## 2548 21 4.5628030 4
## 2549 21 4.5628030 4
## 2550 21 4.5628030 4
## 2551 21 4.5628030 4
## 2552 21 4.5628030 4
## 2553 95 20.6412500 19
## 2554 61 13.2538600 12
## 2555 66 14.3402400 13
## 2556 5 1.0863820 1
## 2557 5 1.0863820 1
## 2558 5 1.0863820 1
## 2559 5 1.0863820 1
## 2560 5 1.0863820 1
## 2561 5 1.0863820 1
## 2562 5 1.0863820 1
## 2563 5 1.0863820 1
## 2564 5 1.0863820 1
## 2565 5 1.0863820 1
## 2566 5 1.0863820 1
## 2567 5 1.0863820 1
## 2568 5 1.0863820 1
## 2569 5 1.0863820 1
## 2570 5 1.0863820 1
## 2571 5 1.0863820 1
## 2572 5 1.0863820 1
## 2573 5 1.0863820 1
## 2574 5 1.0863820 1
## 2575 5 1.0863820 1
## 2576 5 1.0863820 1
## 2577 5 1.0863820 1
## 2578 5 1.0863820 1
## 2579 5 1.0863820 1
## 2580 5 1.0863820 1
## 2581 5 1.0863820 1
## 2582 5 1.0863820 1
## 2583 5 1.0863820 1
## 2584 5 1.0863820 1
## 2585 5 1.0863820 1
## 2586 5 1.0863820 1
## 2587 5 1.0863820 1
## 2588 5 1.0863820 1
## 2589 5 1.0863820 1
## 2590 5 1.0863820 1
## 2591 5 1.0863820 1
## 2592 5 1.0863820 1
## 2593 5 1.0863820 1
## 2594 5 1.0863820 1
## 2595 5 1.0863820 1
## 2596 5 1.0863820 1
## 2597 5 1.0863820 1
## 2598 5 1.0863820 1
## 2599 5 1.0863820 1
## 2600 5 1.0863820 1
## 2601 5 1.0863820 1
## 2602 5 1.0863820 1
## 2603 5 1.0863820 1
## 2604 5 1.0863820 1
## 2605 5 1.0863820 1
## 2606 5 1.0863820 1
## 2607 5 1.0863820 1
## 2608 5 1.0863820 1
## 2609 5 1.0863820 1
## 2610 5 1.0863820 1
## 2611 5 1.0863820 1
## 2612 5 1.0863820 1
## 2613 5 1.0863820 1
## 2614 5 1.0863820 1
## 2615 5 1.0863820 1
## 2616 5 1.0863820 1
## 2617 5 1.0863820 1
## 2618 5 1.0863820 1
## 2619 5 1.0863820 1
## 2620 5 1.0863820 1
## 2621 5 1.0863820 1
## 2622 5 1.0863820 1
## 2623 5 1.0863820 1
## 2624 5 1.0863820 1
## 2625 5 1.0863820 1
## 2626 5 1.0863820 1
## 2627 5 1.0863820 1
## 2628 5 1.0863820 1
## 2629 5 1.0863820 1
## 2630 5 1.0863820 1
## 2631 5 1.0863820 1
## 2632 5 1.0863820 1
## 2633 5 1.0863820 1
## 2634 5 1.0863820 1
## 2635 5 1.0863820 1
## 2636 5 1.0863820 1
## 2637 5 1.0863820 1
## 2638 5 1.0863820 1
## 2639 5 1.0863820 1
## 2640 5 1.0863820 1
## 2641 5 1.0863820 1
## 2642 5 1.0863820 1
## 2643 5 1.0863820 1
## 2644 5 1.0863820 1
## 2645 5 1.0863820 1
## 2646 5 1.0863820 1
## 2647 5 1.0863820 1
## 2648 5 1.0863820 1
## 2649 5 1.0863820 1
## 2650 5 1.0863820 1
## 2651 5 1.0863820 1
## 2652 5 1.0863820 1
## 2653 105 22.8140100 21
## 2654 16 3.4764210 3
## 2655 16 3.4764210 3
## 2656 16 3.4764210 3
## 2657 16 3.4764210 3
## 2658 16 3.4764210 3
## 2659 16 3.4764210 3
## 2660 16 3.4764210 3
## 2661 16 3.4764210 3
## 2662 16 3.4764210 3
## 2663 76 16.5130000 15
## 2664 1178 255.9515000 251
## 2665 163 35.4160400 33
## 2666 149 32.3741700 30
## 2667 130 28.2459200 26
## 2668 130 28.2459200 26
## 2669 47 10.2119900 9
## 2670 42 9.1256060 8
## 2671 42 9.1256060 8
## 2672 42 9.1256060 8
## 2673 52 11.2983700 10
## 2674 57 12.3847500 11
## 2675 57 12.3847500 11
## 2676 37 8.0392240 7
## 2677 37 8.0392240 7
## 2678 62 13.4711300 12
## 2679 32 6.9528430 6
## 2680 32 6.9528430 6
## 2681 32 6.9528430 6
## 2682 32 6.9528430 6
## 2683 32 6.9528430 6
## 2684 32 6.9528430 6
## 2685 67 14.5575100 13
## 2686 11 2.3900400 2
## 2687 11 2.3900400 2
## 2688 11 2.3900400 2
## 2689 11 2.3900400 2
## 2690 11 2.3900400 2
## 2691 11 2.3900400 2
## 2692 11 2.3900400 2
## 2693 11 2.3900400 2
## 2694 11 2.3900400 2
## 2695 11 2.3900400 2
## 2696 11 2.3900400 2
## 2697 11 2.3900400 2
## 2698 11 2.3900400 2
## 2699 11 2.3900400 2
## 2700 11 2.3900400 2
## 2701 11 2.3900400 2
## 2702 11 2.3900400 2
## 2703 11 2.3900400 2
## 2704 11 2.3900400 2
## 2705 11 2.3900400 2
## 2706 11 2.3900400 2
## 2707 11 2.3900400 2
## 2708 11 2.3900400 2
## 2709 11 2.3900400 2
## 2710 11 2.3900400 2
## 2711 11 2.3900400 2
## 2712 11 2.3900400 2
## 2713 11 2.3900400 2
## 2714 11 2.3900400 2
## 2715 11 2.3900400 2
## 2716 11 2.3900400 2
## 2717 11 2.3900400 2
## 2718 11 2.3900400 2
## 2719 27 5.8664610 5
## 2720 27 5.8664610 5
## 2721 27 5.8664610 5
## 2722 87 18.9030400 17
## 2723 87 18.9030400 17
## 2724 87 18.9030400 17
## 2725 87 18.9030400 17
## 2726 392 85.1723200 81
## 2727 92 19.9894200 18
## 2728 22 4.7800790 4
## 2729 22 4.7800790 4
## 2730 22 4.7800790 4
## 2731 22 4.7800790 4
## 2732 22 4.7800790 4
## 2733 284 61.7064800 58
## 2734 102 22.1621900 20
## 2735 112 24.3349500 22
## 2736 117 25.4213300 23
## 2737 53 11.5156500 10
## 2738 68 14.7747900 13
## 2739 48 10.4292600 9
## 2740 78 16.9475500 15
## 2741 17 3.6936980 3
## 2742 17 3.6936980 3
## 2743 17 3.6936980 3
## 2744 17 3.6936980 3
## 2745 17 3.6936980 3
## 2746 17 3.6936980 3
## 2747 17 3.6936980 3
## 2748 17 3.6936980 3
## 2749 17 3.6936980 3
## 2750 17 3.6936980 3
## 2751 17 3.6936980 3
## 2752 17 3.6936980 3
## 2753 17 3.6936980 3
## 2754 17 3.6936980 3
## 2755 17 3.6936980 3
## 2756 38 8.2565010 7
## 2757 38 8.2565010 7
## 2758 38 8.2565010 7
## 2759 38 8.2565010 7
## 2760 38 8.2565010 7
## 2761 38 8.2565010 7
## 2762 38 8.2565010 7
## 2763 161 34.9814900 32
## 2764 161 34.9814900 32
## 2765 190 41.2825000 38
## 2766 98 21.2930800 19
## 2767 33 7.1701190 6
## 2768 33 7.1701190 6
## 2769 1230 267.2499000 261
## 2770 219 47.5835200 44
## 2771 219 47.5835200 44
## 2772 108 23.4658400 21
## 2773 108 23.4658400 21
## 2774 224 48.6699000 45
## 2775 28 6.0837370 5
## 2776 28 6.0837370 5
## 2777 28 6.0837370 5
## 2778 215 46.7144100 43
## 2779 64 13.9056900 12
## 2780 64 13.9056900 12
## 2781 59 12.8193000 11
## 2782 54 11.7329200 10
## 2783 54 11.7329200 10
## 2784 94 20.4239800 18
## 2785 49 10.6465400 9
## 2786 49 10.6465400 9
## 2787 49 10.6465400 9
## 2788 23 4.9973560 4
## 2789 23 4.9973560 4
## 2790 23 4.9973560 4
## 2791 23 4.9973560 4
## 2792 23 4.9973560 4
## 2793 23 4.9973560 4
## 2794 23 4.9973560 4
## 2795 23 4.9973560 4
## 2796 23 4.9973560 4
## 2797 23 4.9973560 4
## 2798 23 4.9973560 4
## 2799 23 4.9973560 4
## 2800 23 4.9973560 4
## 2801 23 4.9973560 4
## 2802 23 4.9973560 4
## 2803 6 1.3036580 1
## 2804 6 1.3036580 1
## 2805 6 1.3036580 1
## 2806 6 1.3036580 1
## 2807 6 1.3036580 1
## 2808 6 1.3036580 1
## 2809 6 1.3036580 1
## 2810 6 1.3036580 1
## 2811 6 1.3036580 1
## 2812 6 1.3036580 1
## 2813 6 1.3036580 1
## 2814 6 1.3036580 1
## 2815 6 1.3036580 1
## 2816 6 1.3036580 1
## 2817 6 1.3036580 1
## 2818 6 1.3036580 1
## 2819 6 1.3036580 1
## 2820 6 1.3036580 1
## 2821 6 1.3036580 1
## 2822 6 1.3036580 1
## 2823 6 1.3036580 1
## 2824 6 1.3036580 1
## 2825 6 1.3036580 1
## 2826 6 1.3036580 1
## 2827 6 1.3036580 1
## 2828 6 1.3036580 1
## 2829 6 1.3036580 1
## 2830 6 1.3036580 1
## 2831 6 1.3036580 1
## 2832 6 1.3036580 1
## 2833 6 1.3036580 1
## 2834 6 1.3036580 1
## 2835 6 1.3036580 1
## 2836 6 1.3036580 1
## 2837 6 1.3036580 1
## 2838 6 1.3036580 1
## 2839 6 1.3036580 1
## 2840 6 1.3036580 1
## 2841 6 1.3036580 1
## 2842 6 1.3036580 1
## 2843 6 1.3036580 1
## 2844 6 1.3036580 1
## 2845 6 1.3036580 1
## 2846 6 1.3036580 1
## 2847 6 1.3036580 1
## 2848 6 1.3036580 1
## 2849 6 1.3036580 1
## 2850 6 1.3036580 1
## 2851 6 1.3036580 1
## 2852 6 1.3036580 1
## 2853 6 1.3036580 1
## 2854 6 1.3036580 1
## 2855 6 1.3036580 1
## 2856 6 1.3036580 1
## 2857 6 1.3036580 1
## 2858 6 1.3036580 1
## 2859 6 1.3036580 1
## 2860 6 1.3036580 1
## 2861 6 1.3036580 1
## 2862 6 1.3036580 1
## 2863 6 1.3036580 1
## 2864 6 1.3036580 1
## 2865 6 1.3036580 1
## 2866 6 1.3036580 1
## 2867 6 1.3036580 1
## 2868 6 1.3036580 1
## 2869 6 1.3036580 1
## 2870 6 1.3036580 1
## 2871 6 1.3036580 1
## 2872 6 1.3036580 1
## 2873 6 1.3036580 1
## 2874 6 1.3036580 1
## 2875 6 1.3036580 1
## 2876 6 1.3036580 1
## 2877 6 1.3036580 1
## 2878 6 1.3036580 1
## 2879 6 1.3036580 1
## 2880 6 1.3036580 1
## 2881 6 1.3036580 1
## 2882 6 1.3036580 1
## 2883 6 1.3036580 1
## 2884 6 1.3036580 1
## 2885 6 1.3036580 1
## 2886 6 1.3036580 1
## 2887 6 1.3036580 1
## 2888 6 1.3036580 1
## 2889 6 1.3036580 1
## 2890 6 1.3036580 1
## 2891 6 1.3036580 1
## 2892 6 1.3036580 1
## 2893 6 1.3036580 1
## 2894 6 1.3036580 1
## 2895 6 1.3036580 1
## 2896 6 1.3036580 1
## 2897 104 22.5967400 20
## 2898 12 2.6073160 2
## 2899 12 2.6073160 2
## 2900 12 2.6073160 2
## 2901 12 2.6073160 2
## 2902 12 2.6073160 2
## 2903 12 2.6073160 2
## 2904 12 2.6073160 2
## 2905 12 2.6073160 2
## 2906 12 2.6073160 2
## 2907 12 2.6073160 2
## 2908 12 2.6073160 2
## 2909 12 2.6073160 2
## 2910 12 2.6073160 2
## 2911 12 2.6073160 2
## 2912 12 2.6073160 2
## 2913 12 2.6073160 2
## 2914 12 2.6073160 2
## 2915 12 2.6073160 2
## 2916 12 2.6073160 2
## 2917 12 2.6073160 2
## 2918 12 2.6073160 2
## 2919 12 2.6073160 2
## 2920 12 2.6073160 2
## 2921 12 2.6073160 2
## 2922 12 2.6073160 2
## 2923 12 2.6073160 2
## 2924 12 2.6073160 2
## 2925 12 2.6073160 2
## 2926 12 2.6073160 2
## 2927 12 2.6073160 2
## 2928 12 2.6073160 2
## 2929 177 38.4579100 35
## 2930 44 9.5601590 8
## 2931 44 9.5601590 8
## 2932 39 8.4737770 7
## 2933 124 26.9422700 24
## 2934 34 7.3873950 6
## 2935 70 15.2093400 13
## 2936 70 15.2093400 13
## 2937 18 3.9109740 3
## 2938 18 3.9109740 3
## 2939 18 3.9109740 3
## 2940 18 3.9109740 3
## 2941 18 3.9109740 3
## 2942 18 3.9109740 3
## 2943 18 3.9109740 3
## 2944 18 3.9109740 3
## 2945 18 3.9109740 3
## 2946 18 3.9109740 3
## 2947 55 11.9502000 10
## 2948 55 11.9502000 10
## 2949 29 6.3010140 5
## 2950 29 6.3010140 5
## 2951 29 6.3010140 5
## 2952 29 6.3010140 5
## 2953 115 24.9867800 22
## 2954 125 27.1595400 24
## 2955 130 28.2459200 25
## 2956 45 9.7774350 8
## 2957 179 38.8924600 35
## 2958 150 32.5914500 29
## 2959 40 8.6910530 7
## 2960 40 8.6910530 7
## 2961 40 8.6910530 7
## 2962 40 8.6910530 7
## 2963 24 5.2146320 4
## 2964 24 5.2146320 4
## 2965 24 5.2146320 4
## 2966 24 5.2146320 4
## 2967 24 5.2146320 4
## 2968 24 5.2146320 4
## 2969 86 18.6857600 16
## 2970 106 23.0312900 20
## 2971 71 15.4266200 13
## 2972 116 25.2040500 22
## 2973 61 13.2538600 11
## 2974 146 31.7223400 28
## 2975 448 97.3398000 91
## 2976 13 2.8245920 2
## 2977 13 2.8245920 2
## 2978 13 2.8245920 2
## 2979 13 2.8245920 2
## 2980 13 2.8245920 2
## 2981 13 2.8245920 2
## 2982 13 2.8245920 2
## 2983 13 2.8245920 2
## 2984 13 2.8245920 2
## 2985 13 2.8245920 2
## 2986 13 2.8245920 2
## 2987 13 2.8245920 2
## 2988 13 2.8245920 2
## 2989 13 2.8245920 2
## 2990 13 2.8245920 2
## 2991 13 2.8245920 2
## 2992 13 2.8245920 2
## 2993 13 2.8245920 2
## 2994 13 2.8245920 2
## 2995 13 2.8245920 2
## 2996 13 2.8245920 2
## 2997 13 2.8245920 2
## 2998 13 2.8245920 2
## 2999 13 2.8245920 2
## 3000 13 2.8245920 2
## 3001 13 2.8245920 2
## 3002 13 2.8245920 2
## 3003 13 2.8245920 2
## 3004 13 2.8245920 2
## 3005 13 2.8245920 2
## 3006 13 2.8245920 2
## 3007 13 2.8245920 2
## 3008 13 2.8245920 2
## 3009 13 2.8245920 2
## 3010 13 2.8245920 2
## 3011 13 2.8245920 2
## 3012 13 2.8245920 2
## 3013 856 185.9885000 178
## 3014 30 6.5182900 5
## 3015 30 6.5182900 5
## 3016 30 6.5182900 5
## 3017 30 6.5182900 5
## 3018 30 6.5182900 5
## 3019 30 6.5182900 5
## 3020 30 6.5182900 5
## 3021 46 9.9947110 8
## 3022 46 9.9947110 8
## 3023 176 38.2406300 34
## 3024 19 4.1282500 3
## 3025 19 4.1282500 3
## 3026 19 4.1282500 3
## 3027 19 4.1282500 3
## 3028 19 4.1282500 3
## 3029 19 4.1282500 3
## 3030 19 4.1282500 3
## 3031 19 4.1282500 3
## 3032 19 4.1282500 3
## 3033 19 4.1282500 3
## 3034 77 16.7302800 14
## 3035 72 15.6439000 13
## 3036 72 15.6439000 13
## 3037 459 99.7298400 93
## 3038 41 8.9083300 7
## 3039 41 8.9083300 7
## 3040 67 14.5575100 12
## 3041 7 1.5209340 1
## 3042 7 1.5209340 1
## 3043 7 1.5209340 1
## 3044 7 1.5209340 1
## 3045 7 1.5209340 1
## 3046 7 1.5209340 1
## 3047 7 1.5209340 1
## 3048 7 1.5209340 1
## 3049 7 1.5209340 1
## 3050 7 1.5209340 1
## 3051 7 1.5209340 1
## 3052 7 1.5209340 1
## 3053 7 1.5209340 1
## 3054 7 1.5209340 1
## 3055 7 1.5209340 1
## 3056 7 1.5209340 1
## 3057 7 1.5209340 1
## 3058 7 1.5209340 1
## 3059 7 1.5209340 1
## 3060 7 1.5209340 1
## 3061 7 1.5209340 1
## 3062 7 1.5209340 1
## 3063 7 1.5209340 1
## 3064 7 1.5209340 1
## 3065 7 1.5209340 1
## 3066 7 1.5209340 1
## 3067 7 1.5209340 1
## 3068 7 1.5209340 1
## 3069 7 1.5209340 1
## 3070 7 1.5209340 1
## 3071 7 1.5209340 1
## 3072 7 1.5209340 1
## 3073 7 1.5209340 1
## 3074 7 1.5209340 1
## 3075 7 1.5209340 1
## 3076 7 1.5209340 1
## 3077 7 1.5209340 1
## 3078 7 1.5209340 1
## 3079 7 1.5209340 1
## 3080 7 1.5209340 1
## 3081 7 1.5209340 1
## 3082 7 1.5209340 1
## 3083 7 1.5209340 1
## 3084 7 1.5209340 1
## 3085 7 1.5209340 1
## 3086 7 1.5209340 1
## 3087 7 1.5209340 1
## 3088 7 1.5209340 1
## 3089 7 1.5209340 1
## 3090 7 1.5209340 1
## 3091 7 1.5209340 1
## 3092 7 1.5209340 1
## 3093 7 1.5209340 1
## 3094 7 1.5209340 1
## 3095 7 1.5209340 1
## 3096 7 1.5209340 1
## 3097 7 1.5209340 1
## 3098 7 1.5209340 1
## 3099 7 1.5209340 1
## 3100 7 1.5209340 1
## 3101 7 1.5209340 1
## 3102 7 1.5209340 1
## 3103 7 1.5209340 1
## 3104 7 1.5209340 1
## 3105 7 1.5209340 1
## 3106 7 1.5209340 1
## 3107 7 1.5209340 1
## 3108 7 1.5209340 1
## 3109 7 1.5209340 1
## 3110 7 1.5209340 1
## 3111 7 1.5209340 1
## 3112 7 1.5209340 1
## 3113 7 1.5209340 1
## 3114 62 13.4711300 11
## 3115 62 13.4711300 11
## 3116 57 12.3847500 10
## 3117 57 12.3847500 10
## 3118 25 5.4319080 4
## 3119 25 5.4319080 4
## 3120 25 5.4319080 4
## 3121 25 5.4319080 4
## 3122 25 5.4319080 4
## 3123 25 5.4319080 4
## 3124 182 39.5442900 35
## 3125 52 11.2983700 9
## 3126 93 20.2067000 17
## 3127 192 41.7170600 37
## 3128 148 32.1569000 28
## 3129 78 16.9475500 14
## 3130 78 16.9475500 14
## 3131 47 10.2119900 8
## 3132 47 10.2119900 8
## 3133 47 10.2119900 8
## 3134 47 10.2119900 8
## 3135 47 10.2119900 8
## 3136 31 6.7355660 5
## 3137 31 6.7355660 5
## 3138 31 6.7355660 5
## 3139 183 39.7615700 35
## 3140 63 13.6884100 11
## 3141 842 182.9467000 174
## 3142 99 21.5103600 18
## 3143 14 3.0418690 2
## 3144 14 3.0418690 2
## 3145 14 3.0418690 2
## 3146 14 3.0418690 2
## 3147 14 3.0418690 2
## 3148 14 3.0418690 2
## 3149 14 3.0418690 2
## 3150 14 3.0418690 2
## 3151 14 3.0418690 2
## 3152 14 3.0418690 2
## 3153 14 3.0418690 2
## 3154 14 3.0418690 2
## 3155 14 3.0418690 2
## 3156 14 3.0418690 2
## 3157 14 3.0418690 2
## 3158 14 3.0418690 2
## 3159 14 3.0418690 2
## 3160 14 3.0418690 2
## 3161 14 3.0418690 2
## 3162 14 3.0418690 2
## 3163 940 204.2398000 195
## 3164 20 4.3455270 3
## 3165 20 4.3455270 3
## 3166 20 4.3455270 3
## 3167 20 4.3455270 3
## 3168 20 4.3455270 3
## 3169 20 4.3455270 3
## 3170 20 4.3455270 3
## 3171 20 4.3455270 3
## 3172 20 4.3455270 3
## 3173 20 4.3455270 3
## 3174 20 4.3455270 3
## 3175 20 4.3455270 3
## 3176 20 4.3455270 3
## 3177 20 4.3455270 3
## 3178 20 4.3455270 3
## 3179 20 4.3455270 3
## 3180 20 4.3455270 3
## 3181 20 4.3455270 3
## 3182 20 4.3455270 3
## 3183 20 4.3455270 3
## 3184 84 18.2512100 15
## 3185 252 54.7536400 49
## 3186 53 11.5156500 9
## 3187 37 8.0392240 6
## 3188 37 8.0392240 6
## 3189 37 8.0392240 6
## 3190 37 8.0392240 6
## 3191 37 8.0392240 6
## 3192 37 8.0392240 6
## 3193 37 8.0392240 6
## 3194 37 8.0392240 6
## 3195 37 8.0392240 6
## 3196 37 8.0392240 6
## 3197 37 8.0392240 6
## 3198 37 8.0392240 6
## 3199 26 5.6491850 4
## 3200 26 5.6491850 4
## 3201 26 5.6491850 4
## 3202 69 14.9920700 12
## 3203 802 174.2556000 165
## 3204 48 10.4292600 8
## 3205 135 29.3323000 25
## 3206 145 31.5050700 27
## 3207 359 78.0022000 71
## 3208 877 190.5513000 181
## 3209 64 13.9056900 11
## 3210 100 21.7276300 18
## 3211 644 139.9260000 131
## 3212 32 6.9528430 5
## 3213 32 6.9528430 5
## 3214 32 6.9528430 5
## 3215 32 6.9528430 5
## 3216 32 6.9528430 5
## 3217 32 6.9528430 5
## 3218 59 12.8193000 10
## 3219 43 9.3428820 7
## 3220 85 18.4684900 15
## 3221 273 59.3164400 53
## 3222 205 44.5416500 39
## 3223 80 17.3821100 14
## 3224 8 1.7382110 1
## 3225 8 1.7382110 1
## 3226 8 1.7382110 1
## 3227 8 1.7382110 1
## 3228 8 1.7382110 1
## 3229 8 1.7382110 1
## 3230 8 1.7382110 1
## 3231 8 1.7382110 1
## 3232 8 1.7382110 1
## 3233 8 1.7382110 1
## 3234 8 1.7382110 1
## 3235 8 1.7382110 1
## 3236 8 1.7382110 1
## 3237 8 1.7382110 1
## 3238 8 1.7382110 1
## 3239 8 1.7382110 1
## 3240 8 1.7382110 1
## 3241 8 1.7382110 1
## 3242 8 1.7382110 1
## 3243 8 1.7382110 1
## 3244 8 1.7382110 1
## 3245 8 1.7382110 1
## 3246 8 1.7382110 1
## 3247 8 1.7382110 1
## 3248 8 1.7382110 1
## 3249 8 1.7382110 1
## 3250 8 1.7382110 1
## 3251 8 1.7382110 1
## 3252 8 1.7382110 1
## 3253 8 1.7382110 1
## 3254 8 1.7382110 1
## 3255 8 1.7382110 1
## 3256 8 1.7382110 1
## 3257 8 1.7382110 1
## 3258 8 1.7382110 1
## 3259 8 1.7382110 1
## 3260 8 1.7382110 1
## 3261 8 1.7382110 1
## 3262 8 1.7382110 1
## 3263 8 1.7382110 1
## 3264 8 1.7382110 1
## 3265 8 1.7382110 1
## 3266 8 1.7382110 1
## 3267 8 1.7382110 1
## 3268 8 1.7382110 1
## 3269 8 1.7382110 1
## 3270 8 1.7382110 1
## 3271 8 1.7382110 1
## 3272 8 1.7382110 1
## 3273 8 1.7382110 1
## 3274 8 1.7382110 1
## 3275 8 1.7382110 1
## 3276 8 1.7382110 1
## 3277 8 1.7382110 1
## 3278 8 1.7382110 1
## 3279 8 1.7382110 1
## 3280 8 1.7382110 1
## 3281 8 1.7382110 1
## 3282 8 1.7382110 1
## 3283 8 1.7382110 1
## 3284 8 1.7382110 1
## 3285 8 1.7382110 1
## 3286 8 1.7382110 1
## 3287 8 1.7382110 1
## 3288 54 11.7329200 9
## 3289 54 11.7329200 9
## 3290 171 37.1542500 32
## 3291 70 15.2093400 12
## 3292 101 21.9449100 18
## 3293 38 8.2565010 6
## 3294 38 8.2565010 6
## 3295 38 8.2565010 6
## 3296 38 8.2565010 6
## 3297 38 8.2565010 6
## 3298 245 53.2327000 47
## 3299 49 10.6465400 8
## 3300 49 10.6465400 8
## 3301 49 10.6465400 8
## 3302 21 4.5628030 3
## 3303 21 4.5628030 3
## 3304 21 4.5628030 3
## 3305 21 4.5628030 3
## 3306 21 4.5628030 3
## 3307 21 4.5628030 3
## 3308 21 4.5628030 3
## 3309 21 4.5628030 3
## 3310 21 4.5628030 3
## 3311 21 4.5628030 3
## 3312 21 4.5628030 3
## 3313 21 4.5628030 3
## 3314 21 4.5628030 3
## 3315 21 4.5628030 3
## 3316 91 19.7721500 16
## 3317 260 56.4918500 50
## 3318 86 18.6857600 15
## 3319 15 3.2591450 2
## 3320 15 3.2591450 2
## 3321 15 3.2591450 2
## 3322 15 3.2591450 2
## 3323 15 3.2591450 2
## 3324 15 3.2591450 2
## 3325 15 3.2591450 2
## 3326 15 3.2591450 2
## 3327 15 3.2591450 2
## 3328 15 3.2591450 2
## 3329 15 3.2591450 2
## 3330 15 3.2591450 2
## 3331 15 3.2591450 2
## 3332 15 3.2591450 2
## 3333 27 5.8664610 4
## 3334 27 5.8664610 4
## 3335 27 5.8664610 4
## 3336 27 5.8664610 4
## 3337 27 5.8664610 4
## 3338 27 5.8664610 4
## 3339 27 5.8664610 4
## 3340 27 5.8664610 4
## 3341 424 92.1251700 84
## 3342 122 26.5077100 22
## 3343 117 25.4213300 21
## 3344 44 9.5601590 7
## 3345 44 9.5601590 7
## 3346 44 9.5601590 7
## 3347 112 24.3349500 20
## 3348 112 24.3349500 20
## 3349 33 7.1701190 5
## 3350 33 7.1701190 5
## 3351 33 7.1701190 5
## 3352 33 7.1701190 5
## 3353 33 7.1701190 5
## 3354 33 7.1701190 5
## 3355 33 7.1701190 5
## 3356 33 7.1701190 5
## 3357 33 7.1701190 5
## 3358 33 7.1701190 5
## 3359 55 11.9502000 9
## 3360 71 15.4266200 12
## 3361 97 21.0758000 17
## 3362 87 18.9030400 15
## 3363 87 18.9030400 15
## 3364 87 18.9030400 15
## 3365 50 10.8638200 8
## 3366 39 8.4737770 6
## 3367 82 17.8166600 14
## 3368 113 24.5522300 20
## 3369 61 13.2538600 10
## 3370 484 105.1617000 96
## 3371 103 22.3794600 18
## 3372 22 4.7800790 3
## 3373 22 4.7800790 3
## 3374 22 4.7800790 3
## 3375 22 4.7800790 3
## 3376 22 4.7800790 3
## 3377 22 4.7800790 3
## 3378 22 4.7800790 3
## 3379 154 33.4605600 28
## 3380 28 6.0837370 4
## 3381 28 6.0837370 4
## 3382 189 41.0652300 35
## 3383 199 43.2379900 37
## 3384 56 12.1674700 9
## 3385 56 12.1674700 9
## 3386 365 79.3058600 71
## 3387 9 1.9554870 1
## 3388 9 1.9554870 1
## 3389 9 1.9554870 1
## 3390 9 1.9554870 1
## 3391 9 1.9554870 1
## 3392 9 1.9554870 1
## 3393 9 1.9554870 1
## 3394 9 1.9554870 1
## 3395 9 1.9554870 1
## 3396 9 1.9554870 1
## 3397 9 1.9554870 1
## 3398 9 1.9554870 1
## 3399 9 1.9554870 1
## 3400 9 1.9554870 1
## 3401 9 1.9554870 1
## 3402 9 1.9554870 1
## 3403 9 1.9554870 1
## 3404 9 1.9554870 1
## 3405 9 1.9554870 1
## 3406 9 1.9554870 1
## 3407 9 1.9554870 1
## 3408 9 1.9554870 1
## 3409 9 1.9554870 1
## 3410 9 1.9554870 1
## 3411 9 1.9554870 1
## 3412 9 1.9554870 1
## 3413 9 1.9554870 1
## 3414 9 1.9554870 1
## 3415 9 1.9554870 1
## 3416 9 1.9554870 1
## 3417 9 1.9554870 1
## 3418 9 1.9554870 1
## 3419 9 1.9554870 1
## 3420 9 1.9554870 1
## 3421 9 1.9554870 1
## 3422 9 1.9554870 1
## 3423 9 1.9554870 1
## 3424 9 1.9554870 1
## 3425 9 1.9554870 1
## 3426 9 1.9554870 1
## 3427 9 1.9554870 1
## 3428 9 1.9554870 1
## 3429 9 1.9554870 1
## 3430 9 1.9554870 1
## 3431 9 1.9554870 1
## 3432 9 1.9554870 1
## 3433 9 1.9554870 1
## 3434 9 1.9554870 1
## 3435 9 1.9554870 1
## 3436 9 1.9554870 1
## 3437 9 1.9554870 1
## 3438 9 1.9554870 1
## 3439 9 1.9554870 1
## 3440 9 1.9554870 1
## 3441 370 80.3922400 72
## 3442 88 19.1203200 15
## 3443 119 25.8558800 21
## 3444 34 7.3873950 5
## 3445 34 7.3873950 5
## 3446 34 7.3873950 5
## 3447 67 14.5575100 11
## 3448 67 14.5575100 11
## 3449 16 3.4764210 2
## 3450 16 3.4764210 2
## 3451 16 3.4764210 2
## 3452 16 3.4764210 2
## 3453 16 3.4764210 2
## 3454 16 3.4764210 2
## 3455 16 3.4764210 2
## 3456 16 3.4764210 2
## 3457 16 3.4764210 2
## 3458 16 3.4764210 2
## 3459 16 3.4764210 2
## 3460 16 3.4764210 2
## 3461 16 3.4764210 2
## 3462 16 3.4764210 2
## 3463 16 3.4764210 2
## 3464 16 3.4764210 2
## 3465 16 3.4764210 2
## 3466 16 3.4764210 2
## 3467 16 3.4764210 2
## 3468 16 3.4764210 2
## 3469 16 3.4764210 2
## 3470 16 3.4764210 2
## 3471 16 3.4764210 2
## 3472 16 3.4764210 2
## 3473 16 3.4764210 2
## 3474 16 3.4764210 2
## 3475 16 3.4764210 2
## 3476 51 11.0810900 8
## 3477 51 11.0810900 8
## 3478 104 22.5967400 18
## 3479 180 39.1097400 33
## 3480 40 8.6910530 6
## 3481 40 8.6910530 6
## 3482 135 29.3323000 24
## 3483 94 20.4239800 16
## 3484 73 15.8611700 12
## 3485 362 78.6540300 70
## 3486 1068 232.0511000 220
## 3487 1794 389.7937000 380
## 3488 57 12.3847500 9
## 3489 920 199.8942000 188
## 3490 46 9.9947110 7
## 3491 115 24.9867800 20
## 3492 110 23.9004000 19
## 3493 68 14.7747900 11
## 3494 353 76.6985500 68
## 3495 105 22.8140100 18
## 3496 29 6.3010140 4
## 3497 29 6.3010140 4
## 3498 29 6.3010140 4
## 3499 29 6.3010140 4
## 3500 29 6.3010140 4
## 3501 29 6.3010140 4
## 3502 29 6.3010140 4
## 3503 236 51.2772100 44
## 3504 23 4.9973560 3
## 3505 23 4.9973560 3
## 3506 23 4.9973560 3
## 3507 23 4.9973560 3
## 3508 23 4.9973560 3
## 3509 23 4.9973560 3
## 3510 100 21.7276300 17
## 3511 79 17.1648300 13
## 3512 35 7.6046720 5
## 3513 35 7.6046720 5
## 3514 35 7.6046720 5
## 3515 35 7.6046720 5
## 3516 52 11.2983700 8
## 3517 95 20.6412500 16
## 3518 354 76.9158200 68
## 3519 41 8.9083300 6
## 3520 41 8.9083300 6
## 3521 222 48.2353500 41
## 3522 834 181.2085000 169
## 3523 17 3.6936980 2
## 3524 17 3.6936980 2
## 3525 17 3.6936980 2
## 3526 17 3.6936980 2
## 3527 17 3.6936980 2
## 3528 17 3.6936980 2
## 3529 17 3.6936980 2
## 3530 17 3.6936980 2
## 3531 17 3.6936980 2
## 3532 17 3.6936980 2
## 3533 85 18.4684900 14
## 3534 937 203.5879000 191
## 3535 69 14.9920700 11
## 3536 10 2.1727630 1
## 3537 10 2.1727630 1
## 3538 10 2.1727630 1
## 3539 10 2.1727630 1
## 3540 10 2.1727630 1
## 3541 10 2.1727630 1
## 3542 10 2.1727630 1
## 3543 10 2.1727630 1
## 3544 10 2.1727630 1
## 3545 10 2.1727630 1
## 3546 10 2.1727630 1
## 3547 10 2.1727630 1
## 3548 10 2.1727630 1
## 3549 10 2.1727630 1
## 3550 10 2.1727630 1
## 3551 10 2.1727630 1
## 3552 10 2.1727630 1
## 3553 10 2.1727630 1
## 3554 10 2.1727630 1
## 3555 10 2.1727630 1
## 3556 10 2.1727630 1
## 3557 10 2.1727630 1
## 3558 10 2.1727630 1
## 3559 10 2.1727630 1
## 3560 10 2.1727630 1
## 3561 10 2.1727630 1
## 3562 10 2.1727630 1
## 3563 10 2.1727630 1
## 3564 10 2.1727630 1
## 3565 10 2.1727630 1
## 3566 10 2.1727630 1
## 3567 10 2.1727630 1
## 3568 10 2.1727630 1
## 3569 10 2.1727630 1
## 3570 10 2.1727630 1
## 3571 10 2.1727630 1
## 3572 10 2.1727630 1
## 3573 10 2.1727630 1
## 3574 10 2.1727630 1
## 3575 127 27.5940900 22
## 3576 336 73.0048500 64
## 3577 228 49.5390000 42
## 3578 96 20.8585300 16
## 3579 117 25.4213300 20
## 3580 64 13.9056900 10
## 3581 53 11.5156500 8
## 3582 53 11.5156500 8
## 3583 30 6.5182900 4
## 3584 30 6.5182900 4
## 3585 30 6.5182900 4
## 3586 30 6.5182900 4
## 3587 143 31.0705200 25
## 3588 36 7.8219480 5
## 3589 36 7.8219480 5
## 3590 36 7.8219480 5
## 3591 283 61.4892000 53
## 3592 24 5.2146320 3
## 3593 24 5.2146320 3
## 3594 24 5.2146320 3
## 3595 24 5.2146320 3
## 3596 194 42.1516100 35
## 3597 42 9.1256060 6
## 3598 42 9.1256060 6
## 3599 59 12.8193000 9
## 3600 59 12.8193000 9
## 3601 1028 223.3601000 210
## 3602 264 57.3609500 49
## 3603 123 26.7249900 21
## 3604 97 21.0758000 16
## 3605 149 32.3741700 26
## 3606 113 24.5522300 19
## 3607 113 24.5522300 19
## 3608 721 156.6562000 144
## 3609 76 16.5130000 12
## 3610 180 39.1097400 32
## 3611 108 23.4658400 18
## 3612 54 11.7329200 8
## 3613 170 36.9369800 30
## 3614 170 36.9369800 30
## 3615 18 3.9109740 2
## 3616 18 3.9109740 2
## 3617 18 3.9109740 2
## 3618 18 3.9109740 2
## 3619 18 3.9109740 2
## 3620 18 3.9109740 2
## 3621 18 3.9109740 2
## 3622 18 3.9109740 2
## 3623 18 3.9109740 2
## 3624 103 22.3794600 17
## 3625 37 8.0392240 5
## 3626 37 8.0392240 5
## 3627 31 6.7355660 4
## 3628 31 6.7355660 4
## 3629 31 6.7355660 4
## 3630 31 6.7355660 4
## 3631 31 6.7355660 4
## 3632 31 6.7355660 4
## 3633 31 6.7355660 4
## 3634 31 6.7355660 4
## 3635 60 13.0365800 9
## 3636 60 13.0365800 9
## 3637 938 203.8052000 190
## 3638 82 17.8166600 13
## 3639 43 9.3428820 6
## 3640 43 9.3428820 6
## 3641 980 212.9308000 199
## 3642 1713 372.1944000 360
## 3643 93 20.2067000 15
## 3644 171 37.1542500 30
## 3645 11 2.3900400 1
## 3646 11 2.3900400 1
## 3647 11 2.3900400 1
## 3648 11 2.3900400 1
## 3649 11 2.3900400 1
## 3650 11 2.3900400 1
## 3651 11 2.3900400 1
## 3652 11 2.3900400 1
## 3653 11 2.3900400 1
## 3654 11 2.3900400 1
## 3655 11 2.3900400 1
## 3656 11 2.3900400 1
## 3657 11 2.3900400 1
## 3658 11 2.3900400 1
## 3659 11 2.3900400 1
## 3660 11 2.3900400 1
## 3661 11 2.3900400 1
## 3662 11 2.3900400 1
## 3663 11 2.3900400 1
## 3664 11 2.3900400 1
## 3665 11 2.3900400 1
## 3666 11 2.3900400 1
## 3667 11 2.3900400 1
## 3668 11 2.3900400 1
## 3669 11 2.3900400 1
## 3670 11 2.3900400 1
## 3671 11 2.3900400 1
## 3672 11 2.3900400 1
## 3673 11 2.3900400 1
## 3674 11 2.3900400 1
## 3675 11 2.3900400 1
## 3676 11 2.3900400 1
## 3677 11 2.3900400 1
## 3678 11 2.3900400 1
## 3679 11 2.3900400 1
## 3680 11 2.3900400 1
## 3681 11 2.3900400 1
## 3682 25 5.4319080 3
## 3683 25 5.4319080 3
## 3684 25 5.4319080 3
## 3685 25 5.4319080 3
## 3686 25 5.4319080 3
## 3687 25 5.4319080 3
## 3688 109 23.6831200 18
## 3689 109 23.6831200 18
## 3690 311 67.5729400 58
## 3691 88 19.1203200 14
## 3692 790 171.6483000 158
## 3693 55 11.9502000 8
## 3694 55 11.9502000 8
## 3695 696 151.2243000 138
## 3696 99 21.5103600 16
## 3697 72 15.6439000 11
## 3698 61 13.2538600 9
## 3699 332 72.1357400 62
## 3700 332 72.1357400 62
## 3701 94 20.4239800 15
## 3702 110 23.9004000 18
## 3703 38 8.2565010 5
## 3704 38 8.2565010 5
## 3705 208 45.1934800 37
## 3706 32 6.9528430 4
## 3707 32 6.9528430 4
## 3708 32 6.9528430 4
## 3709 303 65.8347300 56
## 3710 19 4.1282500 2
## 3711 19 4.1282500 2
## 3712 19 4.1282500 2
## 3713 19 4.1282500 2
## 3714 19 4.1282500 2
## 3715 19 4.1282500 2
## 3716 19 4.1282500 2
## 3717 19 4.1282500 2
## 3718 19 4.1282500 2
## 3719 19 4.1282500 2
## 3720 19 4.1282500 2
## 3721 50 10.8638200 7
## 3722 797 173.1692000 159
## 3723 142 30.8532400 24
## 3724 450 97.7743500 86
## 3725 56 12.1674700 8
## 3726 26 5.6491850 3
## 3727 26 5.6491850 3
## 3728 26 5.6491850 3
## 3729 26 5.6491850 3
## 3730 26 5.6491850 3
## 3731 26 5.6491850 3
## 3732 26 5.6491850 3
## 3733 26 5.6491850 3
## 3734 84 18.2512100 13
## 3735 132 28.6804800 22
## 3736 324 70.3975300 60
## 3737 62 13.4711300 9
## 3738 90 19.5548700 14
## 3739 12 2.6073160 1
## 3740 12 2.6073160 1
## 3741 12 2.6073160 1
## 3742 12 2.6073160 1
## 3743 12 2.6073160 1
## 3744 12 2.6073160 1
## 3745 12 2.6073160 1
## 3746 12 2.6073160 1
## 3747 12 2.6073160 1
## 3748 12 2.6073160 1
## 3749 12 2.6073160 1
## 3750 12 2.6073160 1
## 3751 12 2.6073160 1
## 3752 12 2.6073160 1
## 3753 12 2.6073160 1
## 3754 12 2.6073160 1
## 3755 12 2.6073160 1
## 3756 12 2.6073160 1
## 3757 12 2.6073160 1
## 3758 12 2.6073160 1
## 3759 12 2.6073160 1
## 3760 12 2.6073160 1
## 3761 12 2.6073160 1
## 3762 12 2.6073160 1
## 3763 12 2.6073160 1
## 3764 12 2.6073160 1
## 3765 12 2.6073160 1
## 3766 12 2.6073160 1
## 3767 12 2.6073160 1
## 3768 12 2.6073160 1
## 3769 12 2.6073160 1
## 3770 12 2.6073160 1
## 3771 220 47.8007900 39
## 3772 68 14.7747900 10
## 3773 672 146.0097000 132
## 3774 45 9.7774350 6
## 3775 138 29.9841300 23
## 3776 691 150.1379000 136
## 3777 39 8.4737770 5
## 3778 1758 381.9718000 369
## 3779 625 135.7977000 122
## 3780 33 7.1701190 4
## 3781 33 7.1701190 4
## 3782 33 7.1701190 4
## 3783 33 7.1701190 4
## 3784 33 7.1701190 4
## 3785 33 7.1701190 4
## 3786 74 16.0784500 11
## 3787 291 63.2274100 53
## 3788 175 38.0233600 30
## 3789 144 31.2877900 24
## 3790 107 23.2485700 17
## 3791 20 4.3455270 2
## 3792 20 4.3455270 2
## 3793 20 4.3455270 2
## 3794 20 4.3455270 2
## 3795 20 4.3455270 2
## 3796 20 4.3455270 2
## 3797 341 74.0912300 63
## 3798 91 19.7721500 14
## 3799 27 5.8664610 3
## 3800 27 5.8664610 3
## 3801 27 5.8664610 3
## 3802 27 5.8664610 3
## 3803 102 22.1621900 16
## 3804 69 14.9920700 10
## 3805 69 14.9920700 10
## 3806 317 68.8766000 58
## 3807 129 28.0286500 21
## 3808 46 9.9947110 6
## 3809 46 9.9947110 6
## 3810 342 74.3085100 63
## 3811 52 11.2983700 7
## 3812 52 11.2983700 7
## 3813 40 8.6910530 5
## 3814 40 8.6910530 5
## 3815 161 34.9814900 27
## 3816 268 58.2300600 48
## 3817 338 73.4394000 62
## 3818 441 95.8188600 83
## 3819 13 2.8245920 1
## 3820 13 2.8245920 1
## 3821 13 2.8245920 1
## 3822 13 2.8245920 1
## 3823 13 2.8245920 1
## 3824 13 2.8245920 1
## 3825 13 2.8245920 1
## 3826 13 2.8245920 1
## 3827 13 2.8245920 1
## 3828 13 2.8245920 1
## 3829 13 2.8245920 1
## 3830 13 2.8245920 1
## 3831 13 2.8245920 1
## 3832 13 2.8245920 1
## 3833 13 2.8245920 1
## 3834 13 2.8245920 1
## 3835 13 2.8245920 1
## 3836 13 2.8245920 1
## 3837 13 2.8245920 1
## 3838 13 2.8245920 1
## 3839 13 2.8245920 1
## 3840 13 2.8245920 1
## 3841 13 2.8245920 1
## 3842 13 2.8245920 1
## 3843 13 2.8245920 1
## 3844 13 2.8245920 1
## 3845 13 2.8245920 1
## 3846 13 2.8245920 1
## 3847 87 18.9030400 13
## 3848 21 4.5628030 2
## 3849 21 4.5628030 2
## 3850 21 4.5628030 2
## 3851 21 4.5628030 2
## 3852 21 4.5628030 2
## 3853 21 4.5628030 2
## 3854 28 6.0837370 3
## 3855 53 11.5156500 7
## 3856 462 100.3817000 87
## 3857 41 8.9083300 5
## 3858 41 8.9083300 5
## 3859 774 168.1719000 152
## 3860 774 168.1719000 152
## 3861 774 168.1719000 152
## 3862 35 7.6046720 4
## 3863 35 7.6046720 4
## 3864 71 15.4266200 10
## 3865 99 21.5103600 15
## 3866 121 26.2904400 19
## 3867 205 44.5416500 35
## 3868 132 28.6804800 21
## 3869 105 22.8140100 16
## 3870 105 22.8140100 16
## 3871 54 11.7329200 7
## 3872 60 13.0365800 8
## 3873 60 13.0365800 8
## 3874 83 18.0339400 12
## 3875 83 18.0339400 12
## 3876 83 18.0339400 12
## 3877 83 18.0339400 12
## 3878 164 35.6333200 27
## 3879 66 14.3402400 9
## 3880 42 9.1256060 5
## 3881 42 9.1256060 5
## 3882 159 34.5469400 26
## 3883 29 6.3010140 3
## 3884 29 6.3010140 3
## 3885 29 6.3010140 3
## 3886 29 6.3010140 3
## 3887 14 3.0418690 1
## 3888 14 3.0418690 1
## 3889 14 3.0418690 1
## 3890 14 3.0418690 1
## 3891 14 3.0418690 1
## 3892 14 3.0418690 1
## 3893 14 3.0418690 1
## 3894 14 3.0418690 1
## 3895 14 3.0418690 1
## 3896 14 3.0418690 1
## 3897 14 3.0418690 1
## 3898 14 3.0418690 1
## 3899 14 3.0418690 1
## 3900 14 3.0418690 1
## 3901 14 3.0418690 1
## 3902 14 3.0418690 1
## 3903 14 3.0418690 1
## 3904 14 3.0418690 1
## 3905 14 3.0418690 1
## 3906 22 4.7800790 2
## 3907 22 4.7800790 2
## 3908 22 4.7800790 2
## 3909 22 4.7800790 2
## 3910 22 4.7800790 2
## 3911 22 4.7800790 2
## 3912 22 4.7800790 2
## 3913 22 4.7800790 2
## 3914 22 4.7800790 2
## 3915 22 4.7800790 2
## 3916 252 54.7536400 44
## 3917 72 15.6439000 10
## 3918 201 43.6725400 34
## 3919 36 7.8219480 4
## 3920 36 7.8219480 4
## 3921 787 170.9965000 154
## 3922 181 39.3270200 30
## 3923 84 18.2512100 12
## 3924 55 11.9502000 7
## 3925 202 43.8898200 34
## 3926 155 33.6778300 25
## 3927 49 10.6465400 6
## 3928 49 10.6465400 6
## 3929 49 10.6465400 6
## 3930 49 10.6465400 6
## 3931 67 14.5575100 9
## 3932 727 157.9599000 141
## 3933 213 46.2798600 36
## 3934 713 154.9180000 138
## 3935 699 151.8762000 135
## 3936 30 6.5182900 3
## 3937 30 6.5182900 3
## 3938 30 6.5182900 3
## 3939 23 4.9973560 2
## 3940 23 4.9973560 2
## 3941 23 4.9973560 2
## 3942 23 4.9973560 2
## 3943 23 4.9973560 2
## 3944 23 4.9973560 2
## 3945 23 4.9973560 2
## 3946 23 4.9973560 2
## 3947 23 4.9973560 2
## 3948 23 4.9973560 2
## 3949 37 8.0392240 4
## 3950 37 8.0392240 4
## 3951 37 8.0392240 4
## 3952 37 8.0392240 4
## 3953 37 8.0392240 4
## 3954 37 8.0392240 4
## 3955 151 32.8087300 24
## 3956 62 13.4711300 8
## 3957 62 13.4711300 8
## 3958 62 13.4711300 8
## 3959 214 46.4971400 36
## 3960 56 12.1674700 7
## 3961 15 3.2591450 1
## 3962 15 3.2591450 1
## 3963 15 3.2591450 1
## 3964 15 3.2591450 1
## 3965 15 3.2591450 1
## 3966 15 3.2591450 1
## 3967 15 3.2591450 1
## 3968 15 3.2591450 1
## 3969 15 3.2591450 1
## 3970 15 3.2591450 1
## 3971 15 3.2591450 1
## 3972 15 3.2591450 1
## 3973 15 3.2591450 1
## 3974 15 3.2591450 1
## 3975 15 3.2591450 1
## 3976 15 3.2591450 1
## 3977 15 3.2591450 1
## 3978 15 3.2591450 1
## 3979 15 3.2591450 1
## 3980 15 3.2591450 1
## 3981 50 10.8638200 6
## 3982 50 10.8638200 6
## 3983 50 10.8638200 6
## 3984 50 10.8638200 6
## 3985 44 9.5601590 5
## 3986 44 9.5601590 5
## 3987 189 41.0652300 31
## 3988 152 33.0260000 24
## 3989 490 106.4654000 91
## 3990 282 61.2719300 49
## 3991 31 6.7355660 3
## 3992 31 6.7355660 3
## 3993 31 6.7355660 3
## 3994 31 6.7355660 3
## 3995 31 6.7355660 3
## 3996 31 6.7355660 3
## 3997 63 13.6884100 8
## 3998 57 12.3847500 7
## 3999 38 8.2565010 4
## 4000 38 8.2565010 4
## 4001 38 8.2565010 4
## 4002 51 11.0810900 6
## 4003 51 11.0810900 6
## 4004 293 63.6619700 51
## 4005 24 5.2146320 2
## 4006 24 5.2146320 2
## 4007 24 5.2146320 2
## 4008 24 5.2146320 2
## 4009 632 137.3186000 120
## 4010 87 18.9030400 12
## 4011 16 3.4764210 1
## 4012 16 3.4764210 1
## 4013 16 3.4764210 1
## 4014 16 3.4764210 1
## 4015 16 3.4764210 1
## 4016 16 3.4764210 1
## 4017 16 3.4764210 1
## 4018 16 3.4764210 1
## 4019 16 3.4764210 1
## 4020 16 3.4764210 1
## 4021 16 3.4764210 1
## 4022 16 3.4764210 1
## 4023 16 3.4764210 1
## 4024 16 3.4764210 1
## 4025 16 3.4764210 1
## 4026 16 3.4764210 1
## 4027 16 3.4764210 1
## 4028 16 3.4764210 1
## 4029 16 3.4764210 1
## 4030 16 3.4764210 1
## 4031 16 3.4764210 1
## 4032 16 3.4764210 1
## 4033 16 3.4764210 1
## 4034 16 3.4764210 1
## 4035 16 3.4764210 1
## 4036 217 47.1489600 36
## 4037 170 36.9369800 27
## 4038 186 40.4134000 30
## 4039 32 6.9528430 3
## 4040 32 6.9528430 3
## 4041 105 22.8140100 15
## 4042 52 11.2983700 6
## 4043 52 11.2983700 6
## 4044 39 8.4737770 4
## 4045 218 47.3662400 36
## 4046 654 142.0987000 124
## 4047 260 56.4918500 44
## 4048 25 5.4319080 2
## 4049 25 5.4319080 2
## 4050 25 5.4319080 2
## 4051 25 5.4319080 2
## 4052 25 5.4319080 2
## 4053 25 5.4319080 2
## 4054 311 67.5729400 54
## 4055 100 21.7276300 14
## 4056 100 21.7276300 14
## 4057 150 32.5914500 23
## 4058 83 18.0339400 11
## 4059 83 18.0339400 11
## 4060 83 18.0339400 11
## 4061 161 34.9814900 25
## 4062 312 67.7902200 54
## 4063 188 40.8479500 30
## 4064 17 3.6936980 1
## 4065 17 3.6936980 1
## 4066 17 3.6936980 1
## 4067 17 3.6936980 1
## 4068 17 3.6936980 1
## 4069 17 3.6936980 1
## 4070 17 3.6936980 1
## 4071 17 3.6936980 1
## 4072 17 3.6936980 1
## 4073 17 3.6936980 1
## 4074 33 7.1701190 3
## 4075 33 7.1701190 3
## 4076 33 7.1701190 3
## 4077 33 7.1701190 3
## 4078 246 53.4499800 41
## 4079 1030 223.7946000 203
## 4080 47 10.2119900 5
## 4081 47 10.2119900 5
## 4082 66 14.3402400 8
## 4083 66 14.3402400 8
## 4084 66 14.3402400 8
## 4085 66 14.3402400 8
## 4086 653 141.8814000 123
## 4087 334 72.5703000 58
## 4088 26 5.6491850 2
## 4089 26 5.6491850 2
## 4090 26 5.6491850 2
## 4091 26 5.6491850 2
## 4092 557 121.0229000 103
## 4093 464 100.8162000 84
## 4094 119 25.8558800 17
## 4095 54 11.7329200 6
## 4096 227 49.3217300 37
## 4097 108 23.4658400 15
## 4098 41 8.9083300 4
## 4099 41 8.9083300 4
## 4100 34 7.3873950 3
## 4101 34 7.3873950 3
## 4102 34 7.3873950 3
## 4103 34 7.3873950 3
## 4104 114 24.7695000 16
## 4105 18 3.9109740 1
## 4106 18 3.9109740 1
## 4107 175 38.0233600 27
## 4108 126 27.3768200 18
## 4109 27 5.8664610 2
## 4110 27 5.8664610 2
## 4111 27 5.8664610 2
## 4112 27 5.8664610 2
## 4113 27 5.8664610 2
## 4114 27 5.8664610 2
## 4115 27 5.8664610 2
## 4116 27 5.8664610 2
## 4117 27 5.8664610 2
## 4118 27 5.8664610 2
## 4119 192 41.7170600 30
## 4120 208 45.1934800 33
## 4121 312 67.7902200 53
## 4122 42 9.1256060 4
## 4123 35 7.6046720 3
## 4124 35 7.6046720 3
## 4125 35 7.6046720 3
## 4126 49 10.6465400 5
## 4127 49 10.6465400 5
## 4128 214 46.4971400 34
## 4129 116 25.2040500 16
## 4130 81 17.5993800 10
## 4131 241 52.3636000 39
## 4132 19 4.1282500 1
## 4133 19 4.1282500 1
## 4134 19 4.1282500 1
## 4135 19 4.1282500 1
## 4136 19 4.1282500 1
## 4137 19 4.1282500 1
## 4138 19 4.1282500 1
## 4139 19 4.1282500 1
## 4140 19 4.1282500 1
## 4141 19 4.1282500 1
## 4142 19 4.1282500 1
## 4143 19 4.1282500 1
## 4144 19 4.1282500 1
## 4145 19 4.1282500 1
## 4146 75 16.2957200 9
## 4147 75 16.2957200 9
## 4148 122 26.5077100 17
## 4149 69 14.9920700 8
## 4150 514 111.6800000 93
## 4151 28 6.0837370 2
## 4152 28 6.0837370 2
## 4153 28 6.0837370 2
## 4154 28 6.0837370 2
## 4155 43 9.3428820 4
## 4156 43 9.3428820 4
## 4157 43 9.3428820 4
## 4158 134 29.1150300 19
## 4159 36 7.8219480 3
## 4160 36 7.8219480 3
## 4161 36 7.8219480 3
## 4162 123 26.7249900 17
## 4163 57 12.3847500 6
## 4164 57 12.3847500 6
## 4165 195 42.3688800 30
## 4166 146 31.7223400 21
## 4167 20 4.3455270 1
## 4168 20 4.3455270 1
## 4169 20 4.3455270 1
## 4170 20 4.3455270 1
## 4171 20 4.3455270 1
## 4172 20 4.3455270 1
## 4173 20 4.3455270 1
## 4174 44 9.5601590 4
## 4175 51 11.0810900 5
## 4176 223 48.4526200 35
## 4177 107 23.2485700 14
## 4178 113 24.5522300 15
## 4179 58 12.6020300 6
## 4180 58 12.6020300 6
## 4181 621 134.9286000 114
## 4182 213 46.2798600 33
## 4183 125 27.1595400 17
## 4184 96 20.8585300 12
## 4185 96 20.8585300 12
## 4186 219 47.5835200 34
## 4187 45 9.7774350 4
## 4188 618 134.2768000 113
## 4189 734 159.4808000 137
## 4190 30 6.5182900 2
## 4191 30 6.5182900 2
## 4192 30 6.5182900 2
## 4193 30 6.5182900 2
## 4194 30 6.5182900 2
## 4195 59 12.8193000 6
## 4196 72 15.6439000 8
## 4197 21 4.5628030 1
## 4198 21 4.5628030 1
## 4199 193 41.9343300 29
## 4200 188 40.8479500 28
## 4201 85 18.4684900 10
## 4202 115 24.9867800 15
## 4203 46 9.9947110 4
## 4204 413 89.7351300 71
## 4205 178 38.6751900 26
## 4206 31 6.7355660 2
## 4207 31 6.7355660 2
## 4208 31 6.7355660 2
## 4209 39 8.4737770 3
## 4210 459 99.7298400 80
## 4211 439 95.3843100 76
## 4212 122 26.5077100 16
## 4213 122 26.5077100 16
## 4214 22 4.7800790 1
## 4215 22 4.7800790 1
## 4216 22 4.7800790 1
## 4217 22 4.7800790 1
## 4218 22 4.7800790 1
## 4219 54 11.7329200 5
## 4220 364 79.0885900 61
## 4221 40 8.6910530 3
## 4222 32 6.9528430 2
## 4223 32 6.9528430 2
## 4224 309 67.1383900 50
## 4225 118 25.6386100 15
## 4226 55 11.9502000 5
## 4227 1030 223.7946000 198
## 4228 23 4.9973560 1
## 4229 23 4.9973560 1
## 4230 23 4.9973560 1
## 4231 23 4.9973560 1
## 4232 23 4.9973560 1
## 4233 23 4.9973560 1
## 4234 62 13.4711300 6
## 4235 48 10.4292600 4
## 4236 82 17.8166600 9
## 4237 107 23.2485700 13
## 4238 33 7.1701190 2
## 4239 56 12.1674700 5
## 4240 89 19.3375900 10
## 4241 63 13.6884100 6
## 4242 221 48.0180700 33
## 4243 49 10.6465400 4
## 4244 24 5.2146320 1
## 4245 24 5.2146320 1
## 4246 24 5.2146320 1
## 4247 42 9.1256060 3
## 4248 121 26.2904400 15
## 4249 121 26.2904400 15
## 4250 127 27.5940900 16
## 4251 71 15.4266200 7
## 4252 168 36.5024200 23
## 4253 392 85.1723200 65
## 4254 174 37.8060800 24
## 4255 25 5.4319080 1
## 4256 43 9.3428820 3
## 4257 1117 242.6977000 215
## 4258 219 47.5835200 32
## 4259 584 126.8894000 103
## 4260 35 7.6046720 2
## 4261 35 7.6046720 2
## 4262 117 25.4213300 14
## 4263 536 116.4601000 93
## 4264 105 22.8140100 12
## 4265 66 14.3402400 6
## 4266 99 21.5103600 11
## 4267 26 5.6491850 1
## 4268 26 5.6491850 1
## 4269 26 5.6491850 1
## 4270 26 5.6491850 1
## 4271 26 5.6491850 1
## 4272 542 117.7638000 94
## 4273 52 11.2983700 4
## 4274 80 17.3821100 8
## 4275 36 7.8219480 2
## 4276 112 24.3349500 13
## 4277 148 32.1569000 19
## 4278 106 23.0312900 12
## 4279 412 89.5178500 68
## 4280 67 14.5575100 6
## 4281 100 21.7276300 11
## 4282 60 13.0365800 5
## 4283 27 5.8664610 1
## 4284 161 34.9814900 21
## 4285 37 8.0392240 2
## 4286 37 8.0392240 2
## 4287 914 198.5906000 170
## 4288 38 8.2565010 2
## 4289 163 35.4160400 21
## 4290 1030 223.7946000 194
## 4291 152 33.0260000 19
## 4292 77 16.7302800 7
## 4293 29 6.3010140 1
## 4294 39 8.4737770 2
## 4295 39 8.4737770 2
## 4296 129 28.0286500 15
## 4297 91 19.7721500 9
## 4298 78 16.9475500 7
## 4299 78 16.9475500 7
## 4300 421 91.4733400 68
## 4301 40 8.6910530 2
## 4302 106 23.0312900 11
## 4303 65 14.1229600 5
## 4304 65 14.1229600 5
## 4305 208 45.1934800 28
## 4306 231 50.1908300 32
## 4307 73 15.8611700 6
## 4308 31 6.7355660 1
## 4309 186 40.4134000 24
## 4310 50 10.8638200 3
## 4311 94 20.4239800 9
## 4312 94 20.4239800 9
## 4313 66 14.3402400 5
## 4314 304 66.0520100 45
## 4315 51 11.0810900 3
## 4316 51 11.0810900 3
## 4317 228 49.5390000 31
## 4318 159 34.5469400 19
## 4319 165 35.8505900 20
## 4320 172 37.3715300 21
## 4321 184 39.9788500 23
## 4322 179 38.8924600 22
## 4323 44 9.5601590 2
## 4324 953 207.0643000 174
## 4325 98 21.2930800 9
## 4326 34 7.3873950 1
## 4327 34 7.3873950 1
## 4328 34 7.3873950 1
## 4329 34 7.3873950 1
## 4330 288 62.5755800 41
## 4331 337 73.2221200 50
## 4332 1082 235.0930000 201
## 4333 54 11.7329200 3
## 4334 284 61.7064800 40
## 4335 501 108.8554000 81
## 4336 35 7.6046720 1
## 4337 35 7.6046720 1
## 4338 35 7.6046720 1
## 4339 63 13.6884100 4
## 4340 93 20.2067000 8
## 4341 80 17.3821100 6
## 4342 80 17.3821100 6
## 4343 80 17.3821100 6
## 4344 47 10.2119900 2
## 4345 65 14.1229600 4
## 4346 37 8.0392240 1
## 4347 37 8.0392240 1
## 4348 37 8.0392240 1
## 4349 48 10.4292600 2
## 4350 103 22.3794600 9
## 4351 181 39.3270200 21
## 4352 118 25.6386100 11
## 4353 83 18.0339400 6
## 4354 1641 356.5505000 323
## 4355 1002 217.7109000 181
## 4356 68 14.7747900 4
## 4357 260 56.4918500 34
## 4358 803 174.4729000 139
## 4359 472 102.5544000 73
## 4360 1010 219.4491000 182
## 4361 489 106.2481000 76
## 4362 135 29.3323000 13
## 4363 204 44.3243700 24
## 4364 204 44.3243700 24
## 4365 1119 243.1322000 205
## 4366 369 80.1749700 53
## 4367 235 51.0599400 29
## 4368 116 25.2040500 10
## 4369 87 18.9030400 6
## 4370 71 15.4266200 4
## 4371 349 75.8294400 49
## 4372 54 11.7329200 2
## 4373 44 9.5601590 1
## 4374 252 54.7536400 31
## 4375 1317 286.1529000 246
## 4376 339 73.6566800 46
## 4377 324 70.3975300 43
## 4378 320 69.5284300 42
## 4379 337 73.2221200 45
## 4380 221 48.0180700 24
## 4381 929 201.8497000 159
## 4382 1846 401.0921000 365
## 4383 386 83.8686600 51
## 4384 829 180.1221000 136
## 4385 158 34.3296600 13
## 4386 712 154.7007000 111
## 4387 173 37.5888100 14
## 4388 703 152.7453000 108
## 4389 166 36.0678700 13
## 4390 559 121.4575000 80
## 4391 484 105.1617000 66
## 4392 191 41.4997800 16
## 4393 895 194.4623000 145
## 4394 897 194.8969000 145
## 4395 169 36.7197000 11
## 4396 199 43.2379900 14
## 4397 0 0.0000000 0
## 4398 0 0.0000000 0
## 4399 0 0.0000000 0
## 4400 4 0.8691053 0
## 4401 0 0.0000000 0
## 4402 0 0.0000000 0
## 4403 1 0.2172763 0
## 4404 0 0.0000000 0
## 4405 0 0.0000000 0
## 4406 0 0.0000000 0
## 4407 0 0.0000000 0
## 4408 0 0.0000000 0
## 4409 0 0.0000000 0
## 4410 0 0.0000000 0
## 4411 0 0.0000000 0
## 4412 0 0.0000000 0
## 4413 0 0.0000000 0
## 4414 4 0.8691053 0
## 4415 3 0.6518290 0
## 4416 0 0.0000000 0
## 4417 1 0.2172763 0
## 4418 1 0.2172763 0
## 4419 0 0.0000000 0
## 4420 0 0.0000000 0
## 4421 2 0.4345527 0
## 4422 2 0.4345527 0
## 4423 2 0.4345527 0
## 4424 1 0.2172763 0
## 4425 0 0.0000000 0
## 4426 0 0.0000000 0
## 4427 2 0.4345527 0
## 4428 0 0.0000000 0
## 4429 0 0.0000000 0
## 4430 0 0.0000000 0
## 4431 0 0.0000000 0
## 4432 0 0.0000000 0
## 4433 0 0.0000000 0
## 4434 0 0.0000000 0
## 4435 0 0.0000000 0
## 4436 0 0.0000000 0
## 4437 0 0.0000000 0
## 4438 2 0.4345527 0
## 4439 0 0.0000000 0
## 4440 0 0.0000000 0
## 4441 0 0.0000000 0
## 4442 0 0.0000000 0
## 4443 0 0.0000000 0
## 4444 0 0.0000000 0
## 4445 0 0.0000000 0
## 4446 0 0.0000000 0
## 4447 1 0.2172763 0
## 4448 0 0.0000000 0
## 4449 0 0.0000000 0
## 4450 8 1.7382110 0
## 4451 0 0.0000000 0
## 4452 1 0.2172763 0
## 4453 1 0.2172763 0
## 4454 0 0.0000000 0
## 4455 1 0.2172763 0
## 4456 7 1.5209340 0
## 4457 0 0.0000000 0
## 4458 1 0.2172763 0
## 4459 1 0.2172763 0
## 4460 0 0.0000000 0
## 4461 0 0.0000000 0
## 4462 1 0.2172763 0
## 4463 1 0.2172763 0
## 4464 0 0.0000000 0
## 4465 0 0.0000000 0
## 4466 0 0.0000000 0
## 4467 0 0.0000000 0
## 4468 0 0.0000000 0
## 4469 0 0.0000000 0
## 4470 0 0.0000000 0
## 4471 2 0.4345527 0
## 4472 0 0.0000000 0
## 4473 0 0.0000000 0
## 4474 0 0.0000000 0
## 4475 3 0.6518290 0
## 4476 8 1.7382110 0
## 4477 0 0.0000000 0
## 4478 0 0.0000000 0
## 4479 0 0.0000000 0
## 4480 5 1.0863820 0
## 4481 5 1.0863820 0
## 4482 0 0.0000000 0
## 4483 0 0.0000000 0
## 4484 0 0.0000000 0
## 4485 0 0.0000000 0
## 4486 0 0.0000000 0
## 4487 0 0.0000000 0
## 4488 0 0.0000000 0
## 4489 0 0.0000000 0
## 4490 0 0.0000000 0
## 4491 4 0.8691053 0
## 4492 0 0.0000000 0
## 4493 0 0.0000000 0
## 4494 0 0.0000000 0
## 4495 0 0.0000000 0
## 4496 0 0.0000000 0
## 4497 0 0.0000000 0
## 4498 0 0.0000000 0
## 4499 0 0.0000000 0
## 4500 0 0.0000000 0
## 4501 0 0.0000000 0
## 4502 0 0.0000000 0
## 4503 0 0.0000000 0
## 4504 0 0.0000000 0
## 4505 0 0.0000000 0
## 4506 0 0.0000000 0
## 4507 0 0.0000000 0
## 4508 1 0.2172763 0
## 4509 0 0.0000000 0
## 4510 2 0.4345527 0
## 4511 6 1.3036580 0
## 4512 0 0.0000000 0
## 4513 0 0.0000000 0
## 4514 0 0.0000000 0
## 4515 0 0.0000000 0
## 4516 0 0.0000000 0
## 4517 0 0.0000000 0
## 4518 0 0.0000000 0
## 4519 0 0.0000000 0
## 4520 0 0.0000000 0
## 4521 0 0.0000000 0
## 4522 0 0.0000000 0
## 4523 0 0.0000000 0
## 4524 0 0.0000000 0
## 4525 0 0.0000000 0
## 4526 1 0.2172763 0
## 4527 0 0.0000000 0
## 4528 0 0.0000000 0
## 4529 4 0.8691053 0
## 4530 4 0.8691053 0
## 4531 0 0.0000000 0
## 4532 0 0.0000000 0
## 4533 0 0.0000000 0
## 4534 0 0.0000000 0
## 4535 0 0.0000000 0
## 4536 0 0.0000000 0
## 4537 3 0.6518290 0
## 4538 0 0.0000000 0
## 4539 1 0.2172763 0
## 4540 7 1.5209340 0
## 4541 5 1.0863820 0
## 4542 0 0.0000000 0
## 4543 0 0.0000000 0
## 4544 0 0.0000000 0
## 4545 3 0.6518290 0
## 4546 0 0.0000000 0
## 4547 0 0.0000000 0
## 4548 0 0.0000000 0
## 4549 0 0.0000000 0
## 4550 0 0.0000000 0
## 4551 0 0.0000000 0
## 4552 0 0.0000000 0
## 4553 0 0.0000000 0
## 4554 0 0.0000000 0
## 4555 0 0.0000000 0
## 4556 0 0.0000000 0
## 4557 0 0.0000000 0
## 4558 0 0.0000000 0
## 4559 0 0.0000000 0
## 4560 3 0.6518290 0
## 4561 5 1.0863820 0
## 4562 2 0.4345527 0
## 4563 0 0.0000000 0
## 4564 1 0.2172763 0
## 4565 0 0.0000000 0
## 4566 0 0.0000000 0
## 4567 0 0.0000000 0
## 4568 3 0.6518290 0
## 4569 5 1.0863820 0
## 4570 0 0.0000000 0
## 4571 2 0.4345527 0
## 4572 4 0.8691053 0
## 4573 0 0.0000000 0
## 4574 1 0.2172763 0
## 4575 3 0.6518290 0
## 4576 7 1.5209340 0
## 4577 0 0.0000000 0
## 4578 0 0.0000000 0
## 4579 0 0.0000000 0
## 4580 0 0.0000000 0
## 4581 0 0.0000000 0
## 4582 0 0.0000000 0
## 4583 0 0.0000000 0
## 4584 0 0.0000000 0
## 4585 0 0.0000000 0
## 4586 0 0.0000000 0
## 4587 0 0.0000000 0
## 4588 0 0.0000000 0
## 4589 0 0.0000000 0
## 4590 0 0.0000000 0
## 4591 0 0.0000000 0
## 4592 0 0.0000000 0
## 4593 0 0.0000000 0
## 4594 0 0.0000000 0
## 4595 0 0.0000000 0
## 4596 0 0.0000000 0
## 4597 0 0.0000000 0
## 4598 0 0.0000000 0
## 4599 3 0.6518290 0
## 4600 3 0.6518290 0
## 4601 3 0.6518290 0
## 4602 0 0.0000000 0
## 4603 0 0.0000000 0
## 4604 0 0.0000000 0
## 4605 0 0.0000000 0
## 4606 0 0.0000000 0
## 4607 0 0.0000000 0
## 4608 0 0.0000000 0
## 4609 0 0.0000000 0
## 4610 0 0.0000000 0
## 4611 6 1.3036580 0
## 4612 0 0.0000000 0
## 4613 5 1.0863820 0
## 4614 0 0.0000000 0
## 4615 0 0.0000000 0
## 4616 8 1.7382110 0
## 4617 0 0.0000000 0
## 4618 8 1.7382110 0
## 4619 0 0.0000000 0
## 4620 2 0.4345527 0
## 4621 0 0.0000000 0
## 4622 2 0.4345527 0
## 4623 1 0.2172763 0
## 4624 0 0.0000000 0
## 4625 0 0.0000000 0
## 4626 0 0.0000000 0
## 4627 5 1.0863820 0
## 4628 7 1.5209340 0
## 4629 5 1.0863820 0
## 4630 0 0.0000000 0
## 4631 0 0.0000000 0
## 4632 2 0.4345527 0
## 4633 0 0.0000000 0
## 4634 0 0.0000000 0
## 4635 2 0.4345527 0
## 4636 1 0.2172763 0
## 4637 1 0.2172763 0
## 4638 0 0.0000000 0
## 4639 0 0.0000000 0
## 4640 0 0.0000000 0
## 4641 2 0.4345527 0
## 4642 0 0.0000000 0
## 4643 1 0.2172763 0
## 4644 0 0.0000000 0
## 4645 4 0.8691053 0
## 4646 0 0.0000000 0
## 4647 0 0.0000000 0
## 4648 0 0.0000000 0
## 4649 0 0.0000000 0
## 4650 0 0.0000000 0
## 4651 0 0.0000000 0
## 4652 11 2.3900400 0
## 4653 5 1.0863820 0
## 4654 1 0.2172763 0
## 4655 0 0.0000000 0
## 4656 0 0.0000000 0
## 4657 0 0.0000000 0
## 4658 0 0.0000000 0
## 4659 0 0.0000000 0
## 4660 5 1.0863820 0
## 4661 2 0.4345527 0
## 4662 0 0.0000000 0
## 4663 2 0.4345527 0
## 4664 0 0.0000000 0
## 4665 2 0.4345527 0
## 4666 0 0.0000000 0
## 4667 8 1.7382110 0
## 4668 0 0.0000000 0
## 4669 6 1.3036580 0
## 4670 0 0.0000000 0
## 4671 14 3.0418690 0
## 4672 0 0.0000000 0
## 4673 0 0.0000000 0
## 4674 0 0.0000000 0
## 4675 0 0.0000000 0
## 4676 0 0.0000000 0
## 4677 0 0.0000000 0
## 4678 0 0.0000000 0
## 4679 0 0.0000000 0
## 4680 0 0.0000000 0
## 4681 0 0.0000000 0
## 4682 0 0.0000000 0
## 4683 3 0.6518290 0
## 4684 0 0.0000000 0
## 4685 0 0.0000000 0
## 4686 9 1.9554870 0
## 4687 0 0.0000000 0
## 4688 0 0.0000000 0
## 4689 1 0.2172763 0
## 4690 0 0.0000000 0
## 4691 0 0.0000000 0
## 4692 1 0.2172763 0
## 4693 0 0.0000000 0
## 4694 7 1.5209340 0
## 4695 0 0.0000000 0
## 4696 0 0.0000000 0
## 4697 0 0.0000000 0
## 4698 0 0.0000000 0
## 4699 1 0.2172763 0
## 4700 0 0.0000000 0
## 4701 0 0.0000000 0
## 4702 0 0.0000000 0
## 4703 0 0.0000000 0
## 4704 0 0.0000000 0
## 4705 0 0.0000000 0
## 4706 0 0.0000000 0
## 4707 0 0.0000000 0
## 4708 0 0.0000000 0
## 4709 0 0.0000000 0
## 4710 1 0.2172763 0
## 4711 0 0.0000000 0
## 4712 0 0.0000000 0
## 4713 0 0.0000000 0
## 4714 0 0.0000000 0
## 4715 0 0.0000000 0
## 4716 9 1.9554870 0
## 4717 0 0.0000000 0
## 4718 4 0.8691053 0
## 4719 0 0.0000000 0
## 4720 0 0.0000000 0
## 4721 0 0.0000000 0
## 4722 0 0.0000000 0
## 4723 5 1.0863820 0
## 4724 1 0.2172763 0
## 4725 3 0.6518290 0
## 4726 6 1.3036580 0
## 4727 1 0.2172763 0
## 4728 0 0.0000000 0
## 4729 0 0.0000000 0
## 4730 9 1.9554870 0
## 4731 1 0.2172763 0
## 4732 0 0.0000000 0
## 4733 0 0.0000000 0
## 4734 0 0.0000000 0
## 4735 0 0.0000000 0
## 4736 0 0.0000000 0
## 4737 0 0.0000000 0
## 4738 1 0.2172763 0
## 4739 0 0.0000000 0
## 4740 0 0.0000000 0
## 4741 13 2.8245920 0
## 4742 0 0.0000000 0
## 4743 10 2.1727630 0
## 4744 10 2.1727630 0
## 4745 7 1.5209340 0
## 4746 0 0.0000000 0
## 4747 0 0.0000000 0
## 4748 0 0.0000000 0
## 4749 0 0.0000000 0
## 4750 3 0.6518290 0
## 4751 0 0.0000000 0
## 4752 0 0.0000000 0
## 4753 0 0.0000000 0
## 4754 0 0.0000000 0
## 4755 0 0.0000000 0
## 4756 0 0.0000000 0
## 4757 0 0.0000000 0
## 4758 0 0.0000000 0
## 4759 0 0.0000000 0
## 4760 0 0.0000000 0
## 4761 0 0.0000000 0
## 4762 0 0.0000000 0
## 4763 0 0.0000000 0
## 4764 0 0.0000000 0
## 4765 0 0.0000000 0
## 4766 0 0.0000000 0
## 4767 0 0.0000000 0
## 4768 0 0.0000000 0
## 4769 0 0.0000000 0
## 4770 0 0.0000000 0
## 4771 0 0.0000000 0
## 4772 0 0.0000000 0
## 4773 0 0.0000000 0
## 4774 0 0.0000000 0
## 4775 7 1.5209340 0
## 4776 0 0.0000000 0
## 4777 0 0.0000000 0
## 4778 7 1.5209340 0
## 4779 0 0.0000000 0
## 4780 0 0.0000000 0
## 4781 0 0.0000000 0
## 4782 3 0.6518290 0
## 4783 6 1.3036580 0
## 4784 2 0.4345527 0
## 4785 0 0.0000000 0
## 4786 0 0.0000000 0
## 4787 0 0.0000000 0
## 4788 0 0.0000000 0
## 4789 0 0.0000000 0
## 4790 2 0.4345527 0
## 4791 2 0.4345527 0
## 4792 0 0.0000000 0
## 4793 0 0.0000000 0
## 4794 0 0.0000000 0
## 4795 0 0.0000000 0
## 4796 4 0.8691053 0
## 4797 0 0.0000000 0
## 4798 0 0.0000000 0
## 4799 0 0.0000000 0
## 4800 0 0.0000000 0
## 4801 0 0.0000000 0
## 4802 0 0.0000000 0
## 4803 0 0.0000000 0
## 4804 0 0.0000000 0
## 4805 0 0.0000000 0
## 4806 1 0.2172763 0
## 4807 0 0.0000000 0
## 4808 0 0.0000000 0
## 4809 0 0.0000000 0
## 4810 0 0.0000000 0
## 4811 0 0.0000000 0
## 4812 0 0.0000000 0
## 4813 0 0.0000000 0
## 4814 0 0.0000000 0
## 4815 0 0.0000000 0
## 4816 0 0.0000000 0
## 4817 0 0.0000000 0
## 4818 0 0.0000000 0
## 4819 0 0.0000000 0
## 4820 0 0.0000000 0
## 4821 2 0.4345527 0
## 4822 10 2.1727630 0
## 4823 2 0.4345527 0
## 4824 0 0.0000000 0
## 4825 0 0.0000000 0
## 4826 0 0.0000000 0
## 4827 0 0.0000000 0
## 4828 3 0.6518290 0
## 4829 0 0.0000000 0
## 4830 3 0.6518290 0
## 4831 1 0.2172763 0
## 4832 8 1.7382110 0
## 4833 0 0.0000000 0
## 4834 0 0.0000000 0
## 4835 0 0.0000000 0
## 4836 0 0.0000000 0
## 4837 0 0.0000000 0
## 4838 0 0.0000000 0
## 4839 0 0.0000000 0
## 4840 0 0.0000000 0
## 4841 0 0.0000000 0
## 4842 0 0.0000000 0
## 4843 0 0.0000000 0
## 4844 0 0.0000000 0
## 4845 0 0.0000000 0
## 4846 0 0.0000000 0
## 4847 0 0.0000000 0
## 4848 0 0.0000000 0
## 4849 0 0.0000000 0
## 4850 0 0.0000000 0
## 4851 0 0.0000000 0
## 4852 0 0.0000000 0
## 4853 1 0.2172763 0
## 4854 1 0.2172763 0
## 4855 0 0.0000000 0
## 4856 3 0.6518290 0
## 4857 0 0.0000000 0
## 4858 1 0.2172763 0
## 4859 0 0.0000000 0
## 4860 0 0.0000000 0
## 4861 0 0.0000000 0
## 4862 0 0.0000000 0
## 4863 0 0.0000000 0
## 4864 0 0.0000000 0
## 4865 0 0.0000000 0
## 4866 0 0.0000000 0
## 4867 0 0.0000000 0
## 4868 0 0.0000000 0
## 4869 0 0.0000000 0
## 4870 0 0.0000000 0
## 4871 2 0.4345527 0
## 4872 2 0.4345527 0
## 4873 0 0.0000000 0
## 4874 1 0.2172763 0
## 4875 24 5.2146320 0
## 4876 1 0.2172763 0
## 4877 23 4.9973560 0
## 4878 1 0.2172763 0
## 4879 0 0.0000000 0
## 4880 1 0.2172763 0
## 4881 9 1.9554870 0
## 4882 15 3.2591450 0
## 4883 9 1.9554870 0
## 4884 1 0.2172763 0
## 4885 7 1.5209340 0
## 4886 0 0.0000000 0
## 4887 7 1.5209340 0
## 4888 9 1.9554870 0
## 4889 0 0.0000000 0
## 4890 1 0.2172763 0
## 4891 0 0.0000000 0
## 4892 0 0.0000000 0
## 4893 0 0.0000000 0
## 4894 0 0.0000000 0
## 4895 0 0.0000000 0
## 4896 0 0.0000000 0
## 4897 0 0.0000000 0
## 4898 2 0.4345527 0
## 4899 0 0.0000000 0
## 4900 1 0.2172763 0
## 4901 0 0.0000000 0
## 4902 0 0.0000000 0
## 4903 0 0.0000000 0
## 4904 0 0.0000000 0
## 4905 0 0.0000000 0
## 4906 0 0.0000000 0
## 4907 0 0.0000000 0
## 4908 0 0.0000000 0
## 4909 0 0.0000000 0
## 4910 0 0.0000000 0
## 4911 0 0.0000000 0
## 4912 8 1.7382110 0
## 4913 0 0.0000000 0
## 4914 0 0.0000000 0
## 4915 0 0.0000000 0
## 4916 14 3.0418690 0
## 4917 14 3.0418690 0
## 4918 1 0.2172763 0
## 4919 2 0.4345527 0
## 4920 0 0.0000000 0
## 4921 0 0.0000000 0
## 4922 0 0.0000000 0
## 4923 0 0.0000000 0
## 4924 0 0.0000000 0
## 4925 0 0.0000000 0
## 4926 0 0.0000000 0
## 4927 0 0.0000000 0
## 4928 3 0.6518290 0
## 4929 0 0.0000000 0
## 4930 2 0.4345527 0
## 4931 2 0.4345527 0
## 4932 0 0.0000000 0
## 4933 0 0.0000000 0
## 4934 0 0.0000000 0
## 4935 0 0.0000000 0
## 4936 0 0.0000000 0
## 4937 0 0.0000000 0
## 4938 0 0.0000000 0
## 4939 0 0.0000000 0
## 4940 0 0.0000000 0
## 4941 0 0.0000000 0
## 4942 9 1.9554870 0
## 4943 6 1.3036580 0
## 4944 3 0.6518290 0
## 4945 11 2.3900400 0
## 4946 8 1.7382110 0
## 4947 1 0.2172763 0
## 4948 0 0.0000000 0
## 4949 9 1.9554870 0
## 4950 7 1.5209340 0
## 4951 2 0.4345527 0
## 4952 3 0.6518290 0
## 4953 0 0.0000000 0
## 4954 8 1.7382110 0
## 4955 8 1.7382110 0
## 4956 0 0.0000000 0
## 4957 0 0.0000000 0
## 4958 3 0.6518290 0
## 4959 0 0.0000000 0
## 4960 0 0.0000000 0
## 4961 0 0.0000000 0
## 4962 0 0.0000000 0
## 4963 0 0.0000000 0
## 4964 0 0.0000000 0
## 4965 0 0.0000000 0
## 4966 0 0.0000000 0
## 4967 0 0.0000000 0
## 4968 12 2.6073160 0
## 4969 0 0.0000000 0
## 4970 0 0.0000000 0
## 4971 0 0.0000000 0
## 4972 5 1.0863820 0
## 4973 5 1.0863820 0
## 4974 2 0.4345527 0
## 4975 0 0.0000000 0
## 4976 0 0.0000000 0
## 4977 0 0.0000000 0
## 4978 6 1.3036580 0
## 4979 5 1.0863820 0
## 4980 0 0.0000000 0
## 4981 4 0.8691053 0
## 4982 3 0.6518290 0
## 4983 1 0.2172763 0
## 4984 0 0.0000000 0
## 4985 0 0.0000000 0
## 4986 5 1.0863820 0
## 4987 8 1.7382110 0
## 4988 0 0.0000000 0
## 4989 3 0.6518290 0
## 4990 0 0.0000000 0
## 4991 0 0.0000000 0
## 4992 0 0.0000000 0
## 4993 0 0.0000000 0
## 4994 0 0.0000000 0
## 4995 0 0.0000000 0
## 4996 0 0.0000000 0
## 4997 0 0.0000000 0
## 4998 0 0.0000000 0
## 4999 0 0.0000000 0
## 5000 0 0.0000000 0
## 5001 0 0.0000000 0
## 5002 6 1.3036580 0
## 5003 8 1.7382110 0
## 5004 11 2.3900400 0
## 5005 5 1.0863820 0
## 5006 5 1.0863820 0
## 5007 5 1.0863820 0
## 5008 0 0.0000000 0
## 5009 0 0.0000000 0
## 5010 0 0.0000000 0
## 5011 0 0.0000000 0
## 5012 0 0.0000000 0
## 5013 0 0.0000000 0
## 5014 0 0.0000000 0
## 5015 2 0.4345527 0
## 5016 0 0.0000000 0
## 5017 2 0.4345527 0
## 5018 2 0.4345527 0
## 5019 7 1.5209340 0
## 5020 0 0.0000000 0
## 5021 0 0.0000000 0
## 5022 2 0.4345527 0
## 5023 0 0.0000000 0
## 5024 0 0.0000000 0
## 5025 0 0.0000000 0
## 5026 0 0.0000000 0
## 5027 7 1.5209340 0
## 5028 1 0.2172763 0
## 5029 2 0.4345527 0
## 5030 7 1.5209340 0
## 5031 0 0.0000000 0
## 5032 23 4.9973560 0
## 5033 0 0.0000000 0
## 5034 0 0.0000000 0
## 5035 0 0.0000000 0
## 5036 0 0.0000000 0
## 5037 6 1.3036580 0
## 5038 0 0.0000000 0
## 5039 0 0.0000000 0
## 5040 0 0.0000000 0
## 5041 0 0.0000000 0
## 5042 7 1.5209340 0
## 5043 9 1.9554870 0
## 5044 0 0.0000000 0
## 5045 22 4.7800790 0
## 5046 0 0.0000000 0
## 5047 2 0.4345527 0
## 5048 2 0.4345527 0
## 5049 0 0.0000000 0
## 5050 0 0.0000000 0
## 5051 0 0.0000000 0
## 5052 0 0.0000000 0
## 5053 0 0.0000000 0
## 5054 0 0.0000000 0
## 5055 0 0.0000000 0
## 5056 0 0.0000000 0
## 5057 0 0.0000000 0
## 5058 1 0.2172763 0
## 5059 0 0.0000000 0
## 5060 6 1.3036580 0
## 5061 6 1.3036580 0
## 5062 0 0.0000000 0
## 5063 6 1.3036580 0
## 5064 0 0.0000000 0
## 5065 0 0.0000000 0
## 5066 2 0.4345527 0
## 5067 0 0.0000000 0
## 5068 0 0.0000000 0
## 5069 0 0.0000000 0
## 5070 0 0.0000000 0
## 5071 0 0.0000000 0
## 5072 0 0.0000000 0
## 5073 0 0.0000000 0
## 5074 0 0.0000000 0
## 5075 0 0.0000000 0
## 5076 0 0.0000000 0
## 5077 0 0.0000000 0
## 5078 0 0.0000000 0
## 5079 0 0.0000000 0
## 5080 0 0.0000000 0
## 5081 0 0.0000000 0
## 5082 0 0.0000000 0
## 5083 0 0.0000000 0
## 5084 0 0.0000000 0
## 5085 0 0.0000000 0
## 5086 0 0.0000000 0
## 5087 2 0.4345527 0
## 5088 0 0.0000000 0
## 5089 2 0.4345527 0
## 5090 0 0.0000000 0
## 5091 0 0.0000000 0
## 5092 0 0.0000000 0
## 5093 0 0.0000000 0
## 5094 0 0.0000000 0
## 5095 0 0.0000000 0
## 5096 0 0.0000000 0
## 5097 0 0.0000000 0
## 5098 2 0.4345527 0
## 5099 6 1.3036580 0
## 5100 0 0.0000000 0
## 5101 0 0.0000000 0
## 5102 2 0.4345527 0
## 5103 2 0.4345527 0
## 5104 0 0.0000000 0
## 5105 0 0.0000000 0
## 5106 0 0.0000000 0
## 5107 0 0.0000000 0
## 5108 0 0.0000000 0
## 5109 0 0.0000000 0
## 5110 0 0.0000000 0
## 5111 0 0.0000000 0
## 5112 0 0.0000000 0
## 5113 0 0.0000000 0
## 5114 2 0.4345527 0
## 5115 1 0.2172763 0
## 5116 2 0.4345527 0
## 5117 0 0.0000000 0
## 5118 0 0.0000000 0
## 5119 0 0.0000000 0
## 5120 0 0.0000000 0
## 5121 0 0.0000000 0
## 5122 0 0.0000000 0
## 5123 0 0.0000000 0
## 5124 0 0.0000000 0
## 5125 0 0.0000000 0
## 5126 0 0.0000000 0
## 5127 0 0.0000000 0
## 5128 2 0.4345527 0
## 5129 0 0.0000000 0
## 5130 0 0.0000000 0
## 5131 0 0.0000000 0
## 5132 0 0.0000000 0
## 5133 0 0.0000000 0
## 5134 0 0.0000000 0
## 5135 0 0.0000000 0
## 5136 0 0.0000000 0
## 5137 0 0.0000000 0
## 5138 0 0.0000000 0
## 5139 0 0.0000000 0
## 5140 0 0.0000000 0
## 5141 1 0.2172763 0
## 5142 0 0.0000000 0
## 5143 0 0.0000000 0
## 5144 0 0.0000000 0
## 5145 0 0.0000000 0
## 5146 0 0.0000000 0
## 5147 2 0.4345527 0
## 5148 0 0.0000000 0
## 5149 0 0.0000000 0
## 5150 0 0.0000000 0
## 5151 1 0.2172763 0
## 5152 0 0.0000000 0
## 5153 0 0.0000000 0
## 5154 3 0.6518290 0
## 5155 1 0.2172763 0
## 5156 1 0.2172763 0
## 5157 0 0.0000000 0
## 5158 0 0.0000000 0
## 5159 1 0.2172763 0
## 5160 0 0.0000000 0
## 5161 1 0.2172763 0
## 5162 0 0.0000000 0
## 5163 0 0.0000000 0
## 5164 0 0.0000000 0
## 5165 0 0.0000000 0
## 5166 0 0.0000000 0
## 5167 0 0.0000000 0
## 5168 4 0.8691053 0
## 5169 0 0.0000000 0
## 5170 0 0.0000000 0
## 5171 0 0.0000000 0
## 5172 0 0.0000000 0
## 5173 0 0.0000000 0
## 5174 0 0.0000000 0
## 5175 0 0.0000000 0
## 5176 0 0.0000000 0
## 5177 6 1.3036580 0
## 5178 1 0.2172763 0
## 5179 0 0.0000000 0
## 5180 0 0.0000000 0
## 5181 0 0.0000000 0
## 5182 0 0.0000000 0
## 5183 2 0.4345527 0
## 5184 2 0.4345527 0
## 5185 0 0.0000000 0
## 5186 0 0.0000000 0
## 5187 0 0.0000000 0
## 5188 4 0.8691053 0
## 5189 0 0.0000000 0
## 5190 4 0.8691053 0
## 5191 0 0.0000000 0
## 5192 0 0.0000000 0
## 5193 0 0.0000000 0
## 5194 0 0.0000000 0
## 5195 0 0.0000000 0
## 5196 0 0.0000000 0
## 5197 0 0.0000000 0
## 5198 0 0.0000000 0
## 5199 2 0.4345527 0
## 5200 0 0.0000000 0
## 5201 0 0.0000000 0
## 5202 0 0.0000000 0
## 5203 0 0.0000000 0
## 5204 0 0.0000000 0
## 5205 0 0.0000000 0
## 5206 0 0.0000000 0
## 5207 0 0.0000000 0
## 5208 0 0.0000000 0
## 5209 0 0.0000000 0
## 5210 0 0.0000000 0
## 5211 0 0.0000000 0
## 5212 10 2.1727630 0
## 5213 0 0.0000000 0
## 5214 1 0.2172763 0
## 5215 0 0.0000000 0
## 5216 0 0.0000000 0
## 5217 0 0.0000000 0
## 5218 0 0.0000000 0
## 5219 3 0.6518290 0
## 5220 5 1.0863820 0
## 5221 0 0.0000000 0
## 5222 0 0.0000000 0
## 5223 1 0.2172763 0
## 5224 0 0.0000000 0
## 5225 2 0.4345527 0
## 5226 0 0.0000000 0
## 5227 2 0.4345527 0
## 5228 0 0.0000000 0
## 5229 4 0.8691053 0
## 5230 4 0.8691053 0
## 5231 2 0.4345527 0
## 5232 1 0.2172763 0
## 5233 1 0.2172763 0
## 5234 1 0.2172763 0
## 5235 1 0.2172763 0
## 5236 0 0.0000000 0
## 5237 4 0.8691053 0
## 5238 1 0.2172763 0
## 5239 0 0.0000000 0
## 5240 0 0.0000000 0
## 5241 2 0.4345527 0
## 5242 0 0.0000000 0
## 5243 0 0.0000000 0
## 5244 1 0.2172763 0
## 5245 0 0.0000000 0
## 5246 0 0.0000000 0
## 5247 0 0.0000000 0
## 5248 0 0.0000000 0
## 5249 0 0.0000000 0
## 5250 0 0.0000000 0
## 5251 0 0.0000000 0
## 5252 0 0.0000000 0
## 5253 1 0.2172763 0
## 5254 0 0.0000000 0
## 5255 0 0.0000000 0
## 5256 0 0.0000000 0
## 5257 0 0.0000000 0
## 5258 2 0.4345527 0
## 5259 2 0.4345527 0
## 5260 0 0.0000000 0
## 5261 0 0.0000000 0
## 5262 0 0.0000000 0
## 5263 0 0.0000000 0
## 5264 0 0.0000000 0
## 5265 0 0.0000000 0
## 5266 0 0.0000000 0
## 5267 0 0.0000000 0
## 5268 0 0.0000000 0
## 5269 0 0.0000000 0
## 5270 2 0.4345527 0
## 5271 0 0.0000000 0
## 5272 0 0.0000000 0
## 5273 13 2.8245920 0
## 5274 13 2.8245920 0
## 5275 0 0.0000000 0
## 5276 1 0.2172763 0
## 5277 0 0.0000000 0
## 5278 3 0.6518290 0
## 5279 0 0.0000000 0
## 5280 2 0.4345527 0
## 5281 0 0.0000000 0
## 5282 0 0.0000000 0
## 5283 0 0.0000000 0
## 5284 0 0.0000000 0
## 5285 0 0.0000000 0
## 5286 0 0.0000000 0
## 5287 0 0.0000000 0
## 5288 0 0.0000000 0
## 5289 0 0.0000000 0
## 5290 0 0.0000000 0
## 5291 0 0.0000000 0
## 5292 0 0.0000000 0
## 5293 0 0.0000000 0
## 5294 0 0.0000000 0
## 5295 0 0.0000000 0
## 5296 0 0.0000000 0
## 5297 2 0.4345527 0
## 5298 2 0.4345527 0
## 5299 0 0.0000000 0
## 5300 0 0.0000000 0
## 5301 0 0.0000000 0
## 5302 0 0.0000000 0
## 5303 0 0.0000000 0
## 5304 3 0.6518290 0
## 5305 2 0.4345527 0
## 5306 1 0.2172763 0
## 5307 2 0.4345527 0
## 5308 2 0.4345527 0
## 5309 0 0.0000000 0
## 5310 1 0.2172763 0
## 5311 1 0.2172763 0
## 5312 0 0.0000000 0
## 5313 0 0.0000000 0
## 5314 0 0.0000000 0
## 5315 0 0.0000000 0
## 5316 7 1.5209340 0
## 5317 2 0.4345527 0
## 5318 2 0.4345527 0
## 5319 0 0.0000000 0
## 5320 0 0.0000000 0
## 5321 0 0.0000000 0
## 5322 0 0.0000000 0
## 5323 6 1.3036580 0
## 5324 0 0.0000000 0
## 5325 1 0.2172763 0
## 5326 0 0.0000000 0
## 5327 0 0.0000000 0
## 5328 3 0.6518290 0
## 5329 0 0.0000000 0
## 5330 0 0.0000000 0
## 5331 6 1.3036580 0
## 5332 6 1.3036580 0
## 5333 0 0.0000000 0
## 5334 0 0.0000000 0
## 5335 0 0.0000000 0
## 5336 0 0.0000000 0
## 5337 11 2.3900400 0
## 5338 0 0.0000000 0
## 5339 0 0.0000000 0
## 5340 0 0.0000000 0
## 5341 0 0.0000000 0
## 5342 0 0.0000000 0
## 5343 0 0.0000000 0
## 5344 0 0.0000000 0
## 5345 10 2.1727630 0
## 5346 1 0.2172763 0
## 5347 1 0.2172763 0
## 5348 1 0.2172763 0
## 5349 0 0.0000000 0
## 5350 0 0.0000000 0
## 5351 0 0.0000000 0
## 5352 0 0.0000000 0
## 5353 4 0.8691053 0
## 5354 0 0.0000000 0
## 5355 5 1.0863820 0
## 5356 0 0.0000000 0
## 5357 8 1.7382110 0
## 5358 0 0.0000000 0
## 5359 0 0.0000000 0
## 5360 1 0.2172763 0
## 5361 1 0.2172763 0
## 5362 0 0.0000000 0
## 5363 0 0.0000000 0
## 5364 0 0.0000000 0
## 5365 0 0.0000000 0
## 5366 4 0.8691053 0
## 5367 5 1.0863820 0
## 5368 4 0.8691053 0
## 5369 0 0.0000000 0
## 5370 4 0.8691053 0
## 5371 1 0.2172763 0
## 5372 1 0.2172763 0
## 5373 0 0.0000000 0
## 5374 0 0.0000000 0
## 5375 0 0.0000000 0
## 5376 0 0.0000000 0
## 5377 0 0.0000000 0
## 5378 11 2.3900400 0
## 5379 6 1.3036580 0
## 5380 0 0.0000000 0
## 5381 0 0.0000000 0
## 5382 0 0.0000000 0
## 5383 3 0.6518290 0
## 5384 2 0.4345527 0
## 5385 1 0.2172763 0
## 5386 0 0.0000000 0
## 5387 0 0.0000000 0
## 5388 0 0.0000000 0
## 5389 0 0.0000000 0
## 5390 0 0.0000000 0
## 5391 0 0.0000000 0
## 5392 0 0.0000000 0
## 5393 0 0.0000000 0
## 5394 0 0.0000000 0
## 5395 0 0.0000000 0
## 5396 0 0.0000000 0
## 5397 6 1.3036580 0
## 5398 6 1.3036580 0
## 5399 1 0.2172763 0
## 5400 1 0.2172763 0
## 5401 0 0.0000000 0
## 5402 1 0.2172763 0
## 5403 0 0.0000000 0
## 5404 0 0.0000000 0
## 5405 1 0.2172763 0
## 5406 0 0.0000000 0
## 5407 2 0.4345527 0
## 5408 0 0.0000000 0
## 5409 0 0.0000000 0
## 5410 0 0.0000000 0
## 5411 0 0.0000000 0
## 5412 0 0.0000000 0
## 5413 0 0.0000000 0
## 5414 0 0.0000000 0
## 5415 0 0.0000000 0
## 5416 0 0.0000000 0
## 5417 0 0.0000000 0
## 5418 5 1.0863820 0
## 5419 0 0.0000000 0
## 5420 0 0.0000000 0
## 5421 1 0.2172763 0
## 5422 7 1.5209340 0
## 5423 0 0.0000000 0
## 5424 0 0.0000000 0
## 5425 0 0.0000000 0
## 5426 0 0.0000000 0
## 5427 0 0.0000000 0
## 5428 0 0.0000000 0
## 5429 8 1.7382110 0
## 5430 0 0.0000000 0
## 5431 0 0.0000000 0
## 5432 0 0.0000000 0
## 5433 0 0.0000000 0
## 5434 0 0.0000000 0
## 5435 13 2.8245920 0
## 5436 0 0.0000000 0
## 5437 10 2.1727630 0
## 5438 3 0.6518290 0
## 5439 0 0.0000000 0
## 5440 4 0.8691053 0
## 5441 1 0.2172763 0
## 5442 0 0.0000000 0
## 5443 0 0.0000000 0
## 5444 0 0.0000000 0
## 5445 10 2.1727630 0
## 5446 9 1.9554870 0
## 5447 0 0.0000000 0
## 5448 3 0.6518290 0
## 5449 2 0.4345527 0
## 5450 4 0.8691053 0
## 5451 0 0.0000000 0
## 5452 0 0.0000000 0
## 5453 0 0.0000000 0
## 5454 0 0.0000000 0
## 5455 1 0.2172763 0
## 5456 5 1.0863820 0
## 5457 0 0.0000000 0
## 5458 1 0.2172763 0
## 5459 0 0.0000000 0
## 5460 0 0.0000000 0
## 5461 0 0.0000000 0
## 5462 0 0.0000000 0
## 5463 2 0.4345527 0
## 5464 1 0.2172763 0
## 5465 0 0.0000000 0
## 5466 0 0.0000000 0
## 5467 4 0.8691053 0
## 5468 0 0.0000000 0
## 5469 0 0.0000000 0
## 5470 0 0.0000000 0
## 5471 3 0.6518290 0
## 5472 4 0.8691053 0
## 5473 0 0.0000000 0
## 5474 0 0.0000000 0
## 5475 0 0.0000000 0
## 5476 1 0.2172763 0
## 5477 0 0.0000000 0
## 5478 5 1.0863820 0
## 5479 0 0.0000000 0
## 5480 0 0.0000000 0
## 5481 5 1.0863820 0
## 5482 3 0.6518290 0
## 5483 0 0.0000000 0
## 5484 3 0.6518290 0
## 5485 2 0.4345527 0
## 5486 1 0.2172763 0
## 5487 4 0.8691053 0
## 5488 0 0.0000000 0
## 5489 1 0.2172763 0
## 5490 0 0.0000000 0
## 5491 0 0.0000000 0
## 5492 3 0.6518290 0
## 5493 0 0.0000000 0
## 5494 0 0.0000000 0
## 5495 0 0.0000000 0
## 5496 0 0.0000000 0
## 5497 4 0.8691053 0
## 5498 11 2.3900400 0
## 5499 0 0.0000000 0
## 5500 2 0.4345527 0
## 5501 3 0.6518290 0
## 5502 5 1.0863820 0
## 5503 1 0.2172763 0
## 5504 0 0.0000000 0
## 5505 5 1.0863820 0
## 5506 0 0.0000000 0
## 5507 0 0.0000000 0
## 5508 0 0.0000000 0
## 5509 15 3.2591450 0
## 5510 1 0.2172763 0
## 5511 0 0.0000000 0
## 5512 0 0.0000000 0
## 5513 0 0.0000000 0
## 5514 0 0.0000000 0
## 5515 0 0.0000000 0
## 5516 10 2.1727630 0
## 5517 10 2.1727630 0
## 5518 0 0.0000000 0
## 5519 5 1.0863820 0
## 5520 5 1.0863820 0
## 5521 0 0.0000000 0
## 5522 4 0.8691053 0
## 5523 4 0.8691053 0
## 5524 2 0.4345527 0
## 5525 0 0.0000000 0
## 5526 0 0.0000000 0
## 5527 0 0.0000000 0
## 5528 4 0.8691053 0
## 5529 0 0.0000000 0
## 5530 0 0.0000000 0
## 5531 3 0.6518290 0
## 5532 0 0.0000000 0
## 5533 3 0.6518290 0
## 5534 0 0.0000000 0
## 5535 0 0.0000000 0
## 5536 0 0.0000000 0
## 5537 0 0.0000000 0
## 5538 0 0.0000000 0
## 5539 0 0.0000000 0
## 5540 3 0.6518290 0
## 5541 0 0.0000000 0
## 5542 0 0.0000000 0
## 5543 2 0.4345527 0
## 5544 0 0.0000000 0
## 5545 0 0.0000000 0
## 5546 0 0.0000000 0
## 5547 0 0.0000000 0
## 5548 0 0.0000000 0
## 5549 2 0.4345527 0
## 5550 0 0.0000000 0
## 5551 3 0.6518290 0
## 5552 0 0.0000000 0
## 5553 0 0.0000000 0
## 5554 0 0.0000000 0
## 5555 0 0.0000000 0
## 5556 0 0.0000000 0
## 5557 0 0.0000000 0
## 5558 0 0.0000000 0
## 5559 0 0.0000000 0
## 5560 0 0.0000000 0
## 5561 0 0.0000000 0
## 5562 0 0.0000000 0
## 5563 0 0.0000000 0
## 5564 0 0.0000000 0
## 5565 4 0.8691053 0
## 5566 0 0.0000000 0
## 5567 0 0.0000000 0
## 5568 3 0.6518290 0
## 5569 3 0.6518290 0
## 5570 0 0.0000000 0
## 5571 0 0.0000000 0
## 5572 0 0.0000000 0
## 5573 0 0.0000000 0
## 5574 0 0.0000000 0
## 5575 1 0.2172763 0
## 5576 0 0.0000000 0
## 5577 0 0.0000000 0
## 5578 0 0.0000000 0
## 5579 0 0.0000000 0
## 5580 0 0.0000000 0
## 5581 0 0.0000000 0
## 5582 0 0.0000000 0
## 5583 0 0.0000000 0
## 5584 0 0.0000000 0
## 5585 0 0.0000000 0
## 5586 0 0.0000000 0
## 5587 0 0.0000000 0
## 5588 3 0.6518290 0
## 5589 0 0.0000000 0
## 5590 2 0.4345527 0
## 5591 4 0.8691053 0
## 5592 0 0.0000000 0
## 5593 6 1.3036580 0
## 5594 0 0.0000000 0
## 5595 0 0.0000000 0
## 5596 3 0.6518290 0
## 5597 5 1.0863820 0
## 5598 0 0.0000000 0
## 5599 1 0.2172763 0
## 5600 1 0.2172763 0
## 5601 0 0.0000000 0
## 5602 0 0.0000000 0
## 5603 0 0.0000000 0
## 5604 1 0.2172763 0
## 5605 0 0.0000000 0
## 5606 0 0.0000000 0
## 5607 3 0.6518290 0
## 5608 0 0.0000000 0
## 5609 2 0.4345527 0
## 5610 0 0.0000000 0
## 5611 3 0.6518290 0
## 5612 0 0.0000000 0
## 5613 0 0.0000000 0
## 5614 0 0.0000000 0
## 5615 0 0.0000000 0
## 5616 0 0.0000000 0
## 5617 3 0.6518290 0
## 5618 0 0.0000000 0
## 5619 1 0.2172763 0
## 5620 2 0.4345527 0
## 5621 0 0.0000000 0
## 5622 3 0.6518290 0
## 5623 2 0.4345527 0
## 5624 1 0.2172763 0
## 5625 0 0.0000000 0
## 5626 2 0.4345527 0
## 5627 0 0.0000000 0
## 5628 0 0.0000000 0
## 5629 1 0.2172763 0
## 5630 0 0.0000000 0
## 5631 0 0.0000000 0
## 5632 2 0.4345527 0
## 5633 1 0.2172763 0
## 5634 0 0.0000000 0
## 5635 8 1.7382110 0
## 5636 1 0.2172763 0
## 5637 0 0.0000000 0
## 5638 3 0.6518290 0
## 5639 2 0.4345527 0
## 5640 0 0.0000000 0
## 5641 4 0.8691053 0
## 5642 0 0.0000000 0
## 5643 0 0.0000000 0
## 5644 0 0.0000000 0
## 5645 1 0.2172763 0
## 5646 0 0.0000000 0
## 5647 0 0.0000000 0
## 5648 1 0.2172763 0
## 5649 0 0.0000000 0
## 5650 6 1.3036580 0
## 5651 1 0.2172763 0
## 5652 0 0.0000000 0
## 5653 0 0.0000000 0
## 5654 0 0.0000000 0
## 5655 0 0.0000000 0
## 5656 0 0.0000000 0
## 5657 0 0.0000000 0
## 5658 0 0.0000000 0
## 5659 1 0.2172763 0
## 5660 1 0.2172763 0
## 5661 3 0.6518290 0
## 5662 3 0.6518290 0
## 5663 0 0.0000000 0
## 5664 0 0.0000000 0
## 5665 0 0.0000000 0
## 5666 0 0.0000000 0
## 5667 0 0.0000000 0
## 5668 0 0.0000000 0
## 5669 0 0.0000000 0
## 5670 0 0.0000000 0
## 5671 0 0.0000000 0
## 5672 0 0.0000000 0
## 5673 0 0.0000000 0
## 5674 8 1.7382110 0
## 5675 0 0.0000000 0
## 5676 0 0.0000000 0
## 5677 0 0.0000000 0
## 5678 3 0.6518290 0
## 5679 0 0.0000000 0
## 5680 3 0.6518290 0
## 5681 3 0.6518290 0
## 5682 4 0.8691053 0
## 5683 0 0.0000000 0
## 5684 0 0.0000000 0
## 5685 0 0.0000000 0
## 5686 2 0.4345527 0
## 5687 0 0.0000000 0
## 5688 4 0.8691053 0
## 5689 0 0.0000000 0
## 5690 0 0.0000000 0
## 5691 0 0.0000000 0
## 5692 8 1.7382110 0
## 5693 0 0.0000000 0
## 5694 3 0.6518290 0
## 5695 3 0.6518290 0
## 5696 3 0.6518290 0
## 5697 3 0.6518290 0
## 5698 0 0.0000000 0
## 5699 2 0.4345527 0
## 5700 0 0.0000000 0
## 5701 0 0.0000000 0
## 5702 3 0.6518290 0
## 5703 0 0.0000000 0
## 5704 0 0.0000000 0
## 5705 4 0.8691053 0
## 5706 2 0.4345527 0
## 5707 0 0.0000000 0
## 5708 0 0.0000000 0
## 5709 0 0.0000000 0
## 5710 0 0.0000000 0
## 5711 0 0.0000000 0
## 5712 0 0.0000000 0
## 5713 0 0.0000000 0
## 5714 0 0.0000000 0
## 5715 2 0.4345527 0
## 5716 2 0.4345527 0
## 5717 2 0.4345527 0
## 5718 0 0.0000000 0
## 5719 0 0.0000000 0
## 5720 2 0.4345527 0
## 5721 1 0.2172763 0
## 5722 0 0.0000000 0
## 5723 0 0.0000000 0
## 5724 0 0.0000000 0
## 5725 4 0.8691053 0
## 5726 3 0.6518290 0
## 5727 3 0.6518290 0
## 5728 0 0.0000000 0
## 5729 3 0.6518290 0
## 5730 0 0.0000000 0
## 5731 2 0.4345527 0
## 5732 0 0.0000000 0
## 5733 0 0.0000000 0
## 5734 7 1.5209340 0
## 5735 6 1.3036580 0
## 5736 3 0.6518290 0
## 5737 0 0.0000000 0
## 5738 3 0.6518290 0
## 5739 0 0.0000000 0
## 5740 0 0.0000000 0
## 5741 0 0.0000000 0
## 5742 0 0.0000000 0
## 5743 0 0.0000000 0
## 5744 0 0.0000000 0
## 5745 0 0.0000000 0
## 5746 0 0.0000000 0
## 5747 5 1.0863820 0
## 5748 0 0.0000000 0
## 5749 2 0.4345527 0
## 5750 0 0.0000000 0
## 5751 0 0.0000000 0
## 5752 0 0.0000000 0
## 5753 4 0.8691053 0
## 5754 4 0.8691053 0
## 5755 0 0.0000000 0
## 5756 0 0.0000000 0
## 5757 0 0.0000000 0
## 5758 0 0.0000000 0
## 5759 0 0.0000000 0
## 5760 0 0.0000000 0
## 5761 0 0.0000000 0
## 5762 1 0.2172763 0
## 5763 4 0.8691053 0
## 5764 1 0.2172763 0
## 5765 2 0.4345527 0
## 5766 0 0.0000000 0
## 5767 0 0.0000000 0
## 5768 0 0.0000000 0
## 5769 0 0.0000000 0
## 5770 0 0.0000000 0
## 5771 0 0.0000000 0
## 5772 0 0.0000000 0
## 5773 1 0.2172763 0
## 5774 1 0.2172763 0
## 5775 0 0.0000000 0
## 5776 0 0.0000000 0
## 5777 0 0.0000000 0
## 5778 0 0.0000000 0
## 5779 1 0.2172763 0
## 5780 0 0.0000000 0
## 5781 0 0.0000000 0
## 5782 0 0.0000000 0
## 5783 1 0.2172763 0
## 5784 0 0.0000000 0
## 5785 0 0.0000000 0
## 5786 0 0.0000000 0
## 5787 0 0.0000000 0
## 5788 0 0.0000000 0
## 5789 0 0.0000000 0
## 5790 0 0.0000000 0
## 5791 0 0.0000000 0
## 5792 0 0.0000000 0
## 5793 1 0.2172763 0
## 5794 0 0.0000000 0
## 5795 0 0.0000000 0
## 5796 0 0.0000000 0
## 5797 0 0.0000000 0
## 5798 0 0.0000000 0
## 5799 0 0.0000000 0
## 5800 4 0.8691053 0
## 5801 0 0.0000000 0
## 5802 6 1.3036580 0
## 5803 0 0.0000000 0
## 5804 0 0.0000000 0
## 5805 0 0.0000000 0
## 5806 0 0.0000000 0
## 5807 0 0.0000000 0
## 5808 1 0.2172763 0
## 5809 0 0.0000000 0
## 5810 0 0.0000000 0
## 5811 1 0.2172763 0
## 5812 0 0.0000000 0
## 5813 0 0.0000000 0
## 5814 0 0.0000000 0
## 5815 0 0.0000000 0
## 5816 0 0.0000000 0
## 5817 0 0.0000000 0
## 5818 0 0.0000000 0
## 5819 0 0.0000000 0
## 5820 1 0.2172763 0
## 5821 0 0.0000000 0
## 5822 0 0.0000000 0
## 5823 0 0.0000000 0
## 5824 3 0.6518290 0
## 5825 0 0.0000000 0
## 5826 0 0.0000000 0
## 5827 0 0.0000000 0
## 5828 0 0.0000000 0
## 5829 0 0.0000000 0
## 5830 2 0.4345527 0
## 5831 0 0.0000000 0
## 5832 0 0.0000000 0
## 5833 0 0.0000000 0
## 5834 0 0.0000000 0
## 5835 0 0.0000000 0
## 5836 0 0.0000000 0
## 5837 0 0.0000000 0
## 5838 1 0.2172763 0
## 5839 0 0.0000000 0
## 5840 0 0.0000000 0
## 5841 0 0.0000000 0
## 5842 0 0.0000000 0
## 5843 5 1.0863820 0
## 5844 9 1.9554870 0
## 5845 3 0.6518290 0
## 5846 2 0.4345527 0
## 5847 0 0.0000000 0
## 5848 3 0.6518290 0
## 5849 10 2.1727630 0
## 5850 0 0.0000000 0
## 5851 7 1.5209340 0
## 5852 2 0.4345527 0
## 5853 0 0.0000000 0
## 5854 0 0.0000000 0
## 5855 0 0.0000000 0
## 5856 0 0.0000000 0
## 5857 0 0.0000000 0
## 5858 0 0.0000000 0
## 5859 0 0.0000000 0
## 5860 0 0.0000000 0
## 5861 0 0.0000000 0
## 5862 4 0.8691053 0
## 5863 0 0.0000000 0
## 5864 2 0.4345527 0
## 5865 0 0.0000000 0
## 5866 0 0.0000000 0
## 5867 0 0.0000000 0
## 5868 2 0.4345527 0
## 5869 2 0.4345527 0
## 5870 0 0.0000000 0
## 5871 0 0.0000000 0
## 5872 4 0.8691053 0
## 5873 3 0.6518290 0
## 5874 1 0.2172763 0
## 5875 3 0.6518290 0
## 5876 8 1.7382110 0
## 5877 0 0.0000000 0
## 5878 0 0.0000000 0
## 5879 3 0.6518290 0
## 5880 1 0.2172763 0
## 5881 0 0.0000000 0
## 5882 0 0.0000000 0
## 5883 7 1.5209340 0
## 5884 3 0.6518290 0
## 5885 0 0.0000000 0
## 5886 8 1.7382110 0
## 5887 2 0.4345527 0
## 5888 0 0.0000000 0
## 5889 0 0.0000000 0
## 5890 0 0.0000000 0
## 5891 0 0.0000000 0
## 5892 0 0.0000000 0
## 5893 19 4.1282500 0
## 5894 0 0.0000000 0
## 5895 4 0.8691053 0
## 5896 0 0.0000000 0
## 5897 2 0.4345527 0
## 5898 0 0.0000000 0
## 5899 2 0.4345527 0
## 5900 3 0.6518290 0
## 5901 0 0.0000000 0
## 5902 0 0.0000000 0
## 5903 0 0.0000000 0
## 5904 0 0.0000000 0
## 5905 0 0.0000000 0
## 5906 2 0.4345527 0
## 5907 5 1.0863820 0
## 5908 5 1.0863820 0
## 5909 2 0.4345527 0
## 5910 0 0.0000000 0
## 5911 0 0.0000000 0
## 5912 0 0.0000000 0
## 5913 0 0.0000000 0
## 5914 0 0.0000000 0
## 5915 0 0.0000000 0
## 5916 0 0.0000000 0
## 5917 6 1.3036580 0
## 5918 6 1.3036580 0
## 5919 0 0.0000000 0
## 5920 0 0.0000000 0
## 5921 0 0.0000000 0
## 5922 0 0.0000000 0
## 5923 0 0.0000000 0
## 5924 0 0.0000000 0
## 5925 5 1.0863820 0
## 5926 1 0.2172763 0
## 5927 0 0.0000000 0
## 5928 15 3.2591450 0
## 5929 7 1.5209340 0
## 5930 14 3.0418690 0
## 5931 0 0.0000000 0
## 5932 0 0.0000000 0
## 5933 0 0.0000000 0
## 5934 0 0.0000000 0
## 5935 0 0.0000000 0
## 5936 0 0.0000000 0
## 5937 0 0.0000000 0
## 5938 0 0.0000000 0
## 5939 0 0.0000000 0
## 5940 0 0.0000000 0
## 5941 0 0.0000000 0
## 5942 0 0.0000000 0
## 5943 3 0.6518290 0
## 5944 10 2.1727630 0
## 5945 10 2.1727630 0
## 5946 0 0.0000000 0
## 5947 0 0.0000000 0
## 5948 7 1.5209340 0
## 5949 2 0.4345527 0
## 5950 5 1.0863820 0
## 5951 0 0.0000000 0
## 5952 0 0.0000000 0
## 5953 0 0.0000000 0
## 5954 13 2.8245920 0
## 5955 13 2.8245920 0
## 5956 0 0.0000000 0
## 5957 3 0.6518290 0
## 5958 4 0.8691053 0
## 5959 0 0.0000000 0
## 5960 1 0.2172763 0
## 5961 0 0.0000000 0
## 5962 0 0.0000000 0
## 5963 0 0.0000000 0
## 5964 0 0.0000000 0
## 5965 0 0.0000000 0
## 5966 0 0.0000000 0
## 5967 0 0.0000000 0
## 5968 0 0.0000000 0
## 5969 0 0.0000000 0
## 5970 0 0.0000000 0
## 5971 0 0.0000000 0
## 5972 0 0.0000000 0
## 5973 0 0.0000000 0
## 5974 0 0.0000000 0
## 5975 3 0.6518290 0
## 5976 3 0.6518290 0
## 5977 3 0.6518290 0
## 5978 3 0.6518290 0
## 5979 2 0.4345527 0
## 5980 2 0.4345527 0
## 5981 0 0.0000000 0
## 5982 0 0.0000000 0
## 5983 0 0.0000000 0
## 5984 5 1.0863820 0
## 5985 5 1.0863820 0
## 5986 0 0.0000000 0
## 5987 5 1.0863820 0
## 5988 0 0.0000000 0
## 5989 0 0.0000000 0
## 5990 0 0.0000000 0
## 5991 0 0.0000000 0
## 5992 0 0.0000000 0
## 5993 3 0.6518290 0
## 5994 3 0.6518290 0
## 5995 0 0.0000000 0
## 5996 1 0.2172763 0
## 5997 0 0.0000000 0
## 5998 0 0.0000000 0
## 5999 15 3.2591450 0
## 6000 3 0.6518290 0
## 6001 0 0.0000000 0
## 6002 0 0.0000000 0
## 6003 0 0.0000000 0
## 6004 2 0.4345527 0
## 6005 0 0.0000000 0
## 6006 0 0.0000000 0
## 6007 0 0.0000000 0
## 6008 0 0.0000000 0
## 6009 0 0.0000000 0
## 6010 0 0.0000000 0
## 6011 3 0.6518290 0
## 6012 0 0.0000000 0
## 6013 0 0.0000000 0
## 6014 0 0.0000000 0
## 6015 2 0.4345527 0
## 6016 2 0.4345527 0
## 6017 0 0.0000000 0
## 6018 0 0.0000000 0
## 6019 0 0.0000000 0
## 6020 0 0.0000000 0
## 6021 0 0.0000000 0
## 6022 0 0.0000000 0
## 6023 0 0.0000000 0
## 6024 3 0.6518290 0
## 6025 0 0.0000000 0
## 6026 0 0.0000000 0
## 6027 0 0.0000000 0
## 6028 0 0.0000000 0
## 6029 0 0.0000000 0
## 6030 0 0.0000000 0
## 6031 0 0.0000000 0
## 6032 0 0.0000000 0
## 6033 0 0.0000000 0
## 6034 1 0.2172763 0
## 6035 0 0.0000000 0
## 6036 0 0.0000000 0
## 6037 0 0.0000000 0
## 6038 0 0.0000000 0
## 6039 1 0.2172763 0
## 6040 0 0.0000000 0
## 6041 0 0.0000000 0
## 6042 0 0.0000000 0
## 6043 0 0.0000000 0
## 6044 0 0.0000000 0
## 6045 6 1.3036580 0
## 6046 6 1.3036580 0
## 6047 1 0.2172763 0
## 6048 0 0.0000000 0
## 6049 0 0.0000000 0
## 6050 0 0.0000000 0
## 6051 0 0.0000000 0
## 6052 0 0.0000000 0
## 6053 0 0.0000000 0
## 6054 5 1.0863820 0
## 6055 0 0.0000000 0
## 6056 0 0.0000000 0
## 6057 0 0.0000000 0
## 6058 0 0.0000000 0
## 6059 0 0.0000000 0
## 6060 1 0.2172763 0
## 6061 1 0.2172763 0
## 6062 0 0.0000000 0
## 6063 0 0.0000000 0
## 6064 1 0.2172763 0
## 6065 1 0.2172763 0
## 6066 0 0.0000000 0
## 6067 0 0.0000000 0
## 6068 0 0.0000000 0
## 6069 0 0.0000000 0
## 6070 0 0.0000000 0
## 6071 0 0.0000000 0
## 6072 1 0.2172763 0
## 6073 0 0.0000000 0
## 6074 0 0.0000000 0
## 6075 0 0.0000000 0
## 6076 0 0.0000000 0
## 6077 0 0.0000000 0
## 6078 0 0.0000000 0
## 6079 0 0.0000000 0
## 6080 0 0.0000000 0
## 6081 0 0.0000000 0
## 6082 1 0.2172763 0
## 6083 1 0.2172763 0
## 6084 0 0.0000000 0
## 6085 3 0.6518290 0
## 6086 0 0.0000000 0
## 6087 0 0.0000000 0
## 6088 0 0.0000000 0
## 6089 0 0.0000000 0
## 6090 0 0.0000000 0
## 6091 0 0.0000000 0
## 6092 0 0.0000000 0
## 6093 0 0.0000000 0
## 6094 0 0.0000000 0
## 6095 0 0.0000000 0
## 6096 0 0.0000000 0
## 6097 0 0.0000000 0
## 6098 0 0.0000000 0
## 6099 0 0.0000000 0
## 6100 9 1.9554870 0
## 6101 0 0.0000000 0
## 6102 9 1.9554870 0
## 6103 1 0.2172763 0
## 6104 0 0.0000000 0
## 6105 0 0.0000000 0
## 6106 0 0.0000000 0
## 6107 0 0.0000000 0
## 6108 0 0.0000000 0
## 6109 0 0.0000000 0
## 6110 0 0.0000000 0
## 6111 0 0.0000000 0
## 6112 3 0.6518290 0
## 6113 1 0.2172763 0
## 6114 0 0.0000000 0
## 6115 2 0.4345527 0
## 6116 1 0.2172763 0
## 6117 1 0.2172763 0
## 6118 0 0.0000000 0
## 6119 0 0.0000000 0
## 6120 0 0.0000000 0
## 6121 19 4.1282500 0
## 6122 2 0.4345527 0
## 6123 15 3.2591450 0
## 6124 0 0.0000000 0
## 6125 0 0.0000000 0
## 6126 0 0.0000000 0
## 6127 0 0.0000000 0
## 6128 0 0.0000000 0
## 6129 0 0.0000000 0
## 6130 3 0.6518290 0
## 6131 1 0.2172763 0
## 6132 1 0.2172763 0
## 6133 0 0.0000000 0
## 6134 5 1.0863820 0
## 6135 10 2.1727630 0
## 6136 0 0.0000000 0
## 6137 5 1.0863820 0
## 6138 5 1.0863820 0
## 6139 5 1.0863820 0
## 6140 5 1.0863820 0
## 6141 5 1.0863820 0
## 6142 5 1.0863820 0
## 6143 0 0.0000000 0
## 6144 0 0.0000000 0
## 6145 0 0.0000000 0
## 6146 0 0.0000000 0
## 6147 0 0.0000000 0
## 6148 1 0.2172763 0
## 6149 0 0.0000000 0
## 6150 0 0.0000000 0
## 6151 2 0.4345527 0
## 6152 0 0.0000000 0
## 6153 3 0.6518290 0
## 6154 15 3.2591450 0
## 6155 1 0.2172763 0
## 6156 0 0.0000000 0
## 6157 0 0.0000000 0
## 6158 6 1.3036580 0
## 6159 1 0.2172763 0
## 6160 1 0.2172763 0
## 6161 3 0.6518290 0
## 6162 0 0.0000000 0
## 6163 3 0.6518290 0
## 6164 0 0.0000000 0
## 6165 0 0.0000000 0
## 6166 8 1.7382110 0
## 6167 5 1.0863820 0
## 6168 3 0.6518290 0
## 6169 1 0.2172763 0
## 6170 0 0.0000000 0
## 6171 4 0.8691053 0
## 6172 0 0.0000000 0
## 6173 0 0.0000000 0
## 6174 2 0.4345527 0
## 6175 2 0.4345527 0
## 6176 0 0.0000000 0
## 6177 0 0.0000000 0
## 6178 0 0.0000000 0
## 6179 0 0.0000000 0
## 6180 0 0.0000000 0
## 6181 0 0.0000000 0
## 6182 0 0.0000000 0
## 6183 0 0.0000000 0
## 6184 0 0.0000000 0
## 6185 0 0.0000000 0
## 6186 0 0.0000000 0
## 6187 0 0.0000000 0
## 6188 3 0.6518290 0
## 6189 0 0.0000000 0
## 6190 7 1.5209340 0
## 6191 0 0.0000000 0
## 6192 3 0.6518290 0
## 6193 0 0.0000000 0
## 6194 0 0.0000000 0
## 6195 0 0.0000000 0
## 6196 0 0.0000000 0
## 6197 0 0.0000000 0
## 6198 0 0.0000000 0
## 6199 0 0.0000000 0
## 6200 0 0.0000000 0
## 6201 0 0.0000000 0
## 6202 0 0.0000000 0
## 6203 0 0.0000000 0
## 6204 0 0.0000000 0
## 6205 0 0.0000000 0
## 6206 0 0.0000000 0
## 6207 0 0.0000000 0
## 6208 1 0.2172763 0
## 6209 0 0.0000000 0
## 6210 0 0.0000000 0
## 6211 1 0.2172763 0
## 6212 4 0.8691053 0
## 6213 4 0.8691053 0
## 6214 0 0.0000000 0
## 6215 0 0.0000000 0
## 6216 0 0.0000000 0
## 6217 2 0.4345527 0
## 6218 0 0.0000000 0
## 6219 0 0.0000000 0
## 6220 0 0.0000000 0
## 6221 2 0.4345527 0
## 6222 0 0.0000000 0
## 6223 1 0.2172763 0
## 6224 0 0.0000000 0
## 6225 0 0.0000000 0
## 6226 0 0.0000000 0
## 6227 0 0.0000000 0
## 6228 2 0.4345527 0
## 6229 1 0.2172763 0
## 6230 0 0.0000000 0
## 6231 1 0.2172763 0
## 6232 7 1.5209340 0
## 6233 0 0.0000000 0
## 6234 0 0.0000000 0
## 6235 0 0.0000000 0
## 6236 0 0.0000000 0
## 6237 0 0.0000000 0
## 6238 0 0.0000000 0
## 6239 5 1.0863820 0
## 6240 4 0.8691053 0
## 6241 0 0.0000000 0
## 6242 0 0.0000000 0
## 6243 0 0.0000000 0
## 6244 2 0.4345527 0
## 6245 0 0.0000000 0
## 6246 0 0.0000000 0
## 6247 0 0.0000000 0
## 6248 2 0.4345527 0
## 6249 2 0.4345527 0
## 6250 2 0.4345527 0
## 6251 2 0.4345527 0
## 6252 0 0.0000000 0
## 6253 5 1.0863820 0
## 6254 0 0.0000000 0
## 6255 0 0.0000000 0
## 6256 0 0.0000000 0
## 6257 0 0.0000000 0
## 6258 2 0.4345527 0
## 6259 2 0.4345527 0
## 6260 0 0.0000000 0
## 6261 0 0.0000000 0
## 6262 0 0.0000000 0
## 6263 0 0.0000000 0
## 6264 0 0.0000000 0
## 6265 0 0.0000000 0
## 6266 0 0.0000000 0
## 6267 0 0.0000000 0
## 6268 0 0.0000000 0
## 6269 0 0.0000000 0
## 6270 0 0.0000000 0
## 6271 0 0.0000000 0
## 6272 0 0.0000000 0
## 6273 0 0.0000000 0
## 6274 0 0.0000000 0
## 6275 0 0.0000000 0
## 6276 1 0.2172763 0
## 6277 0 0.0000000 0
## 6278 0 0.0000000 0
## 6279 0 0.0000000 0
## 6280 0 0.0000000 0
## 6281 0 0.0000000 0
## 6282 2 0.4345527 0
## 6283 0 0.0000000 0
## 6284 0 0.0000000 0
## 6285 5 1.0863820 0
## 6286 0 0.0000000 0
## 6287 0 0.0000000 0
## 6288 1 0.2172763 0
## 6289 0 0.0000000 0
## 6290 0 0.0000000 0
## 6291 0 0.0000000 0
## 6292 0 0.0000000 0
## 6293 2 0.4345527 0
## 6294 0 0.0000000 0
## 6295 0 0.0000000 0
## 6296 1 0.2172763 0
## 6297 0 0.0000000 0
## 6298 0 0.0000000 0
## 6299 0 0.0000000 0
## 6300 0 0.0000000 0
## 6301 0 0.0000000 0
## 6302 0 0.0000000 0
## 6303 4 0.8691053 0
## 6304 0 0.0000000 0
## 6305 0 0.0000000 0
## 6306 1 0.2172763 0
## 6307 0 0.0000000 0
## 6308 0 0.0000000 0
## 6309 0 0.0000000 0
## 6310 14 3.0418690 0
## 6311 3 0.6518290 0
## 6312 0 0.0000000 0
## 6313 1 0.2172763 0
## 6314 11 2.3900400 0
## 6315 1 0.2172763 0
## 6316 0 0.0000000 0
## 6317 2 0.4345527 0
## 6318 0 0.0000000 0
## 6319 0 0.0000000 0
## 6320 0 0.0000000 0
## 6321 0 0.0000000 0
## 6322 0 0.0000000 0
## 6323 0 0.0000000 0
## 6324 1 0.2172763 0
## 6325 0 0.0000000 0
## 6326 0 0.0000000 0
## 6327 0 0.0000000 0
## 6328 0 0.0000000 0
## 6329 1 0.2172763 0
## 6330 0 0.0000000 0
## 6331 0 0.0000000 0
## 6332 0 0.0000000 0
## 6333 0 0.0000000 0
## 6334 0 0.0000000 0
## 6335 1 0.2172763 0
## 6336 0 0.0000000 0
## 6337 0 0.0000000 0
## 6338 0 0.0000000 0
## 6339 2 0.4345527 0
## 6340 0 0.0000000 0
## 6341 0 0.0000000 0
## 6342 2 0.4345527 0
## 6343 2 0.4345527 0
## 6344 0 0.0000000 0
## 6345 0 0.0000000 0
## 6346 0 0.0000000 0
## 6347 0 0.0000000 0
## 6348 0 0.0000000 0
## 6349 0 0.0000000 0
## 6350 0 0.0000000 0
## 6351 0 0.0000000 0
## 6352 0 0.0000000 0
## 6353 0 0.0000000 0
## 6354 3 0.6518290 0
## 6355 12 2.6073160 0
## 6356 1 0.2172763 0
## 6357 0 0.0000000 0
## 6358 0 0.0000000 0
## 6359 0 0.0000000 0
## 6360 0 0.0000000 0
## 6361 0 0.0000000 0
## 6362 0 0.0000000 0
## 6363 0 0.0000000 0
## 6364 0 0.0000000 0
## 6365 0 0.0000000 0
## 6366 0 0.0000000 0
## 6367 0 0.0000000 0
## 6368 2 0.4345527 0
## 6369 2 0.4345527 0
## 6370 5 1.0863820 0
## 6371 0 0.0000000 0
## 6372 0 0.0000000 0
## 6373 0 0.0000000 0
## 6374 0 0.0000000 0
## 6375 3 0.6518290 0
## 6376 5 1.0863820 0
## 6377 0 0.0000000 0
## 6378 1 0.2172763 0
## 6379 0 0.0000000 0
## 6380 1 0.2172763 0
## 6381 0 0.0000000 0
## 6382 1 0.2172763 0
## 6383 0 0.0000000 0
## 6384 0 0.0000000 0
## 6385 0 0.0000000 0
## 6386 0 0.0000000 0
## 6387 0 0.0000000 0
## 6388 1 0.2172763 0
## 6389 0 0.0000000 0
## 6390 5 1.0863820 0
## 6391 0 0.0000000 0
## 6392 0 0.0000000 0
## 6393 2 0.4345527 0
## 6394 0 0.0000000 0
## 6395 0 0.0000000 0
## 6396 0 0.0000000 0
## 6397 0 0.0000000 0
## 6398 0 0.0000000 0
## 6399 0 0.0000000 0
## 6400 3 0.6518290 0
## 6401 0 0.0000000 0
## 6402 0 0.0000000 0
## 6403 0 0.0000000 0
## 6404 0 0.0000000 0
## 6405 0 0.0000000 0
## 6406 0 0.0000000 0
## 6407 1 0.2172763 0
## 6408 0 0.0000000 0
## 6409 0 0.0000000 0
## 6410 2 0.4345527 0
## 6411 0 0.0000000 0
## 6412 0 0.0000000 0
## 6413 2 0.4345527 0
## 6414 0 0.0000000 0
## 6415 2 0.4345527 0
## 6416 2 0.4345527 0
## 6417 0 0.0000000 0
## 6418 6 1.3036580 0
## 6419 0 0.0000000 0
## 6420 0 0.0000000 0
## 6421 0 0.0000000 0
## 6422 0 0.0000000 0
## 6423 0 0.0000000 0
## 6424 0 0.0000000 0
## 6425 2 0.4345527 0
## 6426 0 0.0000000 0
## 6427 0 0.0000000 0
## 6428 2 0.4345527 0
## 6429 0 0.0000000 0
## 6430 0 0.0000000 0
## 6431 0 0.0000000 0
## 6432 0 0.0000000 0
## 6433 0 0.0000000 0
## 6434 0 0.0000000 0
## 6435 0 0.0000000 0
## 6436 0 0.0000000 0
## 6437 0 0.0000000 0
## 6438 0 0.0000000 0
## 6439 0 0.0000000 0
## 6440 0 0.0000000 0
## 6441 0 0.0000000 0
## 6442 0 0.0000000 0
## 6443 1 0.2172763 0
## 6444 0 0.0000000 0
## 6445 0 0.0000000 0
## 6446 0 0.0000000 0
## 6447 1 0.2172763 0
## 6448 8 1.7382110 0
## 6449 0 0.0000000 0
## 6450 2 0.4345527 0
## 6451 10 2.1727630 0
## 6452 0 0.0000000 0
## 6453 2 0.4345527 0
## 6454 0 0.0000000 0
## 6455 0 0.0000000 0
## 6456 0 0.0000000 0
## 6457 0 0.0000000 0
## 6458 2 0.4345527 0
## 6459 0 0.0000000 0
## 6460 1 0.2172763 0
## 6461 0 0.0000000 0
## 6462 0 0.0000000 0
## 6463 0 0.0000000 0
## 6464 2 0.4345527 0
## 6465 0 0.0000000 0
## 6466 0 0.0000000 0
## 6467 0 0.0000000 0
## 6468 0 0.0000000 0
## 6469 0 0.0000000 0
## 6470 0 0.0000000 0
## 6471 0 0.0000000 0
## 6472 0 0.0000000 0
## 6473 1 0.2172763 0
## 6474 3 0.6518290 0
## 6475 0 0.0000000 0
## 6476 0 0.0000000 0
## 6477 2 0.4345527 0
## 6478 4 0.8691053 0
## 6479 2 0.4345527 0
## 6480 0 0.0000000 0
## 6481 12 2.6073160 0
## 6482 1 0.2172763 0
## 6483 0 0.0000000 0
## 6484 0 0.0000000 0
## 6485 0 0.0000000 0
## 6486 0 0.0000000 0
## 6487 0 0.0000000 0
## 6488 0 0.0000000 0
## 6489 0 0.0000000 0
## 6490 0 0.0000000 0
## 6491 0 0.0000000 0
## 6492 0 0.0000000 0
## 6493 1 0.2172763 0
## 6494 0 0.0000000 0
## 6495 0 0.0000000 0
## 6496 0 0.0000000 0
## 6497 1 0.2172763 0
## 6498 0 0.0000000 0
## 6499 0 0.0000000 0
## 6500 0 0.0000000 0
## 6501 0 0.0000000 0
## 6502 0 0.0000000 0
## 6503 0 0.0000000 0
## 6504 0 0.0000000 0
## 6505 0 0.0000000 0
## 6506 0 0.0000000 0
## 6507 0 0.0000000 0
## 6508 1 0.2172763 0
## 6509 0 0.0000000 0
## 6510 0 0.0000000 0
## 6511 2 0.4345527 0
## 6512 0 0.0000000 0
## 6513 0 0.0000000 0
## 6514 0 0.0000000 0
## 6515 0 0.0000000 0
## 6516 0 0.0000000 0
## 6517 0 0.0000000 0
## 6518 1 0.2172763 0
## 6519 0 0.0000000 0
## 6520 0 0.0000000 0
## 6521 0 0.0000000 0
## 6522 0 0.0000000 0
## 6523 1 0.2172763 0
## 6524 0 0.0000000 0
## 6525 2 0.4345527 0
## 6526 0 0.0000000 0
## 6527 0 0.0000000 0
## 6528 3 0.6518290 0
## 6529 0 0.0000000 0
## 6530 9 1.9554870 0
## 6531 3 0.6518290 0
## 6532 0 0.0000000 0
## 6533 0 0.0000000 0
## 6534 0 0.0000000 0
## 6535 0 0.0000000 0
## 6536 1 0.2172763 0
## 6537 1 0.2172763 0
## 6538 0 0.0000000 0
## 6539 1 0.2172763 0
## 6540 0 0.0000000 0
## 6541 0 0.0000000 0
## 6542 0 0.0000000 0
## 6543 1 0.2172763 0
## 6544 0 0.0000000 0
## 6545 0 0.0000000 0
## 6546 4 0.8691053 0
## 6547 0 0.0000000 0
## 6548 1 0.2172763 0
## 6549 0 0.0000000 0
## 6550 0 0.0000000 0
## 6551 0 0.0000000 0
## 6552 0 0.0000000 0
## 6553 0 0.0000000 0
## 6554 3 0.6518290 0
## 6555 0 0.0000000 0
## 6556 0 0.0000000 0
## 6557 15 3.2591450 0
## 6558 0 0.0000000 0
## 6559 0 0.0000000 0
## 6560 0 0.0000000 0
## 6561 3 0.6518290 0
## 6562 8 1.7382110 0
## 6563 13 2.8245920 0
## 6564 4 0.8691053 0
## 6565 0 0.0000000 0
## 6566 0 0.0000000 0
## 6567 3 0.6518290 0
## 6568 0 0.0000000 0
## 6569 0 0.0000000 0
## 6570 0 0.0000000 0
## 6571 6 1.3036580 0
## 6572 2 0.4345527 0
## 6573 0 0.0000000 0
## 6574 5 1.0863820 0
## 6575 10 2.1727630 0
## 6576 9 1.9554870 0
## 6577 0 0.0000000 0
## 6578 1 0.2172763 0
## 6579 0 0.0000000 0
## 6580 3 0.6518290 0
## 6581 0 0.0000000 0
## 6582 0 0.0000000 0
## 6583 24 5.2146320 0
## 6584 0 0.0000000 0
## 6585 0 0.0000000 0
## 6586 0 0.0000000 0
## 6587 2 0.4345527 0
## 6588 1 0.2172763 0
## 6589 1 0.2172763 0
## 6590 1 0.2172763 0
## 6591 0 0.0000000 0
## 6592 0 0.0000000 0
## 6593 0 0.0000000 0
## 6594 0 0.0000000 0
## 6595 0 0.0000000 0
## 6596 0 0.0000000 0
## 6597 0 0.0000000 0
## 6598 0 0.0000000 0
## 6599 0 0.0000000 0
## 6600 11 2.3900400 0
## 6601 10 2.1727630 0
## 6602 0 0.0000000 0
## 6603 10 2.1727630 0
## 6604 0 0.0000000 0
## 6605 1 0.2172763 0
## 6606 0 0.0000000 0
## 6607 0 0.0000000 0
## 6608 2 0.4345527 0
## 6609 0 0.0000000 0
## 6610 1 0.2172763 0
## 6611 0 0.0000000 0
## 6612 0 0.0000000 0
## 6613 0 0.0000000 0
## 6614 0 0.0000000 0
## 6615 0 0.0000000 0
## 6616 2 0.4345527 0
## 6617 1 0.2172763 0
## 6618 0 0.0000000 0
## 6619 0 0.0000000 0
## 6620 0 0.0000000 0
## 6621 0 0.0000000 0
## 6622 0 0.0000000 0
## 6623 0 0.0000000 0
## 6624 0 0.0000000 0
## 6625 0 0.0000000 0
## 6626 0 0.0000000 0
## 6627 13 2.8245920 0
## 6628 7 1.5209340 0
## 6629 0 0.0000000 0
## 6630 7 1.5209340 0
## 6631 2 0.4345527 0
## 6632 0 0.0000000 0
## 6633 0 0.0000000 0
## 6634 0 0.0000000 0
## 6635 10 2.1727630 0
## 6636 2 0.4345527 0
## 6637 2 0.4345527 0
## 6638 19 4.1282500 0
## 6639 8 1.7382110 0
## 6640 5 1.0863820 0
## 6641 10 2.1727630 0
## 6642 0 0.0000000 0
## 6643 0 0.0000000 0
## 6644 5 1.0863820 0
## 6645 0 0.0000000 0
## 6646 0 0.0000000 0
## 6647 0 0.0000000 0
## 6648 0 0.0000000 0
## 6649 0 0.0000000 0
## 6650 0 0.0000000 0
## 6651 0 0.0000000 0
## 6652 0 0.0000000 0
## 6653 0 0.0000000 0
## 6654 0 0.0000000 0
## 6655 0 0.0000000 0
## 6656 0 0.0000000 0
## 6657 0 0.0000000 0
## 6658 0 0.0000000 0
## 6659 0 0.0000000 0
## 6660 0 0.0000000 0
## 6661 0 0.0000000 0
## 6662 0 0.0000000 0
## 6663 0 0.0000000 0
## 6664 1 0.2172763 0
## 6665 0 0.0000000 0
## 6666 0 0.0000000 0
## 6667 0 0.0000000 0
## 6668 5 1.0863820 0
## 6669 1 0.2172763 0
## 6670 0 0.0000000 0
## 6671 0 0.0000000 0
## 6672 2 0.4345527 0
## 6673 0 0.0000000 0
## 6674 2 0.4345527 0
## 6675 1 0.2172763 0
## 6676 1 0.2172763 0
## 6677 0 0.0000000 0
## 6678 0 0.0000000 0
## 6679 0 0.0000000 0
## 6680 0 0.0000000 0
## 6681 0 0.0000000 0
## 6682 0 0.0000000 0
## 6683 0 0.0000000 0
## 6684 0 0.0000000 0
## 6685 1 0.2172763 0
## 6686 0 0.0000000 0
## 6687 0 0.0000000 0
## 6688 0 0.0000000 0
## 6689 5 1.0863820 0
## 6690 0 0.0000000 0
## 6691 0 0.0000000 0
## 6692 1 0.2172763 0
## 6693 1 0.2172763 0
## 6694 0 0.0000000 0
## 6695 0 0.0000000 0
## 6696 0 0.0000000 0
## 6697 1 0.2172763 0
## 6698 1 0.2172763 0
## 6699 0 0.0000000 0
## 6700 0 0.0000000 0
## 6701 2 0.4345527 0
## 6702 1 0.2172763 0
## 6703 0 0.0000000 0
## 6704 0 0.0000000 0
## 6705 3 0.6518290 0
## 6706 0 0.0000000 0
## 6707 0 0.0000000 0
## 6708 3 0.6518290 0
## 6709 10 2.1727630 0
## 6710 0 0.0000000 0
## 6711 0 0.0000000 0
## 6712 1 0.2172763 0
## 6713 0 0.0000000 0
## 6714 1 0.2172763 0
## 6715 2 0.4345527 0
## 6716 0 0.0000000 0
## 6717 0 0.0000000 0
## 6718 0 0.0000000 0
## 6719 1 0.2172763 0
## 6720 0 0.0000000 0
## 6721 0 0.0000000 0
## 6722 0 0.0000000 0
## 6723 0 0.0000000 0
## 6724 0 0.0000000 0
## 6725 0 0.0000000 0
## 6726 0 0.0000000 0
## 6727 0 0.0000000 0
## 6728 10 2.1727630 0
## 6729 11 2.3900400 0
## 6730 0 0.0000000 0
## 6731 0 0.0000000 0
## 6732 0 0.0000000 0
## 6733 0 0.0000000 0
## 6734 11 2.3900400 0
## 6735 0 0.0000000 0
## 6736 0 0.0000000 0
## 6737 0 0.0000000 0
## 6738 0 0.0000000 0
## 6739 0 0.0000000 0
## 6740 0 0.0000000 0
## 6741 0 0.0000000 0
## 6742 1 0.2172763 0
## 6743 0 0.0000000 0
## 6744 9 1.9554870 0
## 6745 3 0.6518290 0
## 6746 0 0.0000000 0
## 6747 0 0.0000000 0
## 6748 0 0.0000000 0
## 6749 0 0.0000000 0
## 6750 0 0.0000000 0
## 6751 0 0.0000000 0
## 6752 3 0.6518290 0
## 6753 0 0.0000000 0
## 6754 0 0.0000000 0
## 6755 0 0.0000000 0
## 6756 2 0.4345527 0
## 6757 0 0.0000000 0
## 6758 10 2.1727630 0
## 6759 24 5.2146320 0
## 6760 0 0.0000000 0
## 6761 0 0.0000000 0
## 6762 0 0.0000000 0
## 6763 8 1.7382110 0
## 6764 0 0.0000000 0
## 6765 0 0.0000000 0
## 6766 3 0.6518290 0
## 6767 0 0.0000000 0
## 6768 4 0.8691053 0
## 6769 0 0.0000000 0
## 6770 0 0.0000000 0
## 6771 0 0.0000000 0
## 6772 0 0.0000000 0
## 6773 0 0.0000000 0
## 6774 0 0.0000000 0
## 6775 0 0.0000000 0
## 6776 0 0.0000000 0
## 6777 0 0.0000000 0
## 6778 1 0.2172763 0
## 6779 0 0.0000000 0
## 6780 2 0.4345527 0
## 6781 5 1.0863820 0
## 6782 0 0.0000000 0
## 6783 13 2.8245920 0
## 6784 7 1.5209340 0
## 6785 0 0.0000000 0
## 6786 0 0.0000000 0
## 6787 5 1.0863820 0
## 6788 0 0.0000000 0
## 6789 0 0.0000000 0
## 6790 10 2.1727630 0
## 6791 0 0.0000000 0
## 6792 0 0.0000000 0
## 6793 0 0.0000000 0
## 6794 0 0.0000000 0
## 6795 2 0.4345527 0
## 6796 0 0.0000000 0
## 6797 0 0.0000000 0
## 6798 3 0.6518290 0
## 6799 0 0.0000000 0
## 6800 6 1.3036580 0
## 6801 0 0.0000000 0
## 6802 0 0.0000000 0
## 6803 0 0.0000000 0
## 6804 2 0.4345527 0
## 6805 1 0.2172763 0
## 6806 0 0.0000000 0
## 6807 0 0.0000000 0
## 6808 0 0.0000000 0
## 6809 0 0.0000000 0
## 6810 10 2.1727630 0
## 6811 0 0.0000000 0
## 6812 0 0.0000000 0
## 6813 0 0.0000000 0
## 6814 0 0.0000000 0
## 6815 9 1.9554870 0
## 6816 0 0.0000000 0
## 6817 5 1.0863820 0
## 6818 0 0.0000000 0
## 6819 0 0.0000000 0
## 6820 0 0.0000000 0
## 6821 0 0.0000000 0
## 6822 0 0.0000000 0
## 6823 0 0.0000000 0
## 6824 0 0.0000000 0
## 6825 0 0.0000000 0
## 6826 1 0.2172763 0
## 6827 5 1.0863820 0
## 6828 0 0.0000000 0
## 6829 0 0.0000000 0
## 6830 9 1.9554870 0
## 6831 6 1.3036580 0
## 6832 0 0.0000000 0
## 6833 0 0.0000000 0
## 6834 0 0.0000000 0
## 6835 2 0.4345527 0
## 6836 0 0.0000000 0
## 6837 0 0.0000000 0
## 6838 0 0.0000000 0
## 6839 0 0.0000000 0
## 6840 5 1.0863820 0
## 6841 4 0.8691053 0
## 6842 0 0.0000000 0
## 6843 0 0.0000000 0
## 6844 0 0.0000000 0
## 6845 0 0.0000000 0
## 6846 0 0.0000000 0
## 6847 0 0.0000000 0
## 6848 3 0.6518290 0
## 6849 3 0.6518290 0
## 6850 1 0.2172763 0
## 6851 1 0.2172763 0
## 6852 0 0.0000000 0
## 6853 0 0.0000000 0
## 6854 0 0.0000000 0
## 6855 2 0.4345527 0
## 6856 0 0.0000000 0
## 6857 2 0.4345527 0
## 6858 0 0.0000000 0
## 6859 0 0.0000000 0
## 6860 5 1.0863820 0
## 6861 0 0.0000000 0
## 6862 1 0.2172763 0
## 6863 2 0.4345527 0
## 6864 1 0.2172763 0
## 6865 0 0.0000000 0
## 6866 1 0.2172763 0
## 6867 0 0.0000000 0
## 6868 8 1.7382110 0
## 6869 0 0.0000000 0
## 6870 0 0.0000000 0
## 6871 2 0.4345527 0
## 6872 5 1.0863820 0
## 6873 3 0.6518290 0
## 6874 2 0.4345527 0
## 6875 5 1.0863820 0
## 6876 5 1.0863820 0
## 6877 5 1.0863820 0
## 6878 1 0.2172763 0
## 6879 0 0.0000000 0
## 6880 1 0.2172763 0
## 6881 0 0.0000000 0
## 6882 0 0.0000000 0
## 6883 0 0.0000000 0
## 6884 0 0.0000000 0
## 6885 0 0.0000000 0
## 6886 0 0.0000000 0
## 6887 0 0.0000000 0
## 6888 10 2.1727630 0
## 6889 0 0.0000000 0
## 6890 3 0.6518290 0
## 6891 0 0.0000000 0
## 6892 2 0.4345527 0
## 6893 0 0.0000000 0
## 6894 0 0.0000000 0
## 6895 0 0.0000000 0
## 6896 3 0.6518290 0
## 6897 3 0.6518290 0
## 6898 0 0.0000000 0
## 6899 10 2.1727630 0
## 6900 15 3.2591450 0
## 6901 0 0.0000000 0
## 6902 12 2.6073160 0
## 6903 4 0.8691053 0
## 6904 7 1.5209340 0
## 6905 11 2.3900400 0
## 6906 1 0.2172763 0
## 6907 3 0.6518290 0
## 6908 7 1.5209340 0
## 6909 0 0.0000000 0
## 6910 0 0.0000000 0
## 6911 0 0.0000000 0
## 6912 0 0.0000000 0
## 6913 0 0.0000000 0
## 6914 0 0.0000000 0
## 6915 1 0.2172763 0
## 6916 0 0.0000000 0
## 6917 5 1.0863820 0
## 6918 11 2.3900400 0
## 6919 0 0.0000000 0
## 6920 0 0.0000000 0
## 6921 0 0.0000000 0
## 6922 0 0.0000000 0
## 6923 0 0.0000000 0
## 6924 0 0.0000000 0
## 6925 3 0.6518290 0
## 6926 2 0.4345527 0
## 6927 2 0.4345527 0
## 6928 0 0.0000000 0
## 6929 1 0.2172763 0
## 6930 3 0.6518290 0
## 6931 0 0.0000000 0
## 6932 0 0.0000000 0
## 6933 0 0.0000000 0
## 6934 9 1.9554870 0
## 6935 0 0.0000000 0
## 6936 9 1.9554870 0
## 6937 0 0.0000000 0
## 6938 0 0.0000000 0
## 6939 0 0.0000000 0
## 6940 0 0.0000000 0
## 6941 0 0.0000000 0
## 6942 0 0.0000000 0
## 6943 0 0.0000000 0
## 6944 0 0.0000000 0
## 6945 0 0.0000000 0
## 6946 0 0.0000000 0
## 6947 1 0.2172763 0
## 6948 0 0.0000000 0
## 6949 5 1.0863820 0
## 6950 1 0.2172763 0
## 6951 0 0.0000000 0
## 6952 0 0.0000000 0
## 6953 0 0.0000000 0
## 6954 0 0.0000000 0
## 6955 0 0.0000000 0
## 6956 0 0.0000000 0
## 6957 5 1.0863820 0
## 6958 1 0.2172763 0
## 6959 0 0.0000000 0
## 6960 0 0.0000000 0
## 6961 0 0.0000000 0
## 6962 0 0.0000000 0
## 6963 5 1.0863820 0
## 6964 5 1.0863820 0
## 6965 3 0.6518290 0
## 6966 3 0.6518290 0
## 6967 3 0.6518290 0
## 6968 0 0.0000000 0
## 6969 0 0.0000000 0
## 6970 0 0.0000000 0
## 6971 1 0.2172763 0
## 6972 2 0.4345527 0
## 6973 11 2.3900400 0
## 6974 0 0.0000000 0
## 6975 5 1.0863820 0
## 6976 0 0.0000000 0
## 6977 5 1.0863820 0
## 6978 0 0.0000000 0
## 6979 0 0.0000000 0
## 6980 0 0.0000000 0
## 6981 0 0.0000000 0
## 6982 2 0.4345527 0
## 6983 0 0.0000000 0
## 6984 0 0.0000000 0
## 6985 3 0.6518290 0
## 6986 3 0.6518290 0
## 6987 0 0.0000000 0
## 6988 2 0.4345527 0
## 6989 6 1.3036580 0
## 6990 2 0.4345527 0
## 6991 0 0.0000000 0
## 6992 2 0.4345527 0
## 6993 0 0.0000000 0
## 6994 0 0.0000000 0
## 6995 0 0.0000000 0
## 6996 0 0.0000000 0
## 6997 0 0.0000000 0
## 6998 0 0.0000000 0
## 6999 1 0.2172763 0
## 7000 1 0.2172763 0
## 7001 0 0.0000000 0
## 7002 0 0.0000000 0
## 7003 0 0.0000000 0
## 7004 2 0.4345527 0
## 7005 0 0.0000000 0
## 7006 0 0.0000000 0
## 7007 1 0.2172763 0
## 7008 0 0.0000000 0
## 7009 5 1.0863820 0
## 7010 0 0.0000000 0
## 7011 1 0.2172763 0
## 7012 0 0.0000000 0
## 7013 0 0.0000000 0
## 7014 0 0.0000000 0
## 7015 0 0.0000000 0
## 7016 0 0.0000000 0
## 7017 0 0.0000000 0
## 7018 0 0.0000000 0
## 7019 0 0.0000000 0
## 7020 0 0.0000000 0
## 7021 0 0.0000000 0
## 7022 0 0.0000000 0
## 7023 0 0.0000000 0
## 7024 2 0.4345527 0
## 7025 2 0.4345527 0
## 7026 0 0.0000000 0
## 7027 0 0.0000000 0
## 7028 0 0.0000000 0
## 7029 0 0.0000000 0
## 7030 0 0.0000000 0
## 7031 3 0.6518290 0
## 7032 0 0.0000000 0
## 7033 3 0.6518290 0
## 7034 0 0.0000000 0
## 7035 1 0.2172763 0
## 7036 1 0.2172763 0
## 7037 0 0.0000000 0
## 7038 0 0.0000000 0
## 7039 0 0.0000000 0
## 7040 0 0.0000000 0
## 7041 0 0.0000000 0
## 7042 0 0.0000000 0
## 7043 0 0.0000000 0
## 7044 2 0.4345527 0
## 7045 0 0.0000000 0
## 7046 2 0.4345527 0
## 7047 0 0.0000000 0
## 7048 0 0.0000000 0
## 7049 6 1.3036580 0
## 7050 0 0.0000000 0
## 7051 1 0.2172763 0
## 7052 0 0.0000000 0
## 7053 1 0.2172763 0
## 7054 0 0.0000000 0
## 7055 1 0.2172763 0
## 7056 0 0.0000000 0
## 7057 1 0.2172763 0
## 7058 0 0.0000000 0
## 7059 0 0.0000000 0
## 7060 1 0.2172763 0
## 7061 7 1.5209340 0
## 7062 0 0.0000000 0
## 7063 0 0.0000000 0
## 7064 0 0.0000000 0
## 7065 0 0.0000000 0
## 7066 3 0.6518290 0
## 7067 0 0.0000000 0
## 7068 3 0.6518290 0
## 7069 4 0.8691053 0
## 7070 11 2.3900400 0
## 7071 0 0.0000000 0
## 7072 0 0.0000000 0
## 7073 2 0.4345527 0
## 7074 1 0.2172763 0
## 7075 4 0.8691053 0
## 7076 8 1.7382110 0
## 7077 1 0.2172763 0
## 7078 3 0.6518290 0
## 7079 8 1.7382110 0
## 7080 3 0.6518290 0
## 7081 0 0.0000000 0
## 7082 0 0.0000000 0
## 7083 0 0.0000000 0
## 7084 5 1.0863820 0
## 7085 2 0.4345527 0
## 7086 0 0.0000000 0
## 7087 0 0.0000000 0
## 7088 0 0.0000000 0
## 7089 0 0.0000000 0
## 7090 0 0.0000000 0
## 7091 0 0.0000000 0
## 7092 0 0.0000000 0
## 7093 0 0.0000000 0
## 7094 3 0.6518290 0
## 7095 0 0.0000000 0
## 7096 0 0.0000000 0
## 7097 0 0.0000000 0
## 7098 0 0.0000000 0
## 7099 7 1.5209340 0
## 7100 2 0.4345527 0
## 7101 0 0.0000000 0
## 7102 0 0.0000000 0
## 7103 0 0.0000000 0
## 7104 0 0.0000000 0
## 7105 0 0.0000000 0
## 7106 0 0.0000000 0
## 7107 0 0.0000000 0
## 7108 5 1.0863820 0
## 7109 1 0.2172763 0
## 7110 1 0.2172763 0
## 7111 2 0.4345527 0
## 7112 1 0.2172763 0
## 7113 2 0.4345527 0
## 7114 0 0.0000000 0
## 7115 0 0.0000000 0
## 7116 0 0.0000000 0
## 7117 3 0.6518290 0
## 7118 0 0.0000000 0
## 7119 0 0.0000000 0
## 7120 0 0.0000000 0
## 7121 1 0.2172763 0
## 7122 2 0.4345527 0
## 7123 0 0.0000000 0
## 7124 0 0.0000000 0
## 7125 0 0.0000000 0
## 7126 0 0.0000000 0
## 7127 0 0.0000000 0
## 7128 1 0.2172763 0
## 7129 0 0.0000000 0
## 7130 0 0.0000000 0
## 7131 1 0.2172763 0
## 7132 1 0.2172763 0
## 7133 0 0.0000000 0
## 7134 0 0.0000000 0
## 7135 2 0.4345527 0
## 7136 0 0.0000000 0
## 7137 0 0.0000000 0
## 7138 0 0.0000000 0
## 7139 0 0.0000000 0
## 7140 2 0.4345527 0
## 7141 0 0.0000000 0
## 7142 0 0.0000000 0
## 7143 0 0.0000000 0
## 7144 2 0.4345527 0
## 7145 0 0.0000000 0
## 7146 0 0.0000000 0
## 7147 1 0.2172763 0
## 7148 0 0.0000000 0
## 7149 7 1.5209340 0
## 7150 0 0.0000000 0
## 7151 0 0.0000000 0
## 7152 8 1.7382110 0
## 7153 0 0.0000000 0
## 7154 10 2.1727630 0
## 7155 0 0.0000000 0
## 7156 0 0.0000000 0
## 7157 6 1.3036580 0
## 7158 2 0.4345527 0
## 7159 0 0.0000000 0
## 7160 7 1.5209340 0
## 7161 0 0.0000000 0
## 7162 1 0.2172763 0
## 7163 8 1.7382110 0
## 7164 0 0.0000000 0
## 7165 0 0.0000000 0
## 7166 0 0.0000000 0
## 7167 0 0.0000000 0
## 7168 12 2.6073160 0
## 7169 4 0.8691053 0
## 7170 3 0.6518290 0
## 7171 0 0.0000000 0
## 7172 2 0.4345527 0
## 7173 0 0.0000000 0
## 7174 3 0.6518290 0
## 7175 0 0.0000000 0
## 7176 9 1.9554870 0
## 7177 7 1.5209340 0
## 7178 0 0.0000000 0
## 7179 0 0.0000000 0
## 7180 3 0.6518290 0
## 7181 0 0.0000000 0
## 7182 3 0.6518290 0
## 7183 0 0.0000000 0
## 7184 0 0.0000000 0
## 7185 0 0.0000000 0
## 7186 0 0.0000000 0
## 7187 0 0.0000000 0
## 7188 0 0.0000000 0
## 7189 0 0.0000000 0
## 7190 3 0.6518290 0
## 7191 0 0.0000000 0
## 7192 1 0.2172763 0
## 7193 2 0.4345527 0
## 7194 1 0.2172763 0
## 7195 1 0.2172763 0
## 7196 0 0.0000000 0
## 7197 1 0.2172763 0
## 7198 0 0.0000000 0
## 7199 0 0.0000000 0
## 7200 8 1.7382110 0
## 7201 1 0.2172763 0
## 7202 2 0.4345527 0
## 7203 3 0.6518290 0
## 7204 2 0.4345527 0
## 7205 5 1.0863820 0
## 7206 0 0.0000000 0
## 7207 5 1.0863820 0
## 7208 1 0.2172763 0
## 7209 0 0.0000000 0
## 7210 0 0.0000000 0
## 7211 0 0.0000000 0
## 7212 0 0.0000000 0
## 7213 0 0.0000000 0
## 7214 0 0.0000000 0
## 7215 0 0.0000000 0
## 7216 0 0.0000000 0
## 7217 0 0.0000000 0
## 7218 0 0.0000000 0
## 7219 1 0.2172763 0
## 7220 1 0.2172763 0
## 7221 0 0.0000000 0
## 7222 1 0.2172763 0
## 7223 0 0.0000000 0
## 7224 1 0.2172763 0
## 7225 0 0.0000000 0
## 7226 0 0.0000000 0
## 7227 0 0.0000000 0
## 7228 0 0.0000000 0
## 7229 0 0.0000000 0
## 7230 6 1.3036580 0
## 7231 0 0.0000000 0
## 7232 0 0.0000000 0
## 7233 0 0.0000000 0
## 7234 0 0.0000000 0
## 7235 0 0.0000000 0
## 7236 0 0.0000000 0
## 7237 0 0.0000000 0
## 7238 0 0.0000000 0
## 7239 0 0.0000000 0
## 7240 0 0.0000000 0
## 7241 0 0.0000000 0
## 7242 0 0.0000000 0
## 7243 0 0.0000000 0
## 7244 0 0.0000000 0
## 7245 5 1.0863820 0
## 7246 6 1.3036580 0
## 7247 1 0.2172763 0
## 7248 1 0.2172763 0
## 7249 0 0.0000000 0
## 7250 0 0.0000000 0
## 7251 0 0.0000000 0
## 7252 5 1.0863820 0
## 7253 0 0.0000000 0
## 7254 0 0.0000000 0
## 7255 0 0.0000000 0
## 7256 0 0.0000000 0
## 7257 0 0.0000000 0
## 7258 15 3.2591450 0
## 7259 9 1.9554870 0
## 7260 7 1.5209340 0
## 7261 2 0.4345527 0
## 7262 6 1.3036580 0
## 7263 0 0.0000000 0
## 7264 0 0.0000000 0
## 7265 0 0.0000000 0
## 7266 5 1.0863820 0
## 7267 5 1.0863820 0
## 7268 0 0.0000000 0
## 7269 5 1.0863820 0
## 7270 5 1.0863820 0
## 7271 0 0.0000000 0
## 7272 3 0.6518290 0
## 7273 0 0.0000000 0
## 7274 8 1.7382110 0
## 7275 3 0.6518290 0
## 7276 0 0.0000000 0
## 7277 4 0.8691053 0
## 7278 0 0.0000000 0
## 7279 0 0.0000000 0
## 7280 0 0.0000000 0
## 7281 0 0.0000000 0
## 7282 0 0.0000000 0
## 7283 0 0.0000000 0
## 7284 0 0.0000000 0
## 7285 0 0.0000000 0
## 7286 0 0.0000000 0
## 7287 0 0.0000000 0
## 7288 0 0.0000000 0
## 7289 0 0.0000000 0
## 7290 0 0.0000000 0
## 7291 0 0.0000000 0
## 7292 0 0.0000000 0
## 7293 0 0.0000000 0
## 7294 3 0.6518290 0
## 7295 0 0.0000000 0
## 7296 0 0.0000000 0
## 7297 0 0.0000000 0
## 7298 0 0.0000000 0
## 7299 0 0.0000000 0
## 7300 0 0.0000000 0
## 7301 0 0.0000000 0
## 7302 0 0.0000000 0
## 7303 6 1.3036580 0
## 7304 4 0.8691053 0
## 7305 4 0.8691053 0
## 7306 4 0.8691053 0
## 7307 0 0.0000000 0
## 7308 0 0.0000000 0
## 7309 0 0.0000000 0
## 7310 0 0.0000000 0
## 7311 1 0.2172763 0
## 7312 2 0.4345527 0
## 7313 0 0.0000000 0
## 7314 0 0.0000000 0
## 7315 0 0.0000000 0
## 7316 0 0.0000000 0
## 7317 3 0.6518290 0
## 7318 5 1.0863820 0
## 7319 8 1.7382110 0
## 7320 0 0.0000000 0
## 7321 0 0.0000000 0
## 7322 0 0.0000000 0
## 7323 0 0.0000000 0
## 7324 0 0.0000000 0
## 7325 0 0.0000000 0
## 7326 1 0.2172763 0
## 7327 0 0.0000000 0
## 7328 0 0.0000000 0
## 7329 0 0.0000000 0
## 7330 0 0.0000000 0
## 7331 0 0.0000000 0
## 7332 0 0.0000000 0
## 7333 0 0.0000000 0
## 7334 4 0.8691053 0
## 7335 0 0.0000000 0
## 7336 1 0.2172763 0
## 7337 1 0.2172763 0
## 7338 0 0.0000000 0
## 7339 0 0.0000000 0
## 7340 2 0.4345527 0
## 7341 3 0.6518290 0
## 7342 1 0.2172763 0
## 7343 0 0.0000000 0
## 7344 0 0.0000000 0
## 7345 0 0.0000000 0
## 7346 0 0.0000000 0
## 7347 0 0.0000000 0
## 7348 0 0.0000000 0
## 7349 0 0.0000000 0
## 7350 0 0.0000000 0
## 7351 1 0.2172763 0
## 7352 2 0.4345527 0
## 7353 1 0.2172763 0
## 7354 0 0.0000000 0
## 7355 3 0.6518290 0
## 7356 9 1.9554870 0
## 7357 0 0.0000000 0
## 7358 0 0.0000000 0
## 7359 0 0.0000000 0
## 7360 0 0.0000000 0
## 7361 8 1.7382110 0
## 7362 0 0.0000000 0
## 7363 0 0.0000000 0
## 7364 0 0.0000000 0
## 7365 0 0.0000000 0
## 7366 0 0.0000000 0
## 7367 0 0.0000000 0
## 7368 0 0.0000000 0
## 7369 0 0.0000000 0
## 7370 0 0.0000000 0
## 7371 0 0.0000000 0
## 7372 0 0.0000000 0
## 7373 2 0.4345527 0
## 7374 4 0.8691053 0
## 7375 2 0.4345527 0
## 7376 0 0.0000000 0
## 7377 0 0.0000000 0
## 7378 2 0.4345527 0
## 7379 6 1.3036580 0
## 7380 0 0.0000000 0
## 7381 0 0.0000000 0
## 7382 0 0.0000000 0
## 7383 0 0.0000000 0
## 7384 0 0.0000000 0
## 7385 2 0.4345527 0
## 7386 0 0.0000000 0
## 7387 2 0.4345527 0
## 7388 0 0.0000000 0
## 7389 1 0.2172763 0
## 7390 2 0.4345527 0
## 7391 0 0.0000000 0
## 7392 0 0.0000000 0
## 7393 0 0.0000000 0
## 7394 1 0.2172763 0
## 7395 0 0.0000000 0
## 7396 0 0.0000000 0
## 7397 0 0.0000000 0
## 7398 0 0.0000000 0
## 7399 0 0.0000000 0
## 7400 0 0.0000000 0
## 7401 0 0.0000000 0
## 7402 0 0.0000000 0
## 7403 0 0.0000000 0
## 7404 11 2.3900400 0
## 7405 0 0.0000000 0
## 7406 0 0.0000000 0
## 7407 0 0.0000000 0
## 7408 2 0.4345527 0
## 7409 2 0.4345527 0
## 7410 2 0.4345527 0
## 7411 0 0.0000000 0
## 7412 1 0.2172763 0
## 7413 0 0.0000000 0
## 7414 0 0.0000000 0
## 7415 0 0.0000000 0
## 7416 0 0.0000000 0
## 7417 0 0.0000000 0
## 7418 0 0.0000000 0
## 7419 0 0.0000000 0
## 7420 0 0.0000000 0
## 7421 0 0.0000000 0
## 7422 0 0.0000000 0
## 7423 1 0.2172763 0
## 7424 0 0.0000000 0
## 7425 1 0.2172763 0
## 7426 0 0.0000000 0
## 7427 2 0.4345527 0
## 7428 1 0.2172763 0
## 7429 1 0.2172763 0
## 7430 0 0.0000000 0
## 7431 0 0.0000000 0
## 7432 0 0.0000000 0
## 7433 0 0.0000000 0
## 7434 0 0.0000000 0
## 7435 0 0.0000000 0
## 7436 0 0.0000000 0
## 7437 0 0.0000000 0
## 7438 1 0.2172763 0
## 7439 1 0.2172763 0
## 7440 0 0.0000000 0
## 7441 0 0.0000000 0
## 7442 0 0.0000000 0
## 7443 0 0.0000000 0
## 7444 0 0.0000000 0
## 7445 0 0.0000000 0
## 7446 3 0.6518290 0
## 7447 0 0.0000000 0
## 7448 0 0.0000000 0
## 7449 0 0.0000000 0
## 7450 0 0.0000000 0
## 7451 0 0.0000000 0
## 7452 0 0.0000000 0
## 7453 0 0.0000000 0
## 7454 0 0.0000000 0
## 7455 0 0.0000000 0
## 7456 0 0.0000000 0
## 7457 0 0.0000000 0
## 7458 0 0.0000000 0
## 7459 0 0.0000000 0
## 7460 0 0.0000000 0
## 7461 5 1.0863820 0
## 7462 5 1.0863820 0
## 7463 0 0.0000000 0
## 7464 0 0.0000000 0
## 7465 0 0.0000000 0
## 7466 0 0.0000000 0
## 7467 0 0.0000000 0
## 7468 0 0.0000000 0
## 7469 0 0.0000000 0
## 7470 0 0.0000000 0
## 7471 0 0.0000000 0
## 7472 1 0.2172763 0
## 7473 0 0.0000000 0
## 7474 0 0.0000000 0
## 7475 0 0.0000000 0
## 7476 0 0.0000000 0
## 7477 1 0.2172763 0
## 7478 0 0.0000000 0
## 7479 0 0.0000000 0
## 7480 3 0.6518290 0
## 7481 6 1.3036580 0
## 7482 0 0.0000000 0
## 7483 6 1.3036580 0
## 7484 0 0.0000000 0
## 7485 2 0.4345527 0
## 7486 0 0.0000000 0
## 7487 0 0.0000000 0
## 7488 0 0.0000000 0
## 7489 3 0.6518290 0
## 7490 0 0.0000000 0
## 7491 0 0.0000000 0
## 7492 0 0.0000000 0
## 7493 0 0.0000000 0
## 7494 0 0.0000000 0
## 7495 0 0.0000000 0
## 7496 0 0.0000000 0
## 7497 0 0.0000000 0
## 7498 3 0.6518290 0
## 7499 2 0.4345527 0
## 7500 12 2.6073160 0
## 7501 0 0.0000000 0
## 7502 0 0.0000000 0
## 7503 0 0.0000000 0
## 7504 0 0.0000000 0
## 7505 9 1.9554870 0
## 7506 0 0.0000000 0
## 7507 0 0.0000000 0
## 7508 0 0.0000000 0
## 7509 0 0.0000000 0
## 7510 2 0.4345527 0
## 7511 0 0.0000000 0
## 7512 0 0.0000000 0
## 7513 0 0.0000000 0
## 7514 0 0.0000000 0
## 7515 0 0.0000000 0
## 7516 0 0.0000000 0
## 7517 1 0.2172763 0
## 7518 0 0.0000000 0
## 7519 6 1.3036580 0
## 7520 0 0.0000000 0
## 7521 4 0.8691053 0
## 7522 0 0.0000000 0
## 7523 0 0.0000000 0
## 7524 1 0.2172763 0
## 7525 1 0.2172763 0
## 7526 2 0.4345527 0
## 7527 0 0.0000000 0
## 7528 0 0.0000000 0
## 7529 0 0.0000000 0
## 7530 0 0.0000000 0
## 7531 0 0.0000000 0
## 7532 0 0.0000000 0
## 7533 0 0.0000000 0
## 7534 4 0.8691053 0
## 7535 0 0.0000000 0
## 7536 16 3.4764210 0
## 7537 15 3.2591450 0
## 7538 0 0.0000000 0
## 7539 11 2.3900400 0
## 7540 9 1.9554870 0
## 7541 0 0.0000000 0
## 7542 0 0.0000000 0
## 7543 0 0.0000000 0
## 7544 0 0.0000000 0
## 7545 0 0.0000000 0
## 7546 0 0.0000000 0
## 7547 2 0.4345527 0
## 7548 2 0.4345527 0
## 7549 0 0.0000000 0
## 7550 0 0.0000000 0
## 7551 3 0.6518290 0
## 7552 1 0.2172763 0
## 7553 1 0.2172763 0
## 7554 0 0.0000000 0
## 7555 0 0.0000000 0
## 7556 1 0.2172763 0
## 7557 0 0.0000000 0
## 7558 3 0.6518290 0
## 7559 0 0.0000000 0
## 7560 0 0.0000000 0
## 7561 3 0.6518290 0
## 7562 0 0.0000000 0
## 7563 0 0.0000000 0
## 7564 0 0.0000000 0
## 7565 0 0.0000000 0
## 7566 0 0.0000000 0
## 7567 0 0.0000000 0
## 7568 0 0.0000000 0
## 7569 0 0.0000000 0
## 7570 4 0.8691053 0
## 7571 3 0.6518290 0
## 7572 0 0.0000000 0
## 7573 1 0.2172763 0
## 7574 1 0.2172763 0
## 7575 0 0.0000000 0
## 7576 5 1.0863820 0
## 7577 0 0.0000000 0
## 7578 0 0.0000000 0
## 7579 1 0.2172763 0
## 7580 0 0.0000000 0
## 7581 0 0.0000000 0
## 7582 1 0.2172763 0
## 7583 0 0.0000000 0
## 7584 4 0.8691053 0
## 7585 0 0.0000000 0
## 7586 2 0.4345527 0
## 7587 0 0.0000000 0
## 7588 1 0.2172763 0
## 7589 0 0.0000000 0
## 7590 5 1.0863820 0
## 7591 0 0.0000000 0
## 7592 2 0.4345527 0
## 7593 1 0.2172763 0
## 7594 0 0.0000000 0
## 7595 1 0.2172763 0
## 7596 1 0.2172763 0
## 7597 14 3.0418690 0
## 7598 4 0.8691053 0
## 7599 0 0.0000000 0
## 7600 0 0.0000000 0
## 7601 0 0.0000000 0
## 7602 0 0.0000000 0
## 7603 0 0.0000000 0
## 7604 0 0.0000000 0
## 7605 1 0.2172763 0
## 7606 0 0.0000000 0
## 7607 0 0.0000000 0
## 7608 0 0.0000000 0
## 7609 0 0.0000000 0
## 7610 0 0.0000000 0
## 7611 0 0.0000000 0
## 7612 0 0.0000000 0
## 7613 0 0.0000000 0
## 7614 0 0.0000000 0
## 7615 0 0.0000000 0
## 7616 0 0.0000000 0
## 7617 0 0.0000000 0
## 7618 0 0.0000000 0
## 7619 0 0.0000000 0
## 7620 0 0.0000000 0
## 7621 0 0.0000000 0
## 7622 0 0.0000000 0
## 7623 0 0.0000000 0
## 7624 0 0.0000000 0
## 7625 0 0.0000000 0
## 7626 2 0.4345527 0
## 7627 0 0.0000000 0
## 7628 0 0.0000000 0
## 7629 0 0.0000000 0
## 7630 5 1.0863820 0
## 7631 0 0.0000000 0
## 7632 0 0.0000000 0
## 7633 2 0.4345527 0
## 7634 1 0.2172763 0
## 7635 2 0.4345527 0
## 7636 2 0.4345527 0
## 7637 0 0.0000000 0
## 7638 0 0.0000000 0
## 7639 0 0.0000000 0
## 7640 0 0.0000000 0
## 7641 0 0.0000000 0
## 7642 6 1.3036580 0
## 7643 0 0.0000000 0
## 7644 0 0.0000000 0
## 7645 0 0.0000000 0
## 7646 0 0.0000000 0
## 7647 0 0.0000000 0
## 7648 0 0.0000000 0
## 7649 0 0.0000000 0
## 7650 0 0.0000000 0
## 7651 0 0.0000000 0
## 7652 0 0.0000000 0
## 7653 0 0.0000000 0
## 7654 1 0.2172763 0
## 7655 1 0.2172763 0
## 7656 0 0.0000000 0
## 7657 0 0.0000000 0
## 7658 0 0.0000000 0
## 7659 0 0.0000000 0
## 7660 0 0.0000000 0
## 7661 0 0.0000000 0
## 7662 0 0.0000000 0
## 7663 0 0.0000000 0
## 7664 5 1.0863820 0
## 7665 0 0.0000000 0
## 7666 5 1.0863820 0
## 7667 0 0.0000000 0
## 7668 0 0.0000000 0
## 7669 0 0.0000000 0
## 7670 0 0.0000000 0
## 7671 0 0.0000000 0
## 7672 0 0.0000000 0
## 7673 1 0.2172763 0
## 7674 0 0.0000000 0
## 7675 1 0.2172763 0
## 7676 0 0.0000000 0
## 7677 3 0.6518290 0
## 7678 3 0.6518290 0
## 7679 1 0.2172763 0
## 7680 1 0.2172763 0
## 7681 0 0.0000000 0
## 7682 0 0.0000000 0
## 7683 0 0.0000000 0
## 7684 0 0.0000000 0
## 7685 0 0.0000000 0
## 7686 0 0.0000000 0
## 7687 0 0.0000000 0
## 7688 0 0.0000000 0
## 7689 0 0.0000000 0
## 7690 0 0.0000000 0
## 7691 0 0.0000000 0
## 7692 0 0.0000000 0
## Hyper_Fold_Enrichment Hyper_Region_Set_Coverage Hyper_Term_Region_Coverage
## 1 1.5270750 0.146044600 0.33179720
## 2 1.6492060 0.087221100 0.35833330
## 3 4.6024340 0.010141990 1.00000000
## 4 4.6024340 0.010141990 1.00000000
## 5 3.5796710 0.014198780 0.77777780
## 6 1.5239850 0.101419900 0.33112580
## 7 2.3012170 0.030425960 0.50000000
## 8 2.3012170 0.026369170 0.50000000
## 9 1.7259130 0.054766730 0.37500000
## 10 1.7259130 0.054766730 0.37500000
## 11 1.1444420 0.470588200 0.24866020
## 12 1.1420310 0.472616600 0.24813630
## 13 2.5569080 0.020283980 0.55555560
## 14 2.4107990 0.022312370 0.52380950
## 15 1.1430220 0.458417800 0.24835160
## 16 3.8353620 0.010141990 0.83333330
## 17 3.8353620 0.010141990 0.83333330
## 18 2.5888690 0.018255580 0.56250000
## 19 2.3012170 0.022312370 0.50000000
## 20 1.9083260 0.034482760 0.41463410
## 21 1.5341450 0.070993910 0.33333330
## 22 1.1250390 0.490872200 0.24444440
## 23 1.7701670 0.040567950 0.38461540
## 24 2.0631600 0.026369170 0.44827590
## 25 1.1214050 0.486815400 0.24365480
## 26 3.0682890 0.012170390 0.66666670
## 27 3.0682890 0.012170390 0.66666670
## 28 3.0682890 0.012170390 0.66666670
## 29 3.0682890 0.012170390 0.66666670
## 30 3.0682890 0.012170390 0.66666670
## 31 3.0682890 0.012170390 0.66666670
## 32 2.0455260 0.024340770 0.44444440
## 33 3.2874530 0.010141990 0.71428570
## 34 3.2874530 0.010141990 0.71428570
## 35 3.2874530 0.010141990 0.71428570
## 36 3.2874530 0.010141990 0.71428570
## 37 3.2874530 0.010141990 0.71428570
## 38 3.2874530 0.010141990 0.71428570
## 39 3.2874530 0.010141990 0.71428570
## 40 3.2874530 0.010141990 0.71428570
## 41 2.4546320 0.016227180 0.53333330
## 42 2.3012170 0.018255580 0.50000000
## 43 2.3012170 0.018255580 0.50000000
## 44 1.9300530 0.026369170 0.41935480
## 45 1.9300530 0.026369170 0.41935480
## 46 3.6819470 0.008113590 0.80000000
## 47 3.6819470 0.008113590 0.80000000
## 48 1.9724720 0.024340770 0.42857140
## 49 1.2385760 0.178499000 0.26911310
## 50 2.7614600 0.012170390 0.60000000
## 51 2.7614600 0.012170390 0.60000000
## 52 2.7614600 0.012170390 0.60000000
## 53 4.6024340 0.006085193 1.00000000
## 54 4.6024340 0.006085193 1.00000000
## 55 4.6024340 0.006085193 1.00000000
## 56 4.6024340 0.006085193 1.00000000
## 57 4.6024340 0.006085193 1.00000000
## 58 4.6024340 0.006085193 1.00000000
## 59 4.6024340 0.006085193 1.00000000
## 60 4.6024340 0.006085193 1.00000000
## 61 4.6024340 0.006085193 1.00000000
## 62 4.6024340 0.006085193 1.00000000
## 63 4.6024340 0.006085193 1.00000000
## 64 4.6024340 0.006085193 1.00000000
## 65 4.6024340 0.006085193 1.00000000
## 66 4.6024340 0.006085193 1.00000000
## 67 4.6024340 0.006085193 1.00000000
## 68 2.0920150 0.020283980 0.45454550
## 69 2.0920150 0.020283980 0.45454550
## 70 1.4581970 0.064908720 0.31683170
## 71 2.1801000 0.018255580 0.47368420
## 72 1.3625630 0.091277890 0.29605260
## 73 1.4356220 0.068965520 0.31192660
## 74 1.1237850 0.403651100 0.24417180
## 75 1.4255330 0.070993910 0.30973450
## 76 1.5820870 0.044624750 0.34375000
## 77 1.3435680 0.095334690 0.29192550
## 78 1.9044550 0.024340770 0.41379310
## 79 1.9471840 0.022312370 0.42307690
## 80 1.5139590 0.050709940 0.32894740
## 81 1.4793540 0.054766730 0.32142860
## 82 1.7259130 0.030425960 0.37500000
## 83 1.7259130 0.030425960 0.37500000
## 84 1.7259130 0.030425960 0.37500000
## 85 2.5104190 0.012170390 0.54545450
## 86 2.5104190 0.012170390 0.54545450
## 87 2.5104190 0.012170390 0.54545450
## 88 1.8409740 0.024340770 0.40000000
## 89 2.3012170 0.014198780 0.50000000
## 90 2.3012170 0.014198780 0.50000000
## 91 1.3382960 0.083164300 0.29078010
## 92 1.0880050 0.511156200 0.23639770
## 93 1.9176810 0.020283980 0.41666670
## 94 1.9176810 0.020283980 0.41666670
## 95 1.9176810 0.020283980 0.41666670
## 96 3.0682890 0.008113590 0.66666670
## 97 3.0682890 0.008113590 0.66666670
## 98 3.0682890 0.008113590 0.66666670
## 99 3.0682890 0.008113590 0.66666670
## 100 3.0682890 0.008113590 0.66666670
## 101 3.0682890 0.008113590 0.66666670
## 102 3.0682890 0.008113590 0.66666670
## 103 3.0682890 0.008113590 0.66666670
## 104 3.0682890 0.008113590 0.66666670
## 105 1.7815870 0.024340770 0.38709680
## 106 1.7815870 0.024340770 0.38709680
## 107 1.7815870 0.024340770 0.38709680
## 108 1.9724720 0.018255580 0.42857140
## 109 1.6437260 0.030425960 0.35714290
## 110 1.6437260 0.030425960 0.35714290
## 111 2.0455260 0.016227180 0.44444440
## 112 2.0455260 0.016227180 0.44444440
## 113 1.7094760 0.026369170 0.37142860
## 114 2.5569080 0.010141990 0.55555560
## 115 2.5569080 0.010141990 0.55555560
## 116 2.5569080 0.010141990 0.55555560
## 117 2.5569080 0.010141990 0.55555560
## 118 2.1478030 0.014198780 0.46666670
## 119 2.1478030 0.014198780 0.46666670
## 120 2.1478030 0.014198780 0.46666670
## 121 2.1478030 0.014198780 0.46666670
## 122 2.3012170 0.012170390 0.50000000
## 123 1.5089950 0.040567950 0.32786890
## 124 1.5089950 0.040567950 0.32786890
## 125 1.8409740 0.020283980 0.40000000
## 126 1.3020040 0.087221100 0.28289470
## 127 1.3020040 0.087221100 0.28289470
## 128 1.1932240 0.170385400 0.25925930
## 129 1.7259130 0.024340770 0.37500000
## 130 1.5341450 0.036511160 0.33333330
## 131 1.6619900 0.026369170 0.36111110
## 132 1.5667860 0.032454360 0.34042550
## 133 1.5667860 0.032454360 0.34042550
## 134 1.5667860 0.032454360 0.34042550
## 135 1.7457510 0.022312370 0.37931030
## 136 1.7457510 0.022312370 0.37931030
## 137 1.7457510 0.022312370 0.37931030
## 138 3.4518260 0.006085193 0.75000000
## 139 3.4518260 0.006085193 0.75000000
## 140 3.4518260 0.006085193 0.75000000
## 141 3.4518260 0.006085193 0.75000000
## 142 3.4518260 0.006085193 0.75000000
## 143 3.4518260 0.006085193 0.75000000
## 144 3.4518260 0.006085193 0.75000000
## 145 3.4518260 0.006085193 0.75000000
## 146 3.4518260 0.006085193 0.75000000
## 147 3.4518260 0.006085193 0.75000000
## 148 3.4518260 0.006085193 0.75000000
## 149 3.4518260 0.006085193 0.75000000
## 150 3.4518260 0.006085193 0.75000000
## 151 3.4518260 0.006085193 0.75000000
## 152 3.4518260 0.006085193 0.75000000
## 153 3.4518260 0.006085193 0.75000000
## 154 3.4518260 0.006085193 0.75000000
## 155 3.4518260 0.006085193 0.75000000
## 156 3.4518260 0.006085193 0.75000000
## 157 3.4518260 0.006085193 0.75000000
## 158 3.4518260 0.006085193 0.75000000
## 159 3.4518260 0.006085193 0.75000000
## 160 3.4518260 0.006085193 0.75000000
## 161 3.4518260 0.006085193 0.75000000
## 162 3.4518260 0.006085193 0.75000000
## 163 3.4518260 0.006085193 0.75000000
## 164 3.4518260 0.006085193 0.75000000
## 165 3.4518260 0.006085193 0.75000000
## 166 3.4518260 0.006085193 0.75000000
## 167 3.4518260 0.006085193 0.75000000
## 168 3.4518260 0.006085193 0.75000000
## 169 3.4518260 0.006085193 0.75000000
## 170 3.4518260 0.006085193 0.75000000
## 171 3.4518260 0.006085193 0.75000000
## 172 3.4518260 0.006085193 0.75000000
## 173 3.4518260 0.006085193 0.75000000
## 174 3.4518260 0.006085193 0.75000000
## 175 3.4518260 0.006085193 0.75000000
## 176 3.4518260 0.006085193 0.75000000
## 177 3.4518260 0.006085193 0.75000000
## 178 3.4518260 0.006085193 0.75000000
## 179 3.4518260 0.006085193 0.75000000
## 180 1.2784540 0.091277890 0.27777780
## 181 1.2784540 0.091277890 0.27777780
## 182 1.5341450 0.034482760 0.33333330
## 183 1.9378670 0.016227180 0.42105260
## 184 1.7701670 0.020283980 0.38461540
## 185 1.5690120 0.030425960 0.34090910
## 186 2.0135650 0.014198780 0.43750000
## 187 2.0135650 0.014198780 0.43750000
## 188 2.0135650 0.014198780 0.43750000
## 189 1.1963010 0.146044600 0.25992780
## 190 1.6170710 0.026369170 0.35135140
## 191 2.1242000 0.012170390 0.46153850
## 192 2.1242000 0.012170390 0.46153850
## 193 2.1242000 0.012170390 0.46153850
## 194 2.1242000 0.012170390 0.46153850
## 195 2.1242000 0.012170390 0.46153850
## 196 1.6875590 0.022312370 0.36666670
## 197 1.8009520 0.018255580 0.39130430
## 198 1.8009520 0.018255580 0.39130430
## 199 2.6299620 0.008113590 0.57142860
## 200 2.6299620 0.008113590 0.57142860
## 201 2.6299620 0.008113590 0.57142860
## 202 2.6299620 0.008113590 0.57142860
## 203 2.6299620 0.008113590 0.57142860
## 204 2.6299620 0.008113590 0.57142860
## 205 2.3012170 0.010141990 0.50000000
## 206 2.3012170 0.010141990 0.50000000
## 207 2.3012170 0.010141990 0.50000000
## 208 2.3012170 0.010141990 0.50000000
## 209 2.3012170 0.010141990 0.50000000
## 210 2.3012170 0.010141990 0.50000000
## 211 2.3012170 0.010141990 0.50000000
## 212 2.3012170 0.010141990 0.50000000
## 213 1.2101230 0.123732300 0.26293100
## 214 1.2101230 0.123732300 0.26293100
## 215 4.6024340 0.004056795 1.00000000
## 216 4.6024340 0.004056795 1.00000000
## 217 4.6024340 0.004056795 1.00000000
## 218 4.6024340 0.004056795 1.00000000
## 219 4.6024340 0.004056795 1.00000000
## 220 4.6024340 0.004056795 1.00000000
## 221 4.6024340 0.004056795 1.00000000
## 222 4.6024340 0.004056795 1.00000000
## 223 4.6024340 0.004056795 1.00000000
## 224 4.6024340 0.004056795 1.00000000
## 225 4.6024340 0.004056795 1.00000000
## 226 4.6024340 0.004056795 1.00000000
## 227 4.6024340 0.004056795 1.00000000
## 228 4.6024340 0.004056795 1.00000000
## 229 4.6024340 0.004056795 1.00000000
## 230 4.6024340 0.004056795 1.00000000
## 231 4.6024340 0.004056795 1.00000000
## 232 4.6024340 0.004056795 1.00000000
## 233 4.6024340 0.004056795 1.00000000
## 234 4.6024340 0.004056795 1.00000000
## 235 4.6024340 0.004056795 1.00000000
## 236 4.6024340 0.004056795 1.00000000
## 237 4.6024340 0.004056795 1.00000000
## 238 4.6024340 0.004056795 1.00000000
## 239 4.6024340 0.004056795 1.00000000
## 240 4.6024340 0.004056795 1.00000000
## 241 4.6024340 0.004056795 1.00000000
## 242 4.6024340 0.004056795 1.00000000
## 243 4.6024340 0.004056795 1.00000000
## 244 1.6243880 0.024340770 0.35294120
## 245 1.0990890 0.356998000 0.23880600
## 246 1.4062990 0.044624750 0.30555560
## 247 1.8409740 0.016227180 0.40000000
## 248 1.8409740 0.016227180 0.40000000
## 249 1.8409740 0.016227180 0.40000000
## 250 1.3507140 0.054766730 0.29347830
## 251 1.4762520 0.034482760 0.32075470
## 252 1.4762520 0.034482760 0.32075470
## 253 1.5745170 0.026369170 0.34210530
## 254 1.5341450 0.028397570 0.33333330
## 255 1.4161340 0.040567950 0.30769230
## 256 1.4007410 0.042596350 0.30434780
## 257 1.8951200 0.014198780 0.41176470
## 258 1.3747530 0.046653140 0.29870130
## 259 1.5007940 0.030425960 0.32608700
## 260 1.7259130 0.018255580 0.37500000
## 261 1.1651730 0.162271800 0.25316460
## 262 1.2673370 0.077079110 0.27536230
## 263 1.4727790 0.032454360 0.32000000
## 264 1.4727790 0.032454360 0.32000000
## 265 1.5779770 0.024340770 0.34285710
## 266 1.5779770 0.024340770 0.34285710
## 267 1.5779770 0.024340770 0.34285710
## 268 1.4489140 0.034482760 0.31481480
## 269 1.4489140 0.034482760 0.31481480
## 270 1.0877420 0.377281900 0.23634050
## 271 1.4104230 0.038539550 0.30645160
## 272 1.9724720 0.012170390 0.42857140
## 273 1.9724720 0.012170390 0.42857140
## 274 1.9724720 0.012170390 0.42857140
## 275 1.9724720 0.012170390 0.42857140
## 276 1.9724720 0.012170390 0.42857140
## 277 1.4984670 0.028397570 0.32558140
## 278 1.4984670 0.028397570 0.32558140
## 279 1.7533080 0.016227180 0.38095240
## 280 1.7533080 0.016227180 0.38095240
## 281 1.2099180 0.103448300 0.26288660
## 282 1.5820870 0.022312370 0.34375000
## 283 2.0920150 0.010141990 0.45454550
## 284 2.0920150 0.010141990 0.45454550
## 285 2.0920150 0.010141990 0.45454550
## 286 2.0920150 0.010141990 0.45454550
## 287 2.0920150 0.010141990 0.45454550
## 288 2.0920150 0.010141990 0.45454550
## 289 2.0920150 0.010141990 0.45454550
## 290 2.0920150 0.010141990 0.45454550
## 291 1.4225710 0.034482760 0.30909090
## 292 1.5341450 0.024340770 0.33333330
## 293 2.7614600 0.006085193 0.60000000
## 294 2.7614600 0.006085193 0.60000000
## 295 2.7614600 0.006085193 0.60000000
## 296 2.7614600 0.006085193 0.60000000
## 297 2.7614600 0.006085193 0.60000000
## 298 2.7614600 0.006085193 0.60000000
## 299 2.7614600 0.006085193 0.60000000
## 300 2.7614600 0.006085193 0.60000000
## 301 2.7614600 0.006085193 0.60000000
## 302 2.7614600 0.006085193 0.60000000
## 303 2.7614600 0.006085193 0.60000000
## 304 2.7614600 0.006085193 0.60000000
## 305 2.7614600 0.006085193 0.60000000
## 306 2.7614600 0.006085193 0.60000000
## 307 2.7614600 0.006085193 0.60000000
## 308 2.7614600 0.006085193 0.60000000
## 309 2.7614600 0.006085193 0.60000000
## 310 2.7614600 0.006085193 0.60000000
## 311 2.7614600 0.006085193 0.60000000
## 312 2.7614600 0.006085193 0.60000000
## 313 2.7614600 0.006085193 0.60000000
## 314 2.7614600 0.006085193 0.60000000
## 315 2.7614600 0.006085193 0.60000000
## 316 2.7614600 0.006085193 0.60000000
## 317 2.7614600 0.006085193 0.60000000
## 318 2.7614600 0.006085193 0.60000000
## 319 2.7614600 0.006085193 0.60000000
## 320 1.3500470 0.044624750 0.29333330
## 321 1.6568760 0.018255580 0.36000000
## 322 2.3012170 0.008113590 0.50000000
## 323 2.3012170 0.008113590 0.50000000
## 324 2.3012170 0.008113590 0.50000000
## 325 2.3012170 0.008113590 0.50000000
## 326 2.3012170 0.008113590 0.50000000
## 327 2.3012170 0.008113590 0.50000000
## 328 2.3012170 0.008113590 0.50000000
## 329 2.3012170 0.008113590 0.50000000
## 330 2.3012170 0.008113590 0.50000000
## 331 1.7898350 0.014198780 0.38888890
## 332 1.7898350 0.014198780 0.38888890
## 333 1.4382610 0.030425960 0.31250000
## 334 1.4382610 0.030425960 0.31250000
## 335 1.4161340 0.032454360 0.30769230
## 336 1.3232000 0.046653140 0.28750000
## 337 1.5341450 0.022312370 0.33333330
## 338 1.5341450 0.022312370 0.33333330
## 339 1.5341450 0.022312370 0.33333330
## 340 1.6736120 0.016227180 0.36363640
## 341 1.8409740 0.012170390 0.40000000
## 342 1.8409740 0.012170390 0.40000000
## 343 1.8409740 0.012170390 0.40000000
## 344 1.8409740 0.012170390 0.40000000
## 345 1.8409740 0.012170390 0.40000000
## 346 1.8409740 0.012170390 0.40000000
## 347 1.4593080 0.026369170 0.31707320
## 348 1.4593080 0.026369170 0.31707320
## 349 1.2867020 0.052738340 0.27956990
## 350 1.4318680 0.028397570 0.31111110
## 351 1.5931500 0.018255580 0.34615380
## 352 1.5931500 0.018255580 0.34615380
## 353 1.5931500 0.018255580 0.34615380
## 354 1.0489770 0.586206900 0.22791800
## 355 1.5341450 0.020283980 0.33333330
## 356 1.5341450 0.020283980 0.33333330
## 357 1.5341450 0.020283980 0.33333330
## 358 1.5341450 0.020283980 0.33333330
## 359 1.1877250 0.097363080 0.25806450
## 360 1.1795180 0.103448300 0.25628140
## 361 1.9176810 0.010141990 0.41666670
## 362 1.9176810 0.010141990 0.41666670
## 363 1.9176810 0.010141990 0.41666670
## 364 1.9176810 0.010141990 0.41666670
## 365 1.9176810 0.010141990 0.41666670
## 366 1.9176810 0.010141990 0.41666670
## 367 1.9176810 0.010141990 0.41666670
## 368 1.9176810 0.010141990 0.41666670
## 369 1.9176810 0.010141990 0.41666670
## 370 1.9176810 0.010141990 0.41666670
## 371 1.9176810 0.010141990 0.41666670
## 372 1.4890230 0.022312370 0.32352940
## 373 1.1143910 0.202839800 0.24213080
## 374 1.3060960 0.042596350 0.28378380
## 375 1.6008470 0.016227180 0.34782610
## 376 1.6008470 0.016227180 0.34782610
## 377 1.3361910 0.036511160 0.29032260
## 378 1.2511470 0.056795130 0.27184470
## 379 1.2552090 0.054766730 0.27272730
## 380 2.0455260 0.008113590 0.44444440
## 381 2.0455260 0.008113590 0.44444440
## 382 2.0455260 0.008113590 0.44444440
## 383 2.0455260 0.008113590 0.44444440
## 384 2.0455260 0.008113590 0.44444440
## 385 2.0455260 0.008113590 0.44444440
## 386 2.0455260 0.008113590 0.44444440
## 387 2.0455260 0.008113590 0.44444440
## 388 2.0455260 0.008113590 0.44444440
## 389 2.0455260 0.008113590 0.44444440
## 390 2.0455260 0.008113590 0.44444440
## 391 2.0455260 0.008113590 0.44444440
## 392 2.0455260 0.008113590 0.44444440
## 393 2.0455260 0.008113590 0.44444440
## 394 2.0455260 0.008113590 0.44444440
## 395 2.0455260 0.008113590 0.44444440
## 396 2.0455260 0.008113590 0.44444440
## 397 2.0455260 0.008113590 0.44444440
## 398 2.0455260 0.008113590 0.44444440
## 399 2.0455260 0.008113590 0.44444440
## 400 2.0455260 0.008113590 0.44444440
## 401 2.0455260 0.008113590 0.44444440
## 402 2.0455260 0.008113590 0.44444440
## 403 2.0455260 0.008113590 0.44444440
## 404 2.0455260 0.008113590 0.44444440
## 405 2.0455260 0.008113590 0.44444440
## 406 2.0455260 0.008113590 0.44444440
## 407 1.5341450 0.018255580 0.33333330
## 408 1.5341450 0.018255580 0.33333330
## 409 1.7259130 0.012170390 0.37500000
## 410 1.7259130 0.012170390 0.37500000
## 411 1.7259130 0.012170390 0.37500000
## 412 1.7259130 0.012170390 0.37500000
## 413 1.0752130 0.332657200 0.23361820
## 414 1.4846560 0.020283980 0.32258060
## 415 1.4846560 0.020283980 0.32258060
## 416 1.2391170 0.056795130 0.26923080
## 417 1.4464790 0.022312370 0.31428570
## 418 1.4464790 0.022312370 0.31428570
## 419 1.3051680 0.038539550 0.28358210
## 420 1.0696230 0.354969600 0.23240370
## 421 1.4161340 0.024340770 0.30769230
## 422 2.3012170 0.006085193 0.50000000
## 423 2.3012170 0.006085193 0.50000000
## 424 2.3012170 0.006085193 0.50000000
## 425 2.3012170 0.006085193 0.50000000
## 426 2.3012170 0.006085193 0.50000000
## 427 2.3012170 0.006085193 0.50000000
## 428 2.3012170 0.006085193 0.50000000
## 429 2.3012170 0.006085193 0.50000000
## 430 2.3012170 0.006085193 0.50000000
## 431 2.3012170 0.006085193 0.50000000
## 432 2.3012170 0.006085193 0.50000000
## 433 2.3012170 0.006085193 0.50000000
## 434 2.3012170 0.006085193 0.50000000
## 435 2.3012170 0.006085193 0.50000000
## 436 2.3012170 0.006085193 0.50000000
## 437 2.3012170 0.006085193 0.50000000
## 438 2.3012170 0.006085193 0.50000000
## 439 2.3012170 0.006085193 0.50000000
## 440 2.3012170 0.006085193 0.50000000
## 441 2.3012170 0.006085193 0.50000000
## 442 2.3012170 0.006085193 0.50000000
## 443 2.3012170 0.006085193 0.50000000
## 444 3.0682890 0.004056795 0.66666670
## 445 3.0682890 0.004056795 0.66666670
## 446 3.0682890 0.004056795 0.66666670
## 447 3.0682890 0.004056795 0.66666670
## 448 3.0682890 0.004056795 0.66666670
## 449 3.0682890 0.004056795 0.66666670
## 450 3.0682890 0.004056795 0.66666670
## 451 3.0682890 0.004056795 0.66666670
## 452 3.0682890 0.004056795 0.66666670
## 453 3.0682890 0.004056795 0.66666670
## 454 3.0682890 0.004056795 0.66666670
## 455 3.0682890 0.004056795 0.66666670
## 456 3.0682890 0.004056795 0.66666670
## 457 3.0682890 0.004056795 0.66666670
## 458 3.0682890 0.004056795 0.66666670
## 459 3.0682890 0.004056795 0.66666670
## 460 3.0682890 0.004056795 0.66666670
## 461 3.0682890 0.004056795 0.66666670
## 462 3.0682890 0.004056795 0.66666670
## 463 3.0682890 0.004056795 0.66666670
## 464 3.0682890 0.004056795 0.66666670
## 465 3.0682890 0.004056795 0.66666670
## 466 3.0682890 0.004056795 0.66666670
## 467 3.0682890 0.004056795 0.66666670
## 468 3.0682890 0.004056795 0.66666670
## 469 3.0682890 0.004056795 0.66666670
## 470 3.0682890 0.004056795 0.66666670
## 471 3.0682890 0.004056795 0.66666670
## 472 3.0682890 0.004056795 0.66666670
## 473 3.0682890 0.004056795 0.66666670
## 474 3.0682890 0.004056795 0.66666670
## 475 3.0682890 0.004056795 0.66666670
## 476 3.0682890 0.004056795 0.66666670
## 477 3.0682890 0.004056795 0.66666670
## 478 3.0682890 0.004056795 0.66666670
## 479 3.0682890 0.004056795 0.66666670
## 480 3.0682890 0.004056795 0.66666670
## 481 3.0682890 0.004056795 0.66666670
## 482 3.0682890 0.004056795 0.66666670
## 483 3.0682890 0.004056795 0.66666670
## 484 3.0682890 0.004056795 0.66666670
## 485 3.0682890 0.004056795 0.66666670
## 486 3.0682890 0.004056795 0.66666670
## 487 3.0682890 0.004056795 0.66666670
## 488 3.0682890 0.004056795 0.66666670
## 489 3.0682890 0.004056795 0.66666670
## 490 3.0682890 0.004056795 0.66666670
## 491 3.0682890 0.004056795 0.66666670
## 492 3.0682890 0.004056795 0.66666670
## 493 3.0682890 0.004056795 0.66666670
## 494 3.0682890 0.004056795 0.66666670
## 495 3.0682890 0.004056795 0.66666670
## 496 3.0682890 0.004056795 0.66666670
## 497 3.0682890 0.004056795 0.66666670
## 498 3.0682890 0.004056795 0.66666670
## 499 3.0682890 0.004056795 0.66666670
## 500 3.0682890 0.004056795 0.66666670
## 501 3.0682890 0.004056795 0.66666670
## 502 3.0682890 0.004056795 0.66666670
## 503 3.0682890 0.004056795 0.66666670
## 504 3.0682890 0.004056795 0.66666670
## 505 3.0682890 0.004056795 0.66666670
## 506 3.0682890 0.004056795 0.66666670
## 507 3.0682890 0.004056795 0.66666670
## 508 3.0682890 0.004056795 0.66666670
## 509 3.0682890 0.004056795 0.66666670
## 510 3.0682890 0.004056795 0.66666670
## 511 3.0682890 0.004056795 0.66666670
## 512 3.0682890 0.004056795 0.66666670
## 513 3.0682890 0.004056795 0.66666670
## 514 3.0682890 0.004056795 0.66666670
## 515 3.0682890 0.004056795 0.66666670
## 516 3.0682890 0.004056795 0.66666670
## 517 3.0682890 0.004056795 0.66666670
## 518 3.0682890 0.004056795 0.66666670
## 519 3.0682890 0.004056795 0.66666670
## 520 3.0682890 0.004056795 0.66666670
## 521 3.0682890 0.004056795 0.66666670
## 522 3.0682890 0.004056795 0.66666670
## 523 3.0682890 0.004056795 0.66666670
## 524 3.0682890 0.004056795 0.66666670
## 525 3.0682890 0.004056795 0.66666670
## 526 3.0682890 0.004056795 0.66666670
## 527 3.0682890 0.004056795 0.66666670
## 528 3.0682890 0.004056795 0.66666670
## 529 3.0682890 0.004056795 0.66666670
## 530 3.0682890 0.004056795 0.66666670
## 531 3.0682890 0.004056795 0.66666670
## 532 3.0682890 0.004056795 0.66666670
## 533 3.0682890 0.004056795 0.66666670
## 534 3.0682890 0.004056795 0.66666670
## 535 3.0682890 0.004056795 0.66666670
## 536 3.0682890 0.004056795 0.66666670
## 537 3.0682890 0.004056795 0.66666670
## 538 3.0682890 0.004056795 0.66666670
## 539 3.0682890 0.004056795 0.66666670
## 540 3.0682890 0.004056795 0.66666670
## 541 3.0682890 0.004056795 0.66666670
## 542 3.0682890 0.004056795 0.66666670
## 543 3.0682890 0.004056795 0.66666670
## 544 3.0682890 0.004056795 0.66666670
## 545 3.0682890 0.004056795 0.66666670
## 546 3.0682890 0.004056795 0.66666670
## 547 3.0682890 0.004056795 0.66666670
## 548 3.0682890 0.004056795 0.66666670
## 549 3.0682890 0.004056795 0.66666670
## 550 3.0682890 0.004056795 0.66666670
## 551 3.0682890 0.004056795 0.66666670
## 552 3.0682890 0.004056795 0.66666670
## 553 3.0682890 0.004056795 0.66666670
## 554 3.0682890 0.004056795 0.66666670
## 555 3.0682890 0.004056795 0.66666670
## 556 3.0682890 0.004056795 0.66666670
## 557 3.0682890 0.004056795 0.66666670
## 558 3.0682890 0.004056795 0.66666670
## 559 3.0682890 0.004056795 0.66666670
## 560 3.0682890 0.004056795 0.66666670
## 561 3.0682890 0.004056795 0.66666670
## 562 3.0682890 0.004056795 0.66666670
## 563 3.0682890 0.004056795 0.66666670
## 564 3.0682890 0.004056795 0.66666670
## 565 3.0682890 0.004056795 0.66666670
## 566 3.0682890 0.004056795 0.66666670
## 567 3.0682890 0.004056795 0.66666670
## 568 3.0682890 0.004056795 0.66666670
## 569 3.0682890 0.004056795 0.66666670
## 570 3.0682890 0.004056795 0.66666670
## 571 3.0682890 0.004056795 0.66666670
## 572 1.2464930 0.052738340 0.27083330
## 573 1.3709380 0.028397570 0.29787230
## 574 1.3709380 0.028397570 0.29787230
## 575 1.3536570 0.030425960 0.29411760
## 576 1.6108520 0.014198780 0.35000000
## 577 1.0706370 0.332657200 0.23262410
## 578 1.5341450 0.016227180 0.33333330
## 579 1.5341450 0.016227180 0.33333330
## 580 1.5341450 0.016227180 0.33333330
## 581 1.7701670 0.010141990 0.38461540
## 582 1.7701670 0.010141990 0.38461540
## 583 1.7701670 0.010141990 0.38461540
## 584 1.7701670 0.010141990 0.38461540
## 585 1.7701670 0.010141990 0.38461540
## 586 1.7701670 0.010141990 0.38461540
## 587 1.7701670 0.010141990 0.38461540
## 588 1.7701670 0.010141990 0.38461540
## 589 1.4793540 0.018255580 0.32142860
## 590 1.4793540 0.018255580 0.32142860
## 591 1.0313250 0.705882400 0.22408240
## 592 1.1817060 0.077079110 0.25675680
## 593 1.4382610 0.020283980 0.31250000
## 594 1.4382610 0.020283980 0.31250000
## 595 1.4382610 0.020283980 0.31250000
## 596 1.0298340 0.722109500 0.22375860
## 597 1.3807300 0.024340770 0.30000000
## 598 1.0365540 0.626774800 0.22521870
## 599 1.0905770 0.221095300 0.23695650
## 600 1.6243880 0.012170390 0.35294120
## 601 1.6243880 0.012170390 0.35294120
## 602 1.6243880 0.012170390 0.35294120
## 603 1.6243880 0.012170390 0.35294120
## 604 1.6243880 0.012170390 0.35294120
## 605 1.1186470 0.141987800 0.24305560
## 606 1.1854750 0.068965520 0.25757580
## 607 1.5341450 0.014198780 0.33333330
## 608 1.5341450 0.014198780 0.33333330
## 609 1.2745200 0.036511160 0.27692310
## 610 1.2273160 0.048681540 0.26666670
## 611 1.8409740 0.008113590 0.40000000
## 612 1.8409740 0.008113590 0.40000000
## 613 1.8409740 0.008113590 0.40000000
## 614 1.8409740 0.008113590 0.40000000
## 615 1.8409740 0.008113590 0.40000000
## 616 1.8409740 0.008113590 0.40000000
## 617 1.8409740 0.008113590 0.40000000
## 618 1.8409740 0.008113590 0.40000000
## 619 1.8409740 0.008113590 0.40000000
## 620 1.8409740 0.008113590 0.40000000
## 621 1.0651920 0.322515200 0.23144100
## 622 1.1348470 0.109533500 0.24657530
## 623 1.4727790 0.016227180 0.32000000
## 624 1.4727790 0.016227180 0.32000000
## 625 1.4727790 0.016227180 0.32000000
## 626 1.4727790 0.016227180 0.32000000
## 627 1.0606690 0.346856000 0.23045820
## 628 1.4283420 0.018255580 0.31034480
## 629 1.4283420 0.018255580 0.31034480
## 630 1.3295920 0.026369170 0.28888890
## 631 1.2087200 0.052738340 0.26262630
## 632 1.3946770 0.020283980 0.30303030
## 633 1.3946770 0.020283980 0.30303030
## 634 1.3946770 0.020283980 0.30303030
## 635 1.0283940 0.699797200 0.22344560
## 636 1.1190230 0.125760600 0.24313730
## 637 1.1668140 0.073022310 0.25352110
## 638 1.0741920 0.249492900 0.23339660
## 639 1.2552090 0.036511160 0.27272730
## 640 1.6437260 0.010141990 0.35714290
## 641 1.6437260 0.010141990 0.35714290
## 642 1.6437260 0.010141990 0.35714290
## 643 1.2619580 0.034482760 0.27419350
## 644 1.1039620 0.144016200 0.23986490
## 645 1.0246400 0.738336700 0.22263000
## 646 1.5341450 0.012170390 0.33333330
## 647 1.5341450 0.012170390 0.33333330
## 648 1.5341450 0.012170390 0.33333330
## 649 1.5341450 0.012170390 0.33333330
## 650 1.9724720 0.006085193 0.42857140
## 651 1.9724720 0.006085193 0.42857140
## 652 1.9724720 0.006085193 0.42857140
## 653 1.9724720 0.006085193 0.42857140
## 654 1.9724720 0.006085193 0.42857140
## 655 1.9724720 0.006085193 0.42857140
## 656 1.9724720 0.006085193 0.42857140
## 657 1.9724720 0.006085193 0.42857140
## 658 1.9724720 0.006085193 0.42857140
## 659 1.9724720 0.006085193 0.42857140
## 660 1.9724720 0.006085193 0.42857140
## 661 1.9724720 0.006085193 0.42857140
## 662 1.9724720 0.006085193 0.42857140
## 663 1.9724720 0.006085193 0.42857140
## 664 1.9724720 0.006085193 0.42857140
## 665 1.9724720 0.006085193 0.42857140
## 666 1.9724720 0.006085193 0.42857140
## 667 1.9724720 0.006085193 0.42857140
## 668 1.9724720 0.006085193 0.42857140
## 669 1.9724720 0.006085193 0.42857140
## 670 1.9724720 0.006085193 0.42857140
## 671 1.9724720 0.006085193 0.42857140
## 672 1.1506090 0.077079110 0.25000000
## 673 1.1822770 0.056795130 0.25688070
## 674 1.3006880 0.026369170 0.28260870
## 675 1.4644110 0.014198780 0.31818180
## 676 1.4644110 0.014198780 0.31818180
## 677 1.4644110 0.014198780 0.31818180
## 678 1.1694710 0.062880320 0.25409840
## 679 1.4161340 0.016227180 0.30769230
## 680 1.4161340 0.016227180 0.30769230
## 681 1.4161340 0.016227180 0.30769230
## 682 1.4161340 0.016227180 0.30769230
## 683 1.4161340 0.016227180 0.30769230
## 684 1.4161340 0.016227180 0.30769230
## 685 1.4161340 0.016227180 0.30769230
## 686 1.4161340 0.016227180 0.30769230
## 687 1.3807300 0.018255580 0.30000000
## 688 1.3807300 0.018255580 0.30000000
## 689 1.3807300 0.018255580 0.30000000
## 690 1.2364750 0.036511160 0.26865670
## 691 1.2364750 0.036511160 0.26865670
## 692 1.1593920 0.066937120 0.25190840
## 693 1.1506090 0.073022310 0.25000000
## 694 1.2419270 0.034482760 0.26984130
## 695 1.1715290 0.056795130 0.25454550
## 696 1.1715290 0.056795130 0.25454550
## 697 1.1877250 0.048681540 0.25806450
## 698 1.6736120 0.008113590 0.36363640
## 699 1.6736120 0.008113590 0.36363640
## 700 1.6736120 0.008113590 0.36363640
## 701 1.6736120 0.008113590 0.36363640
## 702 1.6736120 0.008113590 0.36363640
## 703 1.6736120 0.008113590 0.36363640
## 704 1.6736120 0.008113590 0.36363640
## 705 1.6736120 0.008113590 0.36363640
## 706 1.6736120 0.008113590 0.36363640
## 707 1.6736120 0.008113590 0.36363640
## 708 1.6736120 0.008113590 0.36363640
## 709 1.6736120 0.008113590 0.36363640
## 710 1.6736120 0.008113590 0.36363640
## 711 1.6736120 0.008113590 0.36363640
## 712 1.6736120 0.008113590 0.36363640
## 713 1.6736120 0.008113590 0.36363640
## 714 1.6736120 0.008113590 0.36363640
## 715 1.6736120 0.008113590 0.36363640
## 716 1.6736120 0.008113590 0.36363640
## 717 1.6736120 0.008113590 0.36363640
## 718 1.6736120 0.008113590 0.36363640
## 719 1.6736120 0.008113590 0.36363640
## 720 1.6736120 0.008113590 0.36363640
## 721 1.6736120 0.008113590 0.36363640
## 722 1.6736120 0.008113590 0.36363640
## 723 1.2730140 0.026369170 0.27659570
## 724 1.2730140 0.026369170 0.27659570
## 725 1.1731690 0.052738340 0.25490200
## 726 1.2182910 0.036511160 0.26470590
## 727 1.2182910 0.036511160 0.26470590
## 728 1.2844000 0.024340770 0.27906980
## 729 2.3012170 0.004056795 0.50000000
## 730 2.3012170 0.004056795 0.50000000
## 731 2.3012170 0.004056795 0.50000000
## 732 2.3012170 0.004056795 0.50000000
## 733 2.3012170 0.004056795 0.50000000
## 734 2.3012170 0.004056795 0.50000000
## 735 2.3012170 0.004056795 0.50000000
## 736 2.3012170 0.004056795 0.50000000
## 737 2.3012170 0.004056795 0.50000000
## 738 2.3012170 0.004056795 0.50000000
## 739 2.3012170 0.004056795 0.50000000
## 740 2.3012170 0.004056795 0.50000000
## 741 2.3012170 0.004056795 0.50000000
## 742 2.3012170 0.004056795 0.50000000
## 743 2.3012170 0.004056795 0.50000000
## 744 2.3012170 0.004056795 0.50000000
## 745 2.3012170 0.004056795 0.50000000
## 746 2.3012170 0.004056795 0.50000000
## 747 2.3012170 0.004056795 0.50000000
## 748 2.3012170 0.004056795 0.50000000
## 749 2.3012170 0.004056795 0.50000000
## 750 2.3012170 0.004056795 0.50000000
## 751 2.3012170 0.004056795 0.50000000
## 752 2.3012170 0.004056795 0.50000000
## 753 2.3012170 0.004056795 0.50000000
## 754 2.3012170 0.004056795 0.50000000
## 755 2.3012170 0.004056795 0.50000000
## 756 2.3012170 0.004056795 0.50000000
## 757 2.3012170 0.004056795 0.50000000
## 758 2.3012170 0.004056795 0.50000000
## 759 2.3012170 0.004056795 0.50000000
## 760 2.3012170 0.004056795 0.50000000
## 761 2.3012170 0.004056795 0.50000000
## 762 2.3012170 0.004056795 0.50000000
## 763 2.3012170 0.004056795 0.50000000
## 764 2.3012170 0.004056795 0.50000000
## 765 2.3012170 0.004056795 0.50000000
## 766 2.3012170 0.004056795 0.50000000
## 767 2.3012170 0.004056795 0.50000000
## 768 2.3012170 0.004056795 0.50000000
## 769 2.3012170 0.004056795 0.50000000
## 770 2.3012170 0.004056795 0.50000000
## 771 2.3012170 0.004056795 0.50000000
## 772 2.3012170 0.004056795 0.50000000
## 773 2.3012170 0.004056795 0.50000000
## 774 2.3012170 0.004056795 0.50000000
## 775 2.3012170 0.004056795 0.50000000
## 776 2.3012170 0.004056795 0.50000000
## 777 2.3012170 0.004056795 0.50000000
## 778 2.3012170 0.004056795 0.50000000
## 779 2.3012170 0.004056795 0.50000000
## 780 2.3012170 0.004056795 0.50000000
## 781 2.3012170 0.004056795 0.50000000
## 782 1.1740900 0.050709940 0.25510200
## 783 1.2225220 0.034482760 0.26562500
## 784 1.2981220 0.022312370 0.28205130
## 785 1.2981220 0.022312370 0.28205130
## 786 1.1932240 0.042596350 0.25925930
## 787 1.5341450 0.010141990 0.33333330
## 788 1.5341450 0.010141990 0.33333330
## 789 1.5341450 0.010141990 0.33333330
## 790 1.5341450 0.010141990 0.33333330
## 791 1.5341450 0.010141990 0.33333330
## 792 1.5341450 0.010141990 0.33333330
## 793 1.5341450 0.010141990 0.33333330
## 794 1.5341450 0.010141990 0.33333330
## 795 1.5341450 0.010141990 0.33333330
## 796 1.5341450 0.010141990 0.33333330
## 797 1.5341450 0.010141990 0.33333330
## 798 1.3149810 0.020283980 0.28571430
## 799 1.2273160 0.032454360 0.26666670
## 800 1.3361910 0.018255580 0.29032260
## 801 1.1954370 0.040567950 0.25974030
## 802 1.4534000 0.012170390 0.31578950
## 803 1.4534000 0.012170390 0.31578950
## 804 1.4534000 0.012170390 0.31578950
## 805 1.4534000 0.012170390 0.31578950
## 806 1.4534000 0.012170390 0.31578950
## 807 1.4534000 0.012170390 0.31578950
## 808 1.4534000 0.012170390 0.31578950
## 809 1.4534000 0.012170390 0.31578950
## 810 1.3636840 0.016227180 0.29629630
## 811 1.3636840 0.016227180 0.29629630
## 812 1.4007410 0.014198780 0.30434780
## 813 1.4007410 0.014198780 0.30434780
## 814 1.4007410 0.014198780 0.30434780
## 815 1.4007410 0.014198780 0.30434780
## 816 1.4007410 0.014198780 0.30434780
## 817 1.4007410 0.014198780 0.30434780
## 818 1.4007410 0.014198780 0.30434780
## 819 1.4007410 0.014198780 0.30434780
## 820 1.4007410 0.014198780 0.30434780
## 821 4.6024340 0.002028398 1.00000000
## 822 4.6024340 0.002028398 1.00000000
## 823 4.6024340 0.002028398 1.00000000
## 824 4.6024340 0.002028398 1.00000000
## 825 4.6024340 0.002028398 1.00000000
## 826 4.6024340 0.002028398 1.00000000
## 827 4.6024340 0.002028398 1.00000000
## 828 4.6024340 0.002028398 1.00000000
## 829 4.6024340 0.002028398 1.00000000
## 830 4.6024340 0.002028398 1.00000000
## 831 4.6024340 0.002028398 1.00000000
## 832 4.6024340 0.002028398 1.00000000
## 833 4.6024340 0.002028398 1.00000000
## 834 4.6024340 0.002028398 1.00000000
## 835 4.6024340 0.002028398 1.00000000
## 836 4.6024340 0.002028398 1.00000000
## 837 4.6024340 0.002028398 1.00000000
## 838 4.6024340 0.002028398 1.00000000
## 839 4.6024340 0.002028398 1.00000000
## 840 4.6024340 0.002028398 1.00000000
## 841 4.6024340 0.002028398 1.00000000
## 842 4.6024340 0.002028398 1.00000000
## 843 4.6024340 0.002028398 1.00000000
## 844 4.6024340 0.002028398 1.00000000
## 845 4.6024340 0.002028398 1.00000000
## 846 4.6024340 0.002028398 1.00000000
## 847 4.6024340 0.002028398 1.00000000
## 848 4.6024340 0.002028398 1.00000000
## 849 4.6024340 0.002028398 1.00000000
## 850 4.6024340 0.002028398 1.00000000
## 851 4.6024340 0.002028398 1.00000000
## 852 4.6024340 0.002028398 1.00000000
## 853 4.6024340 0.002028398 1.00000000
## 854 4.6024340 0.002028398 1.00000000
## 855 4.6024340 0.002028398 1.00000000
## 856 4.6024340 0.002028398 1.00000000
## 857 4.6024340 0.002028398 1.00000000
## 858 4.6024340 0.002028398 1.00000000
## 859 4.6024340 0.002028398 1.00000000
## 860 4.6024340 0.002028398 1.00000000
## 861 4.6024340 0.002028398 1.00000000
## 862 4.6024340 0.002028398 1.00000000
## 863 4.6024340 0.002028398 1.00000000
## 864 4.6024340 0.002028398 1.00000000
## 865 4.6024340 0.002028398 1.00000000
## 866 4.6024340 0.002028398 1.00000000
## 867 4.6024340 0.002028398 1.00000000
## 868 4.6024340 0.002028398 1.00000000
## 869 4.6024340 0.002028398 1.00000000
## 870 4.6024340 0.002028398 1.00000000
## 871 4.6024340 0.002028398 1.00000000
## 872 4.6024340 0.002028398 1.00000000
## 873 4.6024340 0.002028398 1.00000000
## 874 4.6024340 0.002028398 1.00000000
## 875 4.6024340 0.002028398 1.00000000
## 876 4.6024340 0.002028398 1.00000000
## 877 4.6024340 0.002028398 1.00000000
## 878 4.6024340 0.002028398 1.00000000
## 879 4.6024340 0.002028398 1.00000000
## 880 4.6024340 0.002028398 1.00000000
## 881 4.6024340 0.002028398 1.00000000
## 882 4.6024340 0.002028398 1.00000000
## 883 4.6024340 0.002028398 1.00000000
## 884 4.6024340 0.002028398 1.00000000
## 885 4.6024340 0.002028398 1.00000000
## 886 4.6024340 0.002028398 1.00000000
## 887 4.6024340 0.002028398 1.00000000
## 888 4.6024340 0.002028398 1.00000000
## 889 4.6024340 0.002028398 1.00000000
## 890 4.6024340 0.002028398 1.00000000
## 891 4.6024340 0.002028398 1.00000000
## 892 4.6024340 0.002028398 1.00000000
## 893 4.6024340 0.002028398 1.00000000
## 894 4.6024340 0.002028398 1.00000000
## 895 4.6024340 0.002028398 1.00000000
## 896 4.6024340 0.002028398 1.00000000
## 897 4.6024340 0.002028398 1.00000000
## 898 4.6024340 0.002028398 1.00000000
## 899 4.6024340 0.002028398 1.00000000
## 900 4.6024340 0.002028398 1.00000000
## 901 4.6024340 0.002028398 1.00000000
## 902 4.6024340 0.002028398 1.00000000
## 903 4.6024340 0.002028398 1.00000000
## 904 4.6024340 0.002028398 1.00000000
## 905 4.6024340 0.002028398 1.00000000
## 906 4.6024340 0.002028398 1.00000000
## 907 4.6024340 0.002028398 1.00000000
## 908 4.6024340 0.002028398 1.00000000
## 909 4.6024340 0.002028398 1.00000000
## 910 4.6024340 0.002028398 1.00000000
## 911 4.6024340 0.002028398 1.00000000
## 912 4.6024340 0.002028398 1.00000000
## 913 4.6024340 0.002028398 1.00000000
## 914 4.6024340 0.002028398 1.00000000
## 915 4.6024340 0.002028398 1.00000000
## 916 4.6024340 0.002028398 1.00000000
## 917 4.6024340 0.002028398 1.00000000
## 918 4.6024340 0.002028398 1.00000000
## 919 4.6024340 0.002028398 1.00000000
## 920 4.6024340 0.002028398 1.00000000
## 921 4.6024340 0.002028398 1.00000000
## 922 4.6024340 0.002028398 1.00000000
## 923 4.6024340 0.002028398 1.00000000
## 924 4.6024340 0.002028398 1.00000000
## 925 4.6024340 0.002028398 1.00000000
## 926 4.6024340 0.002028398 1.00000000
## 927 4.6024340 0.002028398 1.00000000
## 928 4.6024340 0.002028398 1.00000000
## 929 4.6024340 0.002028398 1.00000000
## 930 4.6024340 0.002028398 1.00000000
## 931 4.6024340 0.002028398 1.00000000
## 932 4.6024340 0.002028398 1.00000000
## 933 4.6024340 0.002028398 1.00000000
## 934 4.6024340 0.002028398 1.00000000
## 935 4.6024340 0.002028398 1.00000000
## 936 4.6024340 0.002028398 1.00000000
## 937 4.6024340 0.002028398 1.00000000
## 938 4.6024340 0.002028398 1.00000000
## 939 4.6024340 0.002028398 1.00000000
## 940 4.6024340 0.002028398 1.00000000
## 941 4.6024340 0.002028398 1.00000000
## 942 4.6024340 0.002028398 1.00000000
## 943 4.6024340 0.002028398 1.00000000
## 944 4.6024340 0.002028398 1.00000000
## 945 4.6024340 0.002028398 1.00000000
## 946 4.6024340 0.002028398 1.00000000
## 947 4.6024340 0.002028398 1.00000000
## 948 4.6024340 0.002028398 1.00000000
## 949 4.6024340 0.002028398 1.00000000
## 950 4.6024340 0.002028398 1.00000000
## 951 4.6024340 0.002028398 1.00000000
## 952 4.6024340 0.002028398 1.00000000
## 953 4.6024340 0.002028398 1.00000000
## 954 4.6024340 0.002028398 1.00000000
## 955 4.6024340 0.002028398 1.00000000
## 956 4.6024340 0.002028398 1.00000000
## 957 4.6024340 0.002028398 1.00000000
## 958 4.6024340 0.002028398 1.00000000
## 959 4.6024340 0.002028398 1.00000000
## 960 4.6024340 0.002028398 1.00000000
## 961 4.6024340 0.002028398 1.00000000
## 962 4.6024340 0.002028398 1.00000000
## 963 4.6024340 0.002028398 1.00000000
## 964 4.6024340 0.002028398 1.00000000
## 965 4.6024340 0.002028398 1.00000000
## 966 4.6024340 0.002028398 1.00000000
## 967 4.6024340 0.002028398 1.00000000
## 968 4.6024340 0.002028398 1.00000000
## 969 4.6024340 0.002028398 1.00000000
## 970 4.6024340 0.002028398 1.00000000
## 971 4.6024340 0.002028398 1.00000000
## 972 4.6024340 0.002028398 1.00000000
## 973 4.6024340 0.002028398 1.00000000
## 974 4.6024340 0.002028398 1.00000000
## 975 4.6024340 0.002028398 1.00000000
## 976 4.6024340 0.002028398 1.00000000
## 977 4.6024340 0.002028398 1.00000000
## 978 4.6024340 0.002028398 1.00000000
## 979 4.6024340 0.002028398 1.00000000
## 980 4.6024340 0.002028398 1.00000000
## 981 4.6024340 0.002028398 1.00000000
## 982 4.6024340 0.002028398 1.00000000
## 983 4.6024340 0.002028398 1.00000000
## 984 1.2391170 0.028397570 0.26923080
## 985 1.2391170 0.028397570 0.26923080
## 986 1.2006350 0.036511160 0.26086960
## 987 1.2006350 0.036511160 0.26086960
## 988 1.1622310 0.050709940 0.25252530
## 989 1.1622310 0.050709940 0.25252530
## 990 1.2037140 0.034482760 0.26153850
## 991 1.2037140 0.034482760 0.26153850
## 992 1.2552090 0.024340770 0.27272730
## 993 1.1264700 0.070993910 0.24475520
## 994 1.2071960 0.032454360 0.26229510
## 995 1.2071960 0.032454360 0.26229510
## 996 1.2656690 0.022312370 0.27500000
## 997 1.2656690 0.022312370 0.27500000
## 998 1.2656690 0.022312370 0.27500000
## 999 1.1257750 0.068965520 0.24460430
## 1000 1.0591380 0.223123700 0.23012550
## 1001 1.0686390 0.178499000 0.23219000
## 1002 1.1817060 0.038539550 0.25675680
## 1003 1.2784540 0.020283980 0.27777780
## 1004 1.1638340 0.044624750 0.25287360
## 1005 1.7259130 0.006085193 0.37500000
## 1006 1.7259130 0.006085193 0.37500000
## 1007 1.7259130 0.006085193 0.37500000
## 1008 1.7259130 0.006085193 0.37500000
## 1009 1.7259130 0.006085193 0.37500000
## 1010 1.7259130 0.006085193 0.37500000
## 1011 1.7259130 0.006085193 0.37500000
## 1012 1.7259130 0.006085193 0.37500000
## 1013 1.7259130 0.006085193 0.37500000
## 1014 1.7259130 0.006085193 0.37500000
## 1015 1.7259130 0.006085193 0.37500000
## 1016 1.7259130 0.006085193 0.37500000
## 1017 1.7259130 0.006085193 0.37500000
## 1018 1.7259130 0.006085193 0.37500000
## 1019 1.7259130 0.006085193 0.37500000
## 1020 1.7259130 0.006085193 0.37500000
## 1021 1.7259130 0.006085193 0.37500000
## 1022 1.7259130 0.006085193 0.37500000
## 1023 1.7259130 0.006085193 0.37500000
## 1024 1.7259130 0.006085193 0.37500000
## 1025 1.7259130 0.006085193 0.37500000
## 1026 1.7259130 0.006085193 0.37500000
## 1027 1.0990890 0.097363080 0.23880600
## 1028 1.0885420 0.115618700 0.23651450
## 1029 1.2157370 0.028397570 0.26415090
## 1030 1.2157370 0.028397570 0.26415090
## 1031 1.3149810 0.016227180 0.28571430
## 1032 1.3149810 0.016227180 0.28571430
## 1033 1.3149810 0.016227180 0.28571430
## 1034 1.3149810 0.016227180 0.28571430
## 1035 1.3423770 0.014198780 0.29166670
## 1036 1.3423770 0.014198780 0.29166670
## 1037 1.3423770 0.014198780 0.29166670
## 1038 1.3423770 0.014198780 0.29166670
## 1039 1.3423770 0.014198780 0.29166670
## 1040 1.5341450 0.008113590 0.33333330
## 1041 1.5341450 0.008113590 0.33333330
## 1042 1.5341450 0.008113590 0.33333330
## 1043 1.5341450 0.008113590 0.33333330
## 1044 1.5341450 0.008113590 0.33333330
## 1045 1.5341450 0.008113590 0.33333330
## 1046 1.5341450 0.008113590 0.33333330
## 1047 1.5341450 0.008113590 0.33333330
## 1048 1.5341450 0.008113590 0.33333330
## 1049 1.5341450 0.008113590 0.33333330
## 1050 1.5341450 0.008113590 0.33333330
## 1051 1.5341450 0.008113590 0.33333330
## 1052 1.5341450 0.008113590 0.33333330
## 1053 1.5341450 0.008113590 0.33333330
## 1054 1.5341450 0.008113590 0.33333330
## 1055 1.5341450 0.008113590 0.33333330
## 1056 1.5341450 0.008113590 0.33333330
## 1057 1.5341450 0.008113590 0.33333330
## 1058 1.1651730 0.040567950 0.25316460
## 1059 1.1651730 0.040567950 0.25316460
## 1060 1.3807300 0.012170390 0.30000000
## 1061 1.3807300 0.012170390 0.30000000
## 1062 1.3807300 0.012170390 0.30000000
## 1063 1.4382610 0.010141990 0.31250000
## 1064 1.4382610 0.010141990 0.31250000
## 1065 1.4382610 0.010141990 0.31250000
## 1066 1.4382610 0.010141990 0.31250000
## 1067 1.4382610 0.010141990 0.31250000
## 1068 1.4382610 0.010141990 0.31250000
## 1069 1.4382610 0.010141990 0.31250000
## 1070 1.4382610 0.010141990 0.31250000
## 1071 1.4382610 0.010141990 0.31250000
## 1072 1.4382610 0.010141990 0.31250000
## 1073 1.4382610 0.010141990 0.31250000
## 1074 1.4382610 0.010141990 0.31250000
## 1075 1.1902850 0.030425960 0.25862070
## 1076 1.2347990 0.022312370 0.26829270
## 1077 1.2347990 0.022312370 0.26829270
## 1078 1.1216020 0.058823530 0.24369750
## 1079 1.2439010 0.020283980 0.27027030
## 1080 1.2439010 0.020283980 0.27027030
## 1081 1.0479930 0.243407700 0.22770400
## 1082 1.2552090 0.018255580 0.27272730
## 1083 1.2552090 0.018255580 0.27272730
## 1084 1.2552090 0.018255580 0.27272730
## 1085 1.1966330 0.026369170 0.26000000
## 1086 1.1688720 0.032454360 0.25396830
## 1087 1.1506090 0.038539550 0.25000000
## 1088 1.2696370 0.016227180 0.27586210
## 1089 1.2696370 0.016227180 0.27586210
## 1090 1.2696370 0.016227180 0.27586210
## 1091 1.2696370 0.016227180 0.27586210
## 1092 1.2696370 0.016227180 0.27586210
## 1093 1.2696370 0.016227180 0.27586210
## 1094 1.2696370 0.016227180 0.27586210
## 1095 1.2006350 0.024340770 0.26086960
## 1096 1.2006350 0.024340770 0.26086960
## 1097 1.1370720 0.042596350 0.24705880
## 1098 1.1701100 0.030425960 0.25423730
## 1099 1.1506090 0.036511160 0.25000000
## 1100 1.2886820 0.014198780 0.28000000
## 1101 1.2886820 0.014198780 0.28000000
## 1102 1.2886820 0.014198780 0.28000000
## 1103 1.2053990 0.022312370 0.26190480
## 1104 1.3149810 0.012170390 0.28571430
## 1105 1.3149810 0.012170390 0.28571430
## 1106 1.3149810 0.012170390 0.28571430
## 1107 1.3149810 0.012170390 0.28571430
## 1108 1.1715290 0.028397570 0.25454550
## 1109 1.8409740 0.004056795 0.40000000
## 1110 1.8409740 0.004056795 0.40000000
## 1111 1.8409740 0.004056795 0.40000000
## 1112 1.8409740 0.004056795 0.40000000
## 1113 1.8409740 0.004056795 0.40000000
## 1114 1.8409740 0.004056795 0.40000000
## 1115 1.8409740 0.004056795 0.40000000
## 1116 1.8409740 0.004056795 0.40000000
## 1117 1.8409740 0.004056795 0.40000000
## 1118 1.8409740 0.004056795 0.40000000
## 1119 1.8409740 0.004056795 0.40000000
## 1120 1.8409740 0.004056795 0.40000000
## 1121 1.8409740 0.004056795 0.40000000
## 1122 1.8409740 0.004056795 0.40000000
## 1123 1.8409740 0.004056795 0.40000000
## 1124 1.8409740 0.004056795 0.40000000
## 1125 1.8409740 0.004056795 0.40000000
## 1126 1.8409740 0.004056795 0.40000000
## 1127 1.8409740 0.004056795 0.40000000
## 1128 1.8409740 0.004056795 0.40000000
## 1129 1.8409740 0.004056795 0.40000000
## 1130 1.8409740 0.004056795 0.40000000
## 1131 1.8409740 0.004056795 0.40000000
## 1132 1.8409740 0.004056795 0.40000000
## 1133 1.8409740 0.004056795 0.40000000
## 1134 1.8409740 0.004056795 0.40000000
## 1135 1.8409740 0.004056795 0.40000000
## 1136 1.8409740 0.004056795 0.40000000
## 1137 1.8409740 0.004056795 0.40000000
## 1138 1.8409740 0.004056795 0.40000000
## 1139 1.8409740 0.004056795 0.40000000
## 1140 1.8409740 0.004056795 0.40000000
## 1141 1.8409740 0.004056795 0.40000000
## 1142 1.8409740 0.004056795 0.40000000
## 1143 1.8409740 0.004056795 0.40000000
## 1144 1.8409740 0.004056795 0.40000000
## 1145 1.8409740 0.004056795 0.40000000
## 1146 1.8409740 0.004056795 0.40000000
## 1147 1.8409740 0.004056795 0.40000000
## 1148 1.8409740 0.004056795 0.40000000
## 1149 1.8409740 0.004056795 0.40000000
## 1150 1.8409740 0.004056795 0.40000000
## 1151 1.8409740 0.004056795 0.40000000
## 1152 1.8409740 0.004056795 0.40000000
## 1153 1.8409740 0.004056795 0.40000000
## 1154 1.8409740 0.004056795 0.40000000
## 1155 1.8409740 0.004056795 0.40000000
## 1156 1.8409740 0.004056795 0.40000000
## 1157 1.8409740 0.004056795 0.40000000
## 1158 1.8409740 0.004056795 0.40000000
## 1159 1.8409740 0.004056795 0.40000000
## 1160 1.8409740 0.004056795 0.40000000
## 1161 1.8409740 0.004056795 0.40000000
## 1162 1.8409740 0.004056795 0.40000000
## 1163 1.8409740 0.004056795 0.40000000
## 1164 1.8409740 0.004056795 0.40000000
## 1165 1.2111670 0.020283980 0.26315790
## 1166 1.2111670 0.020283980 0.26315790
## 1167 1.3536570 0.010141990 0.29411760
## 1168 1.3536570 0.010141990 0.29411760
## 1169 1.3536570 0.010141990 0.29411760
## 1170 1.3536570 0.010141990 0.29411760
## 1171 1.3536570 0.010141990 0.29411760
## 1172 1.3536570 0.010141990 0.29411760
## 1173 1.3536570 0.010141990 0.29411760
## 1174 1.3536570 0.010141990 0.29411760
## 1175 1.3536570 0.010141990 0.29411760
## 1176 1.1731690 0.026369170 0.25490200
## 1177 1.1731690 0.026369170 0.25490200
## 1178 1.4161340 0.008113590 0.30769230
## 1179 1.4161340 0.008113590 0.30769230
## 1180 1.4161340 0.008113590 0.30769230
## 1181 1.4161340 0.008113590 0.30769230
## 1182 1.4161340 0.008113590 0.30769230
## 1183 1.4161340 0.008113590 0.30769230
## 1184 1.0398090 0.247464500 0.22592590
## 1185 1.5341450 0.006085193 0.33333330
## 1186 1.5341450 0.006085193 0.33333330
## 1187 1.5341450 0.006085193 0.33333330
## 1188 1.5341450 0.006085193 0.33333330
## 1189 1.5341450 0.006085193 0.33333330
## 1190 1.5341450 0.006085193 0.33333330
## 1191 1.5341450 0.006085193 0.33333330
## 1192 1.5341450 0.006085193 0.33333330
## 1193 1.5341450 0.006085193 0.33333330
## 1194 1.5341450 0.006085193 0.33333330
## 1195 1.5341450 0.006085193 0.33333330
## 1196 1.5341450 0.006085193 0.33333330
## 1197 1.5341450 0.006085193 0.33333330
## 1198 1.5341450 0.006085193 0.33333330
## 1199 1.5341450 0.006085193 0.33333330
## 1200 1.5341450 0.006085193 0.33333330
## 1201 1.5341450 0.006085193 0.33333330
## 1202 1.5341450 0.006085193 0.33333330
## 1203 1.5341450 0.006085193 0.33333330
## 1204 1.5341450 0.006085193 0.33333330
## 1205 1.5341450 0.006085193 0.33333330
## 1206 1.5341450 0.006085193 0.33333330
## 1207 1.5341450 0.006085193 0.33333330
## 1208 1.5341450 0.006085193 0.33333330
## 1209 1.5341450 0.006085193 0.33333330
## 1210 1.5341450 0.006085193 0.33333330
## 1211 1.5341450 0.006085193 0.33333330
## 1212 1.5341450 0.006085193 0.33333330
## 1213 1.5341450 0.006085193 0.33333330
## 1214 1.0248330 0.446247500 0.22267210
## 1215 1.2182910 0.018255580 0.26470590
## 1216 1.2182910 0.018255580 0.26470590
## 1217 1.2182910 0.018255580 0.26470590
## 1218 1.2182910 0.018255580 0.26470590
## 1219 1.0846500 0.075050710 0.23566880
## 1220 1.1506090 0.030425960 0.25000000
## 1221 1.1506090 0.030425960 0.25000000
## 1222 1.1750900 0.024340770 0.25531910
## 1223 1.1750900 0.024340770 0.25531910
## 1224 1.1750900 0.024340770 0.25531910
## 1225 1.1750900 0.024340770 0.25531910
## 1226 1.0293360 0.352941200 0.22365040
## 1227 1.0295720 0.340770800 0.22370170
## 1228 1.2273160 0.016227180 0.26666670
## 1229 1.2273160 0.016227180 0.26666670
## 1230 1.2273160 0.016227180 0.26666670
## 1231 1.1773670 0.022312370 0.25581400
## 1232 1.1773670 0.022312370 0.25581400
## 1233 1.0978280 0.052738340 0.23853210
## 1234 1.0978280 0.052738340 0.23853210
## 1235 1.2391170 0.014198780 0.26923080
## 1236 1.0621000 0.103448300 0.23076920
## 1237 1.1801110 0.020283980 0.25641030
## 1238 1.1801110 0.020283980 0.25641030
## 1239 1.0539930 0.121703900 0.22900760
## 1240 1.1317460 0.030425960 0.24590160
## 1241 1.1317460 0.030425960 0.24590160
## 1242 1.1317460 0.030425960 0.24590160
## 1243 1.2552090 0.012170390 0.27272730
## 1244 1.2552090 0.012170390 0.27272730
## 1245 1.2552090 0.012170390 0.27272730
## 1246 1.2552090 0.012170390 0.27272730
## 1247 1.2552090 0.012170390 0.27272730
## 1248 1.2552090 0.012170390 0.27272730
## 1249 1.2552090 0.012170390 0.27272730
## 1250 1.2552090 0.012170390 0.27272730
## 1251 1.2552090 0.012170390 0.27272730
## 1252 1.2552090 0.012170390 0.27272730
## 1253 1.1506090 0.024340770 0.25000000
## 1254 1.1506090 0.024340770 0.25000000
## 1255 1.1506090 0.024340770 0.25000000
## 1256 1.1834830 0.018255580 0.25714290
## 1257 1.1834830 0.018255580 0.25714290
## 1258 1.1177340 0.034482760 0.24285710
## 1259 1.0936480 0.048681540 0.23762380
## 1260 1.0603650 0.095334690 0.23039220
## 1261 1.0786950 0.060851930 0.23437500
## 1262 1.2784540 0.010141990 0.27777780
## 1263 1.2784540 0.010141990 0.27777780
## 1264 1.2784540 0.010141990 0.27777780
## 1265 1.2784540 0.010141990 0.27777780
## 1266 1.0570180 0.097363080 0.22966510
## 1267 1.0191760 0.448275900 0.22144290
## 1268 1.1506090 0.022312370 0.25000000
## 1269 1.1157420 0.032454360 0.24242420
## 1270 1.1877250 0.016227180 0.25806450
## 1271 1.1877250 0.016227180 0.25806450
## 1272 1.1877250 0.016227180 0.25806450
## 1273 1.1877250 0.016227180 0.25806450
## 1274 1.0195270 0.425963500 0.22151900
## 1275 1.1045840 0.036511160 0.24000000
## 1276 1.0525750 0.103448300 0.22869960
## 1277 1.0308010 0.231237300 0.22396860
## 1278 1.0551920 0.095334690 0.22926830
## 1279 1.3149810 0.008113590 0.28571430
## 1280 1.3149810 0.008113590 0.28571430
## 1281 1.3149810 0.008113590 0.28571430
## 1282 1.3149810 0.008113590 0.28571430
## 1283 1.3149810 0.008113590 0.28571430
## 1284 1.3149810 0.008113590 0.28571430
## 1285 1.3149810 0.008113590 0.28571430
## 1286 1.3149810 0.008113590 0.28571430
## 1287 1.1134920 0.030425960 0.24193550
## 1288 1.0412060 0.139959400 0.22622950
## 1289 1.1019910 0.034482760 0.23943660
## 1290 1.1932240 0.014198780 0.25925930
## 1291 1.1932240 0.014198780 0.25925930
## 1292 1.1932240 0.014198780 0.25925930
## 1293 1.0930780 0.038539550 0.23750000
## 1294 1.0930780 0.038539550 0.23750000
## 1295 1.1271270 0.024340770 0.24489800
## 1296 1.1271270 0.024340770 0.24489800
## 1297 1.1271270 0.024340770 0.24489800
## 1298 1.1271270 0.024340770 0.24489800
## 1299 1.3807300 0.006085193 0.30000000
## 1300 1.3807300 0.006085193 0.30000000
## 1301 1.3807300 0.006085193 0.30000000
## 1302 1.3807300 0.006085193 0.30000000
## 1303 1.3807300 0.006085193 0.30000000
## 1304 1.3807300 0.006085193 0.30000000
## 1305 1.3807300 0.006085193 0.30000000
## 1306 1.3807300 0.006085193 0.30000000
## 1307 1.3807300 0.006085193 0.30000000
## 1308 1.3807300 0.006085193 0.30000000
## 1309 1.3807300 0.006085193 0.30000000
## 1310 1.3807300 0.006085193 0.30000000
## 1311 1.3807300 0.006085193 0.30000000
## 1312 1.3807300 0.006085193 0.30000000
## 1313 1.3807300 0.006085193 0.30000000
## 1314 1.3807300 0.006085193 0.30000000
## 1315 1.3807300 0.006085193 0.30000000
## 1316 1.3807300 0.006085193 0.30000000
## 1317 1.3807300 0.006085193 0.30000000
## 1318 1.3807300 0.006085193 0.30000000
## 1319 1.3807300 0.006085193 0.30000000
## 1320 1.3807300 0.006085193 0.30000000
## 1321 1.3807300 0.006085193 0.30000000
## 1322 1.3807300 0.006085193 0.30000000
## 1323 1.3807300 0.006085193 0.30000000
## 1324 1.3807300 0.006085193 0.30000000
## 1325 1.3807300 0.006085193 0.30000000
## 1326 1.3807300 0.006085193 0.30000000
## 1327 1.3807300 0.006085193 0.30000000
## 1328 1.3807300 0.006085193 0.30000000
## 1329 1.0753350 0.050709940 0.23364490
## 1330 1.1109320 0.028397570 0.24137930
## 1331 1.1109320 0.028397570 0.24137930
## 1332 1.1506090 0.018255580 0.25000000
## 1333 1.1506090 0.018255580 0.25000000
## 1334 1.1506090 0.018255580 0.25000000
## 1335 1.1506090 0.018255580 0.25000000
## 1336 1.0990890 0.032454360 0.23880600
## 1337 1.2006350 0.012170390 0.26086960
## 1338 1.2006350 0.012170390 0.26086960
## 1339 1.0492600 0.089249490 0.22797930
## 1340 1.0492600 0.089249490 0.22797930
## 1341 1.0829260 0.040567950 0.23529410
## 1342 1.0829260 0.040567950 0.23529410
## 1343 1.5341450 0.004056795 0.33333330
## 1344 1.5341450 0.004056795 0.33333330
## 1345 1.5341450 0.004056795 0.33333330
## 1346 1.5341450 0.004056795 0.33333330
## 1347 1.5341450 0.004056795 0.33333330
## 1348 1.5341450 0.004056795 0.33333330
## 1349 1.5341450 0.004056795 0.33333330
## 1350 1.5341450 0.004056795 0.33333330
## 1351 1.5341450 0.004056795 0.33333330
## 1352 1.5341450 0.004056795 0.33333330
## 1353 1.5341450 0.004056795 0.33333330
## 1354 1.5341450 0.004056795 0.33333330
## 1355 1.5341450 0.004056795 0.33333330
## 1356 1.5341450 0.004056795 0.33333330
## 1357 1.5341450 0.004056795 0.33333330
## 1358 1.5341450 0.004056795 0.33333330
## 1359 1.5341450 0.004056795 0.33333330
## 1360 1.5341450 0.004056795 0.33333330
## 1361 1.5341450 0.004056795 0.33333330
## 1362 1.5341450 0.004056795 0.33333330
## 1363 1.5341450 0.004056795 0.33333330
## 1364 1.5341450 0.004056795 0.33333330
## 1365 1.5341450 0.004056795 0.33333330
## 1366 1.5341450 0.004056795 0.33333330
## 1367 1.5341450 0.004056795 0.33333330
## 1368 1.5341450 0.004056795 0.33333330
## 1369 1.5341450 0.004056795 0.33333330
## 1370 1.5341450 0.004056795 0.33333330
## 1371 1.5341450 0.004056795 0.33333330
## 1372 1.5341450 0.004056795 0.33333330
## 1373 1.5341450 0.004056795 0.33333330
## 1374 1.5341450 0.004056795 0.33333330
## 1375 1.5341450 0.004056795 0.33333330
## 1376 1.5341450 0.004056795 0.33333330
## 1377 1.5341450 0.004056795 0.33333330
## 1378 1.5341450 0.004056795 0.33333330
## 1379 1.5341450 0.004056795 0.33333330
## 1380 1.5341450 0.004056795 0.33333330
## 1381 1.5341450 0.004056795 0.33333330
## 1382 1.5341450 0.004056795 0.33333330
## 1383 1.5341450 0.004056795 0.33333330
## 1384 1.5341450 0.004056795 0.33333330
## 1385 1.5341450 0.004056795 0.33333330
## 1386 1.5341450 0.004056795 0.33333330
## 1387 1.5341450 0.004056795 0.33333330
## 1388 1.5341450 0.004056795 0.33333330
## 1389 1.5341450 0.004056795 0.33333330
## 1390 1.5341450 0.004056795 0.33333330
## 1391 1.5341450 0.004056795 0.33333330
## 1392 1.5341450 0.004056795 0.33333330
## 1393 1.5341450 0.004056795 0.33333330
## 1394 1.5341450 0.004056795 0.33333330
## 1395 1.5341450 0.004056795 0.33333330
## 1396 1.5341450 0.004056795 0.33333330
## 1397 1.5341450 0.004056795 0.33333330
## 1398 1.5341450 0.004056795 0.33333330
## 1399 2.3012170 0.002028398 0.50000000
## 1400 2.3012170 0.002028398 0.50000000
## 1401 2.3012170 0.002028398 0.50000000
## 1402 2.3012170 0.002028398 0.50000000
## 1403 2.3012170 0.002028398 0.50000000
## 1404 2.3012170 0.002028398 0.50000000
## 1405 2.3012170 0.002028398 0.50000000
## 1406 2.3012170 0.002028398 0.50000000
## 1407 2.3012170 0.002028398 0.50000000
## 1408 2.3012170 0.002028398 0.50000000
## 1409 2.3012170 0.002028398 0.50000000
## 1410 2.3012170 0.002028398 0.50000000
## 1411 2.3012170 0.002028398 0.50000000
## 1412 2.3012170 0.002028398 0.50000000
## 1413 2.3012170 0.002028398 0.50000000
## 1414 2.3012170 0.002028398 0.50000000
## 1415 2.3012170 0.002028398 0.50000000
## 1416 2.3012170 0.002028398 0.50000000
## 1417 2.3012170 0.002028398 0.50000000
## 1418 2.3012170 0.002028398 0.50000000
## 1419 2.3012170 0.002028398 0.50000000
## 1420 2.3012170 0.002028398 0.50000000
## 1421 2.3012170 0.002028398 0.50000000
## 1422 2.3012170 0.002028398 0.50000000
## 1423 2.3012170 0.002028398 0.50000000
## 1424 2.3012170 0.002028398 0.50000000
## 1425 2.3012170 0.002028398 0.50000000
## 1426 2.3012170 0.002028398 0.50000000
## 1427 2.3012170 0.002028398 0.50000000
## 1428 2.3012170 0.002028398 0.50000000
## 1429 2.3012170 0.002028398 0.50000000
## 1430 2.3012170 0.002028398 0.50000000
## 1431 2.3012170 0.002028398 0.50000000
## 1432 2.3012170 0.002028398 0.50000000
## 1433 2.3012170 0.002028398 0.50000000
## 1434 2.3012170 0.002028398 0.50000000
## 1435 2.3012170 0.002028398 0.50000000
## 1436 2.3012170 0.002028398 0.50000000
## 1437 2.3012170 0.002028398 0.50000000
## 1438 2.3012170 0.002028398 0.50000000
## 1439 2.3012170 0.002028398 0.50000000
## 1440 2.3012170 0.002028398 0.50000000
## 1441 2.3012170 0.002028398 0.50000000
## 1442 2.3012170 0.002028398 0.50000000
## 1443 2.3012170 0.002028398 0.50000000
## 1444 2.3012170 0.002028398 0.50000000
## 1445 2.3012170 0.002028398 0.50000000
## 1446 2.3012170 0.002028398 0.50000000
## 1447 2.3012170 0.002028398 0.50000000
## 1448 2.3012170 0.002028398 0.50000000
## 1449 2.3012170 0.002028398 0.50000000
## 1450 2.3012170 0.002028398 0.50000000
## 1451 2.3012170 0.002028398 0.50000000
## 1452 2.3012170 0.002028398 0.50000000
## 1453 2.3012170 0.002028398 0.50000000
## 1454 2.3012170 0.002028398 0.50000000
## 1455 2.3012170 0.002028398 0.50000000
## 1456 2.3012170 0.002028398 0.50000000
## 1457 2.3012170 0.002028398 0.50000000
## 1458 2.3012170 0.002028398 0.50000000
## 1459 2.3012170 0.002028398 0.50000000
## 1460 2.3012170 0.002028398 0.50000000
## 1461 2.3012170 0.002028398 0.50000000
## 1462 2.3012170 0.002028398 0.50000000
## 1463 2.3012170 0.002028398 0.50000000
## 1464 2.3012170 0.002028398 0.50000000
## 1465 2.3012170 0.002028398 0.50000000
## 1466 2.3012170 0.002028398 0.50000000
## 1467 2.3012170 0.002028398 0.50000000
## 1468 2.3012170 0.002028398 0.50000000
## 1469 2.3012170 0.002028398 0.50000000
## 1470 2.3012170 0.002028398 0.50000000
## 1471 2.3012170 0.002028398 0.50000000
## 1472 2.3012170 0.002028398 0.50000000
## 1473 2.3012170 0.002028398 0.50000000
## 1474 2.3012170 0.002028398 0.50000000
## 1475 2.3012170 0.002028398 0.50000000
## 1476 2.3012170 0.002028398 0.50000000
## 1477 2.3012170 0.002028398 0.50000000
## 1478 2.3012170 0.002028398 0.50000000
## 1479 2.3012170 0.002028398 0.50000000
## 1480 2.3012170 0.002028398 0.50000000
## 1481 2.3012170 0.002028398 0.50000000
## 1482 2.3012170 0.002028398 0.50000000
## 1483 2.3012170 0.002028398 0.50000000
## 1484 2.3012170 0.002028398 0.50000000
## 1485 2.3012170 0.002028398 0.50000000
## 1486 2.3012170 0.002028398 0.50000000
## 1487 2.3012170 0.002028398 0.50000000
## 1488 2.3012170 0.002028398 0.50000000
## 1489 2.3012170 0.002028398 0.50000000
## 1490 2.3012170 0.002028398 0.50000000
## 1491 2.3012170 0.002028398 0.50000000
## 1492 2.3012170 0.002028398 0.50000000
## 1493 2.3012170 0.002028398 0.50000000
## 1494 2.3012170 0.002028398 0.50000000
## 1495 2.3012170 0.002028398 0.50000000
## 1496 2.3012170 0.002028398 0.50000000
## 1497 2.3012170 0.002028398 0.50000000
## 1498 2.3012170 0.002028398 0.50000000
## 1499 2.3012170 0.002028398 0.50000000
## 1500 2.3012170 0.002028398 0.50000000
## 1501 2.3012170 0.002028398 0.50000000
## 1502 2.3012170 0.002028398 0.50000000
## 1503 2.3012170 0.002028398 0.50000000
## 1504 2.3012170 0.002028398 0.50000000
## 1505 2.3012170 0.002028398 0.50000000
## 1506 2.3012170 0.002028398 0.50000000
## 1507 2.3012170 0.002028398 0.50000000
## 1508 2.3012170 0.002028398 0.50000000
## 1509 2.3012170 0.002028398 0.50000000
## 1510 2.3012170 0.002028398 0.50000000
## 1511 2.3012170 0.002028398 0.50000000
## 1512 2.3012170 0.002028398 0.50000000
## 1513 2.3012170 0.002028398 0.50000000
## 1514 2.3012170 0.002028398 0.50000000
## 1515 2.3012170 0.002028398 0.50000000
## 1516 2.3012170 0.002028398 0.50000000
## 1517 2.3012170 0.002028398 0.50000000
## 1518 2.3012170 0.002028398 0.50000000
## 1519 2.3012170 0.002028398 0.50000000
## 1520 2.3012170 0.002028398 0.50000000
## 1521 2.3012170 0.002028398 0.50000000
## 1522 2.3012170 0.002028398 0.50000000
## 1523 2.3012170 0.002028398 0.50000000
## 1524 2.3012170 0.002028398 0.50000000
## 1525 2.3012170 0.002028398 0.50000000
## 1526 2.3012170 0.002028398 0.50000000
## 1527 2.3012170 0.002028398 0.50000000
## 1528 2.3012170 0.002028398 0.50000000
## 1529 2.3012170 0.002028398 0.50000000
## 1530 2.3012170 0.002028398 0.50000000
## 1531 2.3012170 0.002028398 0.50000000
## 1532 2.3012170 0.002028398 0.50000000
## 1533 2.3012170 0.002028398 0.50000000
## 1534 2.3012170 0.002028398 0.50000000
## 1535 2.3012170 0.002028398 0.50000000
## 1536 2.3012170 0.002028398 0.50000000
## 1537 2.3012170 0.002028398 0.50000000
## 1538 1.0958180 0.030425960 0.23809520
## 1539 1.0483320 0.083164300 0.22777780
## 1540 1.1506090 0.016227180 0.25000000
## 1541 1.1506090 0.016227180 0.25000000
## 1542 1.2111670 0.010141990 0.26315790
## 1543 1.2111670 0.010141990 0.26315790
## 1544 1.2111670 0.010141990 0.26315790
## 1545 1.2111670 0.010141990 0.26315790
## 1546 1.2111670 0.010141990 0.26315790
## 1547 1.2111670 0.010141990 0.26315790
## 1548 1.2111670 0.010141990 0.26315790
## 1549 1.2111670 0.010141990 0.26315790
## 1550 1.2111670 0.010141990 0.26315790
## 1551 1.2111670 0.010141990 0.26315790
## 1552 1.0283370 0.166328600 0.22343320
## 1553 1.1045840 0.024340770 0.24000000
## 1554 1.1045840 0.024340770 0.24000000
## 1555 1.1045840 0.024340770 0.24000000
## 1556 1.0921030 0.028397570 0.23728810
## 1557 1.0539930 0.060851930 0.22900760
## 1558 1.0829260 0.032454360 0.23529410
## 1559 1.0589670 0.052738340 0.23008850
## 1560 1.1506090 0.014198780 0.25000000
## 1561 1.1506090 0.014198780 0.25000000
## 1562 1.1506090 0.014198780 0.25000000
## 1563 1.1506090 0.014198780 0.25000000
## 1564 1.1506090 0.014198780 0.25000000
## 1565 1.1506090 0.014198780 0.25000000
## 1566 1.1195110 0.018255580 0.24324320
## 1567 1.1195110 0.018255580 0.24324320
## 1568 1.1195110 0.018255580 0.24324320
## 1569 1.0878480 0.026369170 0.23636360
## 1570 1.2273160 0.008113590 0.26666670
## 1571 1.2273160 0.008113590 0.26666670
## 1572 1.2273160 0.008113590 0.26666670
## 1573 1.2273160 0.008113590 0.26666670
## 1574 1.2273160 0.008113590 0.26666670
## 1575 1.2273160 0.008113590 0.26666670
## 1576 1.2273160 0.008113590 0.26666670
## 1577 1.2273160 0.008113590 0.26666670
## 1578 1.2273160 0.008113590 0.26666670
## 1579 1.2273160 0.008113590 0.26666670
## 1580 1.2273160 0.008113590 0.26666670
## 1581 1.2273160 0.008113590 0.26666670
## 1582 1.2273160 0.008113590 0.26666670
## 1583 1.2273160 0.008113590 0.26666670
## 1584 1.0786950 0.030425960 0.23437500
## 1585 1.0786950 0.030425960 0.23437500
## 1586 1.0786950 0.030425960 0.23437500
## 1587 1.0309450 0.113590300 0.22400000
## 1588 1.0432180 0.068965520 0.22666670
## 1589 1.0260200 0.141987800 0.22292990
## 1590 1.1506090 0.012170390 0.25000000
## 1591 1.1506090 0.012170390 0.25000000
## 1592 1.1506090 0.012170390 0.25000000
## 1593 1.1506090 0.012170390 0.25000000
## 1594 1.1506090 0.012170390 0.25000000
## 1595 1.1506090 0.012170390 0.25000000
## 1596 1.1506090 0.012170390 0.25000000
## 1597 1.1506090 0.012170390 0.25000000
## 1598 1.1506090 0.012170390 0.25000000
## 1599 1.1506090 0.012170390 0.25000000
## 1600 1.1506090 0.012170390 0.25000000
## 1601 1.1506090 0.012170390 0.25000000
## 1602 1.0383540 0.075050710 0.22560980
## 1603 1.0289990 0.111561900 0.22357720
## 1604 1.1157420 0.016227180 0.24242420
## 1605 1.1157420 0.016227180 0.24242420
## 1606 1.0672310 0.032454360 0.23188410
## 1607 1.0739010 0.028397570 0.23333330
## 1608 1.0739010 0.028397570 0.23333330
## 1609 1.0829260 0.024340770 0.23529410
## 1610 1.0829260 0.024340770 0.23529410
## 1611 1.0829260 0.024340770 0.23529410
## 1612 1.0414270 0.062880320 0.22627740
## 1613 1.0355480 0.073022310 0.22500000
## 1614 1.0505560 0.042596350 0.22826090
## 1615 1.2552090 0.006085193 0.27272730
## 1616 1.2552090 0.006085193 0.27272730
## 1617 1.2552090 0.006085193 0.27272730
## 1618 1.2552090 0.006085193 0.27272730
## 1619 1.2552090 0.006085193 0.27272730
## 1620 1.2552090 0.006085193 0.27272730
## 1621 1.2552090 0.006085193 0.27272730
## 1622 1.2552090 0.006085193 0.27272730
## 1623 1.2552090 0.006085193 0.27272730
## 1624 1.2552090 0.006085193 0.27272730
## 1625 1.2552090 0.006085193 0.27272730
## 1626 1.2552090 0.006085193 0.27272730
## 1627 1.2552090 0.006085193 0.27272730
## 1628 1.2552090 0.006085193 0.27272730
## 1629 1.2552090 0.006085193 0.27272730
## 1630 1.2552090 0.006085193 0.27272730
## 1631 1.2552090 0.006085193 0.27272730
## 1632 1.2552090 0.006085193 0.27272730
## 1633 1.2552090 0.006085193 0.27272730
## 1634 1.2552090 0.006085193 0.27272730
## 1635 1.2552090 0.006085193 0.27272730
## 1636 1.2552090 0.006085193 0.27272730
## 1637 1.2552090 0.006085193 0.27272730
## 1638 1.0248330 0.111561900 0.22267210
## 1639 1.0315800 0.079107510 0.22413790
## 1640 1.0315800 0.079107510 0.22413790
## 1641 1.0320610 0.075050710 0.22424240
## 1642 1.0320610 0.075050710 0.22424240
## 1643 1.0405500 0.052738340 0.22608700
## 1644 1.1506090 0.010141990 0.25000000
## 1645 1.1506090 0.010141990 0.25000000
## 1646 1.1506090 0.010141990 0.25000000
## 1647 1.1506090 0.010141990 0.25000000
## 1648 1.1506090 0.010141990 0.25000000
## 1649 1.1506090 0.010141990 0.25000000
## 1650 1.1506090 0.010141990 0.25000000
## 1651 1.1506090 0.010141990 0.25000000
## 1652 1.1506090 0.010141990 0.25000000
## 1653 1.1506090 0.010141990 0.25000000
## 1654 1.1506090 0.010141990 0.25000000
## 1655 1.1506090 0.010141990 0.25000000
## 1656 1.1506090 0.010141990 0.25000000
## 1657 1.1506090 0.010141990 0.25000000
## 1658 1.1506090 0.010141990 0.25000000
## 1659 1.1506090 0.010141990 0.25000000
## 1660 1.1506090 0.010141990 0.25000000
## 1661 1.0771650 0.022312370 0.23404260
## 1662 1.0900500 0.018255580 0.23684210
## 1663 1.0900500 0.018255580 0.23684210
## 1664 1.1109320 0.014198780 0.24137930
## 1665 1.1109320 0.014198780 0.24137930
## 1666 1.1109320 0.014198780 0.24137930
## 1667 1.1109320 0.014198780 0.24137930
## 1668 1.1109320 0.014198780 0.24137930
## 1669 1.1109320 0.014198780 0.24137930
## 1670 1.1109320 0.014198780 0.24137930
## 1671 1.1109320 0.014198780 0.24137930
## 1672 1.0338800 0.062880320 0.22463770
## 1673 1.0166570 0.150101400 0.22089550
## 1674 1.0519850 0.032454360 0.22857140
## 1675 1.0519850 0.032454360 0.22857140
## 1676 1.0154370 0.156186600 0.22063040
## 1677 1.0303960 0.060851930 0.22388060
## 1678 1.0621000 0.024340770 0.23076920
## 1679 1.0621000 0.024340770 0.23076920
## 1680 1.0621000 0.024340770 0.23076920
## 1681 1.0621000 0.024340770 0.23076920
## 1682 1.0703340 0.020283980 0.23255810
## 1683 1.0703340 0.020283980 0.23255810
## 1684 1.0703340 0.020283980 0.23255810
## 1685 1.0159220 0.133874200 0.22073580
## 1686 1.0829260 0.016227180 0.23529410
## 1687 1.0829260 0.016227180 0.23529410
## 1688 1.0130360 0.164300200 0.22010870
## 1689 1.1045840 0.012170390 0.24000000
## 1690 1.1045840 0.012170390 0.24000000
## 1691 1.1045840 0.012170390 0.24000000
## 1692 1.1045840 0.012170390 0.24000000
## 1693 1.3149810 0.004056795 0.28571430
## 1694 1.3149810 0.004056795 0.28571430
## 1695 1.3149810 0.004056795 0.28571430
## 1696 1.3149810 0.004056795 0.28571430
## 1697 1.3149810 0.004056795 0.28571430
## 1698 1.3149810 0.004056795 0.28571430
## 1699 1.3149810 0.004056795 0.28571430
## 1700 1.3149810 0.004056795 0.28571430
## 1701 1.3149810 0.004056795 0.28571430
## 1702 1.3149810 0.004056795 0.28571430
## 1703 1.3149810 0.004056795 0.28571430
## 1704 1.3149810 0.004056795 0.28571430
## 1705 1.3149810 0.004056795 0.28571430
## 1706 1.3149810 0.004056795 0.28571430
## 1707 1.3149810 0.004056795 0.28571430
## 1708 1.3149810 0.004056795 0.28571430
## 1709 1.3149810 0.004056795 0.28571430
## 1710 1.3149810 0.004056795 0.28571430
## 1711 1.3149810 0.004056795 0.28571430
## 1712 1.3149810 0.004056795 0.28571430
## 1713 1.3149810 0.004056795 0.28571430
## 1714 1.3149810 0.004056795 0.28571430
## 1715 1.3149810 0.004056795 0.28571430
## 1716 1.3149810 0.004056795 0.28571430
## 1717 1.3149810 0.004056795 0.28571430
## 1718 1.3149810 0.004056795 0.28571430
## 1719 1.3149810 0.004056795 0.28571430
## 1720 1.3149810 0.004056795 0.28571430
## 1721 1.3149810 0.004056795 0.28571430
## 1722 1.3149810 0.004056795 0.28571430
## 1723 1.3149810 0.004056795 0.28571430
## 1724 1.3149810 0.004056795 0.28571430
## 1725 1.3149810 0.004056795 0.28571430
## 1726 1.3149810 0.004056795 0.28571430
## 1727 1.3149810 0.004056795 0.28571430
## 1728 1.3149810 0.004056795 0.28571430
## 1729 1.3149810 0.004056795 0.28571430
## 1730 1.3149810 0.004056795 0.28571430
## 1731 1.3149810 0.004056795 0.28571430
## 1732 1.3149810 0.004056795 0.28571430
## 1733 1.3149810 0.004056795 0.28571430
## 1734 1.3149810 0.004056795 0.28571430
## 1735 1.3149810 0.004056795 0.28571430
## 1736 1.3149810 0.004056795 0.28571430
## 1737 1.3149810 0.004056795 0.28571430
## 1738 1.3149810 0.004056795 0.28571430
## 1739 1.3149810 0.004056795 0.28571430
## 1740 1.3149810 0.004056795 0.28571430
## 1741 1.3149810 0.004056795 0.28571430
## 1742 1.3149810 0.004056795 0.28571430
## 1743 1.0331990 0.044624750 0.22448980
## 1744 1.1506090 0.008113590 0.25000000
## 1745 1.1506090 0.008113590 0.25000000
## 1746 1.1506090 0.008113590 0.25000000
## 1747 1.1506090 0.008113590 0.25000000
## 1748 1.1506090 0.008113590 0.25000000
## 1749 1.1506090 0.008113590 0.25000000
## 1750 1.1506090 0.008113590 0.25000000
## 1751 1.1506090 0.008113590 0.25000000
## 1752 1.1506090 0.008113590 0.25000000
## 1753 1.1506090 0.008113590 0.25000000
## 1754 1.1506090 0.008113590 0.25000000
## 1755 1.1506090 0.008113590 0.25000000
## 1756 1.1506090 0.008113590 0.25000000
## 1757 1.1506090 0.008113590 0.25000000
## 1758 1.1506090 0.008113590 0.25000000
## 1759 1.1506090 0.008113590 0.25000000
## 1760 1.1506090 0.008113590 0.25000000
## 1761 1.0227630 0.068965520 0.22222220
## 1762 1.0496780 0.026369170 0.22807020
## 1763 1.0496780 0.026369170 0.22807020
## 1764 1.0138230 0.127789000 0.22027970
## 1765 1.0043110 0.515213000 0.21821310
## 1766 1.0547240 0.022312370 0.22916670
## 1767 1.0547240 0.022312370 0.22916670
## 1768 1.0075380 0.253549700 0.21891420
## 1769 1.0277280 0.046653140 0.22330100
## 1770 1.0371680 0.032454360 0.22535210
## 1771 1.0171130 0.081135900 0.22099450
## 1772 1.0621000 0.018255580 0.23076920
## 1773 1.0621000 0.018255580 0.23076920
## 1774 1.0621000 0.018255580 0.23076920
## 1775 1.0085940 0.176470600 0.21914360
## 1776 1.0392590 0.028397570 0.22580650
## 1777 1.0739010 0.014198780 0.23333330
## 1778 1.0739010 0.014198780 0.23333330
## 1779 1.0739010 0.014198780 0.23333330
## 1780 1.0739010 0.014198780 0.23333330
## 1781 1.0739010 0.014198780 0.23333330
## 1782 1.0420610 0.024340770 0.22641510
## 1783 1.0420610 0.024340770 0.22641510
## 1784 1.0420610 0.024340770 0.22641510
## 1785 1.0076330 0.150101400 0.21893490
## 1786 1.0958180 0.010141990 0.23809520
## 1787 1.0958180 0.010141990 0.23809520
## 1788 1.0958180 0.010141990 0.23809520
## 1789 1.0958180 0.010141990 0.23809520
## 1790 1.0958180 0.010141990 0.23809520
## 1791 1.0958180 0.010141990 0.23809520
## 1792 1.0958180 0.010141990 0.23809520
## 1793 1.0958180 0.010141990 0.23809520
## 1794 1.0460080 0.020283980 0.22727270
## 1795 1.0460080 0.020283980 0.22727270
## 1796 1.0460080 0.020283980 0.22727270
## 1797 1.0460080 0.020283980 0.22727270
## 1798 1.0041670 0.267748500 0.21818180
## 1799 1.0072670 0.131845800 0.21885520
## 1800 1.0519850 0.016227180 0.22857140
## 1801 1.0519850 0.016227180 0.22857140
## 1802 1.0519850 0.016227180 0.22857140
## 1803 1.0519850 0.016227180 0.22857140
## 1804 1.1506090 0.006085193 0.25000000
## 1805 1.1506090 0.006085193 0.25000000
## 1806 1.1506090 0.006085193 0.25000000
## 1807 1.1506090 0.006085193 0.25000000
## 1808 1.1506090 0.006085193 0.25000000
## 1809 1.1506090 0.006085193 0.25000000
## 1810 1.1506090 0.006085193 0.25000000
## 1811 1.1506090 0.006085193 0.25000000
## 1812 1.1506090 0.006085193 0.25000000
## 1813 1.1506090 0.006085193 0.25000000
## 1814 1.1506090 0.006085193 0.25000000
## 1815 1.1506090 0.006085193 0.25000000
## 1816 1.1506090 0.006085193 0.25000000
## 1817 1.1506090 0.006085193 0.25000000
## 1818 1.1506090 0.006085193 0.25000000
## 1819 1.1506090 0.006085193 0.25000000
## 1820 1.1506090 0.006085193 0.25000000
## 1821 1.1506090 0.006085193 0.25000000
## 1822 1.1506090 0.006085193 0.25000000
## 1823 1.0173800 0.042596350 0.22105260
## 1824 1.0331990 0.022312370 0.22448980
## 1825 1.0331990 0.022312370 0.22448980
## 1826 1.0331990 0.022312370 0.22448980
## 1827 1.0331990 0.022312370 0.22448980
## 1828 1.0621000 0.012170390 0.23076920
## 1829 1.0621000 0.012170390 0.23076920
## 1830 1.0621000 0.012170390 0.23076920
## 1831 1.0621000 0.012170390 0.23076920
## 1832 1.0621000 0.012170390 0.23076920
## 1833 1.0227630 0.028397570 0.22222220
## 1834 1.0355480 0.018255580 0.22500000
## 1835 1.0355480 0.018255580 0.22500000
## 1836 1.0227630 0.024340770 0.22222220
## 1837 1.0227630 0.024340770 0.22222220
## 1838 1.5341450 0.002028398 0.33333330
## 1839 1.5341450 0.002028398 0.33333330
## 1840 1.5341450 0.002028398 0.33333330
## 1841 1.5341450 0.002028398 0.33333330
## 1842 1.5341450 0.002028398 0.33333330
## 1843 1.5341450 0.002028398 0.33333330
## 1844 1.5341450 0.002028398 0.33333330
## 1845 1.5341450 0.002028398 0.33333330
## 1846 1.5341450 0.002028398 0.33333330
## 1847 1.5341450 0.002028398 0.33333330
## 1848 1.5341450 0.002028398 0.33333330
## 1849 1.5341450 0.002028398 0.33333330
## 1850 1.5341450 0.002028398 0.33333330
## 1851 1.5341450 0.002028398 0.33333330
## 1852 1.5341450 0.002028398 0.33333330
## 1853 1.5341450 0.002028398 0.33333330
## 1854 1.5341450 0.002028398 0.33333330
## 1855 1.5341450 0.002028398 0.33333330
## 1856 1.5341450 0.002028398 0.33333330
## 1857 1.5341450 0.002028398 0.33333330
## 1858 1.5341450 0.002028398 0.33333330
## 1859 1.5341450 0.002028398 0.33333330
## 1860 1.5341450 0.002028398 0.33333330
## 1861 1.5341450 0.002028398 0.33333330
## 1862 1.5341450 0.002028398 0.33333330
## 1863 1.5341450 0.002028398 0.33333330
## 1864 1.5341450 0.002028398 0.33333330
## 1865 1.5341450 0.002028398 0.33333330
## 1866 1.5341450 0.002028398 0.33333330
## 1867 1.5341450 0.002028398 0.33333330
## 1868 1.5341450 0.002028398 0.33333330
## 1869 1.5341450 0.002028398 0.33333330
## 1870 1.5341450 0.002028398 0.33333330
## 1871 1.5341450 0.002028398 0.33333330
## 1872 1.5341450 0.002028398 0.33333330
## 1873 1.5341450 0.002028398 0.33333330
## 1874 1.5341450 0.002028398 0.33333330
## 1875 1.5341450 0.002028398 0.33333330
## 1876 1.5341450 0.002028398 0.33333330
## 1877 1.5341450 0.002028398 0.33333330
## 1878 1.5341450 0.002028398 0.33333330
## 1879 1.5341450 0.002028398 0.33333330
## 1880 1.5341450 0.002028398 0.33333330
## 1881 1.5341450 0.002028398 0.33333330
## 1882 1.5341450 0.002028398 0.33333330
## 1883 1.5341450 0.002028398 0.33333330
## 1884 1.5341450 0.002028398 0.33333330
## 1885 1.5341450 0.002028398 0.33333330
## 1886 1.5341450 0.002028398 0.33333330
## 1887 1.5341450 0.002028398 0.33333330
## 1888 1.5341450 0.002028398 0.33333330
## 1889 1.5341450 0.002028398 0.33333330
## 1890 1.5341450 0.002028398 0.33333330
## 1891 1.5341450 0.002028398 0.33333330
## 1892 1.5341450 0.002028398 0.33333330
## 1893 1.5341450 0.002028398 0.33333330
## 1894 1.5341450 0.002028398 0.33333330
## 1895 1.5341450 0.002028398 0.33333330
## 1896 1.5341450 0.002028398 0.33333330
## 1897 1.5341450 0.002028398 0.33333330
## 1898 1.5341450 0.002028398 0.33333330
## 1899 1.5341450 0.002028398 0.33333330
## 1900 1.5341450 0.002028398 0.33333330
## 1901 1.5341450 0.002028398 0.33333330
## 1902 1.5341450 0.002028398 0.33333330
## 1903 1.5341450 0.002028398 0.33333330
## 1904 1.5341450 0.002028398 0.33333330
## 1905 1.5341450 0.002028398 0.33333330
## 1906 1.5341450 0.002028398 0.33333330
## 1907 1.5341450 0.002028398 0.33333330
## 1908 1.5341450 0.002028398 0.33333330
## 1909 1.5341450 0.002028398 0.33333330
## 1910 1.5341450 0.002028398 0.33333330
## 1911 1.5341450 0.002028398 0.33333330
## 1912 1.5341450 0.002028398 0.33333330
## 1913 1.5341450 0.002028398 0.33333330
## 1914 1.5341450 0.002028398 0.33333330
## 1915 1.5341450 0.002028398 0.33333330
## 1916 1.5341450 0.002028398 0.33333330
## 1917 1.5341450 0.002028398 0.33333330
## 1918 1.5341450 0.002028398 0.33333330
## 1919 1.5341450 0.002028398 0.33333330
## 1920 1.5341450 0.002028398 0.33333330
## 1921 1.5341450 0.002028398 0.33333330
## 1922 1.5341450 0.002028398 0.33333330
## 1923 1.5341450 0.002028398 0.33333330
## 1924 1.5341450 0.002028398 0.33333330
## 1925 1.5341450 0.002028398 0.33333330
## 1926 1.5341450 0.002028398 0.33333330
## 1927 1.5341450 0.002028398 0.33333330
## 1928 1.5341450 0.002028398 0.33333330
## 1929 1.5341450 0.002028398 0.33333330
## 1930 1.5341450 0.002028398 0.33333330
## 1931 1.5341450 0.002028398 0.33333330
## 1932 1.5341450 0.002028398 0.33333330
## 1933 1.5341450 0.002028398 0.33333330
## 1934 1.5341450 0.002028398 0.33333330
## 1935 1.5341450 0.002028398 0.33333330
## 1936 1.5341450 0.002028398 0.33333330
## 1937 1.5341450 0.002028398 0.33333330
## 1938 1.5341450 0.002028398 0.33333330
## 1939 1.5341450 0.002028398 0.33333330
## 1940 1.5341450 0.002028398 0.33333330
## 1941 1.5341450 0.002028398 0.33333330
## 1942 1.5341450 0.002028398 0.33333330
## 1943 1.5341450 0.002028398 0.33333330
## 1944 1.5341450 0.002028398 0.33333330
## 1945 1.5341450 0.002028398 0.33333330
## 1946 1.5341450 0.002028398 0.33333330
## 1947 1.5341450 0.002028398 0.33333330
## 1948 1.5341450 0.002028398 0.33333330
## 1949 1.5341450 0.002028398 0.33333330
## 1950 1.5341450 0.002028398 0.33333330
## 1951 1.5341450 0.002028398 0.33333330
## 1952 1.5341450 0.002028398 0.33333330
## 1953 1.5341450 0.002028398 0.33333330
## 1954 1.5341450 0.002028398 0.33333330
## 1955 1.0152430 0.030425960 0.22058820
## 1956 1.0829260 0.008113590 0.23529410
## 1957 1.0829260 0.008113590 0.23529410
## 1958 1.0829260 0.008113590 0.23529410
## 1959 1.0829260 0.008113590 0.23529410
## 1960 1.0829260 0.008113590 0.23529410
## 1961 1.0829260 0.008113590 0.23529410
## 1962 1.0829260 0.008113590 0.23529410
## 1963 1.0829260 0.008113590 0.23529410
## 1964 1.0829260 0.008113590 0.23529410
## 1965 1.0829260 0.008113590 0.23529410
## 1966 1.0829260 0.008113590 0.23529410
## 1967 1.0829260 0.008113590 0.23529410
## 1968 1.0829260 0.008113590 0.23529410
## 1969 1.0013660 0.105476700 0.21757320
## 1970 1.0392590 0.014198780 0.22580650
## 1971 1.0392590 0.014198780 0.22580650
## 1972 1.0392590 0.014198780 0.22580650
## 1973 1.0102900 0.036511160 0.21951220
## 1974 1.0102900 0.036511160 0.21951220
## 1975 1.0140960 0.026369170 0.22033900
## 1976 0.9976374 0.152129800 0.21676300
## 1977 0.9974315 0.141987800 0.21671830
## 1978 0.9974315 0.141987800 0.21671830
## 1979 1.0227630 0.016227180 0.22222220
## 1980 1.0227630 0.016227180 0.22222220
## 1981 1.0125350 0.022312370 0.22000000
## 1982 1.0125350 0.022312370 0.22000000
## 1983 1.0125350 0.022312370 0.22000000
## 1984 1.0460080 0.010141990 0.22727270
## 1985 1.0460080 0.010141990 0.22727270
## 1986 1.0460080 0.010141990 0.22727270
## 1987 1.0460080 0.010141990 0.22727270
## 1988 1.0460080 0.010141990 0.22727270
## 1989 1.0460080 0.010141990 0.22727270
## 1990 1.0460080 0.010141990 0.22727270
## 1991 1.0460080 0.010141990 0.22727270
## 1992 1.0067820 0.028397570 0.21875000
## 1993 1.0067820 0.028397570 0.21875000
## 1994 0.9989779 0.056795130 0.21705430
## 1995 0.9965384 0.154158200 0.21652420
## 1996 0.9964033 0.170385400 0.21649480
## 1997 0.9977305 0.062880320 0.21678320
## 1998 0.9977305 0.062880320 0.21678320
## 1999 1.1506090 0.004056795 0.25000000
## 2000 1.1506090 0.004056795 0.25000000
## 2001 1.1506090 0.004056795 0.25000000
## 2002 1.1506090 0.004056795 0.25000000
## 2003 1.1506090 0.004056795 0.25000000
## 2004 1.1506090 0.004056795 0.25000000
## 2005 1.1506090 0.004056795 0.25000000
## 2006 1.1506090 0.004056795 0.25000000
## 2007 1.1506090 0.004056795 0.25000000
## 2008 1.1506090 0.004056795 0.25000000
## 2009 1.1506090 0.004056795 0.25000000
## 2010 1.1506090 0.004056795 0.25000000
## 2011 1.1506090 0.004056795 0.25000000
## 2012 1.1506090 0.004056795 0.25000000
## 2013 1.1506090 0.004056795 0.25000000
## 2014 1.1506090 0.004056795 0.25000000
## 2015 1.1506090 0.004056795 0.25000000
## 2016 1.1506090 0.004056795 0.25000000
## 2017 1.1506090 0.004056795 0.25000000
## 2018 1.1506090 0.004056795 0.25000000
## 2019 1.1506090 0.004056795 0.25000000
## 2020 1.1506090 0.004056795 0.25000000
## 2021 1.1506090 0.004056795 0.25000000
## 2022 1.1506090 0.004056795 0.25000000
## 2023 1.1506090 0.004056795 0.25000000
## 2024 1.1506090 0.004056795 0.25000000
## 2025 1.1506090 0.004056795 0.25000000
## 2026 1.1506090 0.004056795 0.25000000
## 2027 1.1506090 0.004056795 0.25000000
## 2028 1.1506090 0.004056795 0.25000000
## 2029 1.1506090 0.004056795 0.25000000
## 2030 1.1506090 0.004056795 0.25000000
## 2031 1.1506090 0.004056795 0.25000000
## 2032 1.1506090 0.004056795 0.25000000
## 2033 1.1506090 0.004056795 0.25000000
## 2034 1.1506090 0.004056795 0.25000000
## 2035 1.0041670 0.024340770 0.21818180
## 2036 1.0102900 0.018255580 0.21951220
## 2037 1.0102900 0.018255580 0.21951220
## 2038 1.0102900 0.018255580 0.21951220
## 2039 1.0102900 0.018255580 0.21951220
## 2040 1.0102900 0.018255580 0.21951220
## 2041 1.0102900 0.018255580 0.21951220
## 2042 1.0227630 0.012170390 0.22222220
## 2043 1.0227630 0.012170390 0.22222220
## 2044 1.0227630 0.012170390 0.22222220
## 2045 1.0227630 0.012170390 0.22222220
## 2046 1.0227630 0.012170390 0.22222220
## 2047 1.0227630 0.012170390 0.22222220
## 2048 0.9929909 0.127789000 0.21575340
## 2049 0.9926819 0.066937120 0.21568630
## 2050 0.9971941 0.026369170 0.21666670
## 2051 0.9971941 0.026369170 0.21666670
## 2052 0.9919039 0.050709940 0.21551720
## 2053 1.0005290 0.020283980 0.21739130
## 2054 1.0621000 0.006085193 0.23076920
## 2055 1.0621000 0.006085193 0.23076920
## 2056 1.0621000 0.006085193 0.23076920
## 2057 1.0621000 0.006085193 0.23076920
## 2058 1.0621000 0.006085193 0.23076920
## 2059 1.0621000 0.006085193 0.23076920
## 2060 1.0621000 0.006085193 0.23076920
## 2061 1.0621000 0.006085193 0.23076920
## 2062 1.0621000 0.006085193 0.23076920
## 2063 1.0621000 0.006085193 0.23076920
## 2064 1.0621000 0.006085193 0.23076920
## 2065 1.0621000 0.006085193 0.23076920
## 2066 1.0621000 0.006085193 0.23076920
## 2067 1.0621000 0.006085193 0.23076920
## 2068 1.0621000 0.006085193 0.23076920
## 2069 1.0621000 0.006085193 0.23076920
## 2070 1.0621000 0.006085193 0.23076920
## 2071 1.0621000 0.006085193 0.23076920
## 2072 1.0621000 0.006085193 0.23076920
## 2073 1.0621000 0.006085193 0.23076920
## 2074 1.0621000 0.006085193 0.23076920
## 2075 1.0621000 0.006085193 0.23076920
## 2076 1.0621000 0.006085193 0.23076920
## 2077 1.0621000 0.006085193 0.23076920
## 2078 1.0621000 0.006085193 0.23076920
## 2079 1.0621000 0.006085193 0.23076920
## 2080 1.0621000 0.006085193 0.23076920
## 2081 1.0621000 0.006085193 0.23076920
## 2082 1.0621000 0.006085193 0.23076920
## 2083 1.0621000 0.006085193 0.23076920
## 2084 1.0621000 0.006085193 0.23076920
## 2085 1.0067820 0.014198780 0.21875000
## 2086 0.9895233 0.087221100 0.21500000
## 2087 0.9889528 0.052738340 0.21487600
## 2088 0.9926819 0.022312370 0.21568630
## 2089 0.9885510 0.123732300 0.21478870
## 2090 0.9862359 0.042596350 0.21428570
## 2091 0.9951209 0.016227180 0.21621620
## 2092 0.9951209 0.016227180 0.21621620
## 2093 1.0227630 0.008113590 0.22222220
## 2094 1.0227630 0.008113590 0.22222220
## 2095 1.0227630 0.008113590 0.22222220
## 2096 1.0227630 0.008113590 0.22222220
## 2097 1.0227630 0.008113590 0.22222220
## 2098 1.0227630 0.008113590 0.22222220
## 2099 1.0227630 0.008113590 0.22222220
## 2100 1.0227630 0.008113590 0.22222220
## 2101 1.0227630 0.008113590 0.22222220
## 2102 1.0227630 0.008113590 0.22222220
## 2103 1.0227630 0.008113590 0.22222220
## 2104 0.9862359 0.024340770 0.21428570
## 2105 0.9834261 0.050709940 0.21367520
## 2106 0.9830442 0.044624750 0.21359220
## 2107 0.9830442 0.044624750 0.21359220
## 2108 0.9830442 0.044624750 0.21359220
## 2109 0.9830442 0.044624750 0.21359220
## 2110 0.9830442 0.044624750 0.21359220
## 2111 0.9818526 0.032454360 0.21333330
## 2112 0.9862359 0.018255580 0.21428570
## 2113 1.0005290 0.010141990 0.21739130
## 2114 1.0005290 0.010141990 0.21739130
## 2115 1.0005290 0.010141990 0.21739130
## 2116 1.0005290 0.010141990 0.21739130
## 2117 1.0005290 0.010141990 0.21739130
## 2118 1.0005290 0.010141990 0.21739130
## 2119 0.9892299 0.239350900 0.21493620
## 2120 0.9801480 0.046653140 0.21296300
## 2121 0.9780172 0.034482760 0.21250000
## 2122 0.9780172 0.034482760 0.21250000
## 2123 0.9812296 0.085192700 0.21319800
## 2124 0.9862359 0.012170390 0.21428570
## 2125 0.9862359 0.012170390 0.21428570
## 2126 0.9862359 0.012170390 0.21428570
## 2127 0.9862359 0.012170390 0.21428570
## 2128 0.9762739 0.028397570 0.21212120
## 2129 0.9746331 0.036511160 0.21176470
## 2130 0.9735918 0.022312370 0.21153850
## 2131 0.9762739 0.014198780 0.21212120
## 2132 0.9762739 0.014198780 0.21212120
## 2133 0.9762739 0.014198780 0.21212120
## 2134 0.9762739 0.014198780 0.21212120
## 2135 0.9762739 0.014198780 0.21212120
## 2136 0.9762739 0.014198780 0.21212120
## 2137 0.9762739 0.014198780 0.21212120
## 2138 0.9762739 0.014198780 0.21212120
## 2139 0.9762739 0.014198780 0.21212120
## 2140 0.9762739 0.014198780 0.21212120
## 2141 0.9716250 0.038539550 0.21111110
## 2142 0.9828114 0.166328600 0.21354170
## 2143 0.9689335 0.032454360 0.21052630
## 2144 0.9689335 0.016227180 0.21052630
## 2145 0.9689335 0.016227180 0.21052630
## 2146 0.9689335 0.016227180 0.21052630
## 2147 0.9891646 0.391480700 0.21492200
## 2148 0.9689335 0.048681540 0.21052630
## 2149 0.9633002 0.018255580 0.20930230
## 2150 0.9633002 0.018255580 0.20930230
## 2151 0.9665112 0.042596350 0.21000000
## 2152 1.0227630 0.004056795 0.22222220
## 2153 1.0227630 0.004056795 0.22222220
## 2154 1.0227630 0.004056795 0.22222220
## 2155 1.0227630 0.004056795 0.22222220
## 2156 1.0227630 0.004056795 0.22222220
## 2157 1.0227630 0.004056795 0.22222220
## 2158 1.0227630 0.004056795 0.22222220
## 2159 1.0227630 0.004056795 0.22222220
## 2160 1.0227630 0.004056795 0.22222220
## 2161 1.0227630 0.004056795 0.22222220
## 2162 1.0227630 0.004056795 0.22222220
## 2163 1.0227630 0.004056795 0.22222220
## 2164 1.0227630 0.004056795 0.22222220
## 2165 1.0227630 0.004056795 0.22222220
## 2166 1.0227630 0.004056795 0.22222220
## 2167 1.0227630 0.004056795 0.22222220
## 2168 1.0227630 0.004056795 0.22222220
## 2169 1.0227630 0.004056795 0.22222220
## 2170 1.0227630 0.004056795 0.22222220
## 2171 1.0227630 0.004056795 0.22222220
## 2172 1.0227630 0.004056795 0.22222220
## 2173 1.0227630 0.004056795 0.22222220
## 2174 1.0227630 0.004056795 0.22222220
## 2175 1.0227630 0.004056795 0.22222220
## 2176 1.0227630 0.004056795 0.22222220
## 2177 1.0227630 0.004056795 0.22222220
## 2178 1.0227630 0.004056795 0.22222220
## 2179 1.0227630 0.004056795 0.22222220
## 2180 1.0227630 0.004056795 0.22222220
## 2181 1.0227630 0.004056795 0.22222220
## 2182 1.0227630 0.004056795 0.22222220
## 2183 1.0227630 0.004056795 0.22222220
## 2184 1.0227630 0.004056795 0.22222220
## 2185 1.0227630 0.004056795 0.22222220
## 2186 1.0227630 0.004056795 0.22222220
## 2187 1.0227630 0.004056795 0.22222220
## 2188 1.0227630 0.004056795 0.22222220
## 2189 1.0227630 0.004056795 0.22222220
## 2190 1.0227630 0.004056795 0.22222220
## 2191 1.0227630 0.004056795 0.22222220
## 2192 0.9862359 0.006085193 0.21428570
## 2193 0.9862359 0.006085193 0.21428570
## 2194 0.9862359 0.006085193 0.21428570
## 2195 0.9862359 0.006085193 0.21428570
## 2196 0.9862359 0.006085193 0.21428570
## 2197 0.9862359 0.006085193 0.21428570
## 2198 0.9862359 0.006085193 0.21428570
## 2199 0.9862359 0.006085193 0.21428570
## 2200 0.9862359 0.006085193 0.21428570
## 2201 0.9862359 0.006085193 0.21428570
## 2202 0.9862359 0.006085193 0.21428570
## 2203 0.9862359 0.006085193 0.21428570
## 2204 0.9862359 0.006085193 0.21428570
## 2205 0.9862359 0.006085193 0.21428570
## 2206 0.9862359 0.006085193 0.21428570
## 2207 0.9862359 0.006085193 0.21428570
## 2208 0.9862359 0.006085193 0.21428570
## 2209 0.9862359 0.006085193 0.21428570
## 2210 0.9862359 0.006085193 0.21428570
## 2211 0.9617026 0.028397570 0.20895520
## 2212 0.9633002 0.036511160 0.20930230
## 2213 0.9689335 0.008113590 0.21052630
## 2214 0.9689335 0.008113590 0.21052630
## 2215 0.9689335 0.008113590 0.21052630
## 2216 0.9689335 0.008113590 0.21052630
## 2217 0.9689335 0.008113590 0.21052630
## 2218 0.9689335 0.008113590 0.21052630
## 2219 0.9689335 0.008113590 0.21052630
## 2220 0.9702429 0.079107510 0.21081080
## 2221 0.9650265 0.052738340 0.20967740
## 2222 0.9588404 0.010141990 0.20833330
## 2223 0.9588404 0.010141990 0.20833330
## 2224 0.9588404 0.010141990 0.20833330
## 2225 0.9588404 0.010141990 0.20833330
## 2226 0.9588404 0.010141990 0.20833330
## 2227 0.9588404 0.010141990 0.20833330
## 2228 0.9588404 0.010141990 0.20833330
## 2229 0.9588404 0.010141990 0.20833330
## 2230 0.9588404 0.010141990 0.20833330
## 2231 0.9588404 0.010141990 0.20833330
## 2232 0.9623271 0.046653140 0.20909090
## 2233 0.9623271 0.046653140 0.20909090
## 2234 1.1506090 0.002028398 0.25000000
## 2235 1.1506090 0.002028398 0.25000000
## 2236 1.1506090 0.002028398 0.25000000
## 2237 1.1506090 0.002028398 0.25000000
## 2238 1.1506090 0.002028398 0.25000000
## 2239 1.1506090 0.002028398 0.25000000
## 2240 1.1506090 0.002028398 0.25000000
## 2241 1.1506090 0.002028398 0.25000000
## 2242 1.1506090 0.002028398 0.25000000
## 2243 1.1506090 0.002028398 0.25000000
## 2244 1.1506090 0.002028398 0.25000000
## 2245 1.1506090 0.002028398 0.25000000
## 2246 1.1506090 0.002028398 0.25000000
## 2247 1.1506090 0.002028398 0.25000000
## 2248 1.1506090 0.002028398 0.25000000
## 2249 1.1506090 0.002028398 0.25000000
## 2250 1.1506090 0.002028398 0.25000000
## 2251 1.1506090 0.002028398 0.25000000
## 2252 1.1506090 0.002028398 0.25000000
## 2253 1.1506090 0.002028398 0.25000000
## 2254 1.1506090 0.002028398 0.25000000
## 2255 1.1506090 0.002028398 0.25000000
## 2256 1.1506090 0.002028398 0.25000000
## 2257 1.1506090 0.002028398 0.25000000
## 2258 1.1506090 0.002028398 0.25000000
## 2259 1.1506090 0.002028398 0.25000000
## 2260 1.1506090 0.002028398 0.25000000
## 2261 1.1506090 0.002028398 0.25000000
## 2262 1.1506090 0.002028398 0.25000000
## 2263 1.1506090 0.002028398 0.25000000
## 2264 1.1506090 0.002028398 0.25000000
## 2265 1.1506090 0.002028398 0.25000000
## 2266 1.1506090 0.002028398 0.25000000
## 2267 1.1506090 0.002028398 0.25000000
## 2268 1.1506090 0.002028398 0.25000000
## 2269 1.1506090 0.002028398 0.25000000
## 2270 1.1506090 0.002028398 0.25000000
## 2271 1.1506090 0.002028398 0.25000000
## 2272 1.1506090 0.002028398 0.25000000
## 2273 1.1506090 0.002028398 0.25000000
## 2274 1.1506090 0.002028398 0.25000000
## 2275 1.1506090 0.002028398 0.25000000
## 2276 1.1506090 0.002028398 0.25000000
## 2277 1.1506090 0.002028398 0.25000000
## 2278 1.1506090 0.002028398 0.25000000
## 2279 1.1506090 0.002028398 0.25000000
## 2280 1.1506090 0.002028398 0.25000000
## 2281 1.1506090 0.002028398 0.25000000
## 2282 1.1506090 0.002028398 0.25000000
## 2283 1.1506090 0.002028398 0.25000000
## 2284 1.1506090 0.002028398 0.25000000
## 2285 1.1506090 0.002028398 0.25000000
## 2286 1.1506090 0.002028398 0.25000000
## 2287 1.1506090 0.002028398 0.25000000
## 2288 1.1506090 0.002028398 0.25000000
## 2289 1.1506090 0.002028398 0.25000000
## 2290 1.1506090 0.002028398 0.25000000
## 2291 1.1506090 0.002028398 0.25000000
## 2292 1.1506090 0.002028398 0.25000000
## 2293 1.1506090 0.002028398 0.25000000
## 2294 1.1506090 0.002028398 0.25000000
## 2295 1.1506090 0.002028398 0.25000000
## 2296 1.1506090 0.002028398 0.25000000
## 2297 1.1506090 0.002028398 0.25000000
## 2298 1.1506090 0.002028398 0.25000000
## 2299 1.1506090 0.002028398 0.25000000
## 2300 1.1506090 0.002028398 0.25000000
## 2301 1.1506090 0.002028398 0.25000000
## 2302 1.1506090 0.002028398 0.25000000
## 2303 1.1506090 0.002028398 0.25000000
## 2304 1.1506090 0.002028398 0.25000000
## 2305 1.1506090 0.002028398 0.25000000
## 2306 1.1506090 0.002028398 0.25000000
## 2307 1.1506090 0.002028398 0.25000000
## 2308 1.1506090 0.002028398 0.25000000
## 2309 1.1506090 0.002028398 0.25000000
## 2310 1.1506090 0.002028398 0.25000000
## 2311 1.1506090 0.002028398 0.25000000
## 2312 1.1506090 0.002028398 0.25000000
## 2313 1.1506090 0.002028398 0.25000000
## 2314 1.1506090 0.002028398 0.25000000
## 2315 1.1506090 0.002028398 0.25000000
## 2316 1.1506090 0.002028398 0.25000000
## 2317 1.1506090 0.002028398 0.25000000
## 2318 1.1506090 0.002028398 0.25000000
## 2319 1.1506090 0.002028398 0.25000000
## 2320 1.1506090 0.002028398 0.25000000
## 2321 1.1506090 0.002028398 0.25000000
## 2322 1.1506090 0.002028398 0.25000000
## 2323 1.1506090 0.002028398 0.25000000
## 2324 1.1506090 0.002028398 0.25000000
## 2325 1.1506090 0.002028398 0.25000000
## 2326 1.1506090 0.002028398 0.25000000
## 2327 1.1506090 0.002028398 0.25000000
## 2328 1.1506090 0.002028398 0.25000000
## 2329 1.1506090 0.002028398 0.25000000
## 2330 1.1506090 0.002028398 0.25000000
## 2331 1.1506090 0.002028398 0.25000000
## 2332 1.1506090 0.002028398 0.25000000
## 2333 1.1506090 0.002028398 0.25000000
## 2334 1.1506090 0.002028398 0.25000000
## 2335 1.1506090 0.002028398 0.25000000
## 2336 1.1506090 0.002028398 0.25000000
## 2337 1.1506090 0.002028398 0.25000000
## 2338 1.1506090 0.002028398 0.25000000
## 2339 1.1506090 0.002028398 0.25000000
## 2340 1.1506090 0.002028398 0.25000000
## 2341 1.1506090 0.002028398 0.25000000
## 2342 1.1506090 0.002028398 0.25000000
## 2343 1.1506090 0.002028398 0.25000000
## 2344 1.1506090 0.002028398 0.25000000
## 2345 1.1506090 0.002028398 0.25000000
## 2346 1.1506090 0.002028398 0.25000000
## 2347 1.1506090 0.002028398 0.25000000
## 2348 1.1506090 0.002028398 0.25000000
## 2349 1.1506090 0.002028398 0.25000000
## 2350 1.1506090 0.002028398 0.25000000
## 2351 1.1506090 0.002028398 0.25000000
## 2352 1.1506090 0.002028398 0.25000000
## 2353 1.1506090 0.002028398 0.25000000
## 2354 1.1506090 0.002028398 0.25000000
## 2355 1.1506090 0.002028398 0.25000000
## 2356 1.1506090 0.002028398 0.25000000
## 2357 0.9563499 0.032454360 0.20779220
## 2358 0.9522277 0.012170390 0.20689660
## 2359 0.9522277 0.012170390 0.20689660
## 2360 0.9522277 0.012170390 0.20689660
## 2361 0.9522277 0.012170390 0.20689660
## 2362 0.9522277 0.012170390 0.20689660
## 2363 0.9522277 0.012170390 0.20689660
## 2364 0.9522277 0.024340770 0.20689660
## 2365 0.9522277 0.024340770 0.20689660
## 2366 0.9475600 0.014198780 0.20588240
## 2367 0.9475600 0.014198780 0.20588240
## 2368 0.9475600 0.014198780 0.20588240
## 2369 0.9475600 0.014198780 0.20588240
## 2370 0.9475600 0.014198780 0.20588240
## 2371 0.9475600 0.014198780 0.20588240
## 2372 0.9475600 0.014198780 0.20588240
## 2373 0.9497086 0.026369170 0.20634920
## 2374 0.9497086 0.026369170 0.20634920
## 2375 0.9497086 0.026369170 0.20634920
## 2376 0.9678939 0.099391480 0.21030040
## 2377 0.9678939 0.099391480 0.21030040
## 2378 0.9440890 0.016227180 0.20512820
## 2379 0.9730861 0.150101400 0.21142860
## 2380 0.9795721 0.255578100 0.21283780
## 2381 0.9795721 0.255578100 0.21283780
## 2382 0.9536575 0.046653140 0.20720720
## 2383 0.9536575 0.046653140 0.20720720
## 2384 0.9536575 0.046653140 0.20720720
## 2385 0.9609478 0.077079110 0.20879120
## 2386 0.9457056 0.030425960 0.20547950
## 2387 0.9457056 0.030425960 0.20547950
## 2388 0.9392723 0.020283980 0.20408160
## 2389 0.9375329 0.022312370 0.20370370
## 2390 0.9475600 0.042596350 0.20588240
## 2391 0.9360883 0.024340770 0.20338980
## 2392 0.9414070 0.036511160 0.20454550
## 2393 0.9511697 0.062880320 0.20666670
## 2394 0.9204868 0.010141990 0.20000000
## 2395 0.9204868 0.010141990 0.20000000
## 2396 0.9204868 0.010141990 0.20000000
## 2397 0.9204868 0.010141990 0.20000000
## 2398 0.9204868 0.010141990 0.20000000
## 2399 0.9204868 0.008113590 0.20000000
## 2400 0.9204868 0.008113590 0.20000000
## 2401 0.9204868 0.008113590 0.20000000
## 2402 0.9204868 0.008113590 0.20000000
## 2403 0.9204868 0.008113590 0.20000000
## 2404 0.9204868 0.008113590 0.20000000
## 2405 0.9204868 0.012170390 0.20000000
## 2406 0.9204868 0.012170390 0.20000000
## 2407 0.9204868 0.012170390 0.20000000
## 2408 0.9402822 0.038539550 0.20430110
## 2409 0.9204868 0.014198780 0.20000000
## 2410 0.9204868 0.006085193 0.20000000
## 2411 0.9204868 0.006085193 0.20000000
## 2412 0.9204868 0.006085193 0.20000000
## 2413 0.9204868 0.006085193 0.20000000
## 2414 0.9204868 0.006085193 0.20000000
## 2415 0.9204868 0.006085193 0.20000000
## 2416 0.9204868 0.006085193 0.20000000
## 2417 0.9204868 0.006085193 0.20000000
## 2418 0.9204868 0.006085193 0.20000000
## 2419 0.9204868 0.006085193 0.20000000
## 2420 0.9204868 0.006085193 0.20000000
## 2421 0.9204868 0.006085193 0.20000000
## 2422 0.9204868 0.006085193 0.20000000
## 2423 0.9204868 0.006085193 0.20000000
## 2424 0.9204868 0.006085193 0.20000000
## 2425 0.9204868 0.006085193 0.20000000
## 2426 0.9204868 0.006085193 0.20000000
## 2427 0.9204868 0.016227180 0.20000000
## 2428 0.9204868 0.016227180 0.20000000
## 2429 0.9204868 0.016227180 0.20000000
## 2430 0.9204868 0.016227180 0.20000000
## 2431 0.9204868 0.016227180 0.20000000
## 2432 0.9204868 0.016227180 0.20000000
## 2433 0.9204868 0.016227180 0.20000000
## 2434 0.9204868 0.018255580 0.20000000
## 2435 0.9204868 0.018255580 0.20000000
## 2436 0.9204868 0.020283980 0.20000000
## 2437 0.9204868 0.020283980 0.20000000
## 2438 0.9422306 0.052738340 0.20472440
## 2439 0.9204868 0.004056795 0.20000000
## 2440 0.9204868 0.004056795 0.20000000
## 2441 0.9204868 0.004056795 0.20000000
## 2442 0.9204868 0.004056795 0.20000000
## 2443 0.9204868 0.004056795 0.20000000
## 2444 0.9204868 0.004056795 0.20000000
## 2445 0.9204868 0.004056795 0.20000000
## 2446 0.9204868 0.004056795 0.20000000
## 2447 0.9204868 0.004056795 0.20000000
## 2448 0.9204868 0.004056795 0.20000000
## 2449 0.9204868 0.004056795 0.20000000
## 2450 0.9204868 0.004056795 0.20000000
## 2451 0.9204868 0.004056795 0.20000000
## 2452 0.9204868 0.004056795 0.20000000
## 2453 0.9204868 0.004056795 0.20000000
## 2454 0.9204868 0.004056795 0.20000000
## 2455 0.9204868 0.004056795 0.20000000
## 2456 0.9204868 0.004056795 0.20000000
## 2457 0.9204868 0.004056795 0.20000000
## 2458 0.9204868 0.004056795 0.20000000
## 2459 0.9204868 0.004056795 0.20000000
## 2460 0.9204868 0.004056795 0.20000000
## 2461 0.9204868 0.004056795 0.20000000
## 2462 0.9204868 0.004056795 0.20000000
## 2463 0.9204868 0.004056795 0.20000000
## 2464 0.9204868 0.004056795 0.20000000
## 2465 0.9204868 0.004056795 0.20000000
## 2466 0.9204868 0.004056795 0.20000000
## 2467 0.9204868 0.004056795 0.20000000
## 2468 0.9204868 0.004056795 0.20000000
## 2469 0.9204868 0.004056795 0.20000000
## 2470 0.9204868 0.004056795 0.20000000
## 2471 0.9204868 0.004056795 0.20000000
## 2472 0.9204868 0.004056795 0.20000000
## 2473 0.9204868 0.004056795 0.20000000
## 2474 0.9204868 0.004056795 0.20000000
## 2475 0.9204868 0.004056795 0.20000000
## 2476 0.9204868 0.004056795 0.20000000
## 2477 0.9204868 0.004056795 0.20000000
## 2478 0.9204868 0.004056795 0.20000000
## 2479 0.9204868 0.004056795 0.20000000
## 2480 0.9204868 0.004056795 0.20000000
## 2481 0.9204868 0.004056795 0.20000000
## 2482 0.9204868 0.004056795 0.20000000
## 2483 0.9204868 0.004056795 0.20000000
## 2484 0.9204868 0.004056795 0.20000000
## 2485 0.9204868 0.004056795 0.20000000
## 2486 0.9204868 0.004056795 0.20000000
## 2487 0.9204868 0.004056795 0.20000000
## 2488 0.9204868 0.004056795 0.20000000
## 2489 0.9204868 0.004056795 0.20000000
## 2490 0.9204868 0.004056795 0.20000000
## 2491 0.9204868 0.004056795 0.20000000
## 2492 0.9204868 0.004056795 0.20000000
## 2493 0.9204868 0.004056795 0.20000000
## 2494 0.9204868 0.004056795 0.20000000
## 2495 0.9204868 0.004056795 0.20000000
## 2496 0.9204868 0.004056795 0.20000000
## 2497 0.9204868 0.004056795 0.20000000
## 2498 0.9204868 0.004056795 0.20000000
## 2499 0.9204868 0.004056795 0.20000000
## 2500 0.9204868 0.004056795 0.20000000
## 2501 0.9314450 0.034482760 0.20238100
## 2502 0.9729978 0.255578100 0.21140940
## 2503 0.9448706 0.062880320 0.20529800
## 2504 0.9308294 0.036511160 0.20224720
## 2505 0.9308294 0.036511160 0.20224720
## 2506 0.9204868 0.024340770 0.20000000
## 2507 0.9204868 0.024340770 0.20000000
## 2508 0.9489555 0.081135900 0.20618560
## 2509 0.9204868 0.026369170 0.20000000
## 2510 0.9204868 0.026369170 0.20000000
## 2511 0.9204868 0.026369170 0.20000000
## 2512 0.9360883 0.048681540 0.20338980
## 2513 0.9399337 0.058823530 0.20422540
## 2514 0.9399337 0.058823530 0.20422540
## 2515 0.9956555 0.918864100 0.21633240
## 2516 0.9297847 0.040567950 0.20202020
## 2517 0.9493810 0.093306290 0.20627800
## 2518 0.9204868 0.032454360 0.20000000
## 2519 0.9204868 0.032454360 0.20000000
## 2520 0.9204868 0.032454360 0.20000000
## 2521 0.9549268 0.123732300 0.20748300
## 2522 0.9487474 0.095334690 0.20614040
## 2523 0.8949177 0.014198780 0.19444440
## 2524 0.8907937 0.012170390 0.19354840
## 2525 0.8907937 0.012170390 0.19354840
## 2526 0.8907937 0.012170390 0.19354840
## 2527 0.9823222 0.509127800 0.21343540
## 2528 0.8980359 0.016227180 0.19512200
## 2529 0.8980359 0.016227180 0.19512200
## 2530 0.8980359 0.016227180 0.19512200
## 2531 0.9285613 0.046653140 0.20175440
## 2532 0.9004762 0.018255580 0.19565220
## 2533 0.9004762 0.018255580 0.19565220
## 2534 0.8850835 0.010141990 0.19230770
## 2535 0.8850835 0.010141990 0.19230770
## 2536 0.8850835 0.010141990 0.19230770
## 2537 0.8850835 0.010141990 0.19230770
## 2538 0.8850835 0.010141990 0.19230770
## 2539 0.8850835 0.010141990 0.19230770
## 2540 0.8850835 0.010141990 0.19230770
## 2541 0.8850835 0.010141990 0.19230770
## 2542 0.9204868 0.036511160 0.20000000
## 2543 0.9024381 0.020283980 0.19607840
## 2544 0.9040496 0.022312370 0.19642860
## 2545 0.9689335 0.259634900 0.21052630
## 2546 0.8766541 0.008113590 0.19047620
## 2547 0.8766541 0.008113590 0.19047620
## 2548 0.8766541 0.008113590 0.19047620
## 2549 0.8766541 0.008113590 0.19047620
## 2550 0.8766541 0.008113590 0.19047620
## 2551 0.8766541 0.008113590 0.19047620
## 2552 0.8766541 0.008113590 0.19047620
## 2553 0.9204868 0.038539550 0.20000000
## 2554 0.9053969 0.024340770 0.19672130
## 2555 0.9065400 0.026369170 0.19696970
## 2556 0.9204868 0.002028398 0.20000000
## 2557 0.9204868 0.002028398 0.20000000
## 2558 0.9204868 0.002028398 0.20000000
## 2559 0.9204868 0.002028398 0.20000000
## 2560 0.9204868 0.002028398 0.20000000
## 2561 0.9204868 0.002028398 0.20000000
## 2562 0.9204868 0.002028398 0.20000000
## 2563 0.9204868 0.002028398 0.20000000
## 2564 0.9204868 0.002028398 0.20000000
## 2565 0.9204868 0.002028398 0.20000000
## 2566 0.9204868 0.002028398 0.20000000
## 2567 0.9204868 0.002028398 0.20000000
## 2568 0.9204868 0.002028398 0.20000000
## 2569 0.9204868 0.002028398 0.20000000
## 2570 0.9204868 0.002028398 0.20000000
## 2571 0.9204868 0.002028398 0.20000000
## 2572 0.9204868 0.002028398 0.20000000
## 2573 0.9204868 0.002028398 0.20000000
## 2574 0.9204868 0.002028398 0.20000000
## 2575 0.9204868 0.002028398 0.20000000
## 2576 0.9204868 0.002028398 0.20000000
## 2577 0.9204868 0.002028398 0.20000000
## 2578 0.9204868 0.002028398 0.20000000
## 2579 0.9204868 0.002028398 0.20000000
## 2580 0.9204868 0.002028398 0.20000000
## 2581 0.9204868 0.002028398 0.20000000
## 2582 0.9204868 0.002028398 0.20000000
## 2583 0.9204868 0.002028398 0.20000000
## 2584 0.9204868 0.002028398 0.20000000
## 2585 0.9204868 0.002028398 0.20000000
## 2586 0.9204868 0.002028398 0.20000000
## 2587 0.9204868 0.002028398 0.20000000
## 2588 0.9204868 0.002028398 0.20000000
## 2589 0.9204868 0.002028398 0.20000000
## 2590 0.9204868 0.002028398 0.20000000
## 2591 0.9204868 0.002028398 0.20000000
## 2592 0.9204868 0.002028398 0.20000000
## 2593 0.9204868 0.002028398 0.20000000
## 2594 0.9204868 0.002028398 0.20000000
## 2595 0.9204868 0.002028398 0.20000000
## 2596 0.9204868 0.002028398 0.20000000
## 2597 0.9204868 0.002028398 0.20000000
## 2598 0.9204868 0.002028398 0.20000000
## 2599 0.9204868 0.002028398 0.20000000
## 2600 0.9204868 0.002028398 0.20000000
## 2601 0.9204868 0.002028398 0.20000000
## 2602 0.9204868 0.002028398 0.20000000
## 2603 0.9204868 0.002028398 0.20000000
## 2604 0.9204868 0.002028398 0.20000000
## 2605 0.9204868 0.002028398 0.20000000
## 2606 0.9204868 0.002028398 0.20000000
## 2607 0.9204868 0.002028398 0.20000000
## 2608 0.9204868 0.002028398 0.20000000
## 2609 0.9204868 0.002028398 0.20000000
## 2610 0.9204868 0.002028398 0.20000000
## 2611 0.9204868 0.002028398 0.20000000
## 2612 0.9204868 0.002028398 0.20000000
## 2613 0.9204868 0.002028398 0.20000000
## 2614 0.9204868 0.002028398 0.20000000
## 2615 0.9204868 0.002028398 0.20000000
## 2616 0.9204868 0.002028398 0.20000000
## 2617 0.9204868 0.002028398 0.20000000
## 2618 0.9204868 0.002028398 0.20000000
## 2619 0.9204868 0.002028398 0.20000000
## 2620 0.9204868 0.002028398 0.20000000
## 2621 0.9204868 0.002028398 0.20000000
## 2622 0.9204868 0.002028398 0.20000000
## 2623 0.9204868 0.002028398 0.20000000
## 2624 0.9204868 0.002028398 0.20000000
## 2625 0.9204868 0.002028398 0.20000000
## 2626 0.9204868 0.002028398 0.20000000
## 2627 0.9204868 0.002028398 0.20000000
## 2628 0.9204868 0.002028398 0.20000000
## 2629 0.9204868 0.002028398 0.20000000
## 2630 0.9204868 0.002028398 0.20000000
## 2631 0.9204868 0.002028398 0.20000000
## 2632 0.9204868 0.002028398 0.20000000
## 2633 0.9204868 0.002028398 0.20000000
## 2634 0.9204868 0.002028398 0.20000000
## 2635 0.9204868 0.002028398 0.20000000
## 2636 0.9204868 0.002028398 0.20000000
## 2637 0.9204868 0.002028398 0.20000000
## 2638 0.9204868 0.002028398 0.20000000
## 2639 0.9204868 0.002028398 0.20000000
## 2640 0.9204868 0.002028398 0.20000000
## 2641 0.9204868 0.002028398 0.20000000
## 2642 0.9204868 0.002028398 0.20000000
## 2643 0.9204868 0.002028398 0.20000000
## 2644 0.9204868 0.002028398 0.20000000
## 2645 0.9204868 0.002028398 0.20000000
## 2646 0.9204868 0.002028398 0.20000000
## 2647 0.9204868 0.002028398 0.20000000
## 2648 0.9204868 0.002028398 0.20000000
## 2649 0.9204868 0.002028398 0.20000000
## 2650 0.9204868 0.002028398 0.20000000
## 2651 0.9204868 0.002028398 0.20000000
## 2652 0.9204868 0.002028398 0.20000000
## 2653 0.9204868 0.042596350 0.20000000
## 2654 0.8629564 0.006085193 0.18750000
## 2655 0.8629564 0.006085193 0.18750000
## 2656 0.8629564 0.006085193 0.18750000
## 2657 0.8629564 0.006085193 0.18750000
## 2658 0.8629564 0.006085193 0.18750000
## 2659 0.8629564 0.006085193 0.18750000
## 2660 0.8629564 0.006085193 0.18750000
## 2661 0.8629564 0.006085193 0.18750000
## 2662 0.8629564 0.006085193 0.18750000
## 2663 0.9083751 0.030425960 0.19736840
## 2664 0.9806545 0.509127800 0.21307300
## 2665 0.9317811 0.066937120 0.20245400
## 2666 0.9266646 0.060851930 0.20134230
## 2667 0.9204868 0.052738340 0.20000000
## 2668 0.9204868 0.052738340 0.20000000
## 2669 0.8813172 0.018255580 0.19148940
## 2670 0.8766541 0.016227180 0.19047620
## 2671 0.8766541 0.016227180 0.19047620
## 2672 0.8766541 0.016227180 0.19047620
## 2673 0.8850835 0.020283980 0.19230770
## 2674 0.8881890 0.022312370 0.19298250
## 2675 0.8881890 0.022312370 0.19298250
## 2676 0.8707308 0.014198780 0.18918920
## 2677 0.8707308 0.014198780 0.18918920
## 2678 0.8907937 0.024340770 0.19354840
## 2679 0.8629564 0.012170390 0.18750000
## 2680 0.8629564 0.012170390 0.18750000
## 2681 0.8629564 0.012170390 0.18750000
## 2682 0.8629564 0.012170390 0.18750000
## 2683 0.8629564 0.012170390 0.18750000
## 2684 0.8629564 0.012170390 0.18750000
## 2685 0.8930096 0.026369170 0.19402990
## 2686 0.8368062 0.004056795 0.18181820
## 2687 0.8368062 0.004056795 0.18181820
## 2688 0.8368062 0.004056795 0.18181820
## 2689 0.8368062 0.004056795 0.18181820
## 2690 0.8368062 0.004056795 0.18181820
## 2691 0.8368062 0.004056795 0.18181820
## 2692 0.8368062 0.004056795 0.18181820
## 2693 0.8368062 0.004056795 0.18181820
## 2694 0.8368062 0.004056795 0.18181820
## 2695 0.8368062 0.004056795 0.18181820
## 2696 0.8368062 0.004056795 0.18181820
## 2697 0.8368062 0.004056795 0.18181820
## 2698 0.8368062 0.004056795 0.18181820
## 2699 0.8368062 0.004056795 0.18181820
## 2700 0.8368062 0.004056795 0.18181820
## 2701 0.8368062 0.004056795 0.18181820
## 2702 0.8368062 0.004056795 0.18181820
## 2703 0.8368062 0.004056795 0.18181820
## 2704 0.8368062 0.004056795 0.18181820
## 2705 0.8368062 0.004056795 0.18181820
## 2706 0.8368062 0.004056795 0.18181820
## 2707 0.8368062 0.004056795 0.18181820
## 2708 0.8368062 0.004056795 0.18181820
## 2709 0.8368062 0.004056795 0.18181820
## 2710 0.8368062 0.004056795 0.18181820
## 2711 0.8368062 0.004056795 0.18181820
## 2712 0.8368062 0.004056795 0.18181820
## 2713 0.8368062 0.004056795 0.18181820
## 2714 0.8368062 0.004056795 0.18181820
## 2715 0.8368062 0.004056795 0.18181820
## 2716 0.8368062 0.004056795 0.18181820
## 2717 0.8368062 0.004056795 0.18181820
## 2718 0.8368062 0.004056795 0.18181820
## 2719 0.8523026 0.010141990 0.18518520
## 2720 0.8523026 0.010141990 0.18518520
## 2721 0.8523026 0.010141990 0.18518520
## 2722 0.8993262 0.034482760 0.19540230
## 2723 0.8993262 0.034482760 0.19540230
## 2724 0.8993262 0.034482760 0.19540230
## 2725 0.8993262 0.034482760 0.19540230
## 2726 0.9510132 0.164300200 0.20663270
## 2727 0.9004762 0.036511160 0.19565220
## 2728 0.8368062 0.008113590 0.18181820
## 2729 0.8368062 0.008113590 0.18181820
## 2730 0.8368062 0.008113590 0.18181820
## 2731 0.8368062 0.008113590 0.18181820
## 2732 0.8368062 0.008113590 0.18181820
## 2733 0.9399337 0.117647100 0.20422540
## 2734 0.9024381 0.040567950 0.19607840
## 2735 0.9040496 0.044624750 0.19642860
## 2736 0.9047520 0.046653140 0.19658120
## 2737 0.8683838 0.020283980 0.18867920
## 2738 0.8798771 0.026369170 0.19117650
## 2739 0.8629564 0.018255580 0.18750000
## 2740 0.8850835 0.030425960 0.19230770
## 2741 0.8121942 0.006085193 0.17647060
## 2742 0.8121942 0.006085193 0.17647060
## 2743 0.8121942 0.006085193 0.17647060
## 2744 0.8121942 0.006085193 0.17647060
## 2745 0.8121942 0.006085193 0.17647060
## 2746 0.8121942 0.006085193 0.17647060
## 2747 0.8121942 0.006085193 0.17647060
## 2748 0.8121942 0.006085193 0.17647060
## 2749 0.8121942 0.006085193 0.17647060
## 2750 0.8121942 0.006085193 0.17647060
## 2751 0.8121942 0.006085193 0.17647060
## 2752 0.8121942 0.006085193 0.17647060
## 2753 0.8121942 0.006085193 0.17647060
## 2754 0.8121942 0.006085193 0.17647060
## 2755 0.8121942 0.006085193 0.17647060
## 2756 0.8478168 0.014198780 0.18421050
## 2757 0.8478168 0.014198780 0.18421050
## 2758 0.8478168 0.014198780 0.18421050
## 2759 0.8478168 0.014198780 0.18421050
## 2760 0.8478168 0.014198780 0.18421050
## 2761 0.8478168 0.014198780 0.18421050
## 2762 0.8478168 0.014198780 0.18421050
## 2763 0.9147695 0.064908720 0.19875780
## 2764 0.9147695 0.064908720 0.19875780
## 2765 0.9204868 0.077079110 0.20000000
## 2766 0.8923086 0.038539550 0.19387760
## 2767 0.8368062 0.012170390 0.18181820
## 2768 0.8368062 0.012170390 0.18181820
## 2769 0.9766141 0.529411800 0.21219510
## 2770 0.9246900 0.089249490 0.20091320
## 2771 0.9246900 0.089249490 0.20091320
## 2772 0.8949177 0.042596350 0.19444440
## 2773 0.8949177 0.042596350 0.19444440
## 2774 0.9245961 0.091277890 0.20089290
## 2775 0.8218632 0.010141990 0.17857140
## 2776 0.8218632 0.010141990 0.17857140
## 2777 0.8218632 0.010141990 0.17857140
## 2778 0.9204868 0.087221100 0.20000000
## 2779 0.8629564 0.024340770 0.18750000
## 2780 0.8629564 0.024340770 0.18750000
## 2781 0.8580809 0.022312370 0.18644070
## 2782 0.8523026 0.020283980 0.18518520
## 2783 0.8523026 0.020283980 0.18518520
## 2784 0.8813172 0.036511160 0.19148940
## 2785 0.8453450 0.018255580 0.18367350
## 2786 0.8453450 0.018255580 0.18367350
## 2787 0.8453450 0.018255580 0.18367350
## 2788 0.8004233 0.008113590 0.17391300
## 2789 0.8004233 0.008113590 0.17391300
## 2790 0.8004233 0.008113590 0.17391300
## 2791 0.8004233 0.008113590 0.17391300
## 2792 0.8004233 0.008113590 0.17391300
## 2793 0.8004233 0.008113590 0.17391300
## 2794 0.8004233 0.008113590 0.17391300
## 2795 0.8004233 0.008113590 0.17391300
## 2796 0.8004233 0.008113590 0.17391300
## 2797 0.8004233 0.008113590 0.17391300
## 2798 0.8004233 0.008113590 0.17391300
## 2799 0.8004233 0.008113590 0.17391300
## 2800 0.8004233 0.008113590 0.17391300
## 2801 0.8004233 0.008113590 0.17391300
## 2802 0.8004233 0.008113590 0.17391300
## 2803 0.7670723 0.002028398 0.16666670
## 2804 0.7670723 0.002028398 0.16666670
## 2805 0.7670723 0.002028398 0.16666670
## 2806 0.7670723 0.002028398 0.16666670
## 2807 0.7670723 0.002028398 0.16666670
## 2808 0.7670723 0.002028398 0.16666670
## 2809 0.7670723 0.002028398 0.16666670
## 2810 0.7670723 0.002028398 0.16666670
## 2811 0.7670723 0.002028398 0.16666670
## 2812 0.7670723 0.002028398 0.16666670
## 2813 0.7670723 0.002028398 0.16666670
## 2814 0.7670723 0.002028398 0.16666670
## 2815 0.7670723 0.002028398 0.16666670
## 2816 0.7670723 0.002028398 0.16666670
## 2817 0.7670723 0.002028398 0.16666670
## 2818 0.7670723 0.002028398 0.16666670
## 2819 0.7670723 0.002028398 0.16666670
## 2820 0.7670723 0.002028398 0.16666670
## 2821 0.7670723 0.002028398 0.16666670
## 2822 0.7670723 0.002028398 0.16666670
## 2823 0.7670723 0.002028398 0.16666670
## 2824 0.7670723 0.002028398 0.16666670
## 2825 0.7670723 0.002028398 0.16666670
## 2826 0.7670723 0.002028398 0.16666670
## 2827 0.7670723 0.002028398 0.16666670
## 2828 0.7670723 0.002028398 0.16666670
## 2829 0.7670723 0.002028398 0.16666670
## 2830 0.7670723 0.002028398 0.16666670
## 2831 0.7670723 0.002028398 0.16666670
## 2832 0.7670723 0.002028398 0.16666670
## 2833 0.7670723 0.002028398 0.16666670
## 2834 0.7670723 0.002028398 0.16666670
## 2835 0.7670723 0.002028398 0.16666670
## 2836 0.7670723 0.002028398 0.16666670
## 2837 0.7670723 0.002028398 0.16666670
## 2838 0.7670723 0.002028398 0.16666670
## 2839 0.7670723 0.002028398 0.16666670
## 2840 0.7670723 0.002028398 0.16666670
## 2841 0.7670723 0.002028398 0.16666670
## 2842 0.7670723 0.002028398 0.16666670
## 2843 0.7670723 0.002028398 0.16666670
## 2844 0.7670723 0.002028398 0.16666670
## 2845 0.7670723 0.002028398 0.16666670
## 2846 0.7670723 0.002028398 0.16666670
## 2847 0.7670723 0.002028398 0.16666670
## 2848 0.7670723 0.002028398 0.16666670
## 2849 0.7670723 0.002028398 0.16666670
## 2850 0.7670723 0.002028398 0.16666670
## 2851 0.7670723 0.002028398 0.16666670
## 2852 0.7670723 0.002028398 0.16666670
## 2853 0.7670723 0.002028398 0.16666670
## 2854 0.7670723 0.002028398 0.16666670
## 2855 0.7670723 0.002028398 0.16666670
## 2856 0.7670723 0.002028398 0.16666670
## 2857 0.7670723 0.002028398 0.16666670
## 2858 0.7670723 0.002028398 0.16666670
## 2859 0.7670723 0.002028398 0.16666670
## 2860 0.7670723 0.002028398 0.16666670
## 2861 0.7670723 0.002028398 0.16666670
## 2862 0.7670723 0.002028398 0.16666670
## 2863 0.7670723 0.002028398 0.16666670
## 2864 0.7670723 0.002028398 0.16666670
## 2865 0.7670723 0.002028398 0.16666670
## 2866 0.7670723 0.002028398 0.16666670
## 2867 0.7670723 0.002028398 0.16666670
## 2868 0.7670723 0.002028398 0.16666670
## 2869 0.7670723 0.002028398 0.16666670
## 2870 0.7670723 0.002028398 0.16666670
## 2871 0.7670723 0.002028398 0.16666670
## 2872 0.7670723 0.002028398 0.16666670
## 2873 0.7670723 0.002028398 0.16666670
## 2874 0.7670723 0.002028398 0.16666670
## 2875 0.7670723 0.002028398 0.16666670
## 2876 0.7670723 0.002028398 0.16666670
## 2877 0.7670723 0.002028398 0.16666670
## 2878 0.7670723 0.002028398 0.16666670
## 2879 0.7670723 0.002028398 0.16666670
## 2880 0.7670723 0.002028398 0.16666670
## 2881 0.7670723 0.002028398 0.16666670
## 2882 0.7670723 0.002028398 0.16666670
## 2883 0.7670723 0.002028398 0.16666670
## 2884 0.7670723 0.002028398 0.16666670
## 2885 0.7670723 0.002028398 0.16666670
## 2886 0.7670723 0.002028398 0.16666670
## 2887 0.7670723 0.002028398 0.16666670
## 2888 0.7670723 0.002028398 0.16666670
## 2889 0.7670723 0.002028398 0.16666670
## 2890 0.7670723 0.002028398 0.16666670
## 2891 0.7670723 0.002028398 0.16666670
## 2892 0.7670723 0.002028398 0.16666670
## 2893 0.7670723 0.002028398 0.16666670
## 2894 0.7670723 0.002028398 0.16666670
## 2895 0.7670723 0.002028398 0.16666670
## 2896 0.7670723 0.002028398 0.16666670
## 2897 0.8850835 0.040567950 0.19230770
## 2898 0.7670723 0.004056795 0.16666670
## 2899 0.7670723 0.004056795 0.16666670
## 2900 0.7670723 0.004056795 0.16666670
## 2901 0.7670723 0.004056795 0.16666670
## 2902 0.7670723 0.004056795 0.16666670
## 2903 0.7670723 0.004056795 0.16666670
## 2904 0.7670723 0.004056795 0.16666670
## 2905 0.7670723 0.004056795 0.16666670
## 2906 0.7670723 0.004056795 0.16666670
## 2907 0.7670723 0.004056795 0.16666670
## 2908 0.7670723 0.004056795 0.16666670
## 2909 0.7670723 0.004056795 0.16666670
## 2910 0.7670723 0.004056795 0.16666670
## 2911 0.7670723 0.004056795 0.16666670
## 2912 0.7670723 0.004056795 0.16666670
## 2913 0.7670723 0.004056795 0.16666670
## 2914 0.7670723 0.004056795 0.16666670
## 2915 0.7670723 0.004056795 0.16666670
## 2916 0.7670723 0.004056795 0.16666670
## 2917 0.7670723 0.004056795 0.16666670
## 2918 0.7670723 0.004056795 0.16666670
## 2919 0.7670723 0.004056795 0.16666670
## 2920 0.7670723 0.004056795 0.16666670
## 2921 0.7670723 0.004056795 0.16666670
## 2922 0.7670723 0.004056795 0.16666670
## 2923 0.7670723 0.004056795 0.16666670
## 2924 0.7670723 0.004056795 0.16666670
## 2925 0.7670723 0.004056795 0.16666670
## 2926 0.7670723 0.004056795 0.16666670
## 2927 0.7670723 0.004056795 0.16666670
## 2928 0.7670723 0.004056795 0.16666670
## 2929 0.9100858 0.070993910 0.19774010
## 2930 0.8368062 0.016227180 0.18181820
## 2931 0.8368062 0.016227180 0.18181820
## 2932 0.8260779 0.014198780 0.17948720
## 2933 0.8907937 0.048681540 0.19354840
## 2934 0.8121942 0.012170390 0.17647060
## 2935 0.8547378 0.026369170 0.18571430
## 2936 0.8547378 0.026369170 0.18571430
## 2937 0.7670723 0.006085193 0.16666670
## 2938 0.7670723 0.006085193 0.16666670
## 2939 0.7670723 0.006085193 0.16666670
## 2940 0.7670723 0.006085193 0.16666670
## 2941 0.7670723 0.006085193 0.16666670
## 2942 0.7670723 0.006085193 0.16666670
## 2943 0.7670723 0.006085193 0.16666670
## 2944 0.7670723 0.006085193 0.16666670
## 2945 0.7670723 0.006085193 0.16666670
## 2946 0.7670723 0.006085193 0.16666670
## 2947 0.8368062 0.020283980 0.18181820
## 2948 0.8368062 0.020283980 0.18181820
## 2949 0.7935231 0.010141990 0.17241380
## 2950 0.7935231 0.010141990 0.17241380
## 2951 0.7935231 0.010141990 0.17241380
## 2952 0.7935231 0.010141990 0.17241380
## 2953 0.8804656 0.044624750 0.19130430
## 2954 0.8836673 0.048681540 0.19200000
## 2955 0.8850835 0.050709940 0.19230770
## 2956 0.8182105 0.016227180 0.17777780
## 2957 0.8999173 0.070993910 0.19553070
## 2958 0.8898039 0.058823530 0.19333330
## 2959 0.8054260 0.014198780 0.17500000
## 2960 0.8054260 0.014198780 0.17500000
## 2961 0.8054260 0.014198780 0.17500000
## 2962 0.8054260 0.014198780 0.17500000
## 2963 0.7670723 0.008113590 0.16666670
## 2964 0.7670723 0.008113590 0.16666670
## 2965 0.7670723 0.008113590 0.16666670
## 2966 0.7670723 0.008113590 0.16666670
## 2967 0.7670723 0.008113590 0.16666670
## 2968 0.7670723 0.008113590 0.16666670
## 2969 0.8562668 0.032454360 0.18604650
## 2970 0.8683838 0.040567950 0.18867920
## 2971 0.8426992 0.026369170 0.18309860
## 2972 0.8728754 0.044624750 0.18965520
## 2973 0.8299471 0.022312370 0.18032790
## 2974 0.8826586 0.056795130 0.19178080
## 2975 0.9348694 0.184584200 0.20312500
## 2976 0.7080668 0.004056795 0.15384620
## 2977 0.7080668 0.004056795 0.15384620
## 2978 0.7080668 0.004056795 0.15384620
## 2979 0.7080668 0.004056795 0.15384620
## 2980 0.7080668 0.004056795 0.15384620
## 2981 0.7080668 0.004056795 0.15384620
## 2982 0.7080668 0.004056795 0.15384620
## 2983 0.7080668 0.004056795 0.15384620
## 2984 0.7080668 0.004056795 0.15384620
## 2985 0.7080668 0.004056795 0.15384620
## 2986 0.7080668 0.004056795 0.15384620
## 2987 0.7080668 0.004056795 0.15384620
## 2988 0.7080668 0.004056795 0.15384620
## 2989 0.7080668 0.004056795 0.15384620
## 2990 0.7080668 0.004056795 0.15384620
## 2991 0.7080668 0.004056795 0.15384620
## 2992 0.7080668 0.004056795 0.15384620
## 2993 0.7080668 0.004056795 0.15384620
## 2994 0.7080668 0.004056795 0.15384620
## 2995 0.7080668 0.004056795 0.15384620
## 2996 0.7080668 0.004056795 0.15384620
## 2997 0.7080668 0.004056795 0.15384620
## 2998 0.7080668 0.004056795 0.15384620
## 2999 0.7080668 0.004056795 0.15384620
## 3000 0.7080668 0.004056795 0.15384620
## 3001 0.7080668 0.004056795 0.15384620
## 3002 0.7080668 0.004056795 0.15384620
## 3003 0.7080668 0.004056795 0.15384620
## 3004 0.7080668 0.004056795 0.15384620
## 3005 0.7080668 0.004056795 0.15384620
## 3006 0.7080668 0.004056795 0.15384620
## 3007 0.7080668 0.004056795 0.15384620
## 3008 0.7080668 0.004056795 0.15384620
## 3009 0.7080668 0.004056795 0.15384620
## 3010 0.7080668 0.004056795 0.15384620
## 3011 0.7080668 0.004056795 0.15384620
## 3012 0.7080668 0.004056795 0.15384620
## 3013 0.9570482 0.361054800 0.20794390
## 3014 0.7670723 0.010141990 0.16666670
## 3015 0.7670723 0.010141990 0.16666670
## 3016 0.7670723 0.010141990 0.16666670
## 3017 0.7670723 0.010141990 0.16666670
## 3018 0.7670723 0.010141990 0.16666670
## 3019 0.7670723 0.010141990 0.16666670
## 3020 0.7670723 0.010141990 0.16666670
## 3021 0.8004233 0.016227180 0.17391300
## 3022 0.8004233 0.016227180 0.17391300
## 3023 0.8891066 0.068965520 0.19318180
## 3024 0.7267001 0.006085193 0.15789470
## 3025 0.7267001 0.006085193 0.15789470
## 3026 0.7267001 0.006085193 0.15789470
## 3027 0.7267001 0.006085193 0.15789470
## 3028 0.7267001 0.006085193 0.15789470
## 3029 0.7267001 0.006085193 0.15789470
## 3030 0.7267001 0.006085193 0.15789470
## 3031 0.7267001 0.006085193 0.15789470
## 3032 0.7267001 0.006085193 0.15789470
## 3033 0.7267001 0.006085193 0.15789470
## 3034 0.8368062 0.028397570 0.18181820
## 3035 0.8309950 0.026369170 0.18055560
## 3036 0.8309950 0.026369170 0.18055560
## 3037 0.9325193 0.188641000 0.20261440
## 3038 0.7857814 0.014198780 0.17073170
## 3039 0.7857814 0.014198780 0.17073170
## 3040 0.8243166 0.024340770 0.17910450
## 3041 0.6574906 0.002028398 0.14285710
## 3042 0.6574906 0.002028398 0.14285710
## 3043 0.6574906 0.002028398 0.14285710
## 3044 0.6574906 0.002028398 0.14285710
## 3045 0.6574906 0.002028398 0.14285710
## 3046 0.6574906 0.002028398 0.14285710
## 3047 0.6574906 0.002028398 0.14285710
## 3048 0.6574906 0.002028398 0.14285710
## 3049 0.6574906 0.002028398 0.14285710
## 3050 0.6574906 0.002028398 0.14285710
## 3051 0.6574906 0.002028398 0.14285710
## 3052 0.6574906 0.002028398 0.14285710
## 3053 0.6574906 0.002028398 0.14285710
## 3054 0.6574906 0.002028398 0.14285710
## 3055 0.6574906 0.002028398 0.14285710
## 3056 0.6574906 0.002028398 0.14285710
## 3057 0.6574906 0.002028398 0.14285710
## 3058 0.6574906 0.002028398 0.14285710
## 3059 0.6574906 0.002028398 0.14285710
## 3060 0.6574906 0.002028398 0.14285710
## 3061 0.6574906 0.002028398 0.14285710
## 3062 0.6574906 0.002028398 0.14285710
## 3063 0.6574906 0.002028398 0.14285710
## 3064 0.6574906 0.002028398 0.14285710
## 3065 0.6574906 0.002028398 0.14285710
## 3066 0.6574906 0.002028398 0.14285710
## 3067 0.6574906 0.002028398 0.14285710
## 3068 0.6574906 0.002028398 0.14285710
## 3069 0.6574906 0.002028398 0.14285710
## 3070 0.6574906 0.002028398 0.14285710
## 3071 0.6574906 0.002028398 0.14285710
## 3072 0.6574906 0.002028398 0.14285710
## 3073 0.6574906 0.002028398 0.14285710
## 3074 0.6574906 0.002028398 0.14285710
## 3075 0.6574906 0.002028398 0.14285710
## 3076 0.6574906 0.002028398 0.14285710
## 3077 0.6574906 0.002028398 0.14285710
## 3078 0.6574906 0.002028398 0.14285710
## 3079 0.6574906 0.002028398 0.14285710
## 3080 0.6574906 0.002028398 0.14285710
## 3081 0.6574906 0.002028398 0.14285710
## 3082 0.6574906 0.002028398 0.14285710
## 3083 0.6574906 0.002028398 0.14285710
## 3084 0.6574906 0.002028398 0.14285710
## 3085 0.6574906 0.002028398 0.14285710
## 3086 0.6574906 0.002028398 0.14285710
## 3087 0.6574906 0.002028398 0.14285710
## 3088 0.6574906 0.002028398 0.14285710
## 3089 0.6574906 0.002028398 0.14285710
## 3090 0.6574906 0.002028398 0.14285710
## 3091 0.6574906 0.002028398 0.14285710
## 3092 0.6574906 0.002028398 0.14285710
## 3093 0.6574906 0.002028398 0.14285710
## 3094 0.6574906 0.002028398 0.14285710
## 3095 0.6574906 0.002028398 0.14285710
## 3096 0.6574906 0.002028398 0.14285710
## 3097 0.6574906 0.002028398 0.14285710
## 3098 0.6574906 0.002028398 0.14285710
## 3099 0.6574906 0.002028398 0.14285710
## 3100 0.6574906 0.002028398 0.14285710
## 3101 0.6574906 0.002028398 0.14285710
## 3102 0.6574906 0.002028398 0.14285710
## 3103 0.6574906 0.002028398 0.14285710
## 3104 0.6574906 0.002028398 0.14285710
## 3105 0.6574906 0.002028398 0.14285710
## 3106 0.6574906 0.002028398 0.14285710
## 3107 0.6574906 0.002028398 0.14285710
## 3108 0.6574906 0.002028398 0.14285710
## 3109 0.6574906 0.002028398 0.14285710
## 3110 0.6574906 0.002028398 0.14285710
## 3111 0.6574906 0.002028398 0.14285710
## 3112 0.6574906 0.002028398 0.14285710
## 3113 0.6574906 0.002028398 0.14285710
## 3114 0.8165609 0.022312370 0.17741940
## 3115 0.8165609 0.022312370 0.17741940
## 3116 0.8074446 0.020283980 0.17543860
## 3117 0.8074446 0.020283980 0.17543860
## 3118 0.7363895 0.008113590 0.16000000
## 3119 0.7363895 0.008113590 0.16000000
## 3120 0.7363895 0.008113590 0.16000000
## 3121 0.7363895 0.008113590 0.16000000
## 3122 0.7363895 0.008113590 0.16000000
## 3123 0.7363895 0.008113590 0.16000000
## 3124 0.8850835 0.070993910 0.19230770
## 3125 0.7965751 0.018255580 0.17307690
## 3126 0.8413052 0.034482760 0.18279570
## 3127 0.8869274 0.075050710 0.19270830
## 3128 0.8707308 0.056795130 0.18918920
## 3129 0.8260779 0.028397570 0.17948720
## 3130 0.8260779 0.028397570 0.17948720
## 3131 0.7833930 0.016227180 0.17021280
## 3132 0.7833930 0.016227180 0.17021280
## 3133 0.7833930 0.016227180 0.17021280
## 3134 0.7833930 0.016227180 0.17021280
## 3135 0.7833930 0.016227180 0.17021280
## 3136 0.7423281 0.010141990 0.16129030
## 3137 0.7423281 0.010141990 0.16129030
## 3138 0.7423281 0.010141990 0.16129030
## 3139 0.8802470 0.070993910 0.19125680
## 3140 0.8035996 0.022312370 0.17460320
## 3141 0.9510968 0.352941200 0.20665080
## 3142 0.8368062 0.036511160 0.18181820
## 3143 0.6574906 0.004056795 0.14285710
## 3144 0.6574906 0.004056795 0.14285710
## 3145 0.6574906 0.004056795 0.14285710
## 3146 0.6574906 0.004056795 0.14285710
## 3147 0.6574906 0.004056795 0.14285710
## 3148 0.6574906 0.004056795 0.14285710
## 3149 0.6574906 0.004056795 0.14285710
## 3150 0.6574906 0.004056795 0.14285710
## 3151 0.6574906 0.004056795 0.14285710
## 3152 0.6574906 0.004056795 0.14285710
## 3153 0.6574906 0.004056795 0.14285710
## 3154 0.6574906 0.004056795 0.14285710
## 3155 0.6574906 0.004056795 0.14285710
## 3156 0.6574906 0.004056795 0.14285710
## 3157 0.6574906 0.004056795 0.14285710
## 3158 0.6574906 0.004056795 0.14285710
## 3159 0.6574906 0.004056795 0.14285710
## 3160 0.6574906 0.004056795 0.14285710
## 3161 0.6574906 0.004056795 0.14285710
## 3162 0.6574906 0.004056795 0.14285710
## 3163 0.9547603 0.395537500 0.20744680
## 3164 0.6903651 0.006085193 0.15000000
## 3165 0.6903651 0.006085193 0.15000000
## 3166 0.6903651 0.006085193 0.15000000
## 3167 0.6903651 0.006085193 0.15000000
## 3168 0.6903651 0.006085193 0.15000000
## 3169 0.6903651 0.006085193 0.15000000
## 3170 0.6903651 0.006085193 0.15000000
## 3171 0.6903651 0.006085193 0.15000000
## 3172 0.6903651 0.006085193 0.15000000
## 3173 0.6903651 0.006085193 0.15000000
## 3174 0.6903651 0.006085193 0.15000000
## 3175 0.6903651 0.006085193 0.15000000
## 3176 0.6903651 0.006085193 0.15000000
## 3177 0.6903651 0.006085193 0.15000000
## 3178 0.6903651 0.006085193 0.15000000
## 3179 0.6903651 0.006085193 0.15000000
## 3180 0.6903651 0.006085193 0.15000000
## 3181 0.6903651 0.006085193 0.15000000
## 3182 0.6903651 0.006085193 0.15000000
## 3183 0.6903651 0.006085193 0.15000000
## 3184 0.8218632 0.030425960 0.17857140
## 3185 0.8949177 0.099391480 0.19444440
## 3186 0.7815454 0.018255580 0.16981130
## 3187 0.7463407 0.012170390 0.16216220
## 3188 0.7463407 0.012170390 0.16216220
## 3189 0.7463407 0.012170390 0.16216220
## 3190 0.7463407 0.012170390 0.16216220
## 3191 0.7463407 0.012170390 0.16216220
## 3192 0.7463407 0.012170390 0.16216220
## 3193 0.7463407 0.012170390 0.16216220
## 3194 0.7463407 0.012170390 0.16216220
## 3195 0.7463407 0.012170390 0.16216220
## 3196 0.7463407 0.012170390 0.16216220
## 3197 0.7463407 0.012170390 0.16216220
## 3198 0.7463407 0.012170390 0.16216220
## 3199 0.7080668 0.008113590 0.15384620
## 3200 0.7080668 0.008113590 0.15384620
## 3201 0.7080668 0.008113590 0.15384620
## 3202 0.8004233 0.024340770 0.17391300
## 3203 0.9468848 0.334685600 0.20573570
## 3204 0.7670723 0.016227180 0.16666670
## 3205 0.8523026 0.050709940 0.18518520
## 3206 0.8570050 0.054766730 0.18620690
## 3207 0.9102307 0.144016200 0.19777160
## 3208 0.9498752 0.367140000 0.20638540
## 3209 0.7910434 0.022312370 0.17187500
## 3210 0.8284381 0.036511160 0.18000000
## 3211 0.9362094 0.265720100 0.20341610
## 3212 0.7191303 0.010141990 0.15625000
## 3213 0.7191303 0.010141990 0.15625000
## 3214 0.7191303 0.010141990 0.15625000
## 3215 0.7191303 0.010141990 0.15625000
## 3216 0.7191303 0.010141990 0.15625000
## 3217 0.7191303 0.010141990 0.15625000
## 3218 0.7800736 0.020283980 0.16949150
## 3219 0.7492335 0.014198780 0.16279070
## 3220 0.8121942 0.030425960 0.17647060
## 3221 0.8935128 0.107505100 0.19413920
## 3222 0.8755850 0.079107510 0.19024390
## 3223 0.8054260 0.028397570 0.17500000
## 3224 0.5753043 0.002028398 0.12500000
## 3225 0.5753043 0.002028398 0.12500000
## 3226 0.5753043 0.002028398 0.12500000
## 3227 0.5753043 0.002028398 0.12500000
## 3228 0.5753043 0.002028398 0.12500000
## 3229 0.5753043 0.002028398 0.12500000
## 3230 0.5753043 0.002028398 0.12500000
## 3231 0.5753043 0.002028398 0.12500000
## 3232 0.5753043 0.002028398 0.12500000
## 3233 0.5753043 0.002028398 0.12500000
## 3234 0.5753043 0.002028398 0.12500000
## 3235 0.5753043 0.002028398 0.12500000
## 3236 0.5753043 0.002028398 0.12500000
## 3237 0.5753043 0.002028398 0.12500000
## 3238 0.5753043 0.002028398 0.12500000
## 3239 0.5753043 0.002028398 0.12500000
## 3240 0.5753043 0.002028398 0.12500000
## 3241 0.5753043 0.002028398 0.12500000
## 3242 0.5753043 0.002028398 0.12500000
## 3243 0.5753043 0.002028398 0.12500000
## 3244 0.5753043 0.002028398 0.12500000
## 3245 0.5753043 0.002028398 0.12500000
## 3246 0.5753043 0.002028398 0.12500000
## 3247 0.5753043 0.002028398 0.12500000
## 3248 0.5753043 0.002028398 0.12500000
## 3249 0.5753043 0.002028398 0.12500000
## 3250 0.5753043 0.002028398 0.12500000
## 3251 0.5753043 0.002028398 0.12500000
## 3252 0.5753043 0.002028398 0.12500000
## 3253 0.5753043 0.002028398 0.12500000
## 3254 0.5753043 0.002028398 0.12500000
## 3255 0.5753043 0.002028398 0.12500000
## 3256 0.5753043 0.002028398 0.12500000
## 3257 0.5753043 0.002028398 0.12500000
## 3258 0.5753043 0.002028398 0.12500000
## 3259 0.5753043 0.002028398 0.12500000
## 3260 0.5753043 0.002028398 0.12500000
## 3261 0.5753043 0.002028398 0.12500000
## 3262 0.5753043 0.002028398 0.12500000
## 3263 0.5753043 0.002028398 0.12500000
## 3264 0.5753043 0.002028398 0.12500000
## 3265 0.5753043 0.002028398 0.12500000
## 3266 0.5753043 0.002028398 0.12500000
## 3267 0.5753043 0.002028398 0.12500000
## 3268 0.5753043 0.002028398 0.12500000
## 3269 0.5753043 0.002028398 0.12500000
## 3270 0.5753043 0.002028398 0.12500000
## 3271 0.5753043 0.002028398 0.12500000
## 3272 0.5753043 0.002028398 0.12500000
## 3273 0.5753043 0.002028398 0.12500000
## 3274 0.5753043 0.002028398 0.12500000
## 3275 0.5753043 0.002028398 0.12500000
## 3276 0.5753043 0.002028398 0.12500000
## 3277 0.5753043 0.002028398 0.12500000
## 3278 0.5753043 0.002028398 0.12500000
## 3279 0.5753043 0.002028398 0.12500000
## 3280 0.5753043 0.002028398 0.12500000
## 3281 0.5753043 0.002028398 0.12500000
## 3282 0.5753043 0.002028398 0.12500000
## 3283 0.5753043 0.002028398 0.12500000
## 3284 0.5753043 0.002028398 0.12500000
## 3285 0.5753043 0.002028398 0.12500000
## 3286 0.5753043 0.002028398 0.12500000
## 3287 0.5753043 0.002028398 0.12500000
## 3288 0.7670723 0.018255580 0.16666670
## 3289 0.7670723 0.018255580 0.16666670
## 3290 0.8612742 0.064908720 0.18713450
## 3291 0.7889887 0.024340770 0.17142860
## 3292 0.8202358 0.036511160 0.17821780
## 3293 0.7267001 0.012170390 0.15789470
## 3294 0.7267001 0.012170390 0.15789470
## 3295 0.7267001 0.012170390 0.15789470
## 3296 0.7267001 0.012170390 0.15789470
## 3297 0.7267001 0.012170390 0.15789470
## 3298 0.8829159 0.095334690 0.19183670
## 3299 0.7514178 0.016227180 0.16326530
## 3300 0.7514178 0.016227180 0.16326530
## 3301 0.7514178 0.016227180 0.16326530
## 3302 0.6574906 0.006085193 0.14285710
## 3303 0.6574906 0.006085193 0.14285710
## 3304 0.6574906 0.006085193 0.14285710
## 3305 0.6574906 0.006085193 0.14285710
## 3306 0.6574906 0.006085193 0.14285710
## 3307 0.6574906 0.006085193 0.14285710
## 3308 0.6574906 0.006085193 0.14285710
## 3309 0.6574906 0.006085193 0.14285710
## 3310 0.6574906 0.006085193 0.14285710
## 3311 0.6574906 0.006085193 0.14285710
## 3312 0.6574906 0.006085193 0.14285710
## 3313 0.6574906 0.006085193 0.14285710
## 3314 0.6574906 0.006085193 0.14285710
## 3315 0.6574906 0.006085193 0.14285710
## 3316 0.8092192 0.032454360 0.17582420
## 3317 0.8850835 0.101419900 0.19230770
## 3318 0.8027501 0.030425960 0.17441860
## 3319 0.6136579 0.004056795 0.13333330
## 3320 0.6136579 0.004056795 0.13333330
## 3321 0.6136579 0.004056795 0.13333330
## 3322 0.6136579 0.004056795 0.13333330
## 3323 0.6136579 0.004056795 0.13333330
## 3324 0.6136579 0.004056795 0.13333330
## 3325 0.6136579 0.004056795 0.13333330
## 3326 0.6136579 0.004056795 0.13333330
## 3327 0.6136579 0.004056795 0.13333330
## 3328 0.6136579 0.004056795 0.13333330
## 3329 0.6136579 0.004056795 0.13333330
## 3330 0.6136579 0.004056795 0.13333330
## 3331 0.6136579 0.004056795 0.13333330
## 3332 0.6136579 0.004056795 0.13333330
## 3333 0.6818421 0.008113590 0.14814810
## 3334 0.6818421 0.008113590 0.14814810
## 3335 0.6818421 0.008113590 0.14814810
## 3336 0.6818421 0.008113590 0.14814810
## 3337 0.6818421 0.008113590 0.14814810
## 3338 0.6818421 0.008113590 0.14814810
## 3339 0.6818421 0.008113590 0.14814810
## 3340 0.6818421 0.008113590 0.14814810
## 3341 0.9118030 0.170385400 0.19811320
## 3342 0.8299471 0.044624750 0.18032790
## 3343 0.8260779 0.042596350 0.17948720
## 3344 0.7322054 0.014198780 0.15909090
## 3345 0.7322054 0.014198780 0.15909090
## 3346 0.7322054 0.014198780 0.15909090
## 3347 0.8218632 0.040567950 0.17857140
## 3348 0.8218632 0.040567950 0.17857140
## 3349 0.6973385 0.010141990 0.15151520
## 3350 0.6973385 0.010141990 0.15151520
## 3351 0.6973385 0.010141990 0.15151520
## 3352 0.6973385 0.010141990 0.15151520
## 3353 0.6973385 0.010141990 0.15151520
## 3354 0.6973385 0.010141990 0.15151520
## 3355 0.6973385 0.010141990 0.15151520
## 3356 0.6973385 0.010141990 0.15151520
## 3357 0.6973385 0.010141990 0.15151520
## 3358 0.6973385 0.010141990 0.15151520
## 3359 0.7531256 0.018255580 0.16363640
## 3360 0.7778762 0.024340770 0.16901410
## 3361 0.8066122 0.034482760 0.17525770
## 3362 0.7935231 0.030425960 0.17241380
## 3363 0.7935231 0.030425960 0.17241380
## 3364 0.7935231 0.030425960 0.17241380
## 3365 0.7363895 0.016227180 0.16000000
## 3366 0.7080668 0.012170390 0.15384620
## 3367 0.7857814 0.028397570 0.17073170
## 3368 0.8145901 0.040567950 0.17699120
## 3369 0.7544974 0.020283980 0.16393440
## 3370 0.9128795 0.194726200 0.19834710
## 3371 0.8043089 0.036511160 0.17475730
## 3372 0.6276046 0.006085193 0.13636360
## 3373 0.6276046 0.006085193 0.13636360
## 3374 0.6276046 0.006085193 0.13636360
## 3375 0.6276046 0.006085193 0.13636360
## 3376 0.6276046 0.006085193 0.13636360
## 3377 0.6276046 0.006085193 0.13636360
## 3378 0.6276046 0.006085193 0.13636360
## 3379 0.8368062 0.056795130 0.18181820
## 3380 0.6574906 0.008113590 0.14285710
## 3381 0.6574906 0.008113590 0.14285710
## 3382 0.8523026 0.070993910 0.18518520
## 3383 0.8557289 0.075050710 0.18592960
## 3384 0.7396769 0.018255580 0.16071430
## 3385 0.7396769 0.018255580 0.16071430
## 3386 0.8952680 0.144016200 0.19452050
## 3387 0.5113816 0.002028398 0.11111110
## 3388 0.5113816 0.002028398 0.11111110
## 3389 0.5113816 0.002028398 0.11111110
## 3390 0.5113816 0.002028398 0.11111110
## 3391 0.5113816 0.002028398 0.11111110
## 3392 0.5113816 0.002028398 0.11111110
## 3393 0.5113816 0.002028398 0.11111110
## 3394 0.5113816 0.002028398 0.11111110
## 3395 0.5113816 0.002028398 0.11111110
## 3396 0.5113816 0.002028398 0.11111110
## 3397 0.5113816 0.002028398 0.11111110
## 3398 0.5113816 0.002028398 0.11111110
## 3399 0.5113816 0.002028398 0.11111110
## 3400 0.5113816 0.002028398 0.11111110
## 3401 0.5113816 0.002028398 0.11111110
## 3402 0.5113816 0.002028398 0.11111110
## 3403 0.5113816 0.002028398 0.11111110
## 3404 0.5113816 0.002028398 0.11111110
## 3405 0.5113816 0.002028398 0.11111110
## 3406 0.5113816 0.002028398 0.11111110
## 3407 0.5113816 0.002028398 0.11111110
## 3408 0.5113816 0.002028398 0.11111110
## 3409 0.5113816 0.002028398 0.11111110
## 3410 0.5113816 0.002028398 0.11111110
## 3411 0.5113816 0.002028398 0.11111110
## 3412 0.5113816 0.002028398 0.11111110
## 3413 0.5113816 0.002028398 0.11111110
## 3414 0.5113816 0.002028398 0.11111110
## 3415 0.5113816 0.002028398 0.11111110
## 3416 0.5113816 0.002028398 0.11111110
## 3417 0.5113816 0.002028398 0.11111110
## 3418 0.5113816 0.002028398 0.11111110
## 3419 0.5113816 0.002028398 0.11111110
## 3420 0.5113816 0.002028398 0.11111110
## 3421 0.5113816 0.002028398 0.11111110
## 3422 0.5113816 0.002028398 0.11111110
## 3423 0.5113816 0.002028398 0.11111110
## 3424 0.5113816 0.002028398 0.11111110
## 3425 0.5113816 0.002028398 0.11111110
## 3426 0.5113816 0.002028398 0.11111110
## 3427 0.5113816 0.002028398 0.11111110
## 3428 0.5113816 0.002028398 0.11111110
## 3429 0.5113816 0.002028398 0.11111110
## 3430 0.5113816 0.002028398 0.11111110
## 3431 0.5113816 0.002028398 0.11111110
## 3432 0.5113816 0.002028398 0.11111110
## 3433 0.5113816 0.002028398 0.11111110
## 3434 0.5113816 0.002028398 0.11111110
## 3435 0.5113816 0.002028398 0.11111110
## 3436 0.5113816 0.002028398 0.11111110
## 3437 0.5113816 0.002028398 0.11111110
## 3438 0.5113816 0.002028398 0.11111110
## 3439 0.5113816 0.002028398 0.11111110
## 3440 0.5113816 0.002028398 0.11111110
## 3441 0.8956088 0.146044600 0.19459460
## 3442 0.7845058 0.030425960 0.17045450
## 3443 0.8121942 0.042596350 0.17647060
## 3444 0.6768285 0.010141990 0.14705880
## 3445 0.6768285 0.010141990 0.14705880
## 3446 0.6768285 0.010141990 0.14705880
## 3447 0.7556235 0.022312370 0.16417910
## 3448 0.7556235 0.022312370 0.16417910
## 3449 0.5753043 0.004056795 0.12500000
## 3450 0.5753043 0.004056795 0.12500000
## 3451 0.5753043 0.004056795 0.12500000
## 3452 0.5753043 0.004056795 0.12500000
## 3453 0.5753043 0.004056795 0.12500000
## 3454 0.5753043 0.004056795 0.12500000
## 3455 0.5753043 0.004056795 0.12500000
## 3456 0.5753043 0.004056795 0.12500000
## 3457 0.5753043 0.004056795 0.12500000
## 3458 0.5753043 0.004056795 0.12500000
## 3459 0.5753043 0.004056795 0.12500000
## 3460 0.5753043 0.004056795 0.12500000
## 3461 0.5753043 0.004056795 0.12500000
## 3462 0.5753043 0.004056795 0.12500000
## 3463 0.5753043 0.004056795 0.12500000
## 3464 0.5753043 0.004056795 0.12500000
## 3465 0.5753043 0.004056795 0.12500000
## 3466 0.5753043 0.004056795 0.12500000
## 3467 0.5753043 0.004056795 0.12500000
## 3468 0.5753043 0.004056795 0.12500000
## 3469 0.5753043 0.004056795 0.12500000
## 3470 0.5753043 0.004056795 0.12500000
## 3471 0.5753043 0.004056795 0.12500000
## 3472 0.5753043 0.004056795 0.12500000
## 3473 0.5753043 0.004056795 0.12500000
## 3474 0.5753043 0.004056795 0.12500000
## 3475 0.5753043 0.004056795 0.12500000
## 3476 0.7219504 0.016227180 0.15686270
## 3477 0.7219504 0.016227180 0.15686270
## 3478 0.7965751 0.036511160 0.17307690
## 3479 0.8437796 0.066937120 0.18333330
## 3480 0.6903651 0.012170390 0.15000000
## 3481 0.6903651 0.012170390 0.15000000
## 3482 0.8182105 0.048681540 0.17777780
## 3483 0.7833930 0.032454360 0.17021280
## 3484 0.7565645 0.024340770 0.16438360
## 3485 0.8899734 0.141987800 0.19337020
## 3486 0.9480669 0.446247500 0.20599250
## 3487 0.9748746 0.770791100 0.21181720
## 3488 0.7267001 0.018255580 0.15789470
## 3489 0.9404974 0.381338700 0.20434780
## 3490 0.7003704 0.014198780 0.15217390
## 3491 0.8004233 0.040567950 0.17391300
## 3492 0.7949659 0.038539550 0.17272730
## 3493 0.7445114 0.022312370 0.16176470
## 3494 0.8865879 0.137931000 0.19263460
## 3495 0.7889887 0.036511160 0.17142860
## 3496 0.6348185 0.008113590 0.13793100
## 3497 0.6348185 0.008113590 0.13793100
## 3498 0.6348185 0.008113590 0.13793100
## 3499 0.6348185 0.008113590 0.13793100
## 3500 0.6348185 0.008113590 0.13793100
## 3501 0.6348185 0.008113590 0.13793100
## 3502 0.6348185 0.008113590 0.13793100
## 3503 0.8580809 0.089249490 0.18644070
## 3504 0.6003175 0.006085193 0.13043480
## 3505 0.6003175 0.006085193 0.13043480
## 3506 0.6003175 0.006085193 0.13043480
## 3507 0.6003175 0.006085193 0.13043480
## 3508 0.6003175 0.006085193 0.13043480
## 3509 0.6003175 0.006085193 0.13043480
## 3510 0.7824138 0.034482760 0.17000000
## 3511 0.7573626 0.026369170 0.16455700
## 3512 0.6574906 0.010141990 0.14285710
## 3513 0.6574906 0.010141990 0.14285710
## 3514 0.6574906 0.010141990 0.14285710
## 3515 0.6574906 0.010141990 0.14285710
## 3516 0.7080668 0.016227180 0.15384620
## 3517 0.7751468 0.032454360 0.16842110
## 3518 0.8840834 0.137931000 0.19209040
## 3519 0.6735269 0.012170390 0.14634150
## 3520 0.6735269 0.012170390 0.14634150
## 3521 0.8499991 0.083164300 0.18468470
## 3522 0.9326275 0.342799200 0.20263790
## 3523 0.5414628 0.004056795 0.11764710
## 3524 0.5414628 0.004056795 0.11764710
## 3525 0.5414628 0.004056795 0.11764710
## 3526 0.5414628 0.004056795 0.11764710
## 3527 0.5414628 0.004056795 0.11764710
## 3528 0.5414628 0.004056795 0.11764710
## 3529 0.5414628 0.004056795 0.11764710
## 3530 0.5414628 0.004056795 0.11764710
## 3531 0.5414628 0.004056795 0.11764710
## 3532 0.5414628 0.004056795 0.11764710
## 3533 0.7580480 0.028397570 0.16470590
## 3534 0.9381696 0.387423900 0.20384200
## 3535 0.7337214 0.022312370 0.15942030
## 3536 0.4602434 0.002028398 0.10000000
## 3537 0.4602434 0.002028398 0.10000000
## 3538 0.4602434 0.002028398 0.10000000
## 3539 0.4602434 0.002028398 0.10000000
## 3540 0.4602434 0.002028398 0.10000000
## 3541 0.4602434 0.002028398 0.10000000
## 3542 0.4602434 0.002028398 0.10000000
## 3543 0.4602434 0.002028398 0.10000000
## 3544 0.4602434 0.002028398 0.10000000
## 3545 0.4602434 0.002028398 0.10000000
## 3546 0.4602434 0.002028398 0.10000000
## 3547 0.4602434 0.002028398 0.10000000
## 3548 0.4602434 0.002028398 0.10000000
## 3549 0.4602434 0.002028398 0.10000000
## 3550 0.4602434 0.002028398 0.10000000
## 3551 0.4602434 0.002028398 0.10000000
## 3552 0.4602434 0.002028398 0.10000000
## 3553 0.4602434 0.002028398 0.10000000
## 3554 0.4602434 0.002028398 0.10000000
## 3555 0.4602434 0.002028398 0.10000000
## 3556 0.4602434 0.002028398 0.10000000
## 3557 0.4602434 0.002028398 0.10000000
## 3558 0.4602434 0.002028398 0.10000000
## 3559 0.4602434 0.002028398 0.10000000
## 3560 0.4602434 0.002028398 0.10000000
## 3561 0.4602434 0.002028398 0.10000000
## 3562 0.4602434 0.002028398 0.10000000
## 3563 0.4602434 0.002028398 0.10000000
## 3564 0.4602434 0.002028398 0.10000000
## 3565 0.4602434 0.002028398 0.10000000
## 3566 0.4602434 0.002028398 0.10000000
## 3567 0.4602434 0.002028398 0.10000000
## 3568 0.4602434 0.002028398 0.10000000
## 3569 0.4602434 0.002028398 0.10000000
## 3570 0.4602434 0.002028398 0.10000000
## 3571 0.4602434 0.002028398 0.10000000
## 3572 0.4602434 0.002028398 0.10000000
## 3573 0.4602434 0.002028398 0.10000000
## 3574 0.4602434 0.002028398 0.10000000
## 3575 0.7972720 0.044624750 0.17322830
## 3576 0.8766541 0.129817400 0.19047620
## 3577 0.8478168 0.085192700 0.18421050
## 3578 0.7670723 0.032454360 0.16666670
## 3579 0.7867409 0.040567950 0.17094020
## 3580 0.7191303 0.020283980 0.15625000
## 3581 0.6947070 0.016227180 0.15094340
## 3582 0.6947070 0.016227180 0.15094340
## 3583 0.6136579 0.008113590 0.13333330
## 3584 0.6136579 0.008113590 0.13333330
## 3585 0.6136579 0.008113590 0.13333330
## 3586 0.6136579 0.008113590 0.13333330
## 3587 0.8046213 0.050709940 0.17482520
## 3588 0.6392270 0.010141990 0.13888890
## 3589 0.6392270 0.010141990 0.13888890
## 3590 0.6392270 0.010141990 0.13888890
## 3591 0.8619400 0.107505100 0.18727920
## 3592 0.5753043 0.006085193 0.12500000
## 3593 0.5753043 0.006085193 0.12500000
## 3594 0.5753043 0.006085193 0.12500000
## 3595 0.5753043 0.006085193 0.12500000
## 3596 0.8303360 0.070993910 0.18041240
## 3597 0.6574906 0.012170390 0.14285710
## 3598 0.6574906 0.012170390 0.14285710
## 3599 0.7020662 0.018255580 0.15254240
## 3600 0.7020662 0.018255580 0.15254240
## 3601 0.9401859 0.425963500 0.20428020
## 3602 0.8542397 0.099391480 0.18560610
## 3603 0.7857814 0.042596350 0.17073170
## 3604 0.7591644 0.032454360 0.16494850
## 3605 0.8031093 0.052738340 0.17449660
## 3606 0.7738606 0.038539550 0.16814160
## 3607 0.7738606 0.038539550 0.16814160
## 3608 0.9192101 0.292089200 0.19972260
## 3609 0.7267001 0.024340770 0.15789470
## 3610 0.8182105 0.064908720 0.17777780
## 3611 0.7670723 0.036511160 0.16666670
## 3612 0.6818421 0.016227180 0.14814810
## 3613 0.8121942 0.060851930 0.17647060
## 3614 0.8121942 0.060851930 0.17647060
## 3615 0.5113816 0.004056795 0.11111110
## 3616 0.5113816 0.004056795 0.11111110
## 3617 0.5113816 0.004056795 0.11111110
## 3618 0.5113816 0.004056795 0.11111110
## 3619 0.5113816 0.004056795 0.11111110
## 3620 0.5113816 0.004056795 0.11111110
## 3621 0.5113816 0.004056795 0.11111110
## 3622 0.5113816 0.004056795 0.11111110
## 3623 0.5113816 0.004056795 0.11111110
## 3624 0.7596250 0.034482760 0.16504850
## 3625 0.6219506 0.010141990 0.13513510
## 3626 0.6219506 0.010141990 0.13513510
## 3627 0.5938625 0.008113590 0.12903230
## 3628 0.5938625 0.008113590 0.12903230
## 3629 0.5938625 0.008113590 0.12903230
## 3630 0.5938625 0.008113590 0.12903230
## 3631 0.5938625 0.008113590 0.12903230
## 3632 0.5938625 0.008113590 0.12903230
## 3633 0.5938625 0.008113590 0.12903230
## 3634 0.5938625 0.008113590 0.12903230
## 3635 0.6903651 0.018255580 0.15000000
## 3636 0.6903651 0.018255580 0.15000000
## 3637 0.9322628 0.385395500 0.20255860
## 3638 0.7296542 0.026369170 0.15853660
## 3639 0.6422001 0.012170390 0.13953490
## 3640 0.6422001 0.012170390 0.13953490
## 3641 0.9345759 0.403651100 0.20306120
## 3642 0.9672366 0.730223100 0.21015760
## 3643 0.7423281 0.030425960 0.16129030
## 3644 0.8074446 0.060851930 0.17543860
## 3645 0.4184031 0.002028398 0.09090909
## 3646 0.4184031 0.002028398 0.09090909
## 3647 0.4184031 0.002028398 0.09090909
## 3648 0.4184031 0.002028398 0.09090909
## 3649 0.4184031 0.002028398 0.09090909
## 3650 0.4184031 0.002028398 0.09090909
## 3651 0.4184031 0.002028398 0.09090909
## 3652 0.4184031 0.002028398 0.09090909
## 3653 0.4184031 0.002028398 0.09090909
## 3654 0.4184031 0.002028398 0.09090909
## 3655 0.4184031 0.002028398 0.09090909
## 3656 0.4184031 0.002028398 0.09090909
## 3657 0.4184031 0.002028398 0.09090909
## 3658 0.4184031 0.002028398 0.09090909
## 3659 0.4184031 0.002028398 0.09090909
## 3660 0.4184031 0.002028398 0.09090909
## 3661 0.4184031 0.002028398 0.09090909
## 3662 0.4184031 0.002028398 0.09090909
## 3663 0.4184031 0.002028398 0.09090909
## 3664 0.4184031 0.002028398 0.09090909
## 3665 0.4184031 0.002028398 0.09090909
## 3666 0.4184031 0.002028398 0.09090909
## 3667 0.4184031 0.002028398 0.09090909
## 3668 0.4184031 0.002028398 0.09090909
## 3669 0.4184031 0.002028398 0.09090909
## 3670 0.4184031 0.002028398 0.09090909
## 3671 0.4184031 0.002028398 0.09090909
## 3672 0.4184031 0.002028398 0.09090909
## 3673 0.4184031 0.002028398 0.09090909
## 3674 0.4184031 0.002028398 0.09090909
## 3675 0.4184031 0.002028398 0.09090909
## 3676 0.4184031 0.002028398 0.09090909
## 3677 0.4184031 0.002028398 0.09090909
## 3678 0.4184031 0.002028398 0.09090909
## 3679 0.4184031 0.002028398 0.09090909
## 3680 0.4184031 0.002028398 0.09090909
## 3681 0.4184031 0.002028398 0.09090909
## 3682 0.5522921 0.006085193 0.12000000
## 3683 0.5522921 0.006085193 0.12000000
## 3684 0.5522921 0.006085193 0.12000000
## 3685 0.5522921 0.006085193 0.12000000
## 3686 0.5522921 0.006085193 0.12000000
## 3687 0.5522921 0.006085193 0.12000000
## 3688 0.7600350 0.036511160 0.16513760
## 3689 0.7600350 0.036511160 0.16513760
## 3690 0.8583318 0.117647100 0.18649520
## 3691 0.7322054 0.028397570 0.15909090
## 3692 0.9204868 0.320486800 0.20000000
## 3693 0.6694450 0.016227180 0.14545450
## 3694 0.6694450 0.016227180 0.14545450
## 3695 0.9125516 0.279918900 0.19827590
## 3696 0.7438277 0.032454360 0.16161620
## 3697 0.7031497 0.022312370 0.15277780
## 3698 0.6790477 0.018255580 0.14754100
## 3699 0.8594907 0.125760600 0.18674700
## 3700 0.8594907 0.125760600 0.18674700
## 3701 0.7344310 0.030425960 0.15957450
## 3702 0.7531256 0.036511160 0.16363640
## 3703 0.6055834 0.010141990 0.13157890
## 3704 0.6055834 0.010141990 0.13157890
## 3705 0.8187022 0.075050710 0.17788460
## 3706 0.5753043 0.008113590 0.12500000
## 3707 0.5753043 0.008113590 0.12500000
## 3708 0.5753043 0.008113590 0.12500000
## 3709 0.8506149 0.113590300 0.18481850
## 3710 0.4844667 0.004056795 0.10526320
## 3711 0.4844667 0.004056795 0.10526320
## 3712 0.4844667 0.004056795 0.10526320
## 3713 0.4844667 0.004056795 0.10526320
## 3714 0.4844667 0.004056795 0.10526320
## 3715 0.4844667 0.004056795 0.10526320
## 3716 0.4844667 0.004056795 0.10526320
## 3717 0.4844667 0.004056795 0.10526320
## 3718 0.4844667 0.004056795 0.10526320
## 3719 0.4844667 0.004056795 0.10526320
## 3720 0.4844667 0.004056795 0.10526320
## 3721 0.6443408 0.014198780 0.14000000
## 3722 0.9181769 0.322515200 0.19949810
## 3723 0.7778762 0.048681540 0.16901410
## 3724 0.8795763 0.174442200 0.19111110
## 3725 0.6574906 0.016227180 0.14285710
## 3726 0.5310501 0.006085193 0.11538460
## 3727 0.5310501 0.006085193 0.11538460
## 3728 0.5310501 0.006085193 0.11538460
## 3729 0.5310501 0.006085193 0.11538460
## 3730 0.5310501 0.006085193 0.11538460
## 3731 0.5310501 0.006085193 0.11538460
## 3732 0.5310501 0.006085193 0.11538460
## 3733 0.5310501 0.006085193 0.11538460
## 3734 0.7122815 0.026369170 0.15476190
## 3735 0.7670723 0.044624750 0.16666670
## 3736 0.8523026 0.121703900 0.18518520
## 3737 0.6680953 0.018255580 0.14516130
## 3738 0.7159342 0.028397570 0.15555560
## 3739 0.3835362 0.002028398 0.08333333
## 3740 0.3835362 0.002028398 0.08333333
## 3741 0.3835362 0.002028398 0.08333333
## 3742 0.3835362 0.002028398 0.08333333
## 3743 0.3835362 0.002028398 0.08333333
## 3744 0.3835362 0.002028398 0.08333333
## 3745 0.3835362 0.002028398 0.08333333
## 3746 0.3835362 0.002028398 0.08333333
## 3747 0.3835362 0.002028398 0.08333333
## 3748 0.3835362 0.002028398 0.08333333
## 3749 0.3835362 0.002028398 0.08333333
## 3750 0.3835362 0.002028398 0.08333333
## 3751 0.3835362 0.002028398 0.08333333
## 3752 0.3835362 0.002028398 0.08333333
## 3753 0.3835362 0.002028398 0.08333333
## 3754 0.3835362 0.002028398 0.08333333
## 3755 0.3835362 0.002028398 0.08333333
## 3756 0.3835362 0.002028398 0.08333333
## 3757 0.3835362 0.002028398 0.08333333
## 3758 0.3835362 0.002028398 0.08333333
## 3759 0.3835362 0.002028398 0.08333333
## 3760 0.3835362 0.002028398 0.08333333
## 3761 0.3835362 0.002028398 0.08333333
## 3762 0.3835362 0.002028398 0.08333333
## 3763 0.3835362 0.002028398 0.08333333
## 3764 0.3835362 0.002028398 0.08333333
## 3765 0.3835362 0.002028398 0.08333333
## 3766 0.3835362 0.002028398 0.08333333
## 3767 0.3835362 0.002028398 0.08333333
## 3768 0.3835362 0.002028398 0.08333333
## 3769 0.3835362 0.002028398 0.08333333
## 3770 0.3835362 0.002028398 0.08333333
## 3771 0.8158860 0.079107510 0.17727270
## 3772 0.6768285 0.020283980 0.14705880
## 3773 0.9040496 0.267748500 0.19642860
## 3774 0.6136579 0.012170390 0.13333330
## 3775 0.7670723 0.046653140 0.16666670
## 3776 0.9058336 0.275862100 0.19681620
## 3777 0.5900557 0.010141990 0.12820510
## 3778 0.9660399 0.748478700 0.20989760
## 3779 0.8983951 0.247464500 0.19520000
## 3780 0.5578708 0.008113590 0.12121210
## 3781 0.5578708 0.008113590 0.12121210
## 3782 0.5578708 0.008113590 0.12121210
## 3783 0.5578708 0.008113590 0.12121210
## 3784 0.5578708 0.008113590 0.12121210
## 3785 0.5578708 0.008113590 0.12121210
## 3786 0.6841456 0.022312370 0.14864860
## 3787 0.8382440 0.107505100 0.18213060
## 3788 0.7889887 0.060851930 0.17142860
## 3789 0.7670723 0.048681540 0.16666670
## 3790 0.7312278 0.034482760 0.15887850
## 3791 0.4602434 0.004056795 0.10000000
## 3792 0.4602434 0.004056795 0.10000000
## 3793 0.4602434 0.004056795 0.10000000
## 3794 0.4602434 0.004056795 0.10000000
## 3795 0.4602434 0.004056795 0.10000000
## 3796 0.4602434 0.004056795 0.10000000
## 3797 0.8503031 0.127789000 0.18475070
## 3798 0.7080668 0.028397570 0.15384620
## 3799 0.5113816 0.006085193 0.11111110
## 3800 0.5113816 0.006085193 0.11111110
## 3801 0.5113816 0.006085193 0.11111110
## 3802 0.5113816 0.006085193 0.11111110
## 3803 0.7219504 0.032454360 0.15686270
## 3804 0.6670194 0.020283980 0.14492750
## 3805 0.6670194 0.020283980 0.14492750
## 3806 0.8420857 0.117647100 0.18296530
## 3807 0.7492335 0.042596350 0.16279070
## 3808 0.6003175 0.012170390 0.13043480
## 3809 0.6003175 0.012170390 0.13043480
## 3810 0.8478168 0.127789000 0.18421050
## 3811 0.6195584 0.014198780 0.13461540
## 3812 0.6195584 0.014198780 0.13461540
## 3813 0.5753043 0.010141990 0.12500000
## 3814 0.5753043 0.010141990 0.12500000
## 3815 0.7718368 0.054766730 0.16770190
## 3816 0.8243166 0.097363080 0.17910450
## 3817 0.8442335 0.125760600 0.18343200
## 3818 0.8662178 0.168357000 0.18820860
## 3819 0.3540334 0.002028398 0.07692308
## 3820 0.3540334 0.002028398 0.07692308
## 3821 0.3540334 0.002028398 0.07692308
## 3822 0.3540334 0.002028398 0.07692308
## 3823 0.3540334 0.002028398 0.07692308
## 3824 0.3540334 0.002028398 0.07692308
## 3825 0.3540334 0.002028398 0.07692308
## 3826 0.3540334 0.002028398 0.07692308
## 3827 0.3540334 0.002028398 0.07692308
## 3828 0.3540334 0.002028398 0.07692308
## 3829 0.3540334 0.002028398 0.07692308
## 3830 0.3540334 0.002028398 0.07692308
## 3831 0.3540334 0.002028398 0.07692308
## 3832 0.3540334 0.002028398 0.07692308
## 3833 0.3540334 0.002028398 0.07692308
## 3834 0.3540334 0.002028398 0.07692308
## 3835 0.3540334 0.002028398 0.07692308
## 3836 0.3540334 0.002028398 0.07692308
## 3837 0.3540334 0.002028398 0.07692308
## 3838 0.3540334 0.002028398 0.07692308
## 3839 0.3540334 0.002028398 0.07692308
## 3840 0.3540334 0.002028398 0.07692308
## 3841 0.3540334 0.002028398 0.07692308
## 3842 0.3540334 0.002028398 0.07692308
## 3843 0.3540334 0.002028398 0.07692308
## 3844 0.3540334 0.002028398 0.07692308
## 3845 0.3540334 0.002028398 0.07692308
## 3846 0.3540334 0.002028398 0.07692308
## 3847 0.6877200 0.026369170 0.14942530
## 3848 0.4383271 0.004056795 0.09523810
## 3849 0.4383271 0.004056795 0.09523810
## 3850 0.4383271 0.004056795 0.09523810
## 3851 0.4383271 0.004056795 0.09523810
## 3852 0.4383271 0.004056795 0.09523810
## 3853 0.4383271 0.004056795 0.09523810
## 3854 0.4931179 0.006085193 0.10714290
## 3855 0.6078687 0.014198780 0.13207550
## 3856 0.8666921 0.176470600 0.18831170
## 3857 0.5612724 0.010141990 0.12195120
## 3858 0.5612724 0.010141990 0.12195120
## 3859 0.9038372 0.308316400 0.19638240
## 3860 0.9038372 0.308316400 0.19638240
## 3861 0.9038372 0.308316400 0.19638240
## 3862 0.5259925 0.008113590 0.11428570
## 3863 0.5259925 0.008113590 0.11428570
## 3864 0.6482302 0.020283980 0.14084510
## 3865 0.6973385 0.030425960 0.15151520
## 3866 0.7226963 0.038539550 0.15702480
## 3867 0.7857814 0.070993910 0.17073170
## 3868 0.7322054 0.042596350 0.15909090
## 3869 0.7013233 0.032454360 0.15238100
## 3870 0.7013233 0.032454360 0.15238100
## 3871 0.5966118 0.014198780 0.12962960
## 3872 0.6136579 0.016227180 0.13333330
## 3873 0.6136579 0.016227180 0.13333330
## 3874 0.6654122 0.024340770 0.14457830
## 3875 0.6654122 0.024340770 0.14457830
## 3876 0.6654122 0.024340770 0.14457830
## 3877 0.6654122 0.024340770 0.14457830
## 3878 0.7577178 0.054766730 0.16463410
## 3879 0.6276046 0.018255580 0.13636360
## 3880 0.5479088 0.010141990 0.11904760
## 3881 0.5479088 0.010141990 0.11904760
## 3882 0.7525993 0.052738340 0.16352200
## 3883 0.4761139 0.006085193 0.10344830
## 3884 0.4761139 0.006085193 0.10344830
## 3885 0.4761139 0.006085193 0.10344830
## 3886 0.4761139 0.006085193 0.10344830
## 3887 0.3287453 0.002028398 0.07142857
## 3888 0.3287453 0.002028398 0.07142857
## 3889 0.3287453 0.002028398 0.07142857
## 3890 0.3287453 0.002028398 0.07142857
## 3891 0.3287453 0.002028398 0.07142857
## 3892 0.3287453 0.002028398 0.07142857
## 3893 0.3287453 0.002028398 0.07142857
## 3894 0.3287453 0.002028398 0.07142857
## 3895 0.3287453 0.002028398 0.07142857
## 3896 0.3287453 0.002028398 0.07142857
## 3897 0.3287453 0.002028398 0.07142857
## 3898 0.3287453 0.002028398 0.07142857
## 3899 0.3287453 0.002028398 0.07142857
## 3900 0.3287453 0.002028398 0.07142857
## 3901 0.3287453 0.002028398 0.07142857
## 3902 0.3287453 0.002028398 0.07142857
## 3903 0.3287453 0.002028398 0.07142857
## 3904 0.3287453 0.002028398 0.07142857
## 3905 0.3287453 0.002028398 0.07142857
## 3906 0.4184031 0.004056795 0.09090909
## 3907 0.4184031 0.004056795 0.09090909
## 3908 0.4184031 0.004056795 0.09090909
## 3909 0.4184031 0.004056795 0.09090909
## 3910 0.4184031 0.004056795 0.09090909
## 3911 0.4184031 0.004056795 0.09090909
## 3912 0.4184031 0.004056795 0.09090909
## 3913 0.4184031 0.004056795 0.09090909
## 3914 0.4184031 0.004056795 0.09090909
## 3915 0.4184031 0.004056795 0.09090909
## 3916 0.8035996 0.089249490 0.17460320
## 3917 0.6392270 0.020283980 0.13888890
## 3918 0.7785212 0.068965520 0.16915420
## 3919 0.5113816 0.008113590 0.11111110
## 3920 0.5113816 0.008113590 0.11111110
## 3921 0.9006034 0.312373200 0.19567980
## 3922 0.7628344 0.060851930 0.16574590
## 3923 0.6574906 0.024340770 0.14285710
## 3924 0.5857643 0.014198780 0.12727270
## 3925 0.7746671 0.068965520 0.16831680
## 3926 0.7423281 0.050709940 0.16129030
## 3927 0.5635634 0.012170390 0.12244900
## 3928 0.5635634 0.012170390 0.12244900
## 3929 0.5635634 0.012170390 0.12244900
## 3930 0.5635634 0.012170390 0.12244900
## 3931 0.6182374 0.018255580 0.13432840
## 3932 0.8926316 0.286004100 0.19394770
## 3933 0.7778762 0.073022310 0.16901410
## 3934 0.8907937 0.279918900 0.19354840
## 3935 0.8888821 0.273833700 0.19313300
## 3936 0.4602434 0.006085193 0.10000000
## 3937 0.4602434 0.006085193 0.10000000
## 3938 0.4602434 0.006085193 0.10000000
## 3939 0.4002117 0.004056795 0.08695652
## 3940 0.4002117 0.004056795 0.08695652
## 3941 0.4002117 0.004056795 0.08695652
## 3942 0.4002117 0.004056795 0.08695652
## 3943 0.4002117 0.004056795 0.08695652
## 3944 0.4002117 0.004056795 0.08695652
## 3945 0.4002117 0.004056795 0.08695652
## 3946 0.4002117 0.004056795 0.08695652
## 3947 0.4002117 0.004056795 0.08695652
## 3948 0.4002117 0.004056795 0.08695652
## 3949 0.4975604 0.008113590 0.10810810
## 3950 0.4975604 0.008113590 0.10810810
## 3951 0.4975604 0.008113590 0.10810810
## 3952 0.4975604 0.008113590 0.10810810
## 3953 0.4975604 0.008113590 0.10810810
## 3954 0.4975604 0.008113590 0.10810810
## 3955 0.7315127 0.048681540 0.15894040
## 3956 0.5938625 0.016227180 0.12903230
## 3957 0.5938625 0.016227180 0.12903230
## 3958 0.5938625 0.016227180 0.12903230
## 3959 0.7742412 0.073022310 0.16822430
## 3960 0.5753043 0.014198780 0.12500000
## 3961 0.3068289 0.002028398 0.06666667
## 3962 0.3068289 0.002028398 0.06666667
## 3963 0.3068289 0.002028398 0.06666667
## 3964 0.3068289 0.002028398 0.06666667
## 3965 0.3068289 0.002028398 0.06666667
## 3966 0.3068289 0.002028398 0.06666667
## 3967 0.3068289 0.002028398 0.06666667
## 3968 0.3068289 0.002028398 0.06666667
## 3969 0.3068289 0.002028398 0.06666667
## 3970 0.3068289 0.002028398 0.06666667
## 3971 0.3068289 0.002028398 0.06666667
## 3972 0.3068289 0.002028398 0.06666667
## 3973 0.3068289 0.002028398 0.06666667
## 3974 0.3068289 0.002028398 0.06666667
## 3975 0.3068289 0.002028398 0.06666667
## 3976 0.3068289 0.002028398 0.06666667
## 3977 0.3068289 0.002028398 0.06666667
## 3978 0.3068289 0.002028398 0.06666667
## 3979 0.3068289 0.002028398 0.06666667
## 3980 0.3068289 0.002028398 0.06666667
## 3981 0.5522921 0.012170390 0.12000000
## 3982 0.5522921 0.012170390 0.12000000
## 3983 0.5522921 0.012170390 0.12000000
## 3984 0.5522921 0.012170390 0.12000000
## 3985 0.5230039 0.010141990 0.11363640
## 3986 0.5230039 0.010141990 0.11363640
## 3987 0.7548966 0.062880320 0.16402120
## 3988 0.7267001 0.048681540 0.15789470
## 3989 0.8547378 0.184584200 0.18571430
## 3990 0.7997137 0.099391480 0.17375890
## 3991 0.4453968 0.006085193 0.09677419
## 3992 0.4453968 0.006085193 0.09677419
## 3993 0.4453968 0.006085193 0.09677419
## 3994 0.4453968 0.006085193 0.09677419
## 3995 0.4453968 0.006085193 0.09677419
## 3996 0.4453968 0.006085193 0.09677419
## 3997 0.5844361 0.016227180 0.12698410
## 3998 0.5652112 0.014198780 0.12280700
## 3999 0.4844667 0.008113590 0.10526320
## 4000 0.4844667 0.008113590 0.10526320
## 4001 0.4844667 0.008113590 0.10526320
## 4002 0.5414628 0.012170390 0.11764710
## 4003 0.5414628 0.012170390 0.11764710
## 4004 0.8011063 0.103448300 0.17406140
## 4005 0.3835362 0.004056795 0.08333333
## 4006 0.3835362 0.004056795 0.08333333
## 4007 0.3835362 0.004056795 0.08333333
## 4008 0.3835362 0.004056795 0.08333333
## 4009 0.8738799 0.243407700 0.18987340
## 4010 0.6348185 0.024340770 0.13793100
## 4011 0.2876521 0.002028398 0.06250000
## 4012 0.2876521 0.002028398 0.06250000
## 4013 0.2876521 0.002028398 0.06250000
## 4014 0.2876521 0.002028398 0.06250000
## 4015 0.2876521 0.002028398 0.06250000
## 4016 0.2876521 0.002028398 0.06250000
## 4017 0.2876521 0.002028398 0.06250000
## 4018 0.2876521 0.002028398 0.06250000
## 4019 0.2876521 0.002028398 0.06250000
## 4020 0.2876521 0.002028398 0.06250000
## 4021 0.2876521 0.002028398 0.06250000
## 4022 0.2876521 0.002028398 0.06250000
## 4023 0.2876521 0.002028398 0.06250000
## 4024 0.2876521 0.002028398 0.06250000
## 4025 0.2876521 0.002028398 0.06250000
## 4026 0.2876521 0.002028398 0.06250000
## 4027 0.2876521 0.002028398 0.06250000
## 4028 0.2876521 0.002028398 0.06250000
## 4029 0.2876521 0.002028398 0.06250000
## 4030 0.2876521 0.002028398 0.06250000
## 4031 0.2876521 0.002028398 0.06250000
## 4032 0.2876521 0.002028398 0.06250000
## 4033 0.2876521 0.002028398 0.06250000
## 4034 0.2876521 0.002028398 0.06250000
## 4035 0.2876521 0.002028398 0.06250000
## 4036 0.7635375 0.073022310 0.16589860
## 4037 0.7309748 0.054766730 0.15882350
## 4038 0.7423281 0.060851930 0.16129030
## 4039 0.4314782 0.006085193 0.09375000
## 4040 0.4314782 0.006085193 0.09375000
## 4041 0.6574906 0.030425960 0.14285710
## 4042 0.5310501 0.012170390 0.11538460
## 4043 0.5310501 0.012170390 0.11538460
## 4044 0.4720445 0.008113590 0.10256410
## 4045 0.7600350 0.073022310 0.16513760
## 4046 0.8726328 0.251521300 0.18960240
## 4047 0.7788735 0.089249490 0.16923080
## 4048 0.3681947 0.004056795 0.08000000
## 4049 0.3681947 0.004056795 0.08000000
## 4050 0.3681947 0.004056795 0.08000000
## 4051 0.3681947 0.004056795 0.08000000
## 4052 0.3681947 0.004056795 0.08000000
## 4053 0.3681947 0.004056795 0.08000000
## 4054 0.7991365 0.109533500 0.17363340
## 4055 0.6443408 0.028397570 0.14000000
## 4056 0.6443408 0.028397570 0.14000000
## 4057 0.7057066 0.046653140 0.15333330
## 4058 0.6099611 0.022312370 0.13253010
## 4059 0.6099611 0.022312370 0.13253010
## 4060 0.6099611 0.022312370 0.13253010
## 4061 0.7146637 0.050709940 0.15527950
## 4062 0.7965751 0.109533500 0.17307690
## 4063 0.7344310 0.060851930 0.15957450
## 4064 0.2707314 0.002028398 0.05882353
## 4065 0.2707314 0.002028398 0.05882353
## 4066 0.2707314 0.002028398 0.05882353
## 4067 0.2707314 0.002028398 0.05882353
## 4068 0.2707314 0.002028398 0.05882353
## 4069 0.2707314 0.002028398 0.05882353
## 4070 0.2707314 0.002028398 0.05882353
## 4071 0.2707314 0.002028398 0.05882353
## 4072 0.2707314 0.002028398 0.05882353
## 4073 0.2707314 0.002028398 0.05882353
## 4074 0.4184031 0.006085193 0.09090909
## 4075 0.4184031 0.006085193 0.09090909
## 4076 0.4184031 0.006085193 0.09090909
## 4077 0.4184031 0.006085193 0.09090909
## 4078 0.7670723 0.083164300 0.16666670
## 4079 0.9070817 0.411764700 0.19708740
## 4080 0.4896206 0.010141990 0.10638300
## 4081 0.4896206 0.010141990 0.10638300
## 4082 0.5578708 0.016227180 0.12121210
## 4083 0.5578708 0.016227180 0.12121210
## 4084 0.5578708 0.016227180 0.12121210
## 4085 0.5578708 0.016227180 0.12121210
## 4086 0.8669210 0.249492900 0.18836140
## 4087 0.7992251 0.117647100 0.17365270
## 4088 0.3540334 0.004056795 0.07692308
## 4089 0.3540334 0.004056795 0.07692308
## 4090 0.3540334 0.004056795 0.07692308
## 4091 0.3540334 0.004056795 0.07692308
## 4092 0.8510785 0.208924900 0.18491920
## 4093 0.8331993 0.170385400 0.18103450
## 4094 0.6574906 0.034482760 0.14285710
## 4095 0.5113816 0.012170390 0.11111110
## 4096 0.7501765 0.075050710 0.16299560
## 4097 0.6392270 0.030425960 0.13888890
## 4098 0.4490180 0.008113590 0.09756098
## 4099 0.4490180 0.008113590 0.09756098
## 4100 0.4060971 0.006085193 0.08823529
## 4101 0.4060971 0.006085193 0.08823529
## 4102 0.4060971 0.006085193 0.08823529
## 4103 0.4060971 0.006085193 0.08823529
## 4104 0.6459557 0.032454360 0.14035090
## 4105 0.2556908 0.002028398 0.05555556
## 4106 0.2556908 0.002028398 0.05555556
## 4107 0.7100898 0.054766730 0.15428570
## 4108 0.6574906 0.036511160 0.14285710
## 4109 0.3409210 0.004056795 0.07407407
## 4110 0.3409210 0.004056795 0.07407407
## 4111 0.3409210 0.004056795 0.07407407
## 4112 0.3409210 0.004056795 0.07407407
## 4113 0.3409210 0.004056795 0.07407407
## 4114 0.3409210 0.004056795 0.07407407
## 4115 0.3409210 0.004056795 0.07407407
## 4116 0.3409210 0.004056795 0.07407407
## 4117 0.3409210 0.004056795 0.07407407
## 4118 0.3409210 0.004056795 0.07407407
## 4119 0.7191303 0.060851930 0.15625000
## 4120 0.7301939 0.066937120 0.15865380
## 4121 0.7818237 0.107505100 0.16987180
## 4122 0.4383271 0.008113590 0.09523810
## 4123 0.3944943 0.006085193 0.08571429
## 4124 0.3944943 0.006085193 0.08571429
## 4125 0.3944943 0.006085193 0.08571429
## 4126 0.4696361 0.010141990 0.10204080
## 4127 0.4696361 0.010141990 0.10204080
## 4128 0.7312278 0.068965520 0.15887850
## 4129 0.6348185 0.032454360 0.13793100
## 4130 0.5682017 0.020283980 0.12345680
## 4131 0.7447922 0.079107510 0.16182570
## 4132 0.2422334 0.002028398 0.05263158
## 4133 0.2422334 0.002028398 0.05263158
## 4134 0.2422334 0.002028398 0.05263158
## 4135 0.2422334 0.002028398 0.05263158
## 4136 0.2422334 0.002028398 0.05263158
## 4137 0.2422334 0.002028398 0.05263158
## 4138 0.2422334 0.002028398 0.05263158
## 4139 0.2422334 0.002028398 0.05263158
## 4140 0.2422334 0.002028398 0.05263158
## 4141 0.2422334 0.002028398 0.05263158
## 4142 0.2422334 0.002028398 0.05263158
## 4143 0.2422334 0.002028398 0.05263158
## 4144 0.2422334 0.002028398 0.05263158
## 4145 0.2422334 0.002028398 0.05263158
## 4146 0.5522921 0.018255580 0.12000000
## 4147 0.5522921 0.018255580 0.12000000
## 4148 0.6413228 0.034482760 0.13934430
## 4149 0.5336155 0.016227180 0.11594200
## 4150 0.8327361 0.188641000 0.18093390
## 4151 0.3287453 0.004056795 0.07142857
## 4152 0.3287453 0.004056795 0.07142857
## 4153 0.3287453 0.004056795 0.07142857
## 4154 0.3287453 0.004056795 0.07142857
## 4155 0.4281334 0.008113590 0.09302326
## 4156 0.4281334 0.008113590 0.09302326
## 4157 0.4281334 0.008113590 0.09302326
## 4158 0.6525839 0.038539550 0.14179100
## 4159 0.3835362 0.006085193 0.08333333
## 4160 0.3835362 0.006085193 0.08333333
## 4161 0.3835362 0.006085193 0.08333333
## 4162 0.6361088 0.034482760 0.13821140
## 4163 0.4844667 0.012170390 0.10526320
## 4164 0.4844667 0.012170390 0.10526320
## 4165 0.7080668 0.060851930 0.15384620
## 4166 0.6619939 0.042596350 0.14383560
## 4167 0.2301217 0.002028398 0.05000000
## 4168 0.2301217 0.002028398 0.05000000
## 4169 0.2301217 0.002028398 0.05000000
## 4170 0.2301217 0.002028398 0.05000000
## 4171 0.2301217 0.002028398 0.05000000
## 4172 0.2301217 0.002028398 0.05000000
## 4173 0.2301217 0.002028398 0.05000000
## 4174 0.4184031 0.008113590 0.09090909
## 4175 0.4512190 0.010141990 0.09803922
## 4176 0.7223551 0.070993910 0.15695070
## 4177 0.6021876 0.028397570 0.13084110
## 4178 0.6109426 0.030425960 0.13274340
## 4179 0.4761139 0.012170390 0.10344830
## 4180 0.4761139 0.012170390 0.10344830
## 4181 0.8448913 0.231237300 0.18357490
## 4182 0.7130532 0.066937120 0.15492960
## 4183 0.6259310 0.034482760 0.13600000
## 4184 0.5753043 0.024340770 0.12500000
## 4185 0.5753043 0.024340770 0.12500000
## 4186 0.7145331 0.068965520 0.15525110
## 4187 0.4091053 0.008113590 0.08888889
## 4188 0.8415454 0.229208900 0.18284790
## 4189 0.8590374 0.277890500 0.18664850
## 4190 0.3068289 0.004056795 0.06666667
## 4191 0.3068289 0.004056795 0.06666667
## 4192 0.3068289 0.004056795 0.06666667
## 4193 0.3068289 0.004056795 0.06666667
## 4194 0.3068289 0.004056795 0.06666667
## 4195 0.4680441 0.012170390 0.10169490
## 4196 0.5113816 0.016227180 0.11111110
## 4197 0.2191635 0.002028398 0.04761905
## 4198 0.2191635 0.002028398 0.04761905
## 4199 0.6915575 0.058823530 0.15025910
## 4200 0.6854689 0.056795130 0.14893620
## 4201 0.5414628 0.020283980 0.11764710
## 4202 0.6003175 0.030425960 0.13043480
## 4203 0.4002117 0.008113590 0.08695652
## 4204 0.7912175 0.144016200 0.17191280
## 4205 0.6722657 0.052738340 0.14606740
## 4206 0.2969312 0.004056795 0.06451613
## 4207 0.2969312 0.004056795 0.06451613
## 4208 0.2969312 0.004056795 0.06451613
## 4209 0.3540334 0.006085193 0.07692308
## 4210 0.8021672 0.162271800 0.17429190
## 4211 0.7967767 0.154158200 0.17312070
## 4212 0.6035979 0.032454360 0.13114750
## 4213 0.6035979 0.032454360 0.13114750
## 4214 0.2092015 0.002028398 0.04545455
## 4215 0.2092015 0.002028398 0.04545455
## 4216 0.2092015 0.002028398 0.04545455
## 4217 0.2092015 0.002028398 0.04545455
## 4218 0.2092015 0.002028398 0.04545455
## 4219 0.4261513 0.010141990 0.09259259
## 4220 0.7712870 0.123732300 0.16758240
## 4221 0.3451826 0.006085193 0.07500000
## 4222 0.2876521 0.004056795 0.06250000
## 4223 0.2876521 0.004056795 0.06250000
## 4224 0.7447304 0.101419900 0.16181230
## 4225 0.5850552 0.030425960 0.12711860
## 4226 0.4184031 0.010141990 0.09090909
## 4227 0.8847398 0.401622700 0.19223300
## 4228 0.2001058 0.002028398 0.04347826
## 4229 0.2001058 0.002028398 0.04347826
## 4230 0.2001058 0.002028398 0.04347826
## 4231 0.2001058 0.002028398 0.04347826
## 4232 0.2001058 0.002028398 0.04347826
## 4233 0.2001058 0.002028398 0.04347826
## 4234 0.4453968 0.012170390 0.09677419
## 4235 0.3835362 0.008113590 0.08333333
## 4236 0.5051452 0.018255580 0.10975610
## 4237 0.5591742 0.026369170 0.12149530
## 4238 0.2789354 0.004056795 0.06060606
## 4239 0.4109316 0.010141990 0.08928571
## 4240 0.5171274 0.020283980 0.11235960
## 4241 0.4383271 0.012170390 0.09523810
## 4242 0.6872413 0.066937120 0.14932130
## 4243 0.3757089 0.008113590 0.08163265
## 4244 0.1917681 0.002028398 0.04166667
## 4245 0.1917681 0.002028398 0.04166667
## 4246 0.1917681 0.002028398 0.04166667
## 4247 0.3287453 0.006085193 0.07142857
## 4248 0.5705497 0.030425960 0.12396690
## 4249 0.5705497 0.030425960 0.12396690
## 4250 0.5798342 0.032454360 0.12598430
## 4251 0.4537611 0.014198780 0.09859155
## 4252 0.6300951 0.046653140 0.13690480
## 4253 0.7631587 0.131845800 0.16581630
## 4254 0.6348185 0.048681540 0.13793100
## 4255 0.1840974 0.002028398 0.04000000
## 4256 0.3211001 0.006085193 0.06976744
## 4257 0.8858759 0.436105500 0.19247990
## 4258 0.6725018 0.064908720 0.14611870
## 4259 0.8117307 0.208924900 0.17636990
## 4260 0.2629962 0.004056795 0.05714286
## 4261 0.2629962 0.004056795 0.05714286
## 4262 0.5507186 0.028397570 0.11965810
## 4263 0.7985567 0.188641000 0.17350750
## 4264 0.5259925 0.024340770 0.11428570
## 4265 0.4184031 0.012170390 0.09090909
## 4266 0.5113816 0.022312370 0.11111110
## 4267 0.1770167 0.002028398 0.03846154
## 4268 0.1770167 0.002028398 0.03846154
## 4269 0.1770167 0.002028398 0.03846154
## 4270 0.1770167 0.002028398 0.03846154
## 4271 0.1770167 0.002028398 0.03846154
## 4272 0.7982081 0.190669400 0.17343170
## 4273 0.3540334 0.008113590 0.07692308
## 4274 0.4602434 0.016227180 0.10000000
## 4275 0.2556908 0.004056795 0.05555556
## 4276 0.5342111 0.026369170 0.11607140
## 4277 0.5908530 0.038539550 0.12837840
## 4278 0.5210303 0.024340770 0.11320750
## 4279 0.7596250 0.137931000 0.16504850
## 4280 0.4121583 0.012170390 0.08955224
## 4281 0.5062677 0.022312370 0.11000000
## 4282 0.3835362 0.010141990 0.08333333
## 4283 0.1704605 0.002028398 0.03703704
## 4284 0.6003175 0.042596350 0.13043480
## 4285 0.2487802 0.004056795 0.05405405
## 4286 0.2487802 0.004056795 0.05405405
## 4287 0.8560326 0.344827600 0.18599560
## 4288 0.2422334 0.004056795 0.05263158
## 4289 0.5929516 0.042596350 0.12883440
## 4290 0.8668662 0.393509100 0.18834950
## 4291 0.5753043 0.038539550 0.12500000
## 4292 0.4184031 0.014198780 0.09090909
## 4293 0.1587046 0.002028398 0.03448276
## 4294 0.2360223 0.004056795 0.05128205
## 4295 0.2360223 0.004056795 0.05128205
## 4296 0.5351668 0.030425960 0.11627910
## 4297 0.4551858 0.018255580 0.09890110
## 4298 0.4130390 0.014198780 0.08974359
## 4299 0.4130390 0.014198780 0.08974359
## 4300 0.7433860 0.137931000 0.16152020
## 4301 0.2301217 0.004056795 0.05000000
## 4302 0.4776111 0.022312370 0.10377360
## 4303 0.3540334 0.010141990 0.07692308
## 4304 0.3540334 0.010141990 0.07692308
## 4305 0.6195584 0.056795130 0.13461540
## 4306 0.6375666 0.064908720 0.13852810
## 4307 0.3782823 0.012170390 0.08219178
## 4308 0.1484656 0.002028398 0.03225806
## 4309 0.5938625 0.048681540 0.12903230
## 4310 0.2761460 0.006085193 0.06000000
## 4311 0.4406586 0.018255580 0.09574468
## 4312 0.4406586 0.018255580 0.09574468
## 4313 0.3486692 0.010141990 0.07575758
## 4314 0.6812814 0.091277890 0.14802630
## 4315 0.2707314 0.006085193 0.05882353
## 4316 0.2707314 0.006085193 0.05882353
## 4317 0.6257695 0.062880320 0.13596490
## 4318 0.5499764 0.038539550 0.11949690
## 4319 0.5578708 0.040567950 0.12121210
## 4320 0.5619251 0.042596350 0.12209300
## 4321 0.5753043 0.046653140 0.12500000
## 4322 0.5656623 0.044624750 0.12290500
## 4323 0.2092015 0.004056795 0.04545455
## 4324 0.8403185 0.352941200 0.18258130
## 4325 0.4226725 0.018255580 0.09183673
## 4326 0.1353657 0.002028398 0.02941176
## 4327 0.1353657 0.002028398 0.02941176
## 4328 0.1353657 0.002028398 0.02941176
## 4329 0.1353657 0.002028398 0.02941176
## 4330 0.6552076 0.083164300 0.14236110
## 4331 0.6828537 0.101419900 0.14836800
## 4332 0.8549808 0.407707900 0.18576710
## 4333 0.2556908 0.006085193 0.05555556
## 4334 0.6482302 0.081135900 0.14084510
## 4335 0.7441061 0.164300200 0.16167660
## 4336 0.1314981 0.002028398 0.02857143
## 4337 0.1314981 0.002028398 0.02857143
## 4338 0.1314981 0.002028398 0.02857143
## 4339 0.2922180 0.008113590 0.06349206
## 4340 0.3959083 0.016227180 0.08602151
## 4341 0.3451826 0.012170390 0.07500000
## 4342 0.3451826 0.012170390 0.07500000
## 4343 0.3451826 0.012170390 0.07500000
## 4344 0.1958483 0.004056795 0.04255319
## 4345 0.2832267 0.008113590 0.06153846
## 4346 0.1243901 0.002028398 0.02702703
## 4347 0.1243901 0.002028398 0.02702703
## 4348 0.1243901 0.002028398 0.02702703
## 4349 0.1917681 0.004056795 0.04166667
## 4350 0.4021544 0.018255580 0.08737864
## 4351 0.5339841 0.042596350 0.11602210
## 4352 0.4290405 0.022312370 0.09322034
## 4353 0.3327061 0.012170390 0.07228916
## 4354 0.9059026 0.655172400 0.19683120
## 4355 0.8313778 0.367140000 0.18063870
## 4356 0.2707314 0.008113590 0.05882353
## 4357 0.6018568 0.068965520 0.13076920
## 4358 0.7966854 0.281947300 0.17310090
## 4359 0.7118171 0.148073000 0.15466100
## 4360 0.8293495 0.369168400 0.18019800
## 4361 0.7153067 0.154158200 0.15541920
## 4362 0.4431974 0.026369170 0.09629630
## 4363 0.5414628 0.048681540 0.11764710
## 4364 0.5414628 0.048681540 0.11764710
## 4365 0.8431626 0.415821500 0.18319930
## 4366 0.6610542 0.107505100 0.14363140
## 4367 0.5679599 0.058823530 0.12340430
## 4368 0.3967616 0.020283980 0.08620690
## 4369 0.3174092 0.012170390 0.06896552
## 4370 0.2592921 0.008113590 0.05633803
## 4371 0.6461870 0.099391480 0.14040110
## 4372 0.1704605 0.004056795 0.03703704
## 4373 0.1046008 0.002028398 0.02272727
## 4374 0.5661724 0.062880320 0.12301590
## 4375 0.8596802 0.498985800 0.18678820
## 4376 0.6245191 0.093306290 0.13569320
## 4377 0.6108169 0.087221100 0.13271600
## 4378 0.6040695 0.085192700 0.13125000
## 4379 0.6145683 0.091277890 0.13353120
## 4380 0.4998118 0.048681540 0.10859730
## 4381 0.7877148 0.322515200 0.17115180
## 4382 0.9100154 0.740365100 0.19772480
## 4383 0.6080936 0.103448300 0.13212440
## 4384 0.7550435 0.275862100 0.16405310
## 4385 0.3786813 0.026369170 0.08227848
## 4386 0.7175143 0.225152100 0.15589890
## 4387 0.3724513 0.028397570 0.08092486
## 4388 0.7070596 0.219066900 0.15362730
## 4389 0.3604316 0.026369170 0.07831325
## 4390 0.6586668 0.162271800 0.14311270
## 4391 0.6276046 0.133874200 0.13636360
## 4392 0.3855442 0.032454360 0.08376963
## 4393 0.7456457 0.294117600 0.16201120
## 4394 0.7439832 0.294117600 0.16164990
## 4395 0.2995667 0.022312370 0.06508876
## 4396 0.3237893 0.028397570 0.07035176
## 4397 0.0000000 0.000000000 0.00000000
## 4398 0.0000000 0.000000000 0.00000000
## 4399 0.0000000 0.000000000 0.00000000
## 4400 0.0000000 0.000000000 0.00000000
## 4401 0.0000000 0.000000000 0.00000000
## 4402 0.0000000 0.000000000 0.00000000
## 4403 0.0000000 0.000000000 0.00000000
## 4404 0.0000000 0.000000000 0.00000000
## 4405 0.0000000 0.000000000 0.00000000
## 4406 0.0000000 0.000000000 0.00000000
## 4407 0.0000000 0.000000000 0.00000000
## 4408 0.0000000 0.000000000 0.00000000
## 4409 0.0000000 0.000000000 0.00000000
## 4410 0.0000000 0.000000000 0.00000000
## 4411 0.0000000 0.000000000 0.00000000
## 4412 0.0000000 0.000000000 0.00000000
## 4413 0.0000000 0.000000000 0.00000000
## 4414 0.0000000 0.000000000 0.00000000
## 4415 0.0000000 0.000000000 0.00000000
## 4416 0.0000000 0.000000000 0.00000000
## 4417 0.0000000 0.000000000 0.00000000
## 4418 0.0000000 0.000000000 0.00000000
## 4419 0.0000000 0.000000000 0.00000000
## 4420 0.0000000 0.000000000 0.00000000
## 4421 0.0000000 0.000000000 0.00000000
## 4422 0.0000000 0.000000000 0.00000000
## 4423 0.0000000 0.000000000 0.00000000
## 4424 0.0000000 0.000000000 0.00000000
## 4425 0.0000000 0.000000000 0.00000000
## 4426 0.0000000 0.000000000 0.00000000
## 4427 0.0000000 0.000000000 0.00000000
## 4428 0.0000000 0.000000000 0.00000000
## 4429 0.0000000 0.000000000 0.00000000
## 4430 0.0000000 0.000000000 0.00000000
## 4431 0.0000000 0.000000000 0.00000000
## 4432 0.0000000 0.000000000 0.00000000
## 4433 0.0000000 0.000000000 0.00000000
## 4434 0.0000000 0.000000000 0.00000000
## 4435 0.0000000 0.000000000 0.00000000
## 4436 0.0000000 0.000000000 0.00000000
## 4437 0.0000000 0.000000000 0.00000000
## 4438 0.0000000 0.000000000 0.00000000
## 4439 0.0000000 0.000000000 0.00000000
## 4440 0.0000000 0.000000000 0.00000000
## 4441 0.0000000 0.000000000 0.00000000
## 4442 0.0000000 0.000000000 0.00000000
## 4443 0.0000000 0.000000000 0.00000000
## 4444 0.0000000 0.000000000 0.00000000
## 4445 0.0000000 0.000000000 0.00000000
## 4446 0.0000000 0.000000000 0.00000000
## 4447 0.0000000 0.000000000 0.00000000
## 4448 0.0000000 0.000000000 0.00000000
## 4449 0.0000000 0.000000000 0.00000000
## 4450 0.0000000 0.000000000 0.00000000
## 4451 0.0000000 0.000000000 0.00000000
## 4452 0.0000000 0.000000000 0.00000000
## 4453 0.0000000 0.000000000 0.00000000
## 4454 0.0000000 0.000000000 0.00000000
## 4455 0.0000000 0.000000000 0.00000000
## 4456 0.0000000 0.000000000 0.00000000
## 4457 0.0000000 0.000000000 0.00000000
## 4458 0.0000000 0.000000000 0.00000000
## 4459 0.0000000 0.000000000 0.00000000
## 4460 0.0000000 0.000000000 0.00000000
## 4461 0.0000000 0.000000000 0.00000000
## 4462 0.0000000 0.000000000 0.00000000
## 4463 0.0000000 0.000000000 0.00000000
## 4464 0.0000000 0.000000000 0.00000000
## 4465 0.0000000 0.000000000 0.00000000
## 4466 0.0000000 0.000000000 0.00000000
## 4467 0.0000000 0.000000000 0.00000000
## 4468 0.0000000 0.000000000 0.00000000
## 4469 0.0000000 0.000000000 0.00000000
## 4470 0.0000000 0.000000000 0.00000000
## 4471 0.0000000 0.000000000 0.00000000
## 4472 0.0000000 0.000000000 0.00000000
## 4473 0.0000000 0.000000000 0.00000000
## 4474 0.0000000 0.000000000 0.00000000
## 4475 0.0000000 0.000000000 0.00000000
## 4476 0.0000000 0.000000000 0.00000000
## 4477 0.0000000 0.000000000 0.00000000
## 4478 0.0000000 0.000000000 0.00000000
## 4479 0.0000000 0.000000000 0.00000000
## 4480 0.0000000 0.000000000 0.00000000
## 4481 0.0000000 0.000000000 0.00000000
## 4482 0.0000000 0.000000000 0.00000000
## 4483 0.0000000 0.000000000 0.00000000
## 4484 0.0000000 0.000000000 0.00000000
## 4485 0.0000000 0.000000000 0.00000000
## 4486 0.0000000 0.000000000 0.00000000
## 4487 0.0000000 0.000000000 0.00000000
## 4488 0.0000000 0.000000000 0.00000000
## 4489 0.0000000 0.000000000 0.00000000
## 4490 0.0000000 0.000000000 0.00000000
## 4491 0.0000000 0.000000000 0.00000000
## 4492 0.0000000 0.000000000 0.00000000
## 4493 0.0000000 0.000000000 0.00000000
## 4494 0.0000000 0.000000000 0.00000000
## 4495 0.0000000 0.000000000 0.00000000
## 4496 0.0000000 0.000000000 0.00000000
## 4497 0.0000000 0.000000000 0.00000000
## 4498 0.0000000 0.000000000 0.00000000
## 4499 0.0000000 0.000000000 0.00000000
## 4500 0.0000000 0.000000000 0.00000000
## 4501 0.0000000 0.000000000 0.00000000
## 4502 0.0000000 0.000000000 0.00000000
## 4503 0.0000000 0.000000000 0.00000000
## 4504 0.0000000 0.000000000 0.00000000
## 4505 0.0000000 0.000000000 0.00000000
## 4506 0.0000000 0.000000000 0.00000000
## 4507 0.0000000 0.000000000 0.00000000
## 4508 0.0000000 0.000000000 0.00000000
## 4509 0.0000000 0.000000000 0.00000000
## 4510 0.0000000 0.000000000 0.00000000
## 4511 0.0000000 0.000000000 0.00000000
## 4512 0.0000000 0.000000000 0.00000000
## 4513 0.0000000 0.000000000 0.00000000
## 4514 0.0000000 0.000000000 0.00000000
## 4515 0.0000000 0.000000000 0.00000000
## 4516 0.0000000 0.000000000 0.00000000
## 4517 0.0000000 0.000000000 0.00000000
## 4518 0.0000000 0.000000000 0.00000000
## 4519 0.0000000 0.000000000 0.00000000
## 4520 0.0000000 0.000000000 0.00000000
## 4521 0.0000000 0.000000000 0.00000000
## 4522 0.0000000 0.000000000 0.00000000
## 4523 0.0000000 0.000000000 0.00000000
## 4524 0.0000000 0.000000000 0.00000000
## 4525 0.0000000 0.000000000 0.00000000
## 4526 0.0000000 0.000000000 0.00000000
## 4527 0.0000000 0.000000000 0.00000000
## 4528 0.0000000 0.000000000 0.00000000
## 4529 0.0000000 0.000000000 0.00000000
## 4530 0.0000000 0.000000000 0.00000000
## 4531 0.0000000 0.000000000 0.00000000
## 4532 0.0000000 0.000000000 0.00000000
## 4533 0.0000000 0.000000000 0.00000000
## 4534 0.0000000 0.000000000 0.00000000
## 4535 0.0000000 0.000000000 0.00000000
## 4536 0.0000000 0.000000000 0.00000000
## 4537 0.0000000 0.000000000 0.00000000
## 4538 0.0000000 0.000000000 0.00000000
## 4539 0.0000000 0.000000000 0.00000000
## 4540 0.0000000 0.000000000 0.00000000
## 4541 0.0000000 0.000000000 0.00000000
## 4542 0.0000000 0.000000000 0.00000000
## 4543 0.0000000 0.000000000 0.00000000
## 4544 0.0000000 0.000000000 0.00000000
## 4545 0.0000000 0.000000000 0.00000000
## 4546 0.0000000 0.000000000 0.00000000
## 4547 0.0000000 0.000000000 0.00000000
## 4548 0.0000000 0.000000000 0.00000000
## 4549 0.0000000 0.000000000 0.00000000
## 4550 0.0000000 0.000000000 0.00000000
## 4551 0.0000000 0.000000000 0.00000000
## 4552 0.0000000 0.000000000 0.00000000
## 4553 0.0000000 0.000000000 0.00000000
## 4554 0.0000000 0.000000000 0.00000000
## 4555 0.0000000 0.000000000 0.00000000
## 4556 0.0000000 0.000000000 0.00000000
## 4557 0.0000000 0.000000000 0.00000000
## 4558 0.0000000 0.000000000 0.00000000
## 4559 0.0000000 0.000000000 0.00000000
## 4560 0.0000000 0.000000000 0.00000000
## 4561 0.0000000 0.000000000 0.00000000
## 4562 0.0000000 0.000000000 0.00000000
## 4563 0.0000000 0.000000000 0.00000000
## 4564 0.0000000 0.000000000 0.00000000
## 4565 0.0000000 0.000000000 0.00000000
## 4566 0.0000000 0.000000000 0.00000000
## 4567 0.0000000 0.000000000 0.00000000
## 4568 0.0000000 0.000000000 0.00000000
## 4569 0.0000000 0.000000000 0.00000000
## 4570 0.0000000 0.000000000 0.00000000
## 4571 0.0000000 0.000000000 0.00000000
## 4572 0.0000000 0.000000000 0.00000000
## 4573 0.0000000 0.000000000 0.00000000
## 4574 0.0000000 0.000000000 0.00000000
## 4575 0.0000000 0.000000000 0.00000000
## 4576 0.0000000 0.000000000 0.00000000
## 4577 0.0000000 0.000000000 0.00000000
## 4578 0.0000000 0.000000000 0.00000000
## 4579 0.0000000 0.000000000 0.00000000
## 4580 0.0000000 0.000000000 0.00000000
## 4581 0.0000000 0.000000000 0.00000000
## 4582 0.0000000 0.000000000 0.00000000
## 4583 0.0000000 0.000000000 0.00000000
## 4584 0.0000000 0.000000000 0.00000000
## 4585 0.0000000 0.000000000 0.00000000
## 4586 0.0000000 0.000000000 0.00000000
## 4587 0.0000000 0.000000000 0.00000000
## 4588 0.0000000 0.000000000 0.00000000
## 4589 0.0000000 0.000000000 0.00000000
## 4590 0.0000000 0.000000000 0.00000000
## 4591 0.0000000 0.000000000 0.00000000
## 4592 0.0000000 0.000000000 0.00000000
## 4593 0.0000000 0.000000000 0.00000000
## 4594 0.0000000 0.000000000 0.00000000
## 4595 0.0000000 0.000000000 0.00000000
## 4596 0.0000000 0.000000000 0.00000000
## 4597 0.0000000 0.000000000 0.00000000
## 4598 0.0000000 0.000000000 0.00000000
## 4599 0.0000000 0.000000000 0.00000000
## 4600 0.0000000 0.000000000 0.00000000
## 4601 0.0000000 0.000000000 0.00000000
## 4602 0.0000000 0.000000000 0.00000000
## 4603 0.0000000 0.000000000 0.00000000
## 4604 0.0000000 0.000000000 0.00000000
## 4605 0.0000000 0.000000000 0.00000000
## 4606 0.0000000 0.000000000 0.00000000
## 4607 0.0000000 0.000000000 0.00000000
## 4608 0.0000000 0.000000000 0.00000000
## 4609 0.0000000 0.000000000 0.00000000
## 4610 0.0000000 0.000000000 0.00000000
## 4611 0.0000000 0.000000000 0.00000000
## 4612 0.0000000 0.000000000 0.00000000
## 4613 0.0000000 0.000000000 0.00000000
## 4614 0.0000000 0.000000000 0.00000000
## 4615 0.0000000 0.000000000 0.00000000
## 4616 0.0000000 0.000000000 0.00000000
## 4617 0.0000000 0.000000000 0.00000000
## 4618 0.0000000 0.000000000 0.00000000
## 4619 0.0000000 0.000000000 0.00000000
## 4620 0.0000000 0.000000000 0.00000000
## 4621 0.0000000 0.000000000 0.00000000
## 4622 0.0000000 0.000000000 0.00000000
## 4623 0.0000000 0.000000000 0.00000000
## 4624 0.0000000 0.000000000 0.00000000
## 4625 0.0000000 0.000000000 0.00000000
## 4626 0.0000000 0.000000000 0.00000000
## 4627 0.0000000 0.000000000 0.00000000
## 4628 0.0000000 0.000000000 0.00000000
## 4629 0.0000000 0.000000000 0.00000000
## 4630 0.0000000 0.000000000 0.00000000
## 4631 0.0000000 0.000000000 0.00000000
## 4632 0.0000000 0.000000000 0.00000000
## 4633 0.0000000 0.000000000 0.00000000
## 4634 0.0000000 0.000000000 0.00000000
## 4635 0.0000000 0.000000000 0.00000000
## 4636 0.0000000 0.000000000 0.00000000
## 4637 0.0000000 0.000000000 0.00000000
## 4638 0.0000000 0.000000000 0.00000000
## 4639 0.0000000 0.000000000 0.00000000
## 4640 0.0000000 0.000000000 0.00000000
## 4641 0.0000000 0.000000000 0.00000000
## 4642 0.0000000 0.000000000 0.00000000
## 4643 0.0000000 0.000000000 0.00000000
## 4644 0.0000000 0.000000000 0.00000000
## 4645 0.0000000 0.000000000 0.00000000
## 4646 0.0000000 0.000000000 0.00000000
## 4647 0.0000000 0.000000000 0.00000000
## 4648 0.0000000 0.000000000 0.00000000
## 4649 0.0000000 0.000000000 0.00000000
## 4650 0.0000000 0.000000000 0.00000000
## 4651 0.0000000 0.000000000 0.00000000
## 4652 0.0000000 0.000000000 0.00000000
## 4653 0.0000000 0.000000000 0.00000000
## 4654 0.0000000 0.000000000 0.00000000
## 4655 0.0000000 0.000000000 0.00000000
## 4656 0.0000000 0.000000000 0.00000000
## 4657 0.0000000 0.000000000 0.00000000
## 4658 0.0000000 0.000000000 0.00000000
## 4659 0.0000000 0.000000000 0.00000000
## 4660 0.0000000 0.000000000 0.00000000
## 4661 0.0000000 0.000000000 0.00000000
## 4662 0.0000000 0.000000000 0.00000000
## 4663 0.0000000 0.000000000 0.00000000
## 4664 0.0000000 0.000000000 0.00000000
## 4665 0.0000000 0.000000000 0.00000000
## 4666 0.0000000 0.000000000 0.00000000
## 4667 0.0000000 0.000000000 0.00000000
## 4668 0.0000000 0.000000000 0.00000000
## 4669 0.0000000 0.000000000 0.00000000
## 4670 0.0000000 0.000000000 0.00000000
## 4671 0.0000000 0.000000000 0.00000000
## 4672 0.0000000 0.000000000 0.00000000
## 4673 0.0000000 0.000000000 0.00000000
## 4674 0.0000000 0.000000000 0.00000000
## 4675 0.0000000 0.000000000 0.00000000
## 4676 0.0000000 0.000000000 0.00000000
## 4677 0.0000000 0.000000000 0.00000000
## 4678 0.0000000 0.000000000 0.00000000
## 4679 0.0000000 0.000000000 0.00000000
## 4680 0.0000000 0.000000000 0.00000000
## 4681 0.0000000 0.000000000 0.00000000
## 4682 0.0000000 0.000000000 0.00000000
## 4683 0.0000000 0.000000000 0.00000000
## 4684 0.0000000 0.000000000 0.00000000
## 4685 0.0000000 0.000000000 0.00000000
## 4686 0.0000000 0.000000000 0.00000000
## 4687 0.0000000 0.000000000 0.00000000
## 4688 0.0000000 0.000000000 0.00000000
## 4689 0.0000000 0.000000000 0.00000000
## 4690 0.0000000 0.000000000 0.00000000
## 4691 0.0000000 0.000000000 0.00000000
## 4692 0.0000000 0.000000000 0.00000000
## 4693 0.0000000 0.000000000 0.00000000
## 4694 0.0000000 0.000000000 0.00000000
## 4695 0.0000000 0.000000000 0.00000000
## 4696 0.0000000 0.000000000 0.00000000
## 4697 0.0000000 0.000000000 0.00000000
## 4698 0.0000000 0.000000000 0.00000000
## 4699 0.0000000 0.000000000 0.00000000
## 4700 0.0000000 0.000000000 0.00000000
## 4701 0.0000000 0.000000000 0.00000000
## 4702 0.0000000 0.000000000 0.00000000
## 4703 0.0000000 0.000000000 0.00000000
## 4704 0.0000000 0.000000000 0.00000000
## 4705 0.0000000 0.000000000 0.00000000
## 4706 0.0000000 0.000000000 0.00000000
## 4707 0.0000000 0.000000000 0.00000000
## 4708 0.0000000 0.000000000 0.00000000
## 4709 0.0000000 0.000000000 0.00000000
## 4710 0.0000000 0.000000000 0.00000000
## 4711 0.0000000 0.000000000 0.00000000
## 4712 0.0000000 0.000000000 0.00000000
## 4713 0.0000000 0.000000000 0.00000000
## 4714 0.0000000 0.000000000 0.00000000
## 4715 0.0000000 0.000000000 0.00000000
## 4716 0.0000000 0.000000000 0.00000000
## 4717 0.0000000 0.000000000 0.00000000
## 4718 0.0000000 0.000000000 0.00000000
## 4719 0.0000000 0.000000000 0.00000000
## 4720 0.0000000 0.000000000 0.00000000
## 4721 0.0000000 0.000000000 0.00000000
## 4722 0.0000000 0.000000000 0.00000000
## 4723 0.0000000 0.000000000 0.00000000
## 4724 0.0000000 0.000000000 0.00000000
## 4725 0.0000000 0.000000000 0.00000000
## 4726 0.0000000 0.000000000 0.00000000
## 4727 0.0000000 0.000000000 0.00000000
## 4728 0.0000000 0.000000000 0.00000000
## 4729 0.0000000 0.000000000 0.00000000
## 4730 0.0000000 0.000000000 0.00000000
## 4731 0.0000000 0.000000000 0.00000000
## 4732 0.0000000 0.000000000 0.00000000
## 4733 0.0000000 0.000000000 0.00000000
## 4734 0.0000000 0.000000000 0.00000000
## 4735 0.0000000 0.000000000 0.00000000
## 4736 0.0000000 0.000000000 0.00000000
## 4737 0.0000000 0.000000000 0.00000000
## 4738 0.0000000 0.000000000 0.00000000
## 4739 0.0000000 0.000000000 0.00000000
## 4740 0.0000000 0.000000000 0.00000000
## 4741 0.0000000 0.000000000 0.00000000
## 4742 0.0000000 0.000000000 0.00000000
## 4743 0.0000000 0.000000000 0.00000000
## 4744 0.0000000 0.000000000 0.00000000
## 4745 0.0000000 0.000000000 0.00000000
## 4746 0.0000000 0.000000000 0.00000000
## 4747 0.0000000 0.000000000 0.00000000
## 4748 0.0000000 0.000000000 0.00000000
## 4749 0.0000000 0.000000000 0.00000000
## 4750 0.0000000 0.000000000 0.00000000
## 4751 0.0000000 0.000000000 0.00000000
## 4752 0.0000000 0.000000000 0.00000000
## 4753 0.0000000 0.000000000 0.00000000
## 4754 0.0000000 0.000000000 0.00000000
## 4755 0.0000000 0.000000000 0.00000000
## 4756 0.0000000 0.000000000 0.00000000
## 4757 0.0000000 0.000000000 0.00000000
## 4758 0.0000000 0.000000000 0.00000000
## 4759 0.0000000 0.000000000 0.00000000
## 4760 0.0000000 0.000000000 0.00000000
## 4761 0.0000000 0.000000000 0.00000000
## 4762 0.0000000 0.000000000 0.00000000
## 4763 0.0000000 0.000000000 0.00000000
## 4764 0.0000000 0.000000000 0.00000000
## 4765 0.0000000 0.000000000 0.00000000
## 4766 0.0000000 0.000000000 0.00000000
## 4767 0.0000000 0.000000000 0.00000000
## 4768 0.0000000 0.000000000 0.00000000
## 4769 0.0000000 0.000000000 0.00000000
## 4770 0.0000000 0.000000000 0.00000000
## 4771 0.0000000 0.000000000 0.00000000
## 4772 0.0000000 0.000000000 0.00000000
## 4773 0.0000000 0.000000000 0.00000000
## 4774 0.0000000 0.000000000 0.00000000
## 4775 0.0000000 0.000000000 0.00000000
## 4776 0.0000000 0.000000000 0.00000000
## 4777 0.0000000 0.000000000 0.00000000
## 4778 0.0000000 0.000000000 0.00000000
## 4779 0.0000000 0.000000000 0.00000000
## 4780 0.0000000 0.000000000 0.00000000
## 4781 0.0000000 0.000000000 0.00000000
## 4782 0.0000000 0.000000000 0.00000000
## 4783 0.0000000 0.000000000 0.00000000
## 4784 0.0000000 0.000000000 0.00000000
## 4785 0.0000000 0.000000000 0.00000000
## 4786 0.0000000 0.000000000 0.00000000
## 4787 0.0000000 0.000000000 0.00000000
## 4788 0.0000000 0.000000000 0.00000000
## 4789 0.0000000 0.000000000 0.00000000
## 4790 0.0000000 0.000000000 0.00000000
## 4791 0.0000000 0.000000000 0.00000000
## 4792 0.0000000 0.000000000 0.00000000
## 4793 0.0000000 0.000000000 0.00000000
## 4794 0.0000000 0.000000000 0.00000000
## 4795 0.0000000 0.000000000 0.00000000
## 4796 0.0000000 0.000000000 0.00000000
## 4797 0.0000000 0.000000000 0.00000000
## 4798 0.0000000 0.000000000 0.00000000
## 4799 0.0000000 0.000000000 0.00000000
## 4800 0.0000000 0.000000000 0.00000000
## 4801 0.0000000 0.000000000 0.00000000
## 4802 0.0000000 0.000000000 0.00000000
## 4803 0.0000000 0.000000000 0.00000000
## 4804 0.0000000 0.000000000 0.00000000
## 4805 0.0000000 0.000000000 0.00000000
## 4806 0.0000000 0.000000000 0.00000000
## 4807 0.0000000 0.000000000 0.00000000
## 4808 0.0000000 0.000000000 0.00000000
## 4809 0.0000000 0.000000000 0.00000000
## 4810 0.0000000 0.000000000 0.00000000
## 4811 0.0000000 0.000000000 0.00000000
## 4812 0.0000000 0.000000000 0.00000000
## 4813 0.0000000 0.000000000 0.00000000
## 4814 0.0000000 0.000000000 0.00000000
## 4815 0.0000000 0.000000000 0.00000000
## 4816 0.0000000 0.000000000 0.00000000
## 4817 0.0000000 0.000000000 0.00000000
## 4818 0.0000000 0.000000000 0.00000000
## 4819 0.0000000 0.000000000 0.00000000
## 4820 0.0000000 0.000000000 0.00000000
## 4821 0.0000000 0.000000000 0.00000000
## 4822 0.0000000 0.000000000 0.00000000
## 4823 0.0000000 0.000000000 0.00000000
## 4824 0.0000000 0.000000000 0.00000000
## 4825 0.0000000 0.000000000 0.00000000
## 4826 0.0000000 0.000000000 0.00000000
## 4827 0.0000000 0.000000000 0.00000000
## 4828 0.0000000 0.000000000 0.00000000
## 4829 0.0000000 0.000000000 0.00000000
## 4830 0.0000000 0.000000000 0.00000000
## 4831 0.0000000 0.000000000 0.00000000
## 4832 0.0000000 0.000000000 0.00000000
## 4833 0.0000000 0.000000000 0.00000000
## 4834 0.0000000 0.000000000 0.00000000
## 4835 0.0000000 0.000000000 0.00000000
## 4836 0.0000000 0.000000000 0.00000000
## 4837 0.0000000 0.000000000 0.00000000
## 4838 0.0000000 0.000000000 0.00000000
## 4839 0.0000000 0.000000000 0.00000000
## 4840 0.0000000 0.000000000 0.00000000
## 4841 0.0000000 0.000000000 0.00000000
## 4842 0.0000000 0.000000000 0.00000000
## 4843 0.0000000 0.000000000 0.00000000
## 4844 0.0000000 0.000000000 0.00000000
## 4845 0.0000000 0.000000000 0.00000000
## 4846 0.0000000 0.000000000 0.00000000
## 4847 0.0000000 0.000000000 0.00000000
## 4848 0.0000000 0.000000000 0.00000000
## 4849 0.0000000 0.000000000 0.00000000
## 4850 0.0000000 0.000000000 0.00000000
## 4851 0.0000000 0.000000000 0.00000000
## 4852 0.0000000 0.000000000 0.00000000
## 4853 0.0000000 0.000000000 0.00000000
## 4854 0.0000000 0.000000000 0.00000000
## 4855 0.0000000 0.000000000 0.00000000
## 4856 0.0000000 0.000000000 0.00000000
## 4857 0.0000000 0.000000000 0.00000000
## 4858 0.0000000 0.000000000 0.00000000
## 4859 0.0000000 0.000000000 0.00000000
## 4860 0.0000000 0.000000000 0.00000000
## 4861 0.0000000 0.000000000 0.00000000
## 4862 0.0000000 0.000000000 0.00000000
## 4863 0.0000000 0.000000000 0.00000000
## 4864 0.0000000 0.000000000 0.00000000
## 4865 0.0000000 0.000000000 0.00000000
## 4866 0.0000000 0.000000000 0.00000000
## 4867 0.0000000 0.000000000 0.00000000
## 4868 0.0000000 0.000000000 0.00000000
## 4869 0.0000000 0.000000000 0.00000000
## 4870 0.0000000 0.000000000 0.00000000
## 4871 0.0000000 0.000000000 0.00000000
## 4872 0.0000000 0.000000000 0.00000000
## 4873 0.0000000 0.000000000 0.00000000
## 4874 0.0000000 0.000000000 0.00000000
## 4875 0.0000000 0.000000000 0.00000000
## 4876 0.0000000 0.000000000 0.00000000
## 4877 0.0000000 0.000000000 0.00000000
## 4878 0.0000000 0.000000000 0.00000000
## 4879 0.0000000 0.000000000 0.00000000
## 4880 0.0000000 0.000000000 0.00000000
## 4881 0.0000000 0.000000000 0.00000000
## 4882 0.0000000 0.000000000 0.00000000
## 4883 0.0000000 0.000000000 0.00000000
## 4884 0.0000000 0.000000000 0.00000000
## 4885 0.0000000 0.000000000 0.00000000
## 4886 0.0000000 0.000000000 0.00000000
## 4887 0.0000000 0.000000000 0.00000000
## 4888 0.0000000 0.000000000 0.00000000
## 4889 0.0000000 0.000000000 0.00000000
## 4890 0.0000000 0.000000000 0.00000000
## 4891 0.0000000 0.000000000 0.00000000
## 4892 0.0000000 0.000000000 0.00000000
## 4893 0.0000000 0.000000000 0.00000000
## 4894 0.0000000 0.000000000 0.00000000
## 4895 0.0000000 0.000000000 0.00000000
## 4896 0.0000000 0.000000000 0.00000000
## 4897 0.0000000 0.000000000 0.00000000
## 4898 0.0000000 0.000000000 0.00000000
## 4899 0.0000000 0.000000000 0.00000000
## 4900 0.0000000 0.000000000 0.00000000
## 4901 0.0000000 0.000000000 0.00000000
## 4902 0.0000000 0.000000000 0.00000000
## 4903 0.0000000 0.000000000 0.00000000
## 4904 0.0000000 0.000000000 0.00000000
## 4905 0.0000000 0.000000000 0.00000000
## 4906 0.0000000 0.000000000 0.00000000
## 4907 0.0000000 0.000000000 0.00000000
## 4908 0.0000000 0.000000000 0.00000000
## 4909 0.0000000 0.000000000 0.00000000
## 4910 0.0000000 0.000000000 0.00000000
## 4911 0.0000000 0.000000000 0.00000000
## 4912 0.0000000 0.000000000 0.00000000
## 4913 0.0000000 0.000000000 0.00000000
## 4914 0.0000000 0.000000000 0.00000000
## 4915 0.0000000 0.000000000 0.00000000
## 4916 0.0000000 0.000000000 0.00000000
## 4917 0.0000000 0.000000000 0.00000000
## 4918 0.0000000 0.000000000 0.00000000
## 4919 0.0000000 0.000000000 0.00000000
## 4920 0.0000000 0.000000000 0.00000000
## 4921 0.0000000 0.000000000 0.00000000
## 4922 0.0000000 0.000000000 0.00000000
## 4923 0.0000000 0.000000000 0.00000000
## 4924 0.0000000 0.000000000 0.00000000
## 4925 0.0000000 0.000000000 0.00000000
## 4926 0.0000000 0.000000000 0.00000000
## 4927 0.0000000 0.000000000 0.00000000
## 4928 0.0000000 0.000000000 0.00000000
## 4929 0.0000000 0.000000000 0.00000000
## 4930 0.0000000 0.000000000 0.00000000
## 4931 0.0000000 0.000000000 0.00000000
## 4932 0.0000000 0.000000000 0.00000000
## 4933 0.0000000 0.000000000 0.00000000
## 4934 0.0000000 0.000000000 0.00000000
## 4935 0.0000000 0.000000000 0.00000000
## 4936 0.0000000 0.000000000 0.00000000
## 4937 0.0000000 0.000000000 0.00000000
## 4938 0.0000000 0.000000000 0.00000000
## 4939 0.0000000 0.000000000 0.00000000
## 4940 0.0000000 0.000000000 0.00000000
## 4941 0.0000000 0.000000000 0.00000000
## 4942 0.0000000 0.000000000 0.00000000
## 4943 0.0000000 0.000000000 0.00000000
## 4944 0.0000000 0.000000000 0.00000000
## 4945 0.0000000 0.000000000 0.00000000
## 4946 0.0000000 0.000000000 0.00000000
## 4947 0.0000000 0.000000000 0.00000000
## 4948 0.0000000 0.000000000 0.00000000
## 4949 0.0000000 0.000000000 0.00000000
## 4950 0.0000000 0.000000000 0.00000000
## 4951 0.0000000 0.000000000 0.00000000
## 4952 0.0000000 0.000000000 0.00000000
## 4953 0.0000000 0.000000000 0.00000000
## 4954 0.0000000 0.000000000 0.00000000
## 4955 0.0000000 0.000000000 0.00000000
## 4956 0.0000000 0.000000000 0.00000000
## 4957 0.0000000 0.000000000 0.00000000
## 4958 0.0000000 0.000000000 0.00000000
## 4959 0.0000000 0.000000000 0.00000000
## 4960 0.0000000 0.000000000 0.00000000
## 4961 0.0000000 0.000000000 0.00000000
## 4962 0.0000000 0.000000000 0.00000000
## 4963 0.0000000 0.000000000 0.00000000
## 4964 0.0000000 0.000000000 0.00000000
## 4965 0.0000000 0.000000000 0.00000000
## 4966 0.0000000 0.000000000 0.00000000
## 4967 0.0000000 0.000000000 0.00000000
## 4968 0.0000000 0.000000000 0.00000000
## 4969 0.0000000 0.000000000 0.00000000
## 4970 0.0000000 0.000000000 0.00000000
## 4971 0.0000000 0.000000000 0.00000000
## 4972 0.0000000 0.000000000 0.00000000
## 4973 0.0000000 0.000000000 0.00000000
## 4974 0.0000000 0.000000000 0.00000000
## 4975 0.0000000 0.000000000 0.00000000
## 4976 0.0000000 0.000000000 0.00000000
## 4977 0.0000000 0.000000000 0.00000000
## 4978 0.0000000 0.000000000 0.00000000
## 4979 0.0000000 0.000000000 0.00000000
## 4980 0.0000000 0.000000000 0.00000000
## 4981 0.0000000 0.000000000 0.00000000
## 4982 0.0000000 0.000000000 0.00000000
## 4983 0.0000000 0.000000000 0.00000000
## 4984 0.0000000 0.000000000 0.00000000
## 4985 0.0000000 0.000000000 0.00000000
## 4986 0.0000000 0.000000000 0.00000000
## 4987 0.0000000 0.000000000 0.00000000
## 4988 0.0000000 0.000000000 0.00000000
## 4989 0.0000000 0.000000000 0.00000000
## 4990 0.0000000 0.000000000 0.00000000
## 4991 0.0000000 0.000000000 0.00000000
## 4992 0.0000000 0.000000000 0.00000000
## 4993 0.0000000 0.000000000 0.00000000
## 4994 0.0000000 0.000000000 0.00000000
## 4995 0.0000000 0.000000000 0.00000000
## 4996 0.0000000 0.000000000 0.00000000
## 4997 0.0000000 0.000000000 0.00000000
## 4998 0.0000000 0.000000000 0.00000000
## 4999 0.0000000 0.000000000 0.00000000
## 5000 0.0000000 0.000000000 0.00000000
## 5001 0.0000000 0.000000000 0.00000000
## 5002 0.0000000 0.000000000 0.00000000
## 5003 0.0000000 0.000000000 0.00000000
## 5004 0.0000000 0.000000000 0.00000000
## 5005 0.0000000 0.000000000 0.00000000
## 5006 0.0000000 0.000000000 0.00000000
## 5007 0.0000000 0.000000000 0.00000000
## 5008 0.0000000 0.000000000 0.00000000
## 5009 0.0000000 0.000000000 0.00000000
## 5010 0.0000000 0.000000000 0.00000000
## 5011 0.0000000 0.000000000 0.00000000
## 5012 0.0000000 0.000000000 0.00000000
## 5013 0.0000000 0.000000000 0.00000000
## 5014 0.0000000 0.000000000 0.00000000
## 5015 0.0000000 0.000000000 0.00000000
## 5016 0.0000000 0.000000000 0.00000000
## 5017 0.0000000 0.000000000 0.00000000
## 5018 0.0000000 0.000000000 0.00000000
## 5019 0.0000000 0.000000000 0.00000000
## 5020 0.0000000 0.000000000 0.00000000
## 5021 0.0000000 0.000000000 0.00000000
## 5022 0.0000000 0.000000000 0.00000000
## 5023 0.0000000 0.000000000 0.00000000
## 5024 0.0000000 0.000000000 0.00000000
## 5025 0.0000000 0.000000000 0.00000000
## 5026 0.0000000 0.000000000 0.00000000
## 5027 0.0000000 0.000000000 0.00000000
## 5028 0.0000000 0.000000000 0.00000000
## 5029 0.0000000 0.000000000 0.00000000
## 5030 0.0000000 0.000000000 0.00000000
## 5031 0.0000000 0.000000000 0.00000000
## 5032 0.0000000 0.000000000 0.00000000
## 5033 0.0000000 0.000000000 0.00000000
## 5034 0.0000000 0.000000000 0.00000000
## 5035 0.0000000 0.000000000 0.00000000
## 5036 0.0000000 0.000000000 0.00000000
## 5037 0.0000000 0.000000000 0.00000000
## 5038 0.0000000 0.000000000 0.00000000
## 5039 0.0000000 0.000000000 0.00000000
## 5040 0.0000000 0.000000000 0.00000000
## 5041 0.0000000 0.000000000 0.00000000
## 5042 0.0000000 0.000000000 0.00000000
## 5043 0.0000000 0.000000000 0.00000000
## 5044 0.0000000 0.000000000 0.00000000
## 5045 0.0000000 0.000000000 0.00000000
## 5046 0.0000000 0.000000000 0.00000000
## 5047 0.0000000 0.000000000 0.00000000
## 5048 0.0000000 0.000000000 0.00000000
## 5049 0.0000000 0.000000000 0.00000000
## 5050 0.0000000 0.000000000 0.00000000
## 5051 0.0000000 0.000000000 0.00000000
## 5052 0.0000000 0.000000000 0.00000000
## 5053 0.0000000 0.000000000 0.00000000
## 5054 0.0000000 0.000000000 0.00000000
## 5055 0.0000000 0.000000000 0.00000000
## 5056 0.0000000 0.000000000 0.00000000
## 5057 0.0000000 0.000000000 0.00000000
## 5058 0.0000000 0.000000000 0.00000000
## 5059 0.0000000 0.000000000 0.00000000
## 5060 0.0000000 0.000000000 0.00000000
## 5061 0.0000000 0.000000000 0.00000000
## 5062 0.0000000 0.000000000 0.00000000
## 5063 0.0000000 0.000000000 0.00000000
## 5064 0.0000000 0.000000000 0.00000000
## 5065 0.0000000 0.000000000 0.00000000
## 5066 0.0000000 0.000000000 0.00000000
## 5067 0.0000000 0.000000000 0.00000000
## 5068 0.0000000 0.000000000 0.00000000
## 5069 0.0000000 0.000000000 0.00000000
## 5070 0.0000000 0.000000000 0.00000000
## 5071 0.0000000 0.000000000 0.00000000
## 5072 0.0000000 0.000000000 0.00000000
## 5073 0.0000000 0.000000000 0.00000000
## 5074 0.0000000 0.000000000 0.00000000
## 5075 0.0000000 0.000000000 0.00000000
## 5076 0.0000000 0.000000000 0.00000000
## 5077 0.0000000 0.000000000 0.00000000
## 5078 0.0000000 0.000000000 0.00000000
## 5079 0.0000000 0.000000000 0.00000000
## 5080 0.0000000 0.000000000 0.00000000
## 5081 0.0000000 0.000000000 0.00000000
## 5082 0.0000000 0.000000000 0.00000000
## 5083 0.0000000 0.000000000 0.00000000
## 5084 0.0000000 0.000000000 0.00000000
## 5085 0.0000000 0.000000000 0.00000000
## 5086 0.0000000 0.000000000 0.00000000
## 5087 0.0000000 0.000000000 0.00000000
## 5088 0.0000000 0.000000000 0.00000000
## 5089 0.0000000 0.000000000 0.00000000
## 5090 0.0000000 0.000000000 0.00000000
## 5091 0.0000000 0.000000000 0.00000000
## 5092 0.0000000 0.000000000 0.00000000
## 5093 0.0000000 0.000000000 0.00000000
## 5094 0.0000000 0.000000000 0.00000000
## 5095 0.0000000 0.000000000 0.00000000
## 5096 0.0000000 0.000000000 0.00000000
## 5097 0.0000000 0.000000000 0.00000000
## 5098 0.0000000 0.000000000 0.00000000
## 5099 0.0000000 0.000000000 0.00000000
## 5100 0.0000000 0.000000000 0.00000000
## 5101 0.0000000 0.000000000 0.00000000
## 5102 0.0000000 0.000000000 0.00000000
## 5103 0.0000000 0.000000000 0.00000000
## 5104 0.0000000 0.000000000 0.00000000
## 5105 0.0000000 0.000000000 0.00000000
## 5106 0.0000000 0.000000000 0.00000000
## 5107 0.0000000 0.000000000 0.00000000
## 5108 0.0000000 0.000000000 0.00000000
## 5109 0.0000000 0.000000000 0.00000000
## 5110 0.0000000 0.000000000 0.00000000
## 5111 0.0000000 0.000000000 0.00000000
## 5112 0.0000000 0.000000000 0.00000000
## 5113 0.0000000 0.000000000 0.00000000
## 5114 0.0000000 0.000000000 0.00000000
## 5115 0.0000000 0.000000000 0.00000000
## 5116 0.0000000 0.000000000 0.00000000
## 5117 0.0000000 0.000000000 0.00000000
## 5118 0.0000000 0.000000000 0.00000000
## 5119 0.0000000 0.000000000 0.00000000
## 5120 0.0000000 0.000000000 0.00000000
## 5121 0.0000000 0.000000000 0.00000000
## 5122 0.0000000 0.000000000 0.00000000
## 5123 0.0000000 0.000000000 0.00000000
## 5124 0.0000000 0.000000000 0.00000000
## 5125 0.0000000 0.000000000 0.00000000
## 5126 0.0000000 0.000000000 0.00000000
## 5127 0.0000000 0.000000000 0.00000000
## 5128 0.0000000 0.000000000 0.00000000
## 5129 0.0000000 0.000000000 0.00000000
## 5130 0.0000000 0.000000000 0.00000000
## 5131 0.0000000 0.000000000 0.00000000
## 5132 0.0000000 0.000000000 0.00000000
## 5133 0.0000000 0.000000000 0.00000000
## 5134 0.0000000 0.000000000 0.00000000
## 5135 0.0000000 0.000000000 0.00000000
## 5136 0.0000000 0.000000000 0.00000000
## 5137 0.0000000 0.000000000 0.00000000
## 5138 0.0000000 0.000000000 0.00000000
## 5139 0.0000000 0.000000000 0.00000000
## 5140 0.0000000 0.000000000 0.00000000
## 5141 0.0000000 0.000000000 0.00000000
## 5142 0.0000000 0.000000000 0.00000000
## 5143 0.0000000 0.000000000 0.00000000
## 5144 0.0000000 0.000000000 0.00000000
## 5145 0.0000000 0.000000000 0.00000000
## 5146 0.0000000 0.000000000 0.00000000
## 5147 0.0000000 0.000000000 0.00000000
## 5148 0.0000000 0.000000000 0.00000000
## 5149 0.0000000 0.000000000 0.00000000
## 5150 0.0000000 0.000000000 0.00000000
## 5151 0.0000000 0.000000000 0.00000000
## 5152 0.0000000 0.000000000 0.00000000
## 5153 0.0000000 0.000000000 0.00000000
## 5154 0.0000000 0.000000000 0.00000000
## 5155 0.0000000 0.000000000 0.00000000
## 5156 0.0000000 0.000000000 0.00000000
## 5157 0.0000000 0.000000000 0.00000000
## 5158 0.0000000 0.000000000 0.00000000
## 5159 0.0000000 0.000000000 0.00000000
## 5160 0.0000000 0.000000000 0.00000000
## 5161 0.0000000 0.000000000 0.00000000
## 5162 0.0000000 0.000000000 0.00000000
## 5163 0.0000000 0.000000000 0.00000000
## 5164 0.0000000 0.000000000 0.00000000
## 5165 0.0000000 0.000000000 0.00000000
## 5166 0.0000000 0.000000000 0.00000000
## 5167 0.0000000 0.000000000 0.00000000
## 5168 0.0000000 0.000000000 0.00000000
## 5169 0.0000000 0.000000000 0.00000000
## 5170 0.0000000 0.000000000 0.00000000
## 5171 0.0000000 0.000000000 0.00000000
## 5172 0.0000000 0.000000000 0.00000000
## 5173 0.0000000 0.000000000 0.00000000
## 5174 0.0000000 0.000000000 0.00000000
## 5175 0.0000000 0.000000000 0.00000000
## 5176 0.0000000 0.000000000 0.00000000
## 5177 0.0000000 0.000000000 0.00000000
## 5178 0.0000000 0.000000000 0.00000000
## 5179 0.0000000 0.000000000 0.00000000
## 5180 0.0000000 0.000000000 0.00000000
## 5181 0.0000000 0.000000000 0.00000000
## 5182 0.0000000 0.000000000 0.00000000
## 5183 0.0000000 0.000000000 0.00000000
## 5184 0.0000000 0.000000000 0.00000000
## 5185 0.0000000 0.000000000 0.00000000
## 5186 0.0000000 0.000000000 0.00000000
## 5187 0.0000000 0.000000000 0.00000000
## 5188 0.0000000 0.000000000 0.00000000
## 5189 0.0000000 0.000000000 0.00000000
## 5190 0.0000000 0.000000000 0.00000000
## 5191 0.0000000 0.000000000 0.00000000
## 5192 0.0000000 0.000000000 0.00000000
## 5193 0.0000000 0.000000000 0.00000000
## 5194 0.0000000 0.000000000 0.00000000
## 5195 0.0000000 0.000000000 0.00000000
## 5196 0.0000000 0.000000000 0.00000000
## 5197 0.0000000 0.000000000 0.00000000
## 5198 0.0000000 0.000000000 0.00000000
## 5199 0.0000000 0.000000000 0.00000000
## 5200 0.0000000 0.000000000 0.00000000
## 5201 0.0000000 0.000000000 0.00000000
## 5202 0.0000000 0.000000000 0.00000000
## 5203 0.0000000 0.000000000 0.00000000
## 5204 0.0000000 0.000000000 0.00000000
## 5205 0.0000000 0.000000000 0.00000000
## 5206 0.0000000 0.000000000 0.00000000
## 5207 0.0000000 0.000000000 0.00000000
## 5208 0.0000000 0.000000000 0.00000000
## 5209 0.0000000 0.000000000 0.00000000
## 5210 0.0000000 0.000000000 0.00000000
## 5211 0.0000000 0.000000000 0.00000000
## 5212 0.0000000 0.000000000 0.00000000
## 5213 0.0000000 0.000000000 0.00000000
## 5214 0.0000000 0.000000000 0.00000000
## 5215 0.0000000 0.000000000 0.00000000
## 5216 0.0000000 0.000000000 0.00000000
## 5217 0.0000000 0.000000000 0.00000000
## 5218 0.0000000 0.000000000 0.00000000
## 5219 0.0000000 0.000000000 0.00000000
## 5220 0.0000000 0.000000000 0.00000000
## 5221 0.0000000 0.000000000 0.00000000
## 5222 0.0000000 0.000000000 0.00000000
## 5223 0.0000000 0.000000000 0.00000000
## 5224 0.0000000 0.000000000 0.00000000
## 5225 0.0000000 0.000000000 0.00000000
## 5226 0.0000000 0.000000000 0.00000000
## 5227 0.0000000 0.000000000 0.00000000
## 5228 0.0000000 0.000000000 0.00000000
## 5229 0.0000000 0.000000000 0.00000000
## 5230 0.0000000 0.000000000 0.00000000
## 5231 0.0000000 0.000000000 0.00000000
## 5232 0.0000000 0.000000000 0.00000000
## 5233 0.0000000 0.000000000 0.00000000
## 5234 0.0000000 0.000000000 0.00000000
## 5235 0.0000000 0.000000000 0.00000000
## 5236 0.0000000 0.000000000 0.00000000
## 5237 0.0000000 0.000000000 0.00000000
## 5238 0.0000000 0.000000000 0.00000000
## 5239 0.0000000 0.000000000 0.00000000
## 5240 0.0000000 0.000000000 0.00000000
## 5241 0.0000000 0.000000000 0.00000000
## 5242 0.0000000 0.000000000 0.00000000
## 5243 0.0000000 0.000000000 0.00000000
## 5244 0.0000000 0.000000000 0.00000000
## 5245 0.0000000 0.000000000 0.00000000
## 5246 0.0000000 0.000000000 0.00000000
## 5247 0.0000000 0.000000000 0.00000000
## 5248 0.0000000 0.000000000 0.00000000
## 5249 0.0000000 0.000000000 0.00000000
## 5250 0.0000000 0.000000000 0.00000000
## 5251 0.0000000 0.000000000 0.00000000
## 5252 0.0000000 0.000000000 0.00000000
## 5253 0.0000000 0.000000000 0.00000000
## 5254 0.0000000 0.000000000 0.00000000
## 5255 0.0000000 0.000000000 0.00000000
## 5256 0.0000000 0.000000000 0.00000000
## 5257 0.0000000 0.000000000 0.00000000
## 5258 0.0000000 0.000000000 0.00000000
## 5259 0.0000000 0.000000000 0.00000000
## 5260 0.0000000 0.000000000 0.00000000
## 5261 0.0000000 0.000000000 0.00000000
## 5262 0.0000000 0.000000000 0.00000000
## 5263 0.0000000 0.000000000 0.00000000
## 5264 0.0000000 0.000000000 0.00000000
## 5265 0.0000000 0.000000000 0.00000000
## 5266 0.0000000 0.000000000 0.00000000
## 5267 0.0000000 0.000000000 0.00000000
## 5268 0.0000000 0.000000000 0.00000000
## 5269 0.0000000 0.000000000 0.00000000
## 5270 0.0000000 0.000000000 0.00000000
## 5271 0.0000000 0.000000000 0.00000000
## 5272 0.0000000 0.000000000 0.00000000
## 5273 0.0000000 0.000000000 0.00000000
## 5274 0.0000000 0.000000000 0.00000000
## 5275 0.0000000 0.000000000 0.00000000
## 5276 0.0000000 0.000000000 0.00000000
## 5277 0.0000000 0.000000000 0.00000000
## 5278 0.0000000 0.000000000 0.00000000
## 5279 0.0000000 0.000000000 0.00000000
## 5280 0.0000000 0.000000000 0.00000000
## 5281 0.0000000 0.000000000 0.00000000
## 5282 0.0000000 0.000000000 0.00000000
## 5283 0.0000000 0.000000000 0.00000000
## 5284 0.0000000 0.000000000 0.00000000
## 5285 0.0000000 0.000000000 0.00000000
## 5286 0.0000000 0.000000000 0.00000000
## 5287 0.0000000 0.000000000 0.00000000
## 5288 0.0000000 0.000000000 0.00000000
## 5289 0.0000000 0.000000000 0.00000000
## 5290 0.0000000 0.000000000 0.00000000
## 5291 0.0000000 0.000000000 0.00000000
## 5292 0.0000000 0.000000000 0.00000000
## 5293 0.0000000 0.000000000 0.00000000
## 5294 0.0000000 0.000000000 0.00000000
## 5295 0.0000000 0.000000000 0.00000000
## 5296 0.0000000 0.000000000 0.00000000
## 5297 0.0000000 0.000000000 0.00000000
## 5298 0.0000000 0.000000000 0.00000000
## 5299 0.0000000 0.000000000 0.00000000
## 5300 0.0000000 0.000000000 0.00000000
## 5301 0.0000000 0.000000000 0.00000000
## 5302 0.0000000 0.000000000 0.00000000
## 5303 0.0000000 0.000000000 0.00000000
## 5304 0.0000000 0.000000000 0.00000000
## 5305 0.0000000 0.000000000 0.00000000
## 5306 0.0000000 0.000000000 0.00000000
## 5307 0.0000000 0.000000000 0.00000000
## 5308 0.0000000 0.000000000 0.00000000
## 5309 0.0000000 0.000000000 0.00000000
## 5310 0.0000000 0.000000000 0.00000000
## 5311 0.0000000 0.000000000 0.00000000
## 5312 0.0000000 0.000000000 0.00000000
## 5313 0.0000000 0.000000000 0.00000000
## 5314 0.0000000 0.000000000 0.00000000
## 5315 0.0000000 0.000000000 0.00000000
## 5316 0.0000000 0.000000000 0.00000000
## 5317 0.0000000 0.000000000 0.00000000
## 5318 0.0000000 0.000000000 0.00000000
## 5319 0.0000000 0.000000000 0.00000000
## 5320 0.0000000 0.000000000 0.00000000
## 5321 0.0000000 0.000000000 0.00000000
## 5322 0.0000000 0.000000000 0.00000000
## 5323 0.0000000 0.000000000 0.00000000
## 5324 0.0000000 0.000000000 0.00000000
## 5325 0.0000000 0.000000000 0.00000000
## 5326 0.0000000 0.000000000 0.00000000
## 5327 0.0000000 0.000000000 0.00000000
## 5328 0.0000000 0.000000000 0.00000000
## 5329 0.0000000 0.000000000 0.00000000
## 5330 0.0000000 0.000000000 0.00000000
## 5331 0.0000000 0.000000000 0.00000000
## 5332 0.0000000 0.000000000 0.00000000
## 5333 0.0000000 0.000000000 0.00000000
## 5334 0.0000000 0.000000000 0.00000000
## 5335 0.0000000 0.000000000 0.00000000
## 5336 0.0000000 0.000000000 0.00000000
## 5337 0.0000000 0.000000000 0.00000000
## 5338 0.0000000 0.000000000 0.00000000
## 5339 0.0000000 0.000000000 0.00000000
## 5340 0.0000000 0.000000000 0.00000000
## 5341 0.0000000 0.000000000 0.00000000
## 5342 0.0000000 0.000000000 0.00000000
## 5343 0.0000000 0.000000000 0.00000000
## 5344 0.0000000 0.000000000 0.00000000
## 5345 0.0000000 0.000000000 0.00000000
## 5346 0.0000000 0.000000000 0.00000000
## 5347 0.0000000 0.000000000 0.00000000
## 5348 0.0000000 0.000000000 0.00000000
## 5349 0.0000000 0.000000000 0.00000000
## 5350 0.0000000 0.000000000 0.00000000
## 5351 0.0000000 0.000000000 0.00000000
## 5352 0.0000000 0.000000000 0.00000000
## 5353 0.0000000 0.000000000 0.00000000
## 5354 0.0000000 0.000000000 0.00000000
## 5355 0.0000000 0.000000000 0.00000000
## 5356 0.0000000 0.000000000 0.00000000
## 5357 0.0000000 0.000000000 0.00000000
## 5358 0.0000000 0.000000000 0.00000000
## 5359 0.0000000 0.000000000 0.00000000
## 5360 0.0000000 0.000000000 0.00000000
## 5361 0.0000000 0.000000000 0.00000000
## 5362 0.0000000 0.000000000 0.00000000
## 5363 0.0000000 0.000000000 0.00000000
## 5364 0.0000000 0.000000000 0.00000000
## 5365 0.0000000 0.000000000 0.00000000
## 5366 0.0000000 0.000000000 0.00000000
## 5367 0.0000000 0.000000000 0.00000000
## 5368 0.0000000 0.000000000 0.00000000
## 5369 0.0000000 0.000000000 0.00000000
## 5370 0.0000000 0.000000000 0.00000000
## 5371 0.0000000 0.000000000 0.00000000
## 5372 0.0000000 0.000000000 0.00000000
## 5373 0.0000000 0.000000000 0.00000000
## 5374 0.0000000 0.000000000 0.00000000
## 5375 0.0000000 0.000000000 0.00000000
## 5376 0.0000000 0.000000000 0.00000000
## 5377 0.0000000 0.000000000 0.00000000
## 5378 0.0000000 0.000000000 0.00000000
## 5379 0.0000000 0.000000000 0.00000000
## 5380 0.0000000 0.000000000 0.00000000
## 5381 0.0000000 0.000000000 0.00000000
## 5382 0.0000000 0.000000000 0.00000000
## 5383 0.0000000 0.000000000 0.00000000
## 5384 0.0000000 0.000000000 0.00000000
## 5385 0.0000000 0.000000000 0.00000000
## 5386 0.0000000 0.000000000 0.00000000
## 5387 0.0000000 0.000000000 0.00000000
## 5388 0.0000000 0.000000000 0.00000000
## 5389 0.0000000 0.000000000 0.00000000
## 5390 0.0000000 0.000000000 0.00000000
## 5391 0.0000000 0.000000000 0.00000000
## 5392 0.0000000 0.000000000 0.00000000
## 5393 0.0000000 0.000000000 0.00000000
## 5394 0.0000000 0.000000000 0.00000000
## 5395 0.0000000 0.000000000 0.00000000
## 5396 0.0000000 0.000000000 0.00000000
## 5397 0.0000000 0.000000000 0.00000000
## 5398 0.0000000 0.000000000 0.00000000
## 5399 0.0000000 0.000000000 0.00000000
## 5400 0.0000000 0.000000000 0.00000000
## 5401 0.0000000 0.000000000 0.00000000
## 5402 0.0000000 0.000000000 0.00000000
## 5403 0.0000000 0.000000000 0.00000000
## 5404 0.0000000 0.000000000 0.00000000
## 5405 0.0000000 0.000000000 0.00000000
## 5406 0.0000000 0.000000000 0.00000000
## 5407 0.0000000 0.000000000 0.00000000
## 5408 0.0000000 0.000000000 0.00000000
## 5409 0.0000000 0.000000000 0.00000000
## 5410 0.0000000 0.000000000 0.00000000
## 5411 0.0000000 0.000000000 0.00000000
## 5412 0.0000000 0.000000000 0.00000000
## 5413 0.0000000 0.000000000 0.00000000
## 5414 0.0000000 0.000000000 0.00000000
## 5415 0.0000000 0.000000000 0.00000000
## 5416 0.0000000 0.000000000 0.00000000
## 5417 0.0000000 0.000000000 0.00000000
## 5418 0.0000000 0.000000000 0.00000000
## 5419 0.0000000 0.000000000 0.00000000
## 5420 0.0000000 0.000000000 0.00000000
## 5421 0.0000000 0.000000000 0.00000000
## 5422 0.0000000 0.000000000 0.00000000
## 5423 0.0000000 0.000000000 0.00000000
## 5424 0.0000000 0.000000000 0.00000000
## 5425 0.0000000 0.000000000 0.00000000
## 5426 0.0000000 0.000000000 0.00000000
## 5427 0.0000000 0.000000000 0.00000000
## 5428 0.0000000 0.000000000 0.00000000
## 5429 0.0000000 0.000000000 0.00000000
## 5430 0.0000000 0.000000000 0.00000000
## 5431 0.0000000 0.000000000 0.00000000
## 5432 0.0000000 0.000000000 0.00000000
## 5433 0.0000000 0.000000000 0.00000000
## 5434 0.0000000 0.000000000 0.00000000
## 5435 0.0000000 0.000000000 0.00000000
## 5436 0.0000000 0.000000000 0.00000000
## 5437 0.0000000 0.000000000 0.00000000
## 5438 0.0000000 0.000000000 0.00000000
## 5439 0.0000000 0.000000000 0.00000000
## 5440 0.0000000 0.000000000 0.00000000
## 5441 0.0000000 0.000000000 0.00000000
## 5442 0.0000000 0.000000000 0.00000000
## 5443 0.0000000 0.000000000 0.00000000
## 5444 0.0000000 0.000000000 0.00000000
## 5445 0.0000000 0.000000000 0.00000000
## 5446 0.0000000 0.000000000 0.00000000
## 5447 0.0000000 0.000000000 0.00000000
## 5448 0.0000000 0.000000000 0.00000000
## 5449 0.0000000 0.000000000 0.00000000
## 5450 0.0000000 0.000000000 0.00000000
## 5451 0.0000000 0.000000000 0.00000000
## 5452 0.0000000 0.000000000 0.00000000
## 5453 0.0000000 0.000000000 0.00000000
## 5454 0.0000000 0.000000000 0.00000000
## 5455 0.0000000 0.000000000 0.00000000
## 5456 0.0000000 0.000000000 0.00000000
## 5457 0.0000000 0.000000000 0.00000000
## 5458 0.0000000 0.000000000 0.00000000
## 5459 0.0000000 0.000000000 0.00000000
## 5460 0.0000000 0.000000000 0.00000000
## 5461 0.0000000 0.000000000 0.00000000
## 5462 0.0000000 0.000000000 0.00000000
## 5463 0.0000000 0.000000000 0.00000000
## 5464 0.0000000 0.000000000 0.00000000
## 5465 0.0000000 0.000000000 0.00000000
## 5466 0.0000000 0.000000000 0.00000000
## 5467 0.0000000 0.000000000 0.00000000
## 5468 0.0000000 0.000000000 0.00000000
## 5469 0.0000000 0.000000000 0.00000000
## 5470 0.0000000 0.000000000 0.00000000
## 5471 0.0000000 0.000000000 0.00000000
## 5472 0.0000000 0.000000000 0.00000000
## 5473 0.0000000 0.000000000 0.00000000
## 5474 0.0000000 0.000000000 0.00000000
## 5475 0.0000000 0.000000000 0.00000000
## 5476 0.0000000 0.000000000 0.00000000
## 5477 0.0000000 0.000000000 0.00000000
## 5478 0.0000000 0.000000000 0.00000000
## 5479 0.0000000 0.000000000 0.00000000
## 5480 0.0000000 0.000000000 0.00000000
## 5481 0.0000000 0.000000000 0.00000000
## 5482 0.0000000 0.000000000 0.00000000
## 5483 0.0000000 0.000000000 0.00000000
## 5484 0.0000000 0.000000000 0.00000000
## 5485 0.0000000 0.000000000 0.00000000
## 5486 0.0000000 0.000000000 0.00000000
## 5487 0.0000000 0.000000000 0.00000000
## 5488 0.0000000 0.000000000 0.00000000
## 5489 0.0000000 0.000000000 0.00000000
## 5490 0.0000000 0.000000000 0.00000000
## 5491 0.0000000 0.000000000 0.00000000
## 5492 0.0000000 0.000000000 0.00000000
## 5493 0.0000000 0.000000000 0.00000000
## 5494 0.0000000 0.000000000 0.00000000
## 5495 0.0000000 0.000000000 0.00000000
## 5496 0.0000000 0.000000000 0.00000000
## 5497 0.0000000 0.000000000 0.00000000
## 5498 0.0000000 0.000000000 0.00000000
## 5499 0.0000000 0.000000000 0.00000000
## 5500 0.0000000 0.000000000 0.00000000
## 5501 0.0000000 0.000000000 0.00000000
## 5502 0.0000000 0.000000000 0.00000000
## 5503 0.0000000 0.000000000 0.00000000
## 5504 0.0000000 0.000000000 0.00000000
## 5505 0.0000000 0.000000000 0.00000000
## 5506 0.0000000 0.000000000 0.00000000
## 5507 0.0000000 0.000000000 0.00000000
## 5508 0.0000000 0.000000000 0.00000000
## 5509 0.0000000 0.000000000 0.00000000
## 5510 0.0000000 0.000000000 0.00000000
## 5511 0.0000000 0.000000000 0.00000000
## 5512 0.0000000 0.000000000 0.00000000
## 5513 0.0000000 0.000000000 0.00000000
## 5514 0.0000000 0.000000000 0.00000000
## 5515 0.0000000 0.000000000 0.00000000
## 5516 0.0000000 0.000000000 0.00000000
## 5517 0.0000000 0.000000000 0.00000000
## 5518 0.0000000 0.000000000 0.00000000
## 5519 0.0000000 0.000000000 0.00000000
## 5520 0.0000000 0.000000000 0.00000000
## 5521 0.0000000 0.000000000 0.00000000
## 5522 0.0000000 0.000000000 0.00000000
## 5523 0.0000000 0.000000000 0.00000000
## 5524 0.0000000 0.000000000 0.00000000
## 5525 0.0000000 0.000000000 0.00000000
## 5526 0.0000000 0.000000000 0.00000000
## 5527 0.0000000 0.000000000 0.00000000
## 5528 0.0000000 0.000000000 0.00000000
## 5529 0.0000000 0.000000000 0.00000000
## 5530 0.0000000 0.000000000 0.00000000
## 5531 0.0000000 0.000000000 0.00000000
## 5532 0.0000000 0.000000000 0.00000000
## 5533 0.0000000 0.000000000 0.00000000
## 5534 0.0000000 0.000000000 0.00000000
## 5535 0.0000000 0.000000000 0.00000000
## 5536 0.0000000 0.000000000 0.00000000
## 5537 0.0000000 0.000000000 0.00000000
## 5538 0.0000000 0.000000000 0.00000000
## 5539 0.0000000 0.000000000 0.00000000
## 5540 0.0000000 0.000000000 0.00000000
## 5541 0.0000000 0.000000000 0.00000000
## 5542 0.0000000 0.000000000 0.00000000
## 5543 0.0000000 0.000000000 0.00000000
## 5544 0.0000000 0.000000000 0.00000000
## 5545 0.0000000 0.000000000 0.00000000
## 5546 0.0000000 0.000000000 0.00000000
## 5547 0.0000000 0.000000000 0.00000000
## 5548 0.0000000 0.000000000 0.00000000
## 5549 0.0000000 0.000000000 0.00000000
## 5550 0.0000000 0.000000000 0.00000000
## 5551 0.0000000 0.000000000 0.00000000
## 5552 0.0000000 0.000000000 0.00000000
## 5553 0.0000000 0.000000000 0.00000000
## 5554 0.0000000 0.000000000 0.00000000
## 5555 0.0000000 0.000000000 0.00000000
## 5556 0.0000000 0.000000000 0.00000000
## 5557 0.0000000 0.000000000 0.00000000
## 5558 0.0000000 0.000000000 0.00000000
## 5559 0.0000000 0.000000000 0.00000000
## 5560 0.0000000 0.000000000 0.00000000
## 5561 0.0000000 0.000000000 0.00000000
## 5562 0.0000000 0.000000000 0.00000000
## 5563 0.0000000 0.000000000 0.00000000
## 5564 0.0000000 0.000000000 0.00000000
## 5565 0.0000000 0.000000000 0.00000000
## 5566 0.0000000 0.000000000 0.00000000
## 5567 0.0000000 0.000000000 0.00000000
## 5568 0.0000000 0.000000000 0.00000000
## 5569 0.0000000 0.000000000 0.00000000
## 5570 0.0000000 0.000000000 0.00000000
## 5571 0.0000000 0.000000000 0.00000000
## 5572 0.0000000 0.000000000 0.00000000
## 5573 0.0000000 0.000000000 0.00000000
## 5574 0.0000000 0.000000000 0.00000000
## 5575 0.0000000 0.000000000 0.00000000
## 5576 0.0000000 0.000000000 0.00000000
## 5577 0.0000000 0.000000000 0.00000000
## 5578 0.0000000 0.000000000 0.00000000
## 5579 0.0000000 0.000000000 0.00000000
## 5580 0.0000000 0.000000000 0.00000000
## 5581 0.0000000 0.000000000 0.00000000
## 5582 0.0000000 0.000000000 0.00000000
## 5583 0.0000000 0.000000000 0.00000000
## 5584 0.0000000 0.000000000 0.00000000
## 5585 0.0000000 0.000000000 0.00000000
## 5586 0.0000000 0.000000000 0.00000000
## 5587 0.0000000 0.000000000 0.00000000
## 5588 0.0000000 0.000000000 0.00000000
## 5589 0.0000000 0.000000000 0.00000000
## 5590 0.0000000 0.000000000 0.00000000
## 5591 0.0000000 0.000000000 0.00000000
## 5592 0.0000000 0.000000000 0.00000000
## 5593 0.0000000 0.000000000 0.00000000
## 5594 0.0000000 0.000000000 0.00000000
## 5595 0.0000000 0.000000000 0.00000000
## 5596 0.0000000 0.000000000 0.00000000
## 5597 0.0000000 0.000000000 0.00000000
## 5598 0.0000000 0.000000000 0.00000000
## 5599 0.0000000 0.000000000 0.00000000
## 5600 0.0000000 0.000000000 0.00000000
## 5601 0.0000000 0.000000000 0.00000000
## 5602 0.0000000 0.000000000 0.00000000
## 5603 0.0000000 0.000000000 0.00000000
## 5604 0.0000000 0.000000000 0.00000000
## 5605 0.0000000 0.000000000 0.00000000
## 5606 0.0000000 0.000000000 0.00000000
## 5607 0.0000000 0.000000000 0.00000000
## 5608 0.0000000 0.000000000 0.00000000
## 5609 0.0000000 0.000000000 0.00000000
## 5610 0.0000000 0.000000000 0.00000000
## 5611 0.0000000 0.000000000 0.00000000
## 5612 0.0000000 0.000000000 0.00000000
## 5613 0.0000000 0.000000000 0.00000000
## 5614 0.0000000 0.000000000 0.00000000
## 5615 0.0000000 0.000000000 0.00000000
## 5616 0.0000000 0.000000000 0.00000000
## 5617 0.0000000 0.000000000 0.00000000
## 5618 0.0000000 0.000000000 0.00000000
## 5619 0.0000000 0.000000000 0.00000000
## 5620 0.0000000 0.000000000 0.00000000
## 5621 0.0000000 0.000000000 0.00000000
## 5622 0.0000000 0.000000000 0.00000000
## 5623 0.0000000 0.000000000 0.00000000
## 5624 0.0000000 0.000000000 0.00000000
## 5625 0.0000000 0.000000000 0.00000000
## 5626 0.0000000 0.000000000 0.00000000
## 5627 0.0000000 0.000000000 0.00000000
## 5628 0.0000000 0.000000000 0.00000000
## 5629 0.0000000 0.000000000 0.00000000
## 5630 0.0000000 0.000000000 0.00000000
## 5631 0.0000000 0.000000000 0.00000000
## 5632 0.0000000 0.000000000 0.00000000
## 5633 0.0000000 0.000000000 0.00000000
## 5634 0.0000000 0.000000000 0.00000000
## 5635 0.0000000 0.000000000 0.00000000
## 5636 0.0000000 0.000000000 0.00000000
## 5637 0.0000000 0.000000000 0.00000000
## 5638 0.0000000 0.000000000 0.00000000
## 5639 0.0000000 0.000000000 0.00000000
## 5640 0.0000000 0.000000000 0.00000000
## 5641 0.0000000 0.000000000 0.00000000
## 5642 0.0000000 0.000000000 0.00000000
## 5643 0.0000000 0.000000000 0.00000000
## 5644 0.0000000 0.000000000 0.00000000
## 5645 0.0000000 0.000000000 0.00000000
## 5646 0.0000000 0.000000000 0.00000000
## 5647 0.0000000 0.000000000 0.00000000
## 5648 0.0000000 0.000000000 0.00000000
## 5649 0.0000000 0.000000000 0.00000000
## 5650 0.0000000 0.000000000 0.00000000
## 5651 0.0000000 0.000000000 0.00000000
## 5652 0.0000000 0.000000000 0.00000000
## 5653 0.0000000 0.000000000 0.00000000
## 5654 0.0000000 0.000000000 0.00000000
## 5655 0.0000000 0.000000000 0.00000000
## 5656 0.0000000 0.000000000 0.00000000
## 5657 0.0000000 0.000000000 0.00000000
## 5658 0.0000000 0.000000000 0.00000000
## 5659 0.0000000 0.000000000 0.00000000
## 5660 0.0000000 0.000000000 0.00000000
## 5661 0.0000000 0.000000000 0.00000000
## 5662 0.0000000 0.000000000 0.00000000
## 5663 0.0000000 0.000000000 0.00000000
## 5664 0.0000000 0.000000000 0.00000000
## 5665 0.0000000 0.000000000 0.00000000
## 5666 0.0000000 0.000000000 0.00000000
## 5667 0.0000000 0.000000000 0.00000000
## 5668 0.0000000 0.000000000 0.00000000
## 5669 0.0000000 0.000000000 0.00000000
## 5670 0.0000000 0.000000000 0.00000000
## 5671 0.0000000 0.000000000 0.00000000
## 5672 0.0000000 0.000000000 0.00000000
## 5673 0.0000000 0.000000000 0.00000000
## 5674 0.0000000 0.000000000 0.00000000
## 5675 0.0000000 0.000000000 0.00000000
## 5676 0.0000000 0.000000000 0.00000000
## 5677 0.0000000 0.000000000 0.00000000
## 5678 0.0000000 0.000000000 0.00000000
## 5679 0.0000000 0.000000000 0.00000000
## 5680 0.0000000 0.000000000 0.00000000
## 5681 0.0000000 0.000000000 0.00000000
## 5682 0.0000000 0.000000000 0.00000000
## 5683 0.0000000 0.000000000 0.00000000
## 5684 0.0000000 0.000000000 0.00000000
## 5685 0.0000000 0.000000000 0.00000000
## 5686 0.0000000 0.000000000 0.00000000
## 5687 0.0000000 0.000000000 0.00000000
## 5688 0.0000000 0.000000000 0.00000000
## 5689 0.0000000 0.000000000 0.00000000
## 5690 0.0000000 0.000000000 0.00000000
## 5691 0.0000000 0.000000000 0.00000000
## 5692 0.0000000 0.000000000 0.00000000
## 5693 0.0000000 0.000000000 0.00000000
## 5694 0.0000000 0.000000000 0.00000000
## 5695 0.0000000 0.000000000 0.00000000
## 5696 0.0000000 0.000000000 0.00000000
## 5697 0.0000000 0.000000000 0.00000000
## 5698 0.0000000 0.000000000 0.00000000
## 5699 0.0000000 0.000000000 0.00000000
## 5700 0.0000000 0.000000000 0.00000000
## 5701 0.0000000 0.000000000 0.00000000
## 5702 0.0000000 0.000000000 0.00000000
## 5703 0.0000000 0.000000000 0.00000000
## 5704 0.0000000 0.000000000 0.00000000
## 5705 0.0000000 0.000000000 0.00000000
## 5706 0.0000000 0.000000000 0.00000000
## 5707 0.0000000 0.000000000 0.00000000
## 5708 0.0000000 0.000000000 0.00000000
## 5709 0.0000000 0.000000000 0.00000000
## 5710 0.0000000 0.000000000 0.00000000
## 5711 0.0000000 0.000000000 0.00000000
## 5712 0.0000000 0.000000000 0.00000000
## 5713 0.0000000 0.000000000 0.00000000
## 5714 0.0000000 0.000000000 0.00000000
## 5715 0.0000000 0.000000000 0.00000000
## 5716 0.0000000 0.000000000 0.00000000
## 5717 0.0000000 0.000000000 0.00000000
## 5718 0.0000000 0.000000000 0.00000000
## 5719 0.0000000 0.000000000 0.00000000
## 5720 0.0000000 0.000000000 0.00000000
## 5721 0.0000000 0.000000000 0.00000000
## 5722 0.0000000 0.000000000 0.00000000
## 5723 0.0000000 0.000000000 0.00000000
## 5724 0.0000000 0.000000000 0.00000000
## 5725 0.0000000 0.000000000 0.00000000
## 5726 0.0000000 0.000000000 0.00000000
## 5727 0.0000000 0.000000000 0.00000000
## 5728 0.0000000 0.000000000 0.00000000
## 5729 0.0000000 0.000000000 0.00000000
## 5730 0.0000000 0.000000000 0.00000000
## 5731 0.0000000 0.000000000 0.00000000
## 5732 0.0000000 0.000000000 0.00000000
## 5733 0.0000000 0.000000000 0.00000000
## 5734 0.0000000 0.000000000 0.00000000
## 5735 0.0000000 0.000000000 0.00000000
## 5736 0.0000000 0.000000000 0.00000000
## 5737 0.0000000 0.000000000 0.00000000
## 5738 0.0000000 0.000000000 0.00000000
## 5739 0.0000000 0.000000000 0.00000000
## 5740 0.0000000 0.000000000 0.00000000
## 5741 0.0000000 0.000000000 0.00000000
## 5742 0.0000000 0.000000000 0.00000000
## 5743 0.0000000 0.000000000 0.00000000
## 5744 0.0000000 0.000000000 0.00000000
## 5745 0.0000000 0.000000000 0.00000000
## 5746 0.0000000 0.000000000 0.00000000
## 5747 0.0000000 0.000000000 0.00000000
## 5748 0.0000000 0.000000000 0.00000000
## 5749 0.0000000 0.000000000 0.00000000
## 5750 0.0000000 0.000000000 0.00000000
## 5751 0.0000000 0.000000000 0.00000000
## 5752 0.0000000 0.000000000 0.00000000
## 5753 0.0000000 0.000000000 0.00000000
## 5754 0.0000000 0.000000000 0.00000000
## 5755 0.0000000 0.000000000 0.00000000
## 5756 0.0000000 0.000000000 0.00000000
## 5757 0.0000000 0.000000000 0.00000000
## 5758 0.0000000 0.000000000 0.00000000
## 5759 0.0000000 0.000000000 0.00000000
## 5760 0.0000000 0.000000000 0.00000000
## 5761 0.0000000 0.000000000 0.00000000
## 5762 0.0000000 0.000000000 0.00000000
## 5763 0.0000000 0.000000000 0.00000000
## 5764 0.0000000 0.000000000 0.00000000
## 5765 0.0000000 0.000000000 0.00000000
## 5766 0.0000000 0.000000000 0.00000000
## 5767 0.0000000 0.000000000 0.00000000
## 5768 0.0000000 0.000000000 0.00000000
## 5769 0.0000000 0.000000000 0.00000000
## 5770 0.0000000 0.000000000 0.00000000
## 5771 0.0000000 0.000000000 0.00000000
## 5772 0.0000000 0.000000000 0.00000000
## 5773 0.0000000 0.000000000 0.00000000
## 5774 0.0000000 0.000000000 0.00000000
## 5775 0.0000000 0.000000000 0.00000000
## 5776 0.0000000 0.000000000 0.00000000
## 5777 0.0000000 0.000000000 0.00000000
## 5778 0.0000000 0.000000000 0.00000000
## 5779 0.0000000 0.000000000 0.00000000
## 5780 0.0000000 0.000000000 0.00000000
## 5781 0.0000000 0.000000000 0.00000000
## 5782 0.0000000 0.000000000 0.00000000
## 5783 0.0000000 0.000000000 0.00000000
## 5784 0.0000000 0.000000000 0.00000000
## 5785 0.0000000 0.000000000 0.00000000
## 5786 0.0000000 0.000000000 0.00000000
## 5787 0.0000000 0.000000000 0.00000000
## 5788 0.0000000 0.000000000 0.00000000
## 5789 0.0000000 0.000000000 0.00000000
## 5790 0.0000000 0.000000000 0.00000000
## 5791 0.0000000 0.000000000 0.00000000
## 5792 0.0000000 0.000000000 0.00000000
## 5793 0.0000000 0.000000000 0.00000000
## 5794 0.0000000 0.000000000 0.00000000
## 5795 0.0000000 0.000000000 0.00000000
## 5796 0.0000000 0.000000000 0.00000000
## 5797 0.0000000 0.000000000 0.00000000
## 5798 0.0000000 0.000000000 0.00000000
## 5799 0.0000000 0.000000000 0.00000000
## 5800 0.0000000 0.000000000 0.00000000
## 5801 0.0000000 0.000000000 0.00000000
## 5802 0.0000000 0.000000000 0.00000000
## 5803 0.0000000 0.000000000 0.00000000
## 5804 0.0000000 0.000000000 0.00000000
## 5805 0.0000000 0.000000000 0.00000000
## 5806 0.0000000 0.000000000 0.00000000
## 5807 0.0000000 0.000000000 0.00000000
## 5808 0.0000000 0.000000000 0.00000000
## 5809 0.0000000 0.000000000 0.00000000
## 5810 0.0000000 0.000000000 0.00000000
## 5811 0.0000000 0.000000000 0.00000000
## 5812 0.0000000 0.000000000 0.00000000
## 5813 0.0000000 0.000000000 0.00000000
## 5814 0.0000000 0.000000000 0.00000000
## 5815 0.0000000 0.000000000 0.00000000
## 5816 0.0000000 0.000000000 0.00000000
## 5817 0.0000000 0.000000000 0.00000000
## 5818 0.0000000 0.000000000 0.00000000
## 5819 0.0000000 0.000000000 0.00000000
## 5820 0.0000000 0.000000000 0.00000000
## 5821 0.0000000 0.000000000 0.00000000
## 5822 0.0000000 0.000000000 0.00000000
## 5823 0.0000000 0.000000000 0.00000000
## 5824 0.0000000 0.000000000 0.00000000
## 5825 0.0000000 0.000000000 0.00000000
## 5826 0.0000000 0.000000000 0.00000000
## 5827 0.0000000 0.000000000 0.00000000
## 5828 0.0000000 0.000000000 0.00000000
## 5829 0.0000000 0.000000000 0.00000000
## 5830 0.0000000 0.000000000 0.00000000
## 5831 0.0000000 0.000000000 0.00000000
## 5832 0.0000000 0.000000000 0.00000000
## 5833 0.0000000 0.000000000 0.00000000
## 5834 0.0000000 0.000000000 0.00000000
## 5835 0.0000000 0.000000000 0.00000000
## 5836 0.0000000 0.000000000 0.00000000
## 5837 0.0000000 0.000000000 0.00000000
## 5838 0.0000000 0.000000000 0.00000000
## 5839 0.0000000 0.000000000 0.00000000
## 5840 0.0000000 0.000000000 0.00000000
## 5841 0.0000000 0.000000000 0.00000000
## 5842 0.0000000 0.000000000 0.00000000
## 5843 0.0000000 0.000000000 0.00000000
## 5844 0.0000000 0.000000000 0.00000000
## 5845 0.0000000 0.000000000 0.00000000
## 5846 0.0000000 0.000000000 0.00000000
## 5847 0.0000000 0.000000000 0.00000000
## 5848 0.0000000 0.000000000 0.00000000
## 5849 0.0000000 0.000000000 0.00000000
## 5850 0.0000000 0.000000000 0.00000000
## 5851 0.0000000 0.000000000 0.00000000
## 5852 0.0000000 0.000000000 0.00000000
## 5853 0.0000000 0.000000000 0.00000000
## 5854 0.0000000 0.000000000 0.00000000
## 5855 0.0000000 0.000000000 0.00000000
## 5856 0.0000000 0.000000000 0.00000000
## 5857 0.0000000 0.000000000 0.00000000
## 5858 0.0000000 0.000000000 0.00000000
## 5859 0.0000000 0.000000000 0.00000000
## 5860 0.0000000 0.000000000 0.00000000
## 5861 0.0000000 0.000000000 0.00000000
## 5862 0.0000000 0.000000000 0.00000000
## 5863 0.0000000 0.000000000 0.00000000
## 5864 0.0000000 0.000000000 0.00000000
## 5865 0.0000000 0.000000000 0.00000000
## 5866 0.0000000 0.000000000 0.00000000
## 5867 0.0000000 0.000000000 0.00000000
## 5868 0.0000000 0.000000000 0.00000000
## 5869 0.0000000 0.000000000 0.00000000
## 5870 0.0000000 0.000000000 0.00000000
## 5871 0.0000000 0.000000000 0.00000000
## 5872 0.0000000 0.000000000 0.00000000
## 5873 0.0000000 0.000000000 0.00000000
## 5874 0.0000000 0.000000000 0.00000000
## 5875 0.0000000 0.000000000 0.00000000
## 5876 0.0000000 0.000000000 0.00000000
## 5877 0.0000000 0.000000000 0.00000000
## 5878 0.0000000 0.000000000 0.00000000
## 5879 0.0000000 0.000000000 0.00000000
## 5880 0.0000000 0.000000000 0.00000000
## 5881 0.0000000 0.000000000 0.00000000
## 5882 0.0000000 0.000000000 0.00000000
## 5883 0.0000000 0.000000000 0.00000000
## 5884 0.0000000 0.000000000 0.00000000
## 5885 0.0000000 0.000000000 0.00000000
## 5886 0.0000000 0.000000000 0.00000000
## 5887 0.0000000 0.000000000 0.00000000
## 5888 0.0000000 0.000000000 0.00000000
## 5889 0.0000000 0.000000000 0.00000000
## 5890 0.0000000 0.000000000 0.00000000
## 5891 0.0000000 0.000000000 0.00000000
## 5892 0.0000000 0.000000000 0.00000000
## 5893 0.0000000 0.000000000 0.00000000
## 5894 0.0000000 0.000000000 0.00000000
## 5895 0.0000000 0.000000000 0.00000000
## 5896 0.0000000 0.000000000 0.00000000
## 5897 0.0000000 0.000000000 0.00000000
## 5898 0.0000000 0.000000000 0.00000000
## 5899 0.0000000 0.000000000 0.00000000
## 5900 0.0000000 0.000000000 0.00000000
## 5901 0.0000000 0.000000000 0.00000000
## 5902 0.0000000 0.000000000 0.00000000
## 5903 0.0000000 0.000000000 0.00000000
## 5904 0.0000000 0.000000000 0.00000000
## 5905 0.0000000 0.000000000 0.00000000
## 5906 0.0000000 0.000000000 0.00000000
## 5907 0.0000000 0.000000000 0.00000000
## 5908 0.0000000 0.000000000 0.00000000
## 5909 0.0000000 0.000000000 0.00000000
## 5910 0.0000000 0.000000000 0.00000000
## 5911 0.0000000 0.000000000 0.00000000
## 5912 0.0000000 0.000000000 0.00000000
## 5913 0.0000000 0.000000000 0.00000000
## 5914 0.0000000 0.000000000 0.00000000
## 5915 0.0000000 0.000000000 0.00000000
## 5916 0.0000000 0.000000000 0.00000000
## 5917 0.0000000 0.000000000 0.00000000
## 5918 0.0000000 0.000000000 0.00000000
## 5919 0.0000000 0.000000000 0.00000000
## 5920 0.0000000 0.000000000 0.00000000
## 5921 0.0000000 0.000000000 0.00000000
## 5922 0.0000000 0.000000000 0.00000000
## 5923 0.0000000 0.000000000 0.00000000
## 5924 0.0000000 0.000000000 0.00000000
## 5925 0.0000000 0.000000000 0.00000000
## 5926 0.0000000 0.000000000 0.00000000
## 5927 0.0000000 0.000000000 0.00000000
## 5928 0.0000000 0.000000000 0.00000000
## 5929 0.0000000 0.000000000 0.00000000
## 5930 0.0000000 0.000000000 0.00000000
## 5931 0.0000000 0.000000000 0.00000000
## 5932 0.0000000 0.000000000 0.00000000
## 5933 0.0000000 0.000000000 0.00000000
## 5934 0.0000000 0.000000000 0.00000000
## 5935 0.0000000 0.000000000 0.00000000
## 5936 0.0000000 0.000000000 0.00000000
## 5937 0.0000000 0.000000000 0.00000000
## 5938 0.0000000 0.000000000 0.00000000
## 5939 0.0000000 0.000000000 0.00000000
## 5940 0.0000000 0.000000000 0.00000000
## 5941 0.0000000 0.000000000 0.00000000
## 5942 0.0000000 0.000000000 0.00000000
## 5943 0.0000000 0.000000000 0.00000000
## 5944 0.0000000 0.000000000 0.00000000
## 5945 0.0000000 0.000000000 0.00000000
## 5946 0.0000000 0.000000000 0.00000000
## 5947 0.0000000 0.000000000 0.00000000
## 5948 0.0000000 0.000000000 0.00000000
## 5949 0.0000000 0.000000000 0.00000000
## 5950 0.0000000 0.000000000 0.00000000
## 5951 0.0000000 0.000000000 0.00000000
## 5952 0.0000000 0.000000000 0.00000000
## 5953 0.0000000 0.000000000 0.00000000
## 5954 0.0000000 0.000000000 0.00000000
## 5955 0.0000000 0.000000000 0.00000000
## 5956 0.0000000 0.000000000 0.00000000
## 5957 0.0000000 0.000000000 0.00000000
## 5958 0.0000000 0.000000000 0.00000000
## 5959 0.0000000 0.000000000 0.00000000
## 5960 0.0000000 0.000000000 0.00000000
## 5961 0.0000000 0.000000000 0.00000000
## 5962 0.0000000 0.000000000 0.00000000
## 5963 0.0000000 0.000000000 0.00000000
## 5964 0.0000000 0.000000000 0.00000000
## 5965 0.0000000 0.000000000 0.00000000
## 5966 0.0000000 0.000000000 0.00000000
## 5967 0.0000000 0.000000000 0.00000000
## 5968 0.0000000 0.000000000 0.00000000
## 5969 0.0000000 0.000000000 0.00000000
## 5970 0.0000000 0.000000000 0.00000000
## 5971 0.0000000 0.000000000 0.00000000
## 5972 0.0000000 0.000000000 0.00000000
## 5973 0.0000000 0.000000000 0.00000000
## 5974 0.0000000 0.000000000 0.00000000
## 5975 0.0000000 0.000000000 0.00000000
## 5976 0.0000000 0.000000000 0.00000000
## 5977 0.0000000 0.000000000 0.00000000
## 5978 0.0000000 0.000000000 0.00000000
## 5979 0.0000000 0.000000000 0.00000000
## 5980 0.0000000 0.000000000 0.00000000
## 5981 0.0000000 0.000000000 0.00000000
## 5982 0.0000000 0.000000000 0.00000000
## 5983 0.0000000 0.000000000 0.00000000
## 5984 0.0000000 0.000000000 0.00000000
## 5985 0.0000000 0.000000000 0.00000000
## 5986 0.0000000 0.000000000 0.00000000
## 5987 0.0000000 0.000000000 0.00000000
## 5988 0.0000000 0.000000000 0.00000000
## 5989 0.0000000 0.000000000 0.00000000
## 5990 0.0000000 0.000000000 0.00000000
## 5991 0.0000000 0.000000000 0.00000000
## 5992 0.0000000 0.000000000 0.00000000
## 5993 0.0000000 0.000000000 0.00000000
## 5994 0.0000000 0.000000000 0.00000000
## 5995 0.0000000 0.000000000 0.00000000
## 5996 0.0000000 0.000000000 0.00000000
## 5997 0.0000000 0.000000000 0.00000000
## 5998 0.0000000 0.000000000 0.00000000
## 5999 0.0000000 0.000000000 0.00000000
## 6000 0.0000000 0.000000000 0.00000000
## 6001 0.0000000 0.000000000 0.00000000
## 6002 0.0000000 0.000000000 0.00000000
## 6003 0.0000000 0.000000000 0.00000000
## 6004 0.0000000 0.000000000 0.00000000
## 6005 0.0000000 0.000000000 0.00000000
## 6006 0.0000000 0.000000000 0.00000000
## 6007 0.0000000 0.000000000 0.00000000
## 6008 0.0000000 0.000000000 0.00000000
## 6009 0.0000000 0.000000000 0.00000000
## 6010 0.0000000 0.000000000 0.00000000
## 6011 0.0000000 0.000000000 0.00000000
## 6012 0.0000000 0.000000000 0.00000000
## 6013 0.0000000 0.000000000 0.00000000
## 6014 0.0000000 0.000000000 0.00000000
## 6015 0.0000000 0.000000000 0.00000000
## 6016 0.0000000 0.000000000 0.00000000
## 6017 0.0000000 0.000000000 0.00000000
## 6018 0.0000000 0.000000000 0.00000000
## 6019 0.0000000 0.000000000 0.00000000
## 6020 0.0000000 0.000000000 0.00000000
## 6021 0.0000000 0.000000000 0.00000000
## 6022 0.0000000 0.000000000 0.00000000
## 6023 0.0000000 0.000000000 0.00000000
## 6024 0.0000000 0.000000000 0.00000000
## 6025 0.0000000 0.000000000 0.00000000
## 6026 0.0000000 0.000000000 0.00000000
## 6027 0.0000000 0.000000000 0.00000000
## 6028 0.0000000 0.000000000 0.00000000
## 6029 0.0000000 0.000000000 0.00000000
## 6030 0.0000000 0.000000000 0.00000000
## 6031 0.0000000 0.000000000 0.00000000
## 6032 0.0000000 0.000000000 0.00000000
## 6033 0.0000000 0.000000000 0.00000000
## 6034 0.0000000 0.000000000 0.00000000
## 6035 0.0000000 0.000000000 0.00000000
## 6036 0.0000000 0.000000000 0.00000000
## 6037 0.0000000 0.000000000 0.00000000
## 6038 0.0000000 0.000000000 0.00000000
## 6039 0.0000000 0.000000000 0.00000000
## 6040 0.0000000 0.000000000 0.00000000
## 6041 0.0000000 0.000000000 0.00000000
## 6042 0.0000000 0.000000000 0.00000000
## 6043 0.0000000 0.000000000 0.00000000
## 6044 0.0000000 0.000000000 0.00000000
## 6045 0.0000000 0.000000000 0.00000000
## 6046 0.0000000 0.000000000 0.00000000
## 6047 0.0000000 0.000000000 0.00000000
## 6048 0.0000000 0.000000000 0.00000000
## 6049 0.0000000 0.000000000 0.00000000
## 6050 0.0000000 0.000000000 0.00000000
## 6051 0.0000000 0.000000000 0.00000000
## 6052 0.0000000 0.000000000 0.00000000
## 6053 0.0000000 0.000000000 0.00000000
## 6054 0.0000000 0.000000000 0.00000000
## 6055 0.0000000 0.000000000 0.00000000
## 6056 0.0000000 0.000000000 0.00000000
## 6057 0.0000000 0.000000000 0.00000000
## 6058 0.0000000 0.000000000 0.00000000
## 6059 0.0000000 0.000000000 0.00000000
## 6060 0.0000000 0.000000000 0.00000000
## 6061 0.0000000 0.000000000 0.00000000
## 6062 0.0000000 0.000000000 0.00000000
## 6063 0.0000000 0.000000000 0.00000000
## 6064 0.0000000 0.000000000 0.00000000
## 6065 0.0000000 0.000000000 0.00000000
## 6066 0.0000000 0.000000000 0.00000000
## 6067 0.0000000 0.000000000 0.00000000
## 6068 0.0000000 0.000000000 0.00000000
## 6069 0.0000000 0.000000000 0.00000000
## 6070 0.0000000 0.000000000 0.00000000
## 6071 0.0000000 0.000000000 0.00000000
## 6072 0.0000000 0.000000000 0.00000000
## 6073 0.0000000 0.000000000 0.00000000
## 6074 0.0000000 0.000000000 0.00000000
## 6075 0.0000000 0.000000000 0.00000000
## 6076 0.0000000 0.000000000 0.00000000
## 6077 0.0000000 0.000000000 0.00000000
## 6078 0.0000000 0.000000000 0.00000000
## 6079 0.0000000 0.000000000 0.00000000
## 6080 0.0000000 0.000000000 0.00000000
## 6081 0.0000000 0.000000000 0.00000000
## 6082 0.0000000 0.000000000 0.00000000
## 6083 0.0000000 0.000000000 0.00000000
## 6084 0.0000000 0.000000000 0.00000000
## 6085 0.0000000 0.000000000 0.00000000
## 6086 0.0000000 0.000000000 0.00000000
## 6087 0.0000000 0.000000000 0.00000000
## 6088 0.0000000 0.000000000 0.00000000
## 6089 0.0000000 0.000000000 0.00000000
## 6090 0.0000000 0.000000000 0.00000000
## 6091 0.0000000 0.000000000 0.00000000
## 6092 0.0000000 0.000000000 0.00000000
## 6093 0.0000000 0.000000000 0.00000000
## 6094 0.0000000 0.000000000 0.00000000
## 6095 0.0000000 0.000000000 0.00000000
## 6096 0.0000000 0.000000000 0.00000000
## 6097 0.0000000 0.000000000 0.00000000
## 6098 0.0000000 0.000000000 0.00000000
## 6099 0.0000000 0.000000000 0.00000000
## 6100 0.0000000 0.000000000 0.00000000
## 6101 0.0000000 0.000000000 0.00000000
## 6102 0.0000000 0.000000000 0.00000000
## 6103 0.0000000 0.000000000 0.00000000
## 6104 0.0000000 0.000000000 0.00000000
## 6105 0.0000000 0.000000000 0.00000000
## 6106 0.0000000 0.000000000 0.00000000
## 6107 0.0000000 0.000000000 0.00000000
## 6108 0.0000000 0.000000000 0.00000000
## 6109 0.0000000 0.000000000 0.00000000
## 6110 0.0000000 0.000000000 0.00000000
## 6111 0.0000000 0.000000000 0.00000000
## 6112 0.0000000 0.000000000 0.00000000
## 6113 0.0000000 0.000000000 0.00000000
## 6114 0.0000000 0.000000000 0.00000000
## 6115 0.0000000 0.000000000 0.00000000
## 6116 0.0000000 0.000000000 0.00000000
## 6117 0.0000000 0.000000000 0.00000000
## 6118 0.0000000 0.000000000 0.00000000
## 6119 0.0000000 0.000000000 0.00000000
## 6120 0.0000000 0.000000000 0.00000000
## 6121 0.0000000 0.000000000 0.00000000
## 6122 0.0000000 0.000000000 0.00000000
## 6123 0.0000000 0.000000000 0.00000000
## 6124 0.0000000 0.000000000 0.00000000
## 6125 0.0000000 0.000000000 0.00000000
## 6126 0.0000000 0.000000000 0.00000000
## 6127 0.0000000 0.000000000 0.00000000
## 6128 0.0000000 0.000000000 0.00000000
## 6129 0.0000000 0.000000000 0.00000000
## 6130 0.0000000 0.000000000 0.00000000
## 6131 0.0000000 0.000000000 0.00000000
## 6132 0.0000000 0.000000000 0.00000000
## 6133 0.0000000 0.000000000 0.00000000
## 6134 0.0000000 0.000000000 0.00000000
## 6135 0.0000000 0.000000000 0.00000000
## 6136 0.0000000 0.000000000 0.00000000
## 6137 0.0000000 0.000000000 0.00000000
## 6138 0.0000000 0.000000000 0.00000000
## 6139 0.0000000 0.000000000 0.00000000
## 6140 0.0000000 0.000000000 0.00000000
## 6141 0.0000000 0.000000000 0.00000000
## 6142 0.0000000 0.000000000 0.00000000
## 6143 0.0000000 0.000000000 0.00000000
## 6144 0.0000000 0.000000000 0.00000000
## 6145 0.0000000 0.000000000 0.00000000
## 6146 0.0000000 0.000000000 0.00000000
## 6147 0.0000000 0.000000000 0.00000000
## 6148 0.0000000 0.000000000 0.00000000
## 6149 0.0000000 0.000000000 0.00000000
## 6150 0.0000000 0.000000000 0.00000000
## 6151 0.0000000 0.000000000 0.00000000
## 6152 0.0000000 0.000000000 0.00000000
## 6153 0.0000000 0.000000000 0.00000000
## 6154 0.0000000 0.000000000 0.00000000
## 6155 0.0000000 0.000000000 0.00000000
## 6156 0.0000000 0.000000000 0.00000000
## 6157 0.0000000 0.000000000 0.00000000
## 6158 0.0000000 0.000000000 0.00000000
## 6159 0.0000000 0.000000000 0.00000000
## 6160 0.0000000 0.000000000 0.00000000
## 6161 0.0000000 0.000000000 0.00000000
## 6162 0.0000000 0.000000000 0.00000000
## 6163 0.0000000 0.000000000 0.00000000
## 6164 0.0000000 0.000000000 0.00000000
## 6165 0.0000000 0.000000000 0.00000000
## 6166 0.0000000 0.000000000 0.00000000
## 6167 0.0000000 0.000000000 0.00000000
## 6168 0.0000000 0.000000000 0.00000000
## 6169 0.0000000 0.000000000 0.00000000
## 6170 0.0000000 0.000000000 0.00000000
## 6171 0.0000000 0.000000000 0.00000000
## 6172 0.0000000 0.000000000 0.00000000
## 6173 0.0000000 0.000000000 0.00000000
## 6174 0.0000000 0.000000000 0.00000000
## 6175 0.0000000 0.000000000 0.00000000
## 6176 0.0000000 0.000000000 0.00000000
## 6177 0.0000000 0.000000000 0.00000000
## 6178 0.0000000 0.000000000 0.00000000
## 6179 0.0000000 0.000000000 0.00000000
## 6180 0.0000000 0.000000000 0.00000000
## 6181 0.0000000 0.000000000 0.00000000
## 6182 0.0000000 0.000000000 0.00000000
## 6183 0.0000000 0.000000000 0.00000000
## 6184 0.0000000 0.000000000 0.00000000
## 6185 0.0000000 0.000000000 0.00000000
## 6186 0.0000000 0.000000000 0.00000000
## 6187 0.0000000 0.000000000 0.00000000
## 6188 0.0000000 0.000000000 0.00000000
## 6189 0.0000000 0.000000000 0.00000000
## 6190 0.0000000 0.000000000 0.00000000
## 6191 0.0000000 0.000000000 0.00000000
## 6192 0.0000000 0.000000000 0.00000000
## 6193 0.0000000 0.000000000 0.00000000
## 6194 0.0000000 0.000000000 0.00000000
## 6195 0.0000000 0.000000000 0.00000000
## 6196 0.0000000 0.000000000 0.00000000
## 6197 0.0000000 0.000000000 0.00000000
## 6198 0.0000000 0.000000000 0.00000000
## 6199 0.0000000 0.000000000 0.00000000
## 6200 0.0000000 0.000000000 0.00000000
## 6201 0.0000000 0.000000000 0.00000000
## 6202 0.0000000 0.000000000 0.00000000
## 6203 0.0000000 0.000000000 0.00000000
## 6204 0.0000000 0.000000000 0.00000000
## 6205 0.0000000 0.000000000 0.00000000
## 6206 0.0000000 0.000000000 0.00000000
## 6207 0.0000000 0.000000000 0.00000000
## 6208 0.0000000 0.000000000 0.00000000
## 6209 0.0000000 0.000000000 0.00000000
## 6210 0.0000000 0.000000000 0.00000000
## 6211 0.0000000 0.000000000 0.00000000
## 6212 0.0000000 0.000000000 0.00000000
## 6213 0.0000000 0.000000000 0.00000000
## 6214 0.0000000 0.000000000 0.00000000
## 6215 0.0000000 0.000000000 0.00000000
## 6216 0.0000000 0.000000000 0.00000000
## 6217 0.0000000 0.000000000 0.00000000
## 6218 0.0000000 0.000000000 0.00000000
## 6219 0.0000000 0.000000000 0.00000000
## 6220 0.0000000 0.000000000 0.00000000
## 6221 0.0000000 0.000000000 0.00000000
## 6222 0.0000000 0.000000000 0.00000000
## 6223 0.0000000 0.000000000 0.00000000
## 6224 0.0000000 0.000000000 0.00000000
## 6225 0.0000000 0.000000000 0.00000000
## 6226 0.0000000 0.000000000 0.00000000
## 6227 0.0000000 0.000000000 0.00000000
## 6228 0.0000000 0.000000000 0.00000000
## 6229 0.0000000 0.000000000 0.00000000
## 6230 0.0000000 0.000000000 0.00000000
## 6231 0.0000000 0.000000000 0.00000000
## 6232 0.0000000 0.000000000 0.00000000
## 6233 0.0000000 0.000000000 0.00000000
## 6234 0.0000000 0.000000000 0.00000000
## 6235 0.0000000 0.000000000 0.00000000
## 6236 0.0000000 0.000000000 0.00000000
## 6237 0.0000000 0.000000000 0.00000000
## 6238 0.0000000 0.000000000 0.00000000
## 6239 0.0000000 0.000000000 0.00000000
## 6240 0.0000000 0.000000000 0.00000000
## 6241 0.0000000 0.000000000 0.00000000
## 6242 0.0000000 0.000000000 0.00000000
## 6243 0.0000000 0.000000000 0.00000000
## 6244 0.0000000 0.000000000 0.00000000
## 6245 0.0000000 0.000000000 0.00000000
## 6246 0.0000000 0.000000000 0.00000000
## 6247 0.0000000 0.000000000 0.00000000
## 6248 0.0000000 0.000000000 0.00000000
## 6249 0.0000000 0.000000000 0.00000000
## 6250 0.0000000 0.000000000 0.00000000
## 6251 0.0000000 0.000000000 0.00000000
## 6252 0.0000000 0.000000000 0.00000000
## 6253 0.0000000 0.000000000 0.00000000
## 6254 0.0000000 0.000000000 0.00000000
## 6255 0.0000000 0.000000000 0.00000000
## 6256 0.0000000 0.000000000 0.00000000
## 6257 0.0000000 0.000000000 0.00000000
## 6258 0.0000000 0.000000000 0.00000000
## 6259 0.0000000 0.000000000 0.00000000
## 6260 0.0000000 0.000000000 0.00000000
## 6261 0.0000000 0.000000000 0.00000000
## 6262 0.0000000 0.000000000 0.00000000
## 6263 0.0000000 0.000000000 0.00000000
## 6264 0.0000000 0.000000000 0.00000000
## 6265 0.0000000 0.000000000 0.00000000
## 6266 0.0000000 0.000000000 0.00000000
## 6267 0.0000000 0.000000000 0.00000000
## 6268 0.0000000 0.000000000 0.00000000
## 6269 0.0000000 0.000000000 0.00000000
## 6270 0.0000000 0.000000000 0.00000000
## 6271 0.0000000 0.000000000 0.00000000
## 6272 0.0000000 0.000000000 0.00000000
## 6273 0.0000000 0.000000000 0.00000000
## 6274 0.0000000 0.000000000 0.00000000
## 6275 0.0000000 0.000000000 0.00000000
## 6276 0.0000000 0.000000000 0.00000000
## 6277 0.0000000 0.000000000 0.00000000
## 6278 0.0000000 0.000000000 0.00000000
## 6279 0.0000000 0.000000000 0.00000000
## 6280 0.0000000 0.000000000 0.00000000
## 6281 0.0000000 0.000000000 0.00000000
## 6282 0.0000000 0.000000000 0.00000000
## 6283 0.0000000 0.000000000 0.00000000
## 6284 0.0000000 0.000000000 0.00000000
## 6285 0.0000000 0.000000000 0.00000000
## 6286 0.0000000 0.000000000 0.00000000
## 6287 0.0000000 0.000000000 0.00000000
## 6288 0.0000000 0.000000000 0.00000000
## 6289 0.0000000 0.000000000 0.00000000
## 6290 0.0000000 0.000000000 0.00000000
## 6291 0.0000000 0.000000000 0.00000000
## 6292 0.0000000 0.000000000 0.00000000
## 6293 0.0000000 0.000000000 0.00000000
## 6294 0.0000000 0.000000000 0.00000000
## 6295 0.0000000 0.000000000 0.00000000
## 6296 0.0000000 0.000000000 0.00000000
## 6297 0.0000000 0.000000000 0.00000000
## 6298 0.0000000 0.000000000 0.00000000
## 6299 0.0000000 0.000000000 0.00000000
## 6300 0.0000000 0.000000000 0.00000000
## 6301 0.0000000 0.000000000 0.00000000
## 6302 0.0000000 0.000000000 0.00000000
## 6303 0.0000000 0.000000000 0.00000000
## 6304 0.0000000 0.000000000 0.00000000
## 6305 0.0000000 0.000000000 0.00000000
## 6306 0.0000000 0.000000000 0.00000000
## 6307 0.0000000 0.000000000 0.00000000
## 6308 0.0000000 0.000000000 0.00000000
## 6309 0.0000000 0.000000000 0.00000000
## 6310 0.0000000 0.000000000 0.00000000
## 6311 0.0000000 0.000000000 0.00000000
## 6312 0.0000000 0.000000000 0.00000000
## 6313 0.0000000 0.000000000 0.00000000
## 6314 0.0000000 0.000000000 0.00000000
## 6315 0.0000000 0.000000000 0.00000000
## 6316 0.0000000 0.000000000 0.00000000
## 6317 0.0000000 0.000000000 0.00000000
## 6318 0.0000000 0.000000000 0.00000000
## 6319 0.0000000 0.000000000 0.00000000
## 6320 0.0000000 0.000000000 0.00000000
## 6321 0.0000000 0.000000000 0.00000000
## 6322 0.0000000 0.000000000 0.00000000
## 6323 0.0000000 0.000000000 0.00000000
## 6324 0.0000000 0.000000000 0.00000000
## 6325 0.0000000 0.000000000 0.00000000
## 6326 0.0000000 0.000000000 0.00000000
## 6327 0.0000000 0.000000000 0.00000000
## 6328 0.0000000 0.000000000 0.00000000
## 6329 0.0000000 0.000000000 0.00000000
## 6330 0.0000000 0.000000000 0.00000000
## 6331 0.0000000 0.000000000 0.00000000
## 6332 0.0000000 0.000000000 0.00000000
## 6333 0.0000000 0.000000000 0.00000000
## 6334 0.0000000 0.000000000 0.00000000
## 6335 0.0000000 0.000000000 0.00000000
## 6336 0.0000000 0.000000000 0.00000000
## 6337 0.0000000 0.000000000 0.00000000
## 6338 0.0000000 0.000000000 0.00000000
## 6339 0.0000000 0.000000000 0.00000000
## 6340 0.0000000 0.000000000 0.00000000
## 6341 0.0000000 0.000000000 0.00000000
## 6342 0.0000000 0.000000000 0.00000000
## 6343 0.0000000 0.000000000 0.00000000
## 6344 0.0000000 0.000000000 0.00000000
## 6345 0.0000000 0.000000000 0.00000000
## 6346 0.0000000 0.000000000 0.00000000
## 6347 0.0000000 0.000000000 0.00000000
## 6348 0.0000000 0.000000000 0.00000000
## 6349 0.0000000 0.000000000 0.00000000
## 6350 0.0000000 0.000000000 0.00000000
## 6351 0.0000000 0.000000000 0.00000000
## 6352 0.0000000 0.000000000 0.00000000
## 6353 0.0000000 0.000000000 0.00000000
## 6354 0.0000000 0.000000000 0.00000000
## 6355 0.0000000 0.000000000 0.00000000
## 6356 0.0000000 0.000000000 0.00000000
## 6357 0.0000000 0.000000000 0.00000000
## 6358 0.0000000 0.000000000 0.00000000
## 6359 0.0000000 0.000000000 0.00000000
## 6360 0.0000000 0.000000000 0.00000000
## 6361 0.0000000 0.000000000 0.00000000
## 6362 0.0000000 0.000000000 0.00000000
## 6363 0.0000000 0.000000000 0.00000000
## 6364 0.0000000 0.000000000 0.00000000
## 6365 0.0000000 0.000000000 0.00000000
## 6366 0.0000000 0.000000000 0.00000000
## 6367 0.0000000 0.000000000 0.00000000
## 6368 0.0000000 0.000000000 0.00000000
## 6369 0.0000000 0.000000000 0.00000000
## 6370 0.0000000 0.000000000 0.00000000
## 6371 0.0000000 0.000000000 0.00000000
## 6372 0.0000000 0.000000000 0.00000000
## 6373 0.0000000 0.000000000 0.00000000
## 6374 0.0000000 0.000000000 0.00000000
## 6375 0.0000000 0.000000000 0.00000000
## 6376 0.0000000 0.000000000 0.00000000
## 6377 0.0000000 0.000000000 0.00000000
## 6378 0.0000000 0.000000000 0.00000000
## 6379 0.0000000 0.000000000 0.00000000
## 6380 0.0000000 0.000000000 0.00000000
## 6381 0.0000000 0.000000000 0.00000000
## 6382 0.0000000 0.000000000 0.00000000
## 6383 0.0000000 0.000000000 0.00000000
## 6384 0.0000000 0.000000000 0.00000000
## 6385 0.0000000 0.000000000 0.00000000
## 6386 0.0000000 0.000000000 0.00000000
## 6387 0.0000000 0.000000000 0.00000000
## 6388 0.0000000 0.000000000 0.00000000
## 6389 0.0000000 0.000000000 0.00000000
## 6390 0.0000000 0.000000000 0.00000000
## 6391 0.0000000 0.000000000 0.00000000
## 6392 0.0000000 0.000000000 0.00000000
## 6393 0.0000000 0.000000000 0.00000000
## 6394 0.0000000 0.000000000 0.00000000
## 6395 0.0000000 0.000000000 0.00000000
## 6396 0.0000000 0.000000000 0.00000000
## 6397 0.0000000 0.000000000 0.00000000
## 6398 0.0000000 0.000000000 0.00000000
## 6399 0.0000000 0.000000000 0.00000000
## 6400 0.0000000 0.000000000 0.00000000
## 6401 0.0000000 0.000000000 0.00000000
## 6402 0.0000000 0.000000000 0.00000000
## 6403 0.0000000 0.000000000 0.00000000
## 6404 0.0000000 0.000000000 0.00000000
## 6405 0.0000000 0.000000000 0.00000000
## 6406 0.0000000 0.000000000 0.00000000
## 6407 0.0000000 0.000000000 0.00000000
## 6408 0.0000000 0.000000000 0.00000000
## 6409 0.0000000 0.000000000 0.00000000
## 6410 0.0000000 0.000000000 0.00000000
## 6411 0.0000000 0.000000000 0.00000000
## 6412 0.0000000 0.000000000 0.00000000
## 6413 0.0000000 0.000000000 0.00000000
## 6414 0.0000000 0.000000000 0.00000000
## 6415 0.0000000 0.000000000 0.00000000
## 6416 0.0000000 0.000000000 0.00000000
## 6417 0.0000000 0.000000000 0.00000000
## 6418 0.0000000 0.000000000 0.00000000
## 6419 0.0000000 0.000000000 0.00000000
## 6420 0.0000000 0.000000000 0.00000000
## 6421 0.0000000 0.000000000 0.00000000
## 6422 0.0000000 0.000000000 0.00000000
## 6423 0.0000000 0.000000000 0.00000000
## 6424 0.0000000 0.000000000 0.00000000
## 6425 0.0000000 0.000000000 0.00000000
## 6426 0.0000000 0.000000000 0.00000000
## 6427 0.0000000 0.000000000 0.00000000
## 6428 0.0000000 0.000000000 0.00000000
## 6429 0.0000000 0.000000000 0.00000000
## 6430 0.0000000 0.000000000 0.00000000
## 6431 0.0000000 0.000000000 0.00000000
## 6432 0.0000000 0.000000000 0.00000000
## 6433 0.0000000 0.000000000 0.00000000
## 6434 0.0000000 0.000000000 0.00000000
## 6435 0.0000000 0.000000000 0.00000000
## 6436 0.0000000 0.000000000 0.00000000
## 6437 0.0000000 0.000000000 0.00000000
## 6438 0.0000000 0.000000000 0.00000000
## 6439 0.0000000 0.000000000 0.00000000
## 6440 0.0000000 0.000000000 0.00000000
## 6441 0.0000000 0.000000000 0.00000000
## 6442 0.0000000 0.000000000 0.00000000
## 6443 0.0000000 0.000000000 0.00000000
## 6444 0.0000000 0.000000000 0.00000000
## 6445 0.0000000 0.000000000 0.00000000
## 6446 0.0000000 0.000000000 0.00000000
## 6447 0.0000000 0.000000000 0.00000000
## 6448 0.0000000 0.000000000 0.00000000
## 6449 0.0000000 0.000000000 0.00000000
## 6450 0.0000000 0.000000000 0.00000000
## 6451 0.0000000 0.000000000 0.00000000
## 6452 0.0000000 0.000000000 0.00000000
## 6453 0.0000000 0.000000000 0.00000000
## 6454 0.0000000 0.000000000 0.00000000
## 6455 0.0000000 0.000000000 0.00000000
## 6456 0.0000000 0.000000000 0.00000000
## 6457 0.0000000 0.000000000 0.00000000
## 6458 0.0000000 0.000000000 0.00000000
## 6459 0.0000000 0.000000000 0.00000000
## 6460 0.0000000 0.000000000 0.00000000
## 6461 0.0000000 0.000000000 0.00000000
## 6462 0.0000000 0.000000000 0.00000000
## 6463 0.0000000 0.000000000 0.00000000
## 6464 0.0000000 0.000000000 0.00000000
## 6465 0.0000000 0.000000000 0.00000000
## 6466 0.0000000 0.000000000 0.00000000
## 6467 0.0000000 0.000000000 0.00000000
## 6468 0.0000000 0.000000000 0.00000000
## 6469 0.0000000 0.000000000 0.00000000
## 6470 0.0000000 0.000000000 0.00000000
## 6471 0.0000000 0.000000000 0.00000000
## 6472 0.0000000 0.000000000 0.00000000
## 6473 0.0000000 0.000000000 0.00000000
## 6474 0.0000000 0.000000000 0.00000000
## 6475 0.0000000 0.000000000 0.00000000
## 6476 0.0000000 0.000000000 0.00000000
## 6477 0.0000000 0.000000000 0.00000000
## 6478 0.0000000 0.000000000 0.00000000
## 6479 0.0000000 0.000000000 0.00000000
## 6480 0.0000000 0.000000000 0.00000000
## 6481 0.0000000 0.000000000 0.00000000
## 6482 0.0000000 0.000000000 0.00000000
## 6483 0.0000000 0.000000000 0.00000000
## 6484 0.0000000 0.000000000 0.00000000
## 6485 0.0000000 0.000000000 0.00000000
## 6486 0.0000000 0.000000000 0.00000000
## 6487 0.0000000 0.000000000 0.00000000
## 6488 0.0000000 0.000000000 0.00000000
## 6489 0.0000000 0.000000000 0.00000000
## 6490 0.0000000 0.000000000 0.00000000
## 6491 0.0000000 0.000000000 0.00000000
## 6492 0.0000000 0.000000000 0.00000000
## 6493 0.0000000 0.000000000 0.00000000
## 6494 0.0000000 0.000000000 0.00000000
## 6495 0.0000000 0.000000000 0.00000000
## 6496 0.0000000 0.000000000 0.00000000
## 6497 0.0000000 0.000000000 0.00000000
## 6498 0.0000000 0.000000000 0.00000000
## 6499 0.0000000 0.000000000 0.00000000
## 6500 0.0000000 0.000000000 0.00000000
## 6501 0.0000000 0.000000000 0.00000000
## 6502 0.0000000 0.000000000 0.00000000
## 6503 0.0000000 0.000000000 0.00000000
## 6504 0.0000000 0.000000000 0.00000000
## 6505 0.0000000 0.000000000 0.00000000
## 6506 0.0000000 0.000000000 0.00000000
## 6507 0.0000000 0.000000000 0.00000000
## 6508 0.0000000 0.000000000 0.00000000
## 6509 0.0000000 0.000000000 0.00000000
## 6510 0.0000000 0.000000000 0.00000000
## 6511 0.0000000 0.000000000 0.00000000
## 6512 0.0000000 0.000000000 0.00000000
## 6513 0.0000000 0.000000000 0.00000000
## 6514 0.0000000 0.000000000 0.00000000
## 6515 0.0000000 0.000000000 0.00000000
## 6516 0.0000000 0.000000000 0.00000000
## 6517 0.0000000 0.000000000 0.00000000
## 6518 0.0000000 0.000000000 0.00000000
## 6519 0.0000000 0.000000000 0.00000000
## 6520 0.0000000 0.000000000 0.00000000
## 6521 0.0000000 0.000000000 0.00000000
## 6522 0.0000000 0.000000000 0.00000000
## 6523 0.0000000 0.000000000 0.00000000
## 6524 0.0000000 0.000000000 0.00000000
## 6525 0.0000000 0.000000000 0.00000000
## 6526 0.0000000 0.000000000 0.00000000
## 6527 0.0000000 0.000000000 0.00000000
## 6528 0.0000000 0.000000000 0.00000000
## 6529 0.0000000 0.000000000 0.00000000
## 6530 0.0000000 0.000000000 0.00000000
## 6531 0.0000000 0.000000000 0.00000000
## 6532 0.0000000 0.000000000 0.00000000
## 6533 0.0000000 0.000000000 0.00000000
## 6534 0.0000000 0.000000000 0.00000000
## 6535 0.0000000 0.000000000 0.00000000
## 6536 0.0000000 0.000000000 0.00000000
## 6537 0.0000000 0.000000000 0.00000000
## 6538 0.0000000 0.000000000 0.00000000
## 6539 0.0000000 0.000000000 0.00000000
## 6540 0.0000000 0.000000000 0.00000000
## 6541 0.0000000 0.000000000 0.00000000
## 6542 0.0000000 0.000000000 0.00000000
## 6543 0.0000000 0.000000000 0.00000000
## 6544 0.0000000 0.000000000 0.00000000
## 6545 0.0000000 0.000000000 0.00000000
## 6546 0.0000000 0.000000000 0.00000000
## 6547 0.0000000 0.000000000 0.00000000
## 6548 0.0000000 0.000000000 0.00000000
## 6549 0.0000000 0.000000000 0.00000000
## 6550 0.0000000 0.000000000 0.00000000
## 6551 0.0000000 0.000000000 0.00000000
## 6552 0.0000000 0.000000000 0.00000000
## 6553 0.0000000 0.000000000 0.00000000
## 6554 0.0000000 0.000000000 0.00000000
## 6555 0.0000000 0.000000000 0.00000000
## 6556 0.0000000 0.000000000 0.00000000
## 6557 0.0000000 0.000000000 0.00000000
## 6558 0.0000000 0.000000000 0.00000000
## 6559 0.0000000 0.000000000 0.00000000
## 6560 0.0000000 0.000000000 0.00000000
## 6561 0.0000000 0.000000000 0.00000000
## 6562 0.0000000 0.000000000 0.00000000
## 6563 0.0000000 0.000000000 0.00000000
## 6564 0.0000000 0.000000000 0.00000000
## 6565 0.0000000 0.000000000 0.00000000
## 6566 0.0000000 0.000000000 0.00000000
## 6567 0.0000000 0.000000000 0.00000000
## 6568 0.0000000 0.000000000 0.00000000
## 6569 0.0000000 0.000000000 0.00000000
## 6570 0.0000000 0.000000000 0.00000000
## 6571 0.0000000 0.000000000 0.00000000
## 6572 0.0000000 0.000000000 0.00000000
## 6573 0.0000000 0.000000000 0.00000000
## 6574 0.0000000 0.000000000 0.00000000
## 6575 0.0000000 0.000000000 0.00000000
## 6576 0.0000000 0.000000000 0.00000000
## 6577 0.0000000 0.000000000 0.00000000
## 6578 0.0000000 0.000000000 0.00000000
## 6579 0.0000000 0.000000000 0.00000000
## 6580 0.0000000 0.000000000 0.00000000
## 6581 0.0000000 0.000000000 0.00000000
## 6582 0.0000000 0.000000000 0.00000000
## 6583 0.0000000 0.000000000 0.00000000
## 6584 0.0000000 0.000000000 0.00000000
## 6585 0.0000000 0.000000000 0.00000000
## 6586 0.0000000 0.000000000 0.00000000
## 6587 0.0000000 0.000000000 0.00000000
## 6588 0.0000000 0.000000000 0.00000000
## 6589 0.0000000 0.000000000 0.00000000
## 6590 0.0000000 0.000000000 0.00000000
## 6591 0.0000000 0.000000000 0.00000000
## 6592 0.0000000 0.000000000 0.00000000
## 6593 0.0000000 0.000000000 0.00000000
## 6594 0.0000000 0.000000000 0.00000000
## 6595 0.0000000 0.000000000 0.00000000
## 6596 0.0000000 0.000000000 0.00000000
## 6597 0.0000000 0.000000000 0.00000000
## 6598 0.0000000 0.000000000 0.00000000
## 6599 0.0000000 0.000000000 0.00000000
## 6600 0.0000000 0.000000000 0.00000000
## 6601 0.0000000 0.000000000 0.00000000
## 6602 0.0000000 0.000000000 0.00000000
## 6603 0.0000000 0.000000000 0.00000000
## 6604 0.0000000 0.000000000 0.00000000
## 6605 0.0000000 0.000000000 0.00000000
## 6606 0.0000000 0.000000000 0.00000000
## 6607 0.0000000 0.000000000 0.00000000
## 6608 0.0000000 0.000000000 0.00000000
## 6609 0.0000000 0.000000000 0.00000000
## 6610 0.0000000 0.000000000 0.00000000
## 6611 0.0000000 0.000000000 0.00000000
## 6612 0.0000000 0.000000000 0.00000000
## 6613 0.0000000 0.000000000 0.00000000
## 6614 0.0000000 0.000000000 0.00000000
## 6615 0.0000000 0.000000000 0.00000000
## 6616 0.0000000 0.000000000 0.00000000
## 6617 0.0000000 0.000000000 0.00000000
## 6618 0.0000000 0.000000000 0.00000000
## 6619 0.0000000 0.000000000 0.00000000
## 6620 0.0000000 0.000000000 0.00000000
## 6621 0.0000000 0.000000000 0.00000000
## 6622 0.0000000 0.000000000 0.00000000
## 6623 0.0000000 0.000000000 0.00000000
## 6624 0.0000000 0.000000000 0.00000000
## 6625 0.0000000 0.000000000 0.00000000
## 6626 0.0000000 0.000000000 0.00000000
## 6627 0.0000000 0.000000000 0.00000000
## 6628 0.0000000 0.000000000 0.00000000
## 6629 0.0000000 0.000000000 0.00000000
## 6630 0.0000000 0.000000000 0.00000000
## 6631 0.0000000 0.000000000 0.00000000
## 6632 0.0000000 0.000000000 0.00000000
## 6633 0.0000000 0.000000000 0.00000000
## 6634 0.0000000 0.000000000 0.00000000
## 6635 0.0000000 0.000000000 0.00000000
## 6636 0.0000000 0.000000000 0.00000000
## 6637 0.0000000 0.000000000 0.00000000
## 6638 0.0000000 0.000000000 0.00000000
## 6639 0.0000000 0.000000000 0.00000000
## 6640 0.0000000 0.000000000 0.00000000
## 6641 0.0000000 0.000000000 0.00000000
## 6642 0.0000000 0.000000000 0.00000000
## 6643 0.0000000 0.000000000 0.00000000
## 6644 0.0000000 0.000000000 0.00000000
## 6645 0.0000000 0.000000000 0.00000000
## 6646 0.0000000 0.000000000 0.00000000
## 6647 0.0000000 0.000000000 0.00000000
## 6648 0.0000000 0.000000000 0.00000000
## 6649 0.0000000 0.000000000 0.00000000
## 6650 0.0000000 0.000000000 0.00000000
## 6651 0.0000000 0.000000000 0.00000000
## 6652 0.0000000 0.000000000 0.00000000
## 6653 0.0000000 0.000000000 0.00000000
## 6654 0.0000000 0.000000000 0.00000000
## 6655 0.0000000 0.000000000 0.00000000
## 6656 0.0000000 0.000000000 0.00000000
## 6657 0.0000000 0.000000000 0.00000000
## 6658 0.0000000 0.000000000 0.00000000
## 6659 0.0000000 0.000000000 0.00000000
## 6660 0.0000000 0.000000000 0.00000000
## 6661 0.0000000 0.000000000 0.00000000
## 6662 0.0000000 0.000000000 0.00000000
## 6663 0.0000000 0.000000000 0.00000000
## 6664 0.0000000 0.000000000 0.00000000
## 6665 0.0000000 0.000000000 0.00000000
## 6666 0.0000000 0.000000000 0.00000000
## 6667 0.0000000 0.000000000 0.00000000
## 6668 0.0000000 0.000000000 0.00000000
## 6669 0.0000000 0.000000000 0.00000000
## 6670 0.0000000 0.000000000 0.00000000
## 6671 0.0000000 0.000000000 0.00000000
## 6672 0.0000000 0.000000000 0.00000000
## 6673 0.0000000 0.000000000 0.00000000
## 6674 0.0000000 0.000000000 0.00000000
## 6675 0.0000000 0.000000000 0.00000000
## 6676 0.0000000 0.000000000 0.00000000
## 6677 0.0000000 0.000000000 0.00000000
## 6678 0.0000000 0.000000000 0.00000000
## 6679 0.0000000 0.000000000 0.00000000
## 6680 0.0000000 0.000000000 0.00000000
## 6681 0.0000000 0.000000000 0.00000000
## 6682 0.0000000 0.000000000 0.00000000
## 6683 0.0000000 0.000000000 0.00000000
## 6684 0.0000000 0.000000000 0.00000000
## 6685 0.0000000 0.000000000 0.00000000
## 6686 0.0000000 0.000000000 0.00000000
## 6687 0.0000000 0.000000000 0.00000000
## 6688 0.0000000 0.000000000 0.00000000
## 6689 0.0000000 0.000000000 0.00000000
## 6690 0.0000000 0.000000000 0.00000000
## 6691 0.0000000 0.000000000 0.00000000
## 6692 0.0000000 0.000000000 0.00000000
## 6693 0.0000000 0.000000000 0.00000000
## 6694 0.0000000 0.000000000 0.00000000
## 6695 0.0000000 0.000000000 0.00000000
## 6696 0.0000000 0.000000000 0.00000000
## 6697 0.0000000 0.000000000 0.00000000
## 6698 0.0000000 0.000000000 0.00000000
## 6699 0.0000000 0.000000000 0.00000000
## 6700 0.0000000 0.000000000 0.00000000
## 6701 0.0000000 0.000000000 0.00000000
## 6702 0.0000000 0.000000000 0.00000000
## 6703 0.0000000 0.000000000 0.00000000
## 6704 0.0000000 0.000000000 0.00000000
## 6705 0.0000000 0.000000000 0.00000000
## 6706 0.0000000 0.000000000 0.00000000
## 6707 0.0000000 0.000000000 0.00000000
## 6708 0.0000000 0.000000000 0.00000000
## 6709 0.0000000 0.000000000 0.00000000
## 6710 0.0000000 0.000000000 0.00000000
## 6711 0.0000000 0.000000000 0.00000000
## 6712 0.0000000 0.000000000 0.00000000
## 6713 0.0000000 0.000000000 0.00000000
## 6714 0.0000000 0.000000000 0.00000000
## 6715 0.0000000 0.000000000 0.00000000
## 6716 0.0000000 0.000000000 0.00000000
## 6717 0.0000000 0.000000000 0.00000000
## 6718 0.0000000 0.000000000 0.00000000
## 6719 0.0000000 0.000000000 0.00000000
## 6720 0.0000000 0.000000000 0.00000000
## 6721 0.0000000 0.000000000 0.00000000
## 6722 0.0000000 0.000000000 0.00000000
## 6723 0.0000000 0.000000000 0.00000000
## 6724 0.0000000 0.000000000 0.00000000
## 6725 0.0000000 0.000000000 0.00000000
## 6726 0.0000000 0.000000000 0.00000000
## 6727 0.0000000 0.000000000 0.00000000
## 6728 0.0000000 0.000000000 0.00000000
## 6729 0.0000000 0.000000000 0.00000000
## 6730 0.0000000 0.000000000 0.00000000
## 6731 0.0000000 0.000000000 0.00000000
## 6732 0.0000000 0.000000000 0.00000000
## 6733 0.0000000 0.000000000 0.00000000
## 6734 0.0000000 0.000000000 0.00000000
## 6735 0.0000000 0.000000000 0.00000000
## 6736 0.0000000 0.000000000 0.00000000
## 6737 0.0000000 0.000000000 0.00000000
## 6738 0.0000000 0.000000000 0.00000000
## 6739 0.0000000 0.000000000 0.00000000
## 6740 0.0000000 0.000000000 0.00000000
## 6741 0.0000000 0.000000000 0.00000000
## 6742 0.0000000 0.000000000 0.00000000
## 6743 0.0000000 0.000000000 0.00000000
## 6744 0.0000000 0.000000000 0.00000000
## 6745 0.0000000 0.000000000 0.00000000
## 6746 0.0000000 0.000000000 0.00000000
## 6747 0.0000000 0.000000000 0.00000000
## 6748 0.0000000 0.000000000 0.00000000
## 6749 0.0000000 0.000000000 0.00000000
## 6750 0.0000000 0.000000000 0.00000000
## 6751 0.0000000 0.000000000 0.00000000
## 6752 0.0000000 0.000000000 0.00000000
## 6753 0.0000000 0.000000000 0.00000000
## 6754 0.0000000 0.000000000 0.00000000
## 6755 0.0000000 0.000000000 0.00000000
## 6756 0.0000000 0.000000000 0.00000000
## 6757 0.0000000 0.000000000 0.00000000
## 6758 0.0000000 0.000000000 0.00000000
## 6759 0.0000000 0.000000000 0.00000000
## 6760 0.0000000 0.000000000 0.00000000
## 6761 0.0000000 0.000000000 0.00000000
## 6762 0.0000000 0.000000000 0.00000000
## 6763 0.0000000 0.000000000 0.00000000
## 6764 0.0000000 0.000000000 0.00000000
## 6765 0.0000000 0.000000000 0.00000000
## 6766 0.0000000 0.000000000 0.00000000
## 6767 0.0000000 0.000000000 0.00000000
## 6768 0.0000000 0.000000000 0.00000000
## 6769 0.0000000 0.000000000 0.00000000
## 6770 0.0000000 0.000000000 0.00000000
## 6771 0.0000000 0.000000000 0.00000000
## 6772 0.0000000 0.000000000 0.00000000
## 6773 0.0000000 0.000000000 0.00000000
## 6774 0.0000000 0.000000000 0.00000000
## 6775 0.0000000 0.000000000 0.00000000
## 6776 0.0000000 0.000000000 0.00000000
## 6777 0.0000000 0.000000000 0.00000000
## 6778 0.0000000 0.000000000 0.00000000
## 6779 0.0000000 0.000000000 0.00000000
## 6780 0.0000000 0.000000000 0.00000000
## 6781 0.0000000 0.000000000 0.00000000
## 6782 0.0000000 0.000000000 0.00000000
## 6783 0.0000000 0.000000000 0.00000000
## 6784 0.0000000 0.000000000 0.00000000
## 6785 0.0000000 0.000000000 0.00000000
## 6786 0.0000000 0.000000000 0.00000000
## 6787 0.0000000 0.000000000 0.00000000
## 6788 0.0000000 0.000000000 0.00000000
## 6789 0.0000000 0.000000000 0.00000000
## 6790 0.0000000 0.000000000 0.00000000
## 6791 0.0000000 0.000000000 0.00000000
## 6792 0.0000000 0.000000000 0.00000000
## 6793 0.0000000 0.000000000 0.00000000
## 6794 0.0000000 0.000000000 0.00000000
## 6795 0.0000000 0.000000000 0.00000000
## 6796 0.0000000 0.000000000 0.00000000
## 6797 0.0000000 0.000000000 0.00000000
## 6798 0.0000000 0.000000000 0.00000000
## 6799 0.0000000 0.000000000 0.00000000
## 6800 0.0000000 0.000000000 0.00000000
## 6801 0.0000000 0.000000000 0.00000000
## 6802 0.0000000 0.000000000 0.00000000
## 6803 0.0000000 0.000000000 0.00000000
## 6804 0.0000000 0.000000000 0.00000000
## 6805 0.0000000 0.000000000 0.00000000
## 6806 0.0000000 0.000000000 0.00000000
## 6807 0.0000000 0.000000000 0.00000000
## 6808 0.0000000 0.000000000 0.00000000
## 6809 0.0000000 0.000000000 0.00000000
## 6810 0.0000000 0.000000000 0.00000000
## 6811 0.0000000 0.000000000 0.00000000
## 6812 0.0000000 0.000000000 0.00000000
## 6813 0.0000000 0.000000000 0.00000000
## 6814 0.0000000 0.000000000 0.00000000
## 6815 0.0000000 0.000000000 0.00000000
## 6816 0.0000000 0.000000000 0.00000000
## 6817 0.0000000 0.000000000 0.00000000
## 6818 0.0000000 0.000000000 0.00000000
## 6819 0.0000000 0.000000000 0.00000000
## 6820 0.0000000 0.000000000 0.00000000
## 6821 0.0000000 0.000000000 0.00000000
## 6822 0.0000000 0.000000000 0.00000000
## 6823 0.0000000 0.000000000 0.00000000
## 6824 0.0000000 0.000000000 0.00000000
## 6825 0.0000000 0.000000000 0.00000000
## 6826 0.0000000 0.000000000 0.00000000
## 6827 0.0000000 0.000000000 0.00000000
## 6828 0.0000000 0.000000000 0.00000000
## 6829 0.0000000 0.000000000 0.00000000
## 6830 0.0000000 0.000000000 0.00000000
## 6831 0.0000000 0.000000000 0.00000000
## 6832 0.0000000 0.000000000 0.00000000
## 6833 0.0000000 0.000000000 0.00000000
## 6834 0.0000000 0.000000000 0.00000000
## 6835 0.0000000 0.000000000 0.00000000
## 6836 0.0000000 0.000000000 0.00000000
## 6837 0.0000000 0.000000000 0.00000000
## 6838 0.0000000 0.000000000 0.00000000
## 6839 0.0000000 0.000000000 0.00000000
## 6840 0.0000000 0.000000000 0.00000000
## 6841 0.0000000 0.000000000 0.00000000
## 6842 0.0000000 0.000000000 0.00000000
## 6843 0.0000000 0.000000000 0.00000000
## 6844 0.0000000 0.000000000 0.00000000
## 6845 0.0000000 0.000000000 0.00000000
## 6846 0.0000000 0.000000000 0.00000000
## 6847 0.0000000 0.000000000 0.00000000
## 6848 0.0000000 0.000000000 0.00000000
## 6849 0.0000000 0.000000000 0.00000000
## 6850 0.0000000 0.000000000 0.00000000
## 6851 0.0000000 0.000000000 0.00000000
## 6852 0.0000000 0.000000000 0.00000000
## 6853 0.0000000 0.000000000 0.00000000
## 6854 0.0000000 0.000000000 0.00000000
## 6855 0.0000000 0.000000000 0.00000000
## 6856 0.0000000 0.000000000 0.00000000
## 6857 0.0000000 0.000000000 0.00000000
## 6858 0.0000000 0.000000000 0.00000000
## 6859 0.0000000 0.000000000 0.00000000
## 6860 0.0000000 0.000000000 0.00000000
## 6861 0.0000000 0.000000000 0.00000000
## 6862 0.0000000 0.000000000 0.00000000
## 6863 0.0000000 0.000000000 0.00000000
## 6864 0.0000000 0.000000000 0.00000000
## 6865 0.0000000 0.000000000 0.00000000
## 6866 0.0000000 0.000000000 0.00000000
## 6867 0.0000000 0.000000000 0.00000000
## 6868 0.0000000 0.000000000 0.00000000
## 6869 0.0000000 0.000000000 0.00000000
## 6870 0.0000000 0.000000000 0.00000000
## 6871 0.0000000 0.000000000 0.00000000
## 6872 0.0000000 0.000000000 0.00000000
## 6873 0.0000000 0.000000000 0.00000000
## 6874 0.0000000 0.000000000 0.00000000
## 6875 0.0000000 0.000000000 0.00000000
## 6876 0.0000000 0.000000000 0.00000000
## 6877 0.0000000 0.000000000 0.00000000
## 6878 0.0000000 0.000000000 0.00000000
## 6879 0.0000000 0.000000000 0.00000000
## 6880 0.0000000 0.000000000 0.00000000
## 6881 0.0000000 0.000000000 0.00000000
## 6882 0.0000000 0.000000000 0.00000000
## 6883 0.0000000 0.000000000 0.00000000
## 6884 0.0000000 0.000000000 0.00000000
## 6885 0.0000000 0.000000000 0.00000000
## 6886 0.0000000 0.000000000 0.00000000
## 6887 0.0000000 0.000000000 0.00000000
## 6888 0.0000000 0.000000000 0.00000000
## 6889 0.0000000 0.000000000 0.00000000
## 6890 0.0000000 0.000000000 0.00000000
## 6891 0.0000000 0.000000000 0.00000000
## 6892 0.0000000 0.000000000 0.00000000
## 6893 0.0000000 0.000000000 0.00000000
## 6894 0.0000000 0.000000000 0.00000000
## 6895 0.0000000 0.000000000 0.00000000
## 6896 0.0000000 0.000000000 0.00000000
## 6897 0.0000000 0.000000000 0.00000000
## 6898 0.0000000 0.000000000 0.00000000
## 6899 0.0000000 0.000000000 0.00000000
## 6900 0.0000000 0.000000000 0.00000000
## 6901 0.0000000 0.000000000 0.00000000
## 6902 0.0000000 0.000000000 0.00000000
## 6903 0.0000000 0.000000000 0.00000000
## 6904 0.0000000 0.000000000 0.00000000
## 6905 0.0000000 0.000000000 0.00000000
## 6906 0.0000000 0.000000000 0.00000000
## 6907 0.0000000 0.000000000 0.00000000
## 6908 0.0000000 0.000000000 0.00000000
## 6909 0.0000000 0.000000000 0.00000000
## 6910 0.0000000 0.000000000 0.00000000
## 6911 0.0000000 0.000000000 0.00000000
## 6912 0.0000000 0.000000000 0.00000000
## 6913 0.0000000 0.000000000 0.00000000
## 6914 0.0000000 0.000000000 0.00000000
## 6915 0.0000000 0.000000000 0.00000000
## 6916 0.0000000 0.000000000 0.00000000
## 6917 0.0000000 0.000000000 0.00000000
## 6918 0.0000000 0.000000000 0.00000000
## 6919 0.0000000 0.000000000 0.00000000
## 6920 0.0000000 0.000000000 0.00000000
## 6921 0.0000000 0.000000000 0.00000000
## 6922 0.0000000 0.000000000 0.00000000
## 6923 0.0000000 0.000000000 0.00000000
## 6924 0.0000000 0.000000000 0.00000000
## 6925 0.0000000 0.000000000 0.00000000
## 6926 0.0000000 0.000000000 0.00000000
## 6927 0.0000000 0.000000000 0.00000000
## 6928 0.0000000 0.000000000 0.00000000
## 6929 0.0000000 0.000000000 0.00000000
## 6930 0.0000000 0.000000000 0.00000000
## 6931 0.0000000 0.000000000 0.00000000
## 6932 0.0000000 0.000000000 0.00000000
## 6933 0.0000000 0.000000000 0.00000000
## 6934 0.0000000 0.000000000 0.00000000
## 6935 0.0000000 0.000000000 0.00000000
## 6936 0.0000000 0.000000000 0.00000000
## 6937 0.0000000 0.000000000 0.00000000
## 6938 0.0000000 0.000000000 0.00000000
## 6939 0.0000000 0.000000000 0.00000000
## 6940 0.0000000 0.000000000 0.00000000
## 6941 0.0000000 0.000000000 0.00000000
## 6942 0.0000000 0.000000000 0.00000000
## 6943 0.0000000 0.000000000 0.00000000
## 6944 0.0000000 0.000000000 0.00000000
## 6945 0.0000000 0.000000000 0.00000000
## 6946 0.0000000 0.000000000 0.00000000
## 6947 0.0000000 0.000000000 0.00000000
## 6948 0.0000000 0.000000000 0.00000000
## 6949 0.0000000 0.000000000 0.00000000
## 6950 0.0000000 0.000000000 0.00000000
## 6951 0.0000000 0.000000000 0.00000000
## 6952 0.0000000 0.000000000 0.00000000
## 6953 0.0000000 0.000000000 0.00000000
## 6954 0.0000000 0.000000000 0.00000000
## 6955 0.0000000 0.000000000 0.00000000
## 6956 0.0000000 0.000000000 0.00000000
## 6957 0.0000000 0.000000000 0.00000000
## 6958 0.0000000 0.000000000 0.00000000
## 6959 0.0000000 0.000000000 0.00000000
## 6960 0.0000000 0.000000000 0.00000000
## 6961 0.0000000 0.000000000 0.00000000
## 6962 0.0000000 0.000000000 0.00000000
## 6963 0.0000000 0.000000000 0.00000000
## 6964 0.0000000 0.000000000 0.00000000
## 6965 0.0000000 0.000000000 0.00000000
## 6966 0.0000000 0.000000000 0.00000000
## 6967 0.0000000 0.000000000 0.00000000
## 6968 0.0000000 0.000000000 0.00000000
## 6969 0.0000000 0.000000000 0.00000000
## 6970 0.0000000 0.000000000 0.00000000
## 6971 0.0000000 0.000000000 0.00000000
## 6972 0.0000000 0.000000000 0.00000000
## 6973 0.0000000 0.000000000 0.00000000
## 6974 0.0000000 0.000000000 0.00000000
## 6975 0.0000000 0.000000000 0.00000000
## 6976 0.0000000 0.000000000 0.00000000
## 6977 0.0000000 0.000000000 0.00000000
## 6978 0.0000000 0.000000000 0.00000000
## 6979 0.0000000 0.000000000 0.00000000
## 6980 0.0000000 0.000000000 0.00000000
## 6981 0.0000000 0.000000000 0.00000000
## 6982 0.0000000 0.000000000 0.00000000
## 6983 0.0000000 0.000000000 0.00000000
## 6984 0.0000000 0.000000000 0.00000000
## 6985 0.0000000 0.000000000 0.00000000
## 6986 0.0000000 0.000000000 0.00000000
## 6987 0.0000000 0.000000000 0.00000000
## 6988 0.0000000 0.000000000 0.00000000
## 6989 0.0000000 0.000000000 0.00000000
## 6990 0.0000000 0.000000000 0.00000000
## 6991 0.0000000 0.000000000 0.00000000
## 6992 0.0000000 0.000000000 0.00000000
## 6993 0.0000000 0.000000000 0.00000000
## 6994 0.0000000 0.000000000 0.00000000
## 6995 0.0000000 0.000000000 0.00000000
## 6996 0.0000000 0.000000000 0.00000000
## 6997 0.0000000 0.000000000 0.00000000
## 6998 0.0000000 0.000000000 0.00000000
## 6999 0.0000000 0.000000000 0.00000000
## 7000 0.0000000 0.000000000 0.00000000
## 7001 0.0000000 0.000000000 0.00000000
## 7002 0.0000000 0.000000000 0.00000000
## 7003 0.0000000 0.000000000 0.00000000
## 7004 0.0000000 0.000000000 0.00000000
## 7005 0.0000000 0.000000000 0.00000000
## 7006 0.0000000 0.000000000 0.00000000
## 7007 0.0000000 0.000000000 0.00000000
## 7008 0.0000000 0.000000000 0.00000000
## 7009 0.0000000 0.000000000 0.00000000
## 7010 0.0000000 0.000000000 0.00000000
## 7011 0.0000000 0.000000000 0.00000000
## 7012 0.0000000 0.000000000 0.00000000
## 7013 0.0000000 0.000000000 0.00000000
## 7014 0.0000000 0.000000000 0.00000000
## 7015 0.0000000 0.000000000 0.00000000
## 7016 0.0000000 0.000000000 0.00000000
## 7017 0.0000000 0.000000000 0.00000000
## 7018 0.0000000 0.000000000 0.00000000
## 7019 0.0000000 0.000000000 0.00000000
## 7020 0.0000000 0.000000000 0.00000000
## 7021 0.0000000 0.000000000 0.00000000
## 7022 0.0000000 0.000000000 0.00000000
## 7023 0.0000000 0.000000000 0.00000000
## 7024 0.0000000 0.000000000 0.00000000
## 7025 0.0000000 0.000000000 0.00000000
## 7026 0.0000000 0.000000000 0.00000000
## 7027 0.0000000 0.000000000 0.00000000
## 7028 0.0000000 0.000000000 0.00000000
## 7029 0.0000000 0.000000000 0.00000000
## 7030 0.0000000 0.000000000 0.00000000
## 7031 0.0000000 0.000000000 0.00000000
## 7032 0.0000000 0.000000000 0.00000000
## 7033 0.0000000 0.000000000 0.00000000
## 7034 0.0000000 0.000000000 0.00000000
## 7035 0.0000000 0.000000000 0.00000000
## 7036 0.0000000 0.000000000 0.00000000
## 7037 0.0000000 0.000000000 0.00000000
## 7038 0.0000000 0.000000000 0.00000000
## 7039 0.0000000 0.000000000 0.00000000
## 7040 0.0000000 0.000000000 0.00000000
## 7041 0.0000000 0.000000000 0.00000000
## 7042 0.0000000 0.000000000 0.00000000
## 7043 0.0000000 0.000000000 0.00000000
## 7044 0.0000000 0.000000000 0.00000000
## 7045 0.0000000 0.000000000 0.00000000
## 7046 0.0000000 0.000000000 0.00000000
## 7047 0.0000000 0.000000000 0.00000000
## 7048 0.0000000 0.000000000 0.00000000
## 7049 0.0000000 0.000000000 0.00000000
## 7050 0.0000000 0.000000000 0.00000000
## 7051 0.0000000 0.000000000 0.00000000
## 7052 0.0000000 0.000000000 0.00000000
## 7053 0.0000000 0.000000000 0.00000000
## 7054 0.0000000 0.000000000 0.00000000
## 7055 0.0000000 0.000000000 0.00000000
## 7056 0.0000000 0.000000000 0.00000000
## 7057 0.0000000 0.000000000 0.00000000
## 7058 0.0000000 0.000000000 0.00000000
## 7059 0.0000000 0.000000000 0.00000000
## 7060 0.0000000 0.000000000 0.00000000
## 7061 0.0000000 0.000000000 0.00000000
## 7062 0.0000000 0.000000000 0.00000000
## 7063 0.0000000 0.000000000 0.00000000
## 7064 0.0000000 0.000000000 0.00000000
## 7065 0.0000000 0.000000000 0.00000000
## 7066 0.0000000 0.000000000 0.00000000
## 7067 0.0000000 0.000000000 0.00000000
## 7068 0.0000000 0.000000000 0.00000000
## 7069 0.0000000 0.000000000 0.00000000
## 7070 0.0000000 0.000000000 0.00000000
## 7071 0.0000000 0.000000000 0.00000000
## 7072 0.0000000 0.000000000 0.00000000
## 7073 0.0000000 0.000000000 0.00000000
## 7074 0.0000000 0.000000000 0.00000000
## 7075 0.0000000 0.000000000 0.00000000
## 7076 0.0000000 0.000000000 0.00000000
## 7077 0.0000000 0.000000000 0.00000000
## 7078 0.0000000 0.000000000 0.00000000
## 7079 0.0000000 0.000000000 0.00000000
## 7080 0.0000000 0.000000000 0.00000000
## 7081 0.0000000 0.000000000 0.00000000
## 7082 0.0000000 0.000000000 0.00000000
## 7083 0.0000000 0.000000000 0.00000000
## 7084 0.0000000 0.000000000 0.00000000
## 7085 0.0000000 0.000000000 0.00000000
## 7086 0.0000000 0.000000000 0.00000000
## 7087 0.0000000 0.000000000 0.00000000
## 7088 0.0000000 0.000000000 0.00000000
## 7089 0.0000000 0.000000000 0.00000000
## 7090 0.0000000 0.000000000 0.00000000
## 7091 0.0000000 0.000000000 0.00000000
## 7092 0.0000000 0.000000000 0.00000000
## 7093 0.0000000 0.000000000 0.00000000
## 7094 0.0000000 0.000000000 0.00000000
## 7095 0.0000000 0.000000000 0.00000000
## 7096 0.0000000 0.000000000 0.00000000
## 7097 0.0000000 0.000000000 0.00000000
## 7098 0.0000000 0.000000000 0.00000000
## 7099 0.0000000 0.000000000 0.00000000
## 7100 0.0000000 0.000000000 0.00000000
## 7101 0.0000000 0.000000000 0.00000000
## 7102 0.0000000 0.000000000 0.00000000
## 7103 0.0000000 0.000000000 0.00000000
## 7104 0.0000000 0.000000000 0.00000000
## 7105 0.0000000 0.000000000 0.00000000
## 7106 0.0000000 0.000000000 0.00000000
## 7107 0.0000000 0.000000000 0.00000000
## 7108 0.0000000 0.000000000 0.00000000
## 7109 0.0000000 0.000000000 0.00000000
## 7110 0.0000000 0.000000000 0.00000000
## 7111 0.0000000 0.000000000 0.00000000
## 7112 0.0000000 0.000000000 0.00000000
## 7113 0.0000000 0.000000000 0.00000000
## 7114 0.0000000 0.000000000 0.00000000
## 7115 0.0000000 0.000000000 0.00000000
## 7116 0.0000000 0.000000000 0.00000000
## 7117 0.0000000 0.000000000 0.00000000
## 7118 0.0000000 0.000000000 0.00000000
## 7119 0.0000000 0.000000000 0.00000000
## 7120 0.0000000 0.000000000 0.00000000
## 7121 0.0000000 0.000000000 0.00000000
## 7122 0.0000000 0.000000000 0.00000000
## 7123 0.0000000 0.000000000 0.00000000
## 7124 0.0000000 0.000000000 0.00000000
## 7125 0.0000000 0.000000000 0.00000000
## 7126 0.0000000 0.000000000 0.00000000
## 7127 0.0000000 0.000000000 0.00000000
## 7128 0.0000000 0.000000000 0.00000000
## 7129 0.0000000 0.000000000 0.00000000
## 7130 0.0000000 0.000000000 0.00000000
## 7131 0.0000000 0.000000000 0.00000000
## 7132 0.0000000 0.000000000 0.00000000
## 7133 0.0000000 0.000000000 0.00000000
## 7134 0.0000000 0.000000000 0.00000000
## 7135 0.0000000 0.000000000 0.00000000
## 7136 0.0000000 0.000000000 0.00000000
## 7137 0.0000000 0.000000000 0.00000000
## 7138 0.0000000 0.000000000 0.00000000
## 7139 0.0000000 0.000000000 0.00000000
## 7140 0.0000000 0.000000000 0.00000000
## 7141 0.0000000 0.000000000 0.00000000
## 7142 0.0000000 0.000000000 0.00000000
## 7143 0.0000000 0.000000000 0.00000000
## 7144 0.0000000 0.000000000 0.00000000
## 7145 0.0000000 0.000000000 0.00000000
## 7146 0.0000000 0.000000000 0.00000000
## 7147 0.0000000 0.000000000 0.00000000
## 7148 0.0000000 0.000000000 0.00000000
## 7149 0.0000000 0.000000000 0.00000000
## 7150 0.0000000 0.000000000 0.00000000
## 7151 0.0000000 0.000000000 0.00000000
## 7152 0.0000000 0.000000000 0.00000000
## 7153 0.0000000 0.000000000 0.00000000
## 7154 0.0000000 0.000000000 0.00000000
## 7155 0.0000000 0.000000000 0.00000000
## 7156 0.0000000 0.000000000 0.00000000
## 7157 0.0000000 0.000000000 0.00000000
## 7158 0.0000000 0.000000000 0.00000000
## 7159 0.0000000 0.000000000 0.00000000
## 7160 0.0000000 0.000000000 0.00000000
## 7161 0.0000000 0.000000000 0.00000000
## 7162 0.0000000 0.000000000 0.00000000
## 7163 0.0000000 0.000000000 0.00000000
## 7164 0.0000000 0.000000000 0.00000000
## 7165 0.0000000 0.000000000 0.00000000
## 7166 0.0000000 0.000000000 0.00000000
## 7167 0.0000000 0.000000000 0.00000000
## 7168 0.0000000 0.000000000 0.00000000
## 7169 0.0000000 0.000000000 0.00000000
## 7170 0.0000000 0.000000000 0.00000000
## 7171 0.0000000 0.000000000 0.00000000
## 7172 0.0000000 0.000000000 0.00000000
## 7173 0.0000000 0.000000000 0.00000000
## 7174 0.0000000 0.000000000 0.00000000
## 7175 0.0000000 0.000000000 0.00000000
## 7176 0.0000000 0.000000000 0.00000000
## 7177 0.0000000 0.000000000 0.00000000
## 7178 0.0000000 0.000000000 0.00000000
## 7179 0.0000000 0.000000000 0.00000000
## 7180 0.0000000 0.000000000 0.00000000
## 7181 0.0000000 0.000000000 0.00000000
## 7182 0.0000000 0.000000000 0.00000000
## 7183 0.0000000 0.000000000 0.00000000
## 7184 0.0000000 0.000000000 0.00000000
## 7185 0.0000000 0.000000000 0.00000000
## 7186 0.0000000 0.000000000 0.00000000
## 7187 0.0000000 0.000000000 0.00000000
## 7188 0.0000000 0.000000000 0.00000000
## 7189 0.0000000 0.000000000 0.00000000
## 7190 0.0000000 0.000000000 0.00000000
## 7191 0.0000000 0.000000000 0.00000000
## 7192 0.0000000 0.000000000 0.00000000
## 7193 0.0000000 0.000000000 0.00000000
## 7194 0.0000000 0.000000000 0.00000000
## 7195 0.0000000 0.000000000 0.00000000
## 7196 0.0000000 0.000000000 0.00000000
## 7197 0.0000000 0.000000000 0.00000000
## 7198 0.0000000 0.000000000 0.00000000
## 7199 0.0000000 0.000000000 0.00000000
## 7200 0.0000000 0.000000000 0.00000000
## 7201 0.0000000 0.000000000 0.00000000
## 7202 0.0000000 0.000000000 0.00000000
## 7203 0.0000000 0.000000000 0.00000000
## 7204 0.0000000 0.000000000 0.00000000
## 7205 0.0000000 0.000000000 0.00000000
## 7206 0.0000000 0.000000000 0.00000000
## 7207 0.0000000 0.000000000 0.00000000
## 7208 0.0000000 0.000000000 0.00000000
## 7209 0.0000000 0.000000000 0.00000000
## 7210 0.0000000 0.000000000 0.00000000
## 7211 0.0000000 0.000000000 0.00000000
## 7212 0.0000000 0.000000000 0.00000000
## 7213 0.0000000 0.000000000 0.00000000
## 7214 0.0000000 0.000000000 0.00000000
## 7215 0.0000000 0.000000000 0.00000000
## 7216 0.0000000 0.000000000 0.00000000
## 7217 0.0000000 0.000000000 0.00000000
## 7218 0.0000000 0.000000000 0.00000000
## 7219 0.0000000 0.000000000 0.00000000
## 7220 0.0000000 0.000000000 0.00000000
## 7221 0.0000000 0.000000000 0.00000000
## 7222 0.0000000 0.000000000 0.00000000
## 7223 0.0000000 0.000000000 0.00000000
## 7224 0.0000000 0.000000000 0.00000000
## 7225 0.0000000 0.000000000 0.00000000
## 7226 0.0000000 0.000000000 0.00000000
## 7227 0.0000000 0.000000000 0.00000000
## 7228 0.0000000 0.000000000 0.00000000
## 7229 0.0000000 0.000000000 0.00000000
## 7230 0.0000000 0.000000000 0.00000000
## 7231 0.0000000 0.000000000 0.00000000
## 7232 0.0000000 0.000000000 0.00000000
## 7233 0.0000000 0.000000000 0.00000000
## 7234 0.0000000 0.000000000 0.00000000
## 7235 0.0000000 0.000000000 0.00000000
## 7236 0.0000000 0.000000000 0.00000000
## 7237 0.0000000 0.000000000 0.00000000
## 7238 0.0000000 0.000000000 0.00000000
## 7239 0.0000000 0.000000000 0.00000000
## 7240 0.0000000 0.000000000 0.00000000
## 7241 0.0000000 0.000000000 0.00000000
## 7242 0.0000000 0.000000000 0.00000000
## 7243 0.0000000 0.000000000 0.00000000
## 7244 0.0000000 0.000000000 0.00000000
## 7245 0.0000000 0.000000000 0.00000000
## 7246 0.0000000 0.000000000 0.00000000
## 7247 0.0000000 0.000000000 0.00000000
## 7248 0.0000000 0.000000000 0.00000000
## 7249 0.0000000 0.000000000 0.00000000
## 7250 0.0000000 0.000000000 0.00000000
## 7251 0.0000000 0.000000000 0.00000000
## 7252 0.0000000 0.000000000 0.00000000
## 7253 0.0000000 0.000000000 0.00000000
## 7254 0.0000000 0.000000000 0.00000000
## 7255 0.0000000 0.000000000 0.00000000
## 7256 0.0000000 0.000000000 0.00000000
## 7257 0.0000000 0.000000000 0.00000000
## 7258 0.0000000 0.000000000 0.00000000
## 7259 0.0000000 0.000000000 0.00000000
## 7260 0.0000000 0.000000000 0.00000000
## 7261 0.0000000 0.000000000 0.00000000
## 7262 0.0000000 0.000000000 0.00000000
## 7263 0.0000000 0.000000000 0.00000000
## 7264 0.0000000 0.000000000 0.00000000
## 7265 0.0000000 0.000000000 0.00000000
## 7266 0.0000000 0.000000000 0.00000000
## 7267 0.0000000 0.000000000 0.00000000
## 7268 0.0000000 0.000000000 0.00000000
## 7269 0.0000000 0.000000000 0.00000000
## 7270 0.0000000 0.000000000 0.00000000
## 7271 0.0000000 0.000000000 0.00000000
## 7272 0.0000000 0.000000000 0.00000000
## 7273 0.0000000 0.000000000 0.00000000
## 7274 0.0000000 0.000000000 0.00000000
## 7275 0.0000000 0.000000000 0.00000000
## 7276 0.0000000 0.000000000 0.00000000
## 7277 0.0000000 0.000000000 0.00000000
## 7278 0.0000000 0.000000000 0.00000000
## 7279 0.0000000 0.000000000 0.00000000
## 7280 0.0000000 0.000000000 0.00000000
## 7281 0.0000000 0.000000000 0.00000000
## 7282 0.0000000 0.000000000 0.00000000
## 7283 0.0000000 0.000000000 0.00000000
## 7284 0.0000000 0.000000000 0.00000000
## 7285 0.0000000 0.000000000 0.00000000
## 7286 0.0000000 0.000000000 0.00000000
## 7287 0.0000000 0.000000000 0.00000000
## 7288 0.0000000 0.000000000 0.00000000
## 7289 0.0000000 0.000000000 0.00000000
## 7290 0.0000000 0.000000000 0.00000000
## 7291 0.0000000 0.000000000 0.00000000
## 7292 0.0000000 0.000000000 0.00000000
## 7293 0.0000000 0.000000000 0.00000000
## 7294 0.0000000 0.000000000 0.00000000
## 7295 0.0000000 0.000000000 0.00000000
## 7296 0.0000000 0.000000000 0.00000000
## 7297 0.0000000 0.000000000 0.00000000
## 7298 0.0000000 0.000000000 0.00000000
## 7299 0.0000000 0.000000000 0.00000000
## 7300 0.0000000 0.000000000 0.00000000
## 7301 0.0000000 0.000000000 0.00000000
## 7302 0.0000000 0.000000000 0.00000000
## 7303 0.0000000 0.000000000 0.00000000
## 7304 0.0000000 0.000000000 0.00000000
## 7305 0.0000000 0.000000000 0.00000000
## 7306 0.0000000 0.000000000 0.00000000
## 7307 0.0000000 0.000000000 0.00000000
## 7308 0.0000000 0.000000000 0.00000000
## 7309 0.0000000 0.000000000 0.00000000
## 7310 0.0000000 0.000000000 0.00000000
## 7311 0.0000000 0.000000000 0.00000000
## 7312 0.0000000 0.000000000 0.00000000
## 7313 0.0000000 0.000000000 0.00000000
## 7314 0.0000000 0.000000000 0.00000000
## 7315 0.0000000 0.000000000 0.00000000
## 7316 0.0000000 0.000000000 0.00000000
## 7317 0.0000000 0.000000000 0.00000000
## 7318 0.0000000 0.000000000 0.00000000
## 7319 0.0000000 0.000000000 0.00000000
## 7320 0.0000000 0.000000000 0.00000000
## 7321 0.0000000 0.000000000 0.00000000
## 7322 0.0000000 0.000000000 0.00000000
## 7323 0.0000000 0.000000000 0.00000000
## 7324 0.0000000 0.000000000 0.00000000
## 7325 0.0000000 0.000000000 0.00000000
## 7326 0.0000000 0.000000000 0.00000000
## 7327 0.0000000 0.000000000 0.00000000
## 7328 0.0000000 0.000000000 0.00000000
## 7329 0.0000000 0.000000000 0.00000000
## 7330 0.0000000 0.000000000 0.00000000
## 7331 0.0000000 0.000000000 0.00000000
## 7332 0.0000000 0.000000000 0.00000000
## 7333 0.0000000 0.000000000 0.00000000
## 7334 0.0000000 0.000000000 0.00000000
## 7335 0.0000000 0.000000000 0.00000000
## 7336 0.0000000 0.000000000 0.00000000
## 7337 0.0000000 0.000000000 0.00000000
## 7338 0.0000000 0.000000000 0.00000000
## 7339 0.0000000 0.000000000 0.00000000
## 7340 0.0000000 0.000000000 0.00000000
## 7341 0.0000000 0.000000000 0.00000000
## 7342 0.0000000 0.000000000 0.00000000
## 7343 0.0000000 0.000000000 0.00000000
## 7344 0.0000000 0.000000000 0.00000000
## 7345 0.0000000 0.000000000 0.00000000
## 7346 0.0000000 0.000000000 0.00000000
## 7347 0.0000000 0.000000000 0.00000000
## 7348 0.0000000 0.000000000 0.00000000
## 7349 0.0000000 0.000000000 0.00000000
## 7350 0.0000000 0.000000000 0.00000000
## 7351 0.0000000 0.000000000 0.00000000
## 7352 0.0000000 0.000000000 0.00000000
## 7353 0.0000000 0.000000000 0.00000000
## 7354 0.0000000 0.000000000 0.00000000
## 7355 0.0000000 0.000000000 0.00000000
## 7356 0.0000000 0.000000000 0.00000000
## 7357 0.0000000 0.000000000 0.00000000
## 7358 0.0000000 0.000000000 0.00000000
## 7359 0.0000000 0.000000000 0.00000000
## 7360 0.0000000 0.000000000 0.00000000
## 7361 0.0000000 0.000000000 0.00000000
## 7362 0.0000000 0.000000000 0.00000000
## 7363 0.0000000 0.000000000 0.00000000
## 7364 0.0000000 0.000000000 0.00000000
## 7365 0.0000000 0.000000000 0.00000000
## 7366 0.0000000 0.000000000 0.00000000
## 7367 0.0000000 0.000000000 0.00000000
## 7368 0.0000000 0.000000000 0.00000000
## 7369 0.0000000 0.000000000 0.00000000
## 7370 0.0000000 0.000000000 0.00000000
## 7371 0.0000000 0.000000000 0.00000000
## 7372 0.0000000 0.000000000 0.00000000
## 7373 0.0000000 0.000000000 0.00000000
## 7374 0.0000000 0.000000000 0.00000000
## 7375 0.0000000 0.000000000 0.00000000
## 7376 0.0000000 0.000000000 0.00000000
## 7377 0.0000000 0.000000000 0.00000000
## 7378 0.0000000 0.000000000 0.00000000
## 7379 0.0000000 0.000000000 0.00000000
## 7380 0.0000000 0.000000000 0.00000000
## 7381 0.0000000 0.000000000 0.00000000
## 7382 0.0000000 0.000000000 0.00000000
## 7383 0.0000000 0.000000000 0.00000000
## 7384 0.0000000 0.000000000 0.00000000
## 7385 0.0000000 0.000000000 0.00000000
## 7386 0.0000000 0.000000000 0.00000000
## 7387 0.0000000 0.000000000 0.00000000
## 7388 0.0000000 0.000000000 0.00000000
## 7389 0.0000000 0.000000000 0.00000000
## 7390 0.0000000 0.000000000 0.00000000
## 7391 0.0000000 0.000000000 0.00000000
## 7392 0.0000000 0.000000000 0.00000000
## 7393 0.0000000 0.000000000 0.00000000
## 7394 0.0000000 0.000000000 0.00000000
## 7395 0.0000000 0.000000000 0.00000000
## 7396 0.0000000 0.000000000 0.00000000
## 7397 0.0000000 0.000000000 0.00000000
## 7398 0.0000000 0.000000000 0.00000000
## 7399 0.0000000 0.000000000 0.00000000
## 7400 0.0000000 0.000000000 0.00000000
## 7401 0.0000000 0.000000000 0.00000000
## 7402 0.0000000 0.000000000 0.00000000
## 7403 0.0000000 0.000000000 0.00000000
## 7404 0.0000000 0.000000000 0.00000000
## 7405 0.0000000 0.000000000 0.00000000
## 7406 0.0000000 0.000000000 0.00000000
## 7407 0.0000000 0.000000000 0.00000000
## 7408 0.0000000 0.000000000 0.00000000
## 7409 0.0000000 0.000000000 0.00000000
## 7410 0.0000000 0.000000000 0.00000000
## 7411 0.0000000 0.000000000 0.00000000
## 7412 0.0000000 0.000000000 0.00000000
## 7413 0.0000000 0.000000000 0.00000000
## 7414 0.0000000 0.000000000 0.00000000
## 7415 0.0000000 0.000000000 0.00000000
## 7416 0.0000000 0.000000000 0.00000000
## 7417 0.0000000 0.000000000 0.00000000
## 7418 0.0000000 0.000000000 0.00000000
## 7419 0.0000000 0.000000000 0.00000000
## 7420 0.0000000 0.000000000 0.00000000
## 7421 0.0000000 0.000000000 0.00000000
## 7422 0.0000000 0.000000000 0.00000000
## 7423 0.0000000 0.000000000 0.00000000
## 7424 0.0000000 0.000000000 0.00000000
## 7425 0.0000000 0.000000000 0.00000000
## 7426 0.0000000 0.000000000 0.00000000
## 7427 0.0000000 0.000000000 0.00000000
## 7428 0.0000000 0.000000000 0.00000000
## 7429 0.0000000 0.000000000 0.00000000
## 7430 0.0000000 0.000000000 0.00000000
## 7431 0.0000000 0.000000000 0.00000000
## 7432 0.0000000 0.000000000 0.00000000
## 7433 0.0000000 0.000000000 0.00000000
## 7434 0.0000000 0.000000000 0.00000000
## 7435 0.0000000 0.000000000 0.00000000
## 7436 0.0000000 0.000000000 0.00000000
## 7437 0.0000000 0.000000000 0.00000000
## 7438 0.0000000 0.000000000 0.00000000
## 7439 0.0000000 0.000000000 0.00000000
## 7440 0.0000000 0.000000000 0.00000000
## 7441 0.0000000 0.000000000 0.00000000
## 7442 0.0000000 0.000000000 0.00000000
## 7443 0.0000000 0.000000000 0.00000000
## 7444 0.0000000 0.000000000 0.00000000
## 7445 0.0000000 0.000000000 0.00000000
## 7446 0.0000000 0.000000000 0.00000000
## 7447 0.0000000 0.000000000 0.00000000
## 7448 0.0000000 0.000000000 0.00000000
## 7449 0.0000000 0.000000000 0.00000000
## 7450 0.0000000 0.000000000 0.00000000
## 7451 0.0000000 0.000000000 0.00000000
## 7452 0.0000000 0.000000000 0.00000000
## 7453 0.0000000 0.000000000 0.00000000
## 7454 0.0000000 0.000000000 0.00000000
## 7455 0.0000000 0.000000000 0.00000000
## 7456 0.0000000 0.000000000 0.00000000
## 7457 0.0000000 0.000000000 0.00000000
## 7458 0.0000000 0.000000000 0.00000000
## 7459 0.0000000 0.000000000 0.00000000
## 7460 0.0000000 0.000000000 0.00000000
## 7461 0.0000000 0.000000000 0.00000000
## 7462 0.0000000 0.000000000 0.00000000
## 7463 0.0000000 0.000000000 0.00000000
## 7464 0.0000000 0.000000000 0.00000000
## 7465 0.0000000 0.000000000 0.00000000
## 7466 0.0000000 0.000000000 0.00000000
## 7467 0.0000000 0.000000000 0.00000000
## 7468 0.0000000 0.000000000 0.00000000
## 7469 0.0000000 0.000000000 0.00000000
## 7470 0.0000000 0.000000000 0.00000000
## 7471 0.0000000 0.000000000 0.00000000
## 7472 0.0000000 0.000000000 0.00000000
## 7473 0.0000000 0.000000000 0.00000000
## 7474 0.0000000 0.000000000 0.00000000
## 7475 0.0000000 0.000000000 0.00000000
## 7476 0.0000000 0.000000000 0.00000000
## 7477 0.0000000 0.000000000 0.00000000
## 7478 0.0000000 0.000000000 0.00000000
## 7479 0.0000000 0.000000000 0.00000000
## 7480 0.0000000 0.000000000 0.00000000
## 7481 0.0000000 0.000000000 0.00000000
## 7482 0.0000000 0.000000000 0.00000000
## 7483 0.0000000 0.000000000 0.00000000
## 7484 0.0000000 0.000000000 0.00000000
## 7485 0.0000000 0.000000000 0.00000000
## 7486 0.0000000 0.000000000 0.00000000
## 7487 0.0000000 0.000000000 0.00000000
## 7488 0.0000000 0.000000000 0.00000000
## 7489 0.0000000 0.000000000 0.00000000
## 7490 0.0000000 0.000000000 0.00000000
## 7491 0.0000000 0.000000000 0.00000000
## 7492 0.0000000 0.000000000 0.00000000
## 7493 0.0000000 0.000000000 0.00000000
## 7494 0.0000000 0.000000000 0.00000000
## 7495 0.0000000 0.000000000 0.00000000
## 7496 0.0000000 0.000000000 0.00000000
## 7497 0.0000000 0.000000000 0.00000000
## 7498 0.0000000 0.000000000 0.00000000
## 7499 0.0000000 0.000000000 0.00000000
## 7500 0.0000000 0.000000000 0.00000000
## 7501 0.0000000 0.000000000 0.00000000
## 7502 0.0000000 0.000000000 0.00000000
## 7503 0.0000000 0.000000000 0.00000000
## 7504 0.0000000 0.000000000 0.00000000
## 7505 0.0000000 0.000000000 0.00000000
## 7506 0.0000000 0.000000000 0.00000000
## 7507 0.0000000 0.000000000 0.00000000
## 7508 0.0000000 0.000000000 0.00000000
## 7509 0.0000000 0.000000000 0.00000000
## 7510 0.0000000 0.000000000 0.00000000
## 7511 0.0000000 0.000000000 0.00000000
## 7512 0.0000000 0.000000000 0.00000000
## 7513 0.0000000 0.000000000 0.00000000
## 7514 0.0000000 0.000000000 0.00000000
## 7515 0.0000000 0.000000000 0.00000000
## 7516 0.0000000 0.000000000 0.00000000
## 7517 0.0000000 0.000000000 0.00000000
## 7518 0.0000000 0.000000000 0.00000000
## 7519 0.0000000 0.000000000 0.00000000
## 7520 0.0000000 0.000000000 0.00000000
## 7521 0.0000000 0.000000000 0.00000000
## 7522 0.0000000 0.000000000 0.00000000
## 7523 0.0000000 0.000000000 0.00000000
## 7524 0.0000000 0.000000000 0.00000000
## 7525 0.0000000 0.000000000 0.00000000
## 7526 0.0000000 0.000000000 0.00000000
## 7527 0.0000000 0.000000000 0.00000000
## 7528 0.0000000 0.000000000 0.00000000
## 7529 0.0000000 0.000000000 0.00000000
## 7530 0.0000000 0.000000000 0.00000000
## 7531 0.0000000 0.000000000 0.00000000
## 7532 0.0000000 0.000000000 0.00000000
## 7533 0.0000000 0.000000000 0.00000000
## 7534 0.0000000 0.000000000 0.00000000
## 7535 0.0000000 0.000000000 0.00000000
## 7536 0.0000000 0.000000000 0.00000000
## 7537 0.0000000 0.000000000 0.00000000
## 7538 0.0000000 0.000000000 0.00000000
## 7539 0.0000000 0.000000000 0.00000000
## 7540 0.0000000 0.000000000 0.00000000
## 7541 0.0000000 0.000000000 0.00000000
## 7542 0.0000000 0.000000000 0.00000000
## 7543 0.0000000 0.000000000 0.00000000
## 7544 0.0000000 0.000000000 0.00000000
## 7545 0.0000000 0.000000000 0.00000000
## 7546 0.0000000 0.000000000 0.00000000
## 7547 0.0000000 0.000000000 0.00000000
## 7548 0.0000000 0.000000000 0.00000000
## 7549 0.0000000 0.000000000 0.00000000
## 7550 0.0000000 0.000000000 0.00000000
## 7551 0.0000000 0.000000000 0.00000000
## 7552 0.0000000 0.000000000 0.00000000
## 7553 0.0000000 0.000000000 0.00000000
## 7554 0.0000000 0.000000000 0.00000000
## 7555 0.0000000 0.000000000 0.00000000
## 7556 0.0000000 0.000000000 0.00000000
## 7557 0.0000000 0.000000000 0.00000000
## 7558 0.0000000 0.000000000 0.00000000
## 7559 0.0000000 0.000000000 0.00000000
## 7560 0.0000000 0.000000000 0.00000000
## 7561 0.0000000 0.000000000 0.00000000
## 7562 0.0000000 0.000000000 0.00000000
## 7563 0.0000000 0.000000000 0.00000000
## 7564 0.0000000 0.000000000 0.00000000
## 7565 0.0000000 0.000000000 0.00000000
## 7566 0.0000000 0.000000000 0.00000000
## 7567 0.0000000 0.000000000 0.00000000
## 7568 0.0000000 0.000000000 0.00000000
## 7569 0.0000000 0.000000000 0.00000000
## 7570 0.0000000 0.000000000 0.00000000
## 7571 0.0000000 0.000000000 0.00000000
## 7572 0.0000000 0.000000000 0.00000000
## 7573 0.0000000 0.000000000 0.00000000
## 7574 0.0000000 0.000000000 0.00000000
## 7575 0.0000000 0.000000000 0.00000000
## 7576 0.0000000 0.000000000 0.00000000
## 7577 0.0000000 0.000000000 0.00000000
## 7578 0.0000000 0.000000000 0.00000000
## 7579 0.0000000 0.000000000 0.00000000
## 7580 0.0000000 0.000000000 0.00000000
## 7581 0.0000000 0.000000000 0.00000000
## 7582 0.0000000 0.000000000 0.00000000
## 7583 0.0000000 0.000000000 0.00000000
## 7584 0.0000000 0.000000000 0.00000000
## 7585 0.0000000 0.000000000 0.00000000
## 7586 0.0000000 0.000000000 0.00000000
## 7587 0.0000000 0.000000000 0.00000000
## 7588 0.0000000 0.000000000 0.00000000
## 7589 0.0000000 0.000000000 0.00000000
## 7590 0.0000000 0.000000000 0.00000000
## 7591 0.0000000 0.000000000 0.00000000
## 7592 0.0000000 0.000000000 0.00000000
## 7593 0.0000000 0.000000000 0.00000000
## 7594 0.0000000 0.000000000 0.00000000
## 7595 0.0000000 0.000000000 0.00000000
## 7596 0.0000000 0.000000000 0.00000000
## 7597 0.0000000 0.000000000 0.00000000
## 7598 0.0000000 0.000000000 0.00000000
## 7599 0.0000000 0.000000000 0.00000000
## 7600 0.0000000 0.000000000 0.00000000
## 7601 0.0000000 0.000000000 0.00000000
## 7602 0.0000000 0.000000000 0.00000000
## 7603 0.0000000 0.000000000 0.00000000
## 7604 0.0000000 0.000000000 0.00000000
## 7605 0.0000000 0.000000000 0.00000000
## 7606 0.0000000 0.000000000 0.00000000
## 7607 0.0000000 0.000000000 0.00000000
## 7608 0.0000000 0.000000000 0.00000000
## 7609 0.0000000 0.000000000 0.00000000
## 7610 0.0000000 0.000000000 0.00000000
## 7611 0.0000000 0.000000000 0.00000000
## 7612 0.0000000 0.000000000 0.00000000
## 7613 0.0000000 0.000000000 0.00000000
## 7614 0.0000000 0.000000000 0.00000000
## 7615 0.0000000 0.000000000 0.00000000
## 7616 0.0000000 0.000000000 0.00000000
## 7617 0.0000000 0.000000000 0.00000000
## 7618 0.0000000 0.000000000 0.00000000
## 7619 0.0000000 0.000000000 0.00000000
## 7620 0.0000000 0.000000000 0.00000000
## 7621 0.0000000 0.000000000 0.00000000
## 7622 0.0000000 0.000000000 0.00000000
## 7623 0.0000000 0.000000000 0.00000000
## 7624 0.0000000 0.000000000 0.00000000
## 7625 0.0000000 0.000000000 0.00000000
## 7626 0.0000000 0.000000000 0.00000000
## 7627 0.0000000 0.000000000 0.00000000
## 7628 0.0000000 0.000000000 0.00000000
## 7629 0.0000000 0.000000000 0.00000000
## 7630 0.0000000 0.000000000 0.00000000
## 7631 0.0000000 0.000000000 0.00000000
## 7632 0.0000000 0.000000000 0.00000000
## 7633 0.0000000 0.000000000 0.00000000
## 7634 0.0000000 0.000000000 0.00000000
## 7635 0.0000000 0.000000000 0.00000000
## 7636 0.0000000 0.000000000 0.00000000
## 7637 0.0000000 0.000000000 0.00000000
## 7638 0.0000000 0.000000000 0.00000000
## 7639 0.0000000 0.000000000 0.00000000
## 7640 0.0000000 0.000000000 0.00000000
## 7641 0.0000000 0.000000000 0.00000000
## 7642 0.0000000 0.000000000 0.00000000
## 7643 0.0000000 0.000000000 0.00000000
## 7644 0.0000000 0.000000000 0.00000000
## 7645 0.0000000 0.000000000 0.00000000
## 7646 0.0000000 0.000000000 0.00000000
## 7647 0.0000000 0.000000000 0.00000000
## 7648 0.0000000 0.000000000 0.00000000
## 7649 0.0000000 0.000000000 0.00000000
## 7650 0.0000000 0.000000000 0.00000000
## 7651 0.0000000 0.000000000 0.00000000
## 7652 0.0000000 0.000000000 0.00000000
## 7653 0.0000000 0.000000000 0.00000000
## 7654 0.0000000 0.000000000 0.00000000
## 7655 0.0000000 0.000000000 0.00000000
## 7656 0.0000000 0.000000000 0.00000000
## 7657 0.0000000 0.000000000 0.00000000
## 7658 0.0000000 0.000000000 0.00000000
## 7659 0.0000000 0.000000000 0.00000000
## 7660 0.0000000 0.000000000 0.00000000
## 7661 0.0000000 0.000000000 0.00000000
## 7662 0.0000000 0.000000000 0.00000000
## 7663 0.0000000 0.000000000 0.00000000
## 7664 0.0000000 0.000000000 0.00000000
## 7665 0.0000000 0.000000000 0.00000000
## 7666 0.0000000 0.000000000 0.00000000
## 7667 0.0000000 0.000000000 0.00000000
## 7668 0.0000000 0.000000000 0.00000000
## 7669 0.0000000 0.000000000 0.00000000
## 7670 0.0000000 0.000000000 0.00000000
## 7671 0.0000000 0.000000000 0.00000000
## 7672 0.0000000 0.000000000 0.00000000
## 7673 0.0000000 0.000000000 0.00000000
## 7674 0.0000000 0.000000000 0.00000000
## 7675 0.0000000 0.000000000 0.00000000
## 7676 0.0000000 0.000000000 0.00000000
## 7677 0.0000000 0.000000000 0.00000000
## 7678 0.0000000 0.000000000 0.00000000
## 7679 0.0000000 0.000000000 0.00000000
## 7680 0.0000000 0.000000000 0.00000000
## 7681 0.0000000 0.000000000 0.00000000
## 7682 0.0000000 0.000000000 0.00000000
## 7683 0.0000000 0.000000000 0.00000000
## 7684 0.0000000 0.000000000 0.00000000
## 7685 0.0000000 0.000000000 0.00000000
## 7686 0.0000000 0.000000000 0.00000000
## 7687 0.0000000 0.000000000 0.00000000
## 7688 0.0000000 0.000000000 0.00000000
## 7689 0.0000000 0.000000000 0.00000000
## 7690 0.0000000 0.000000000 0.00000000
## 7691 0.0000000 0.000000000 0.00000000
## 7692 0.0000000 0.000000000 0.00000000
## Hyper_Foreground_Gene_Hits Hyper_Background_Gene_Hits
## 1 52 94
## 2 30 52
## 3 3 3
## 4 3 3
## 5 3 3
## 6 36 70
## 7 11 14
## 8 10 12
## 9 18 31
## 10 18 31
## 11 172 383
## 12 173 386
## 13 8 10
## 14 5 7
## 15 166 371
## 16 2 2
## 17 1 1
## 18 3 5
## 19 9 11
## 20 11 14
## 21 25 45
## 22 180 409
## 23 12 17
## 24 5 7
## 25 179 413
## 26 3 3
## 27 3 3
## 28 4 5
## 29 4 4
## 30 3 3
## 31 3 4
## 32 10 13
## 33 5 6
## 34 5 6
## 35 2 2
## 36 5 6
## 37 5 6
## 38 3 3
## 39 2 2
## 40 2 2
## 41 8 10
## 42 3 6
## 43 3 6
## 44 8 9
## 45 5 9
## 46 4 4
## 47 2 2
## 48 10 15
## 49 57 121
## 50 3 4
## 51 4 4
## 52 6 7
## 53 1 1
## 54 1 1
## 55 2 2
## 56 1 1
## 57 1 1
## 58 1 1
## 59 2 2
## 60 2 2
## 61 1 1
## 62 1 1
## 63 1 1
## 64 1 1
## 65 1 1
## 66 1 1
## 67 1 1
## 68 4 8
## 69 4 8
## 70 18 32
## 71 3 7
## 72 28 60
## 73 22 44
## 74 146 328
## 75 23 46
## 76 11 21
## 77 29 54
## 78 5 7
## 79 7 11
## 80 14 29
## 81 18 25
## 82 8 12
## 83 8 12
## 84 8 12
## 85 4 5
## 86 2 2
## 87 2 2
## 88 4 10
## 89 2 3
## 90 5 6
## 91 23 51
## 92 190 453
## 93 4 6
## 94 4 6
## 95 3 6
## 96 1 1
## 97 2 3
## 98 3 3
## 99 2 2
## 100 1 1
## 101 2 3
## 102 2 2
## 103 1 1
## 104 1 1
## 105 4 11
## 106 4 11
## 107 4 11
## 108 8 10
## 109 12 20
## 110 13 24
## 111 5 9
## 112 5 9
## 113 7 13
## 114 3 6
## 115 4 6
## 116 3 6
## 117 3 6
## 118 3 5
## 119 4 8
## 120 7 8
## 121 3 5
## 122 4 5
## 123 11 15
## 124 11 15
## 125 10 14
## 126 26 49
## 127 26 49
## 128 60 121
## 129 7 9
## 130 12 19
## 131 7 10
## 132 8 13
## 133 12 21
## 134 12 21
## 135 6 9
## 136 10 14
## 137 6 9
## 138 1 1
## 139 3 3
## 140 3 3
## 141 3 3
## 142 3 3
## 143 3 3
## 144 1 1
## 145 1 1
## 146 2 2
## 147 2 2
## 148 3 3
## 149 1 1
## 150 1 2
## 151 1 1
## 152 3 3
## 153 2 2
## 154 2 2
## 155 1 2
## 156 1 1
## 157 1 1
## 158 1 2
## 159 1 1
## 160 2 2
## 161 2 2
## 162 2 2
## 163 2 2
## 164 2 2
## 165 2 2
## 166 1 1
## 167 1 1
## 168 2 2
## 169 2 2
## 170 2 2
## 171 2 2
## 172 2 2
## 173 2 2
## 174 2 2
## 175 2 2
## 176 2 2
## 177 2 2
## 178 1 1
## 179 2 2
## 180 28 52
## 181 28 52
## 182 6 12
## 183 4 7
## 184 8 12
## 185 7 10
## 186 3 7
## 187 6 7
## 188 4 7
## 189 45 98
## 190 12 23
## 191 4 6
## 192 4 6
## 193 2 2
## 194 2 4
## 195 6 7
## 196 8 13
## 197 8 13
## 198 8 13
## 199 2 2
## 200 2 3
## 201 2 4
## 202 2 2
## 203 3 4
## 204 3 4
## 205 3 4
## 206 1 1
## 207 1 1
## 208 5 6
## 209 1 1
## 210 3 4
## 211 1 1
## 212 5 6
## 213 39 78
## 214 39 78
## 215 1 1
## 216 1 1
## 217 1 1
## 218 1 1
## 219 1 1
## 220 1 1
## 221 1 1
## 222 1 1
## 223 1 1
## 224 1 1
## 225 1 1
## 226 2 2
## 227 2 2
## 228 1 1
## 229 1 1
## 230 1 1
## 231 1 1
## 232 1 1
## 233 1 1
## 234 1 1
## 235 1 1
## 236 1 1
## 237 2 2
## 238 1 1
## 239 1 1
## 240 1 1
## 241 1 1
## 242 1 1
## 243 2 2
## 244 7 12
## 245 129 297
## 246 16 34
## 247 4 7
## 248 7 11
## 249 4 7
## 250 22 43
## 251 6 14
## 252 6 13
## 253 8 11
## 254 7 13
## 255 14 23
## 256 12 24
## 257 2 5
## 258 16 27
## 259 6 13
## 260 4 6
## 261 46 112
## 262 29 44
## 263 9 17
## 264 9 17
## 265 9 15
## 266 5 13
## 267 9 11
## 268 6 14
## 269 6 14
## 270 138 318
## 271 8 22
## 272 4 4
## 273 2 2
## 274 2 5
## 275 2 3
## 276 2 5
## 277 11 19
## 278 11 19
## 279 4 9
## 280 4 6
## 281 38 75
## 282 5 10
## 283 3 5
## 284 3 5
## 285 2 4
## 286 3 4
## 287 3 5
## 288 3 4
## 289 2 2
## 290 2 2
## 291 7 17
## 292 7 13
## 293 1 1
## 294 1 1
## 295 1 1
## 296 1 1
## 297 3 4
## 298 3 4
## 299 2 3
## 300 2 3
## 301 1 2
## 302 2 3
## 303 1 2
## 304 1 3
## 305 2 2
## 306 1 1
## 307 1 1
## 308 1 1
## 309 2 2
## 310 1 2
## 311 1 1
## 312 1 2
## 313 1 1
## 314 3 3
## 315 2 2
## 316 1 1
## 317 2 2
## 318 1 2
## 319 2 3
## 320 18 38
## 321 6 8
## 322 2 2
## 323 3 3
## 324 1 1
## 325 1 1
## 326 1 1
## 327 1 1
## 328 2 5
## 329 1 1
## 330 3 4
## 331 4 7
## 332 3 7
## 333 11 16
## 334 11 16
## 335 7 19
## 336 16 26
## 337 10 15
## 338 5 11
## 339 5 11
## 340 5 6
## 341 2 2
## 342 6 9
## 343 6 8
## 344 5 6
## 345 2 3
## 346 2 3
## 347 9 19
## 348 9 19
## 349 17 34
## 350 6 11
## 351 5 8
## 352 5 8
## 353 5 12
## 354 222 539
## 355 9 14
## 356 9 14
## 357 8 9
## 358 8 9
## 359 30 66
## 360 31 68
## 361 4 6
## 362 3 6
## 363 1 3
## 364 5 7
## 365 3 5
## 366 1 3
## 367 2 3
## 368 4 5
## 369 3 5
## 370 2 3
## 371 4 5
## 372 7 14
## 373 79 163
## 374 14 32
## 375 4 10
## 376 5 12
## 377 15 29
## 378 19 39
## 379 23 53
## 380 2 3
## 381 1 1
## 382 1 1
## 383 2 2
## 384 2 2
## 385 2 2
## 386 2 2
## 387 2 2
## 388 2 2
## 389 2 2
## 390 1 1
## 391 2 2
## 392 2 5
## 393 2 5
## 394 1 1
## 395 1 1
## 396 2 2
## 397 2 2
## 398 1 1
## 399 1 2
## 400 3 5
## 401 3 3
## 402 3 3
## 403 3 3
## 404 3 3
## 405 1 1
## 406 3 5
## 407 7 10
## 408 4 5
## 409 3 4
## 410 2 2
## 411 4 7
## 412 5 7
## 413 115 259
## 414 6 10
## 415 8 9
## 416 21 40
## 417 5 13
## 418 8 14
## 419 11 31
## 420 126 291
## 421 8 15
## 422 3 4
## 423 1 2
## 424 1 2
## 425 1 2
## 426 1 2
## 427 3 3
## 428 3 4
## 429 2 2
## 430 2 2
## 431 2 3
## 432 3 3
## 433 1 2
## 434 2 3
## 435 1 4
## 436 2 2
## 437 2 3
## 438 1 2
## 439 1 3
## 440 2 2
## 441 2 2
## 442 2 4
## 443 2 3
## 444 2 2
## 445 1 1
## 446 1 1
## 447 1 1
## 448 1 1
## 449 1 1
## 450 1 1
## 451 1 1
## 452 2 2
## 453 1 2
## 454 2 2
## 455 2 2
## 456 2 2
## 457 1 1
## 458 1 1
## 459 1 1
## 460 1 1
## 461 1 1
## 462 2 2
## 463 1 1
## 464 1 1
## 465 2 2
## 466 1 1
## 467 1 1
## 468 1 1
## 469 1 1
## 470 1 1
## 471 1 1
## 472 1 1
## 473 1 1
## 474 1 1
## 475 1 1
## 476 2 2
## 477 1 1
## 478 1 1
## 479 1 2
## 480 1 1
## 481 1 1
## 482 1 1
## 483 1 1
## 484 1 1
## 485 1 1
## 486 1 1
## 487 1 2
## 488 1 1
## 489 1 1
## 490 1 1
## 491 1 1
## 492 1 1
## 493 1 1
## 494 1 1
## 495 1 1
## 496 1 1
## 497 1 1
## 498 1 1
## 499 1 1
## 500 1 1
## 501 2 2
## 502 1 1
## 503 1 1
## 504 1 1
## 505 1 1
## 506 1 1
## 507 1 1
## 508 1 1
## 509 1 2
## 510 1 1
## 511 1 1
## 512 1 1
## 513 1 1
## 514 1 1
## 515 1 1
## 516 1 1
## 517 2 2
## 518 1 1
## 519 1 1
## 520 2 2
## 521 1 1
## 522 1 1
## 523 1 2
## 524 2 2
## 525 1 1
## 526 2 2
## 527 1 1
## 528 1 1
## 529 1 1
## 530 1 1
## 531 1 1
## 532 1 1
## 533 1 1
## 534 1 1
## 535 1 1
## 536 1 1
## 537 1 1
## 538 1 1
## 539 1 1
## 540 1 1
## 541 1 1
## 542 2 3
## 543 1 1
## 544 1 1
## 545 1 1
## 546 1 1
## 547 1 1
## 548 1 1
## 549 1 1
## 550 1 1
## 551 1 1
## 552 1 1
## 553 1 1
## 554 1 1
## 555 1 1
## 556 1 1
## 557 1 1
## 558 1 1
## 559 1 1
## 560 1 1
## 561 1 1
## 562 1 1
## 563 1 1
## 564 1 1
## 565 1 1
## 566 1 1
## 567 1 1
## 568 1 1
## 569 1 1
## 570 1 1
## 571 1 1
## 572 16 36
## 573 5 16
## 574 10 21
## 575 7 13
## 576 3 4
## 577 115 257
## 578 5 10
## 579 3 4
## 580 5 7
## 581 2 5
## 582 4 6
## 583 3 4
## 584 3 6
## 585 2 6
## 586 3 9
## 587 1 3
## 588 3 3
## 589 7 8
## 590 6 13
## 591 274 697
## 592 25 53
## 593 7 15
## 594 4 9
## 595 5 10
## 596 283 731
## 597 9 12
## 598 238 594
## 599 77 180
## 600 4 4
## 601 4 8
## 602 4 4
## 603 3 4
## 604 2 4
## 605 47 111
## 606 24 53
## 607 5 7
## 608 6 12
## 609 12 21
## 610 12 30
## 611 1 1
## 612 3 7
## 613 2 3
## 614 1 2
## 615 2 5
## 616 3 4
## 617 1 2
## 618 1 1
## 619 3 5
## 620 1 3
## 621 111 251
## 622 37 86
## 623 4 5
## 624 5 11
## 625 3 5
## 626 5 11
## 627 120 272
## 628 7 11
## 629 7 11
## 630 7 14
## 631 13 33
## 632 6 7
## 633 6 7
## 634 7 7
## 635 273 692
## 636 53 101
## 637 25 51
## 638 90 198
## 639 11 26
## 640 2 6
## 641 1 2
## 642 4 5
## 643 12 21
## 644 57 117
## 645 289 754
## 646 4 7
## 647 3 4
## 648 2 4
## 649 5 8
## 650 1 1
## 651 2 3
## 652 2 2
## 653 1 1
## 654 1 1
## 655 1 1
## 656 2 4
## 657 1 1
## 658 1 1
## 659 2 2
## 660 2 2
## 661 1 2
## 662 1 1
## 663 2 3
## 664 2 2
## 665 1 3
## 666 1 1
## 667 1 3
## 668 2 2
## 669 1 1
## 670 1 1
## 671 1 4
## 672 25 57
## 673 18 45
## 674 10 11
## 675 4 9
## 676 4 7
## 677 4 4
## 678 16 37
## 679 4 7
## 680 6 7
## 681 4 8
## 682 4 11
## 683 6 7
## 684 5 13
## 685 4 11
## 686 4 9
## 687 7 17
## 688 6 12
## 689 6 11
## 690 13 22
## 691 13 22
## 692 19 46
## 693 20 48
## 694 10 20
## 695 20 40
## 696 20 40
## 697 17 34
## 698 3 4
## 699 3 4
## 700 3 4
## 701 3 6
## 702 2 3
## 703 2 5
## 704 3 4
## 705 2 3
## 706 2 3
## 707 1 2
## 708 1 4
## 709 1 2
## 710 1 2
## 711 3 4
## 712 3 4
## 713 1 4
## 714 3 5
## 715 3 4
## 716 2 3
## 717 2 3
## 718 2 2
## 719 1 3
## 720 1 3
## 721 2 5
## 722 3 4
## 723 6 19
## 724 6 19
## 725 19 34
## 726 11 27
## 727 14 28
## 728 6 12
## 729 2 2
## 730 2 3
## 731 2 3
## 732 2 3
## 733 2 3
## 734 2 3
## 735 2 3
## 736 1 2
## 737 2 2
## 738 1 3
## 739 1 2
## 740 1 3
## 741 1 1
## 742 1 1
## 743 1 2
## 744 1 2
## 745 1 1
## 746 1 1
## 747 1 1
## 748 1 2
## 749 1 2
## 750 1 2
## 751 1 1
## 752 2 2
## 753 1 2
## 754 1 1
## 755 1 2
## 756 1 1
## 757 1 2
## 758 2 3
## 759 1 2
## 760 1 1
## 761 1 2
## 762 1 1
## 763 1 1
## 764 1 2
## 765 2 3
## 766 2 3
## 767 2 3
## 768 1 2
## 769 2 2
## 770 2 2
## 771 1 2
## 772 1 1
## 773 1 2
## 774 1 2
## 775 2 3
## 776 1 1
## 777 1 1
## 778 1 1
## 779 1 2
## 780 1 2
## 781 1 1
## 782 18 32
## 783 10 23
## 784 8 9
## 785 8 11
## 786 11 27
## 787 4 5
## 788 4 5
## 789 3 4
## 790 3 3
## 791 2 5
## 792 4 7
## 793 2 7
## 794 3 4
## 795 3 4
## 796 3 5
## 797 4 6
## 798 8 16
## 799 10 26
## 800 5 8
## 801 10 24
## 802 4 6
## 803 4 6
## 804 4 5
## 805 3 3
## 806 3 7
## 807 2 3
## 808 4 8
## 809 4 8
## 810 4 9
## 811 4 12
## 812 5 5
## 813 4 7
## 814 5 9
## 815 3 6
## 816 2 5
## 817 5 5
## 818 5 5
## 819 5 5
## 820 4 7
## 821 1 1
## 822 1 1
## 823 1 1
## 824 1 1
## 825 1 1
## 826 1 1
## 827 1 1
## 828 1 1
## 829 1 1
## 830 1 1
## 831 1 1
## 832 1 1
## 833 1 1
## 834 1 1
## 835 1 1
## 836 1 1
## 837 1 1
## 838 1 1
## 839 1 1
## 840 1 1
## 841 1 1
## 842 1 1
## 843 1 1
## 844 1 1
## 845 1 1
## 846 1 1
## 847 1 1
## 848 1 1
## 849 1 1
## 850 1 1
## 851 1 1
## 852 1 1
## 853 1 1
## 854 1 1
## 855 1 1
## 856 1 1
## 857 1 1
## 858 1 1
## 859 1 1
## 860 1 1
## 861 1 1
## 862 1 1
## 863 1 1
## 864 1 1
## 865 1 1
## 866 1 1
## 867 1 1
## 868 1 1
## 869 1 1
## 870 1 1
## 871 1 1
## 872 1 1
## 873 1 1
## 874 1 1
## 875 1 1
## 876 1 1
## 877 1 1
## 878 1 1
## 879 1 1
## 880 1 1
## 881 1 1
## 882 1 1
## 883 1 1
## 884 1 1
## 885 1 1
## 886 1 1
## 887 1 1
## 888 1 1
## 889 1 1
## 890 1 1
## 891 1 1
## 892 1 1
## 893 1 1
## 894 1 1
## 895 1 1
## 896 1 1
## 897 1 1
## 898 1 1
## 899 1 1
## 900 1 1
## 901 1 1
## 902 1 1
## 903 1 1
## 904 1 1
## 905 1 1
## 906 1 1
## 907 1 1
## 908 1 1
## 909 1 1
## 910 1 1
## 911 1 1
## 912 1 1
## 913 1 1
## 914 1 1
## 915 1 1
## 916 1 1
## 917 1 1
## 918 1 1
## 919 1 1
## 920 1 1
## 921 1 1
## 922 1 1
## 923 1 1
## 924 1 1
## 925 1 1
## 926 1 1
## 927 1 1
## 928 1 1
## 929 1 1
## 930 1 1
## 931 1 1
## 932 1 1
## 933 1 1
## 934 1 1
## 935 1 1
## 936 1 1
## 937 1 1
## 938 1 1
## 939 1 1
## 940 1 1
## 941 1 1
## 942 1 1
## 943 1 1
## 944 1 1
## 945 1 1
## 946 1 1
## 947 1 1
## 948 1 1
## 949 1 1
## 950 1 1
## 951 1 1
## 952 1 1
## 953 1 1
## 954 1 1
## 955 1 1
## 956 1 1
## 957 1 1
## 958 1 1
## 959 1 1
## 960 1 1
## 961 1 1
## 962 1 1
## 963 1 1
## 964 1 1
## 965 1 1
## 966 1 1
## 967 1 1
## 968 1 1
## 969 1 1
## 970 1 1
## 971 1 1
## 972 1 1
## 973 1 1
## 974 1 1
## 975 1 1
## 976 1 1
## 977 1 1
## 978 1 1
## 979 1 1
## 980 1 1
## 981 1 1
## 982 1 1
## 983 1 1
## 984 9 18
## 985 11 24
## 986 8 22
## 987 9 27
## 988 18 32
## 989 10 25
## 990 11 22
## 991 11 22
## 992 8 15
## 993 21 47
## 994 9 19
## 995 9 21
## 996 8 18
## 997 9 14
## 998 6 12
## 999 23 52
## 1000 80 179
## 1001 54 132
## 1002 11 15
## 1003 7 13
## 1004 19 43
## 1005 2 2
## 1006 1 3
## 1007 2 3
## 1008 3 4
## 1009 1 1
## 1010 1 1
## 1011 3 4
## 1012 2 4
## 1013 3 3
## 1014 3 3
## 1015 1 1
## 1016 2 2
## 1017 2 2
## 1018 2 3
## 1019 3 4
## 1020 1 3
## 1021 1 1
## 1022 1 1
## 1023 2 3
## 1024 1 1
## 1025 3 3
## 1026 2 2
## 1027 29 72
## 1028 34 85
## 1029 12 23
## 1030 10 24
## 1031 4 9
## 1032 4 11
## 1033 4 8
## 1034 4 9
## 1035 4 13
## 1036 4 8
## 1037 3 7
## 1038 3 7
## 1039 7 11
## 1040 3 6
## 1041 2 6
## 1042 4 8
## 1043 3 5
## 1044 2 3
## 1045 2 6
## 1046 4 7
## 1047 4 8
## 1048 4 8
## 1049 2 4
## 1050 2 2
## 1051 2 5
## 1052 2 3
## 1053 1 1
## 1054 4 4
## 1055 1 1
## 1056 3 5
## 1057 3 5
## 1058 15 28
## 1059 15 28
## 1060 3 5
## 1061 3 6
## 1062 3 5
## 1063 3 4
## 1064 2 5
## 1065 2 3
## 1066 2 2
## 1067 3 4
## 1068 3 4
## 1069 3 4
## 1070 2 5
## 1071 2 4
## 1072 2 2
## 1073 2 5
## 1074 1 5
## 1075 10 20
## 1076 7 17
## 1077 6 15
## 1078 21 44
## 1079 9 20
## 1080 4 14
## 1081 76 188
## 1082 6 9
## 1083 6 9
## 1084 6 8
## 1085 8 16
## 1086 8 22
## 1087 10 28
## 1088 5 9
## 1089 5 11
## 1090 4 9
## 1091 4 11
## 1092 4 11
## 1093 5 6
## 1094 3 11
## 1095 8 14
## 1096 9 16
## 1097 16 30
## 1098 11 23
## 1099 8 23
## 1100 4 7
## 1101 5 8
## 1102 5 5
## 1103 6 16
## 1104 4 6
## 1105 4 9
## 1106 3 8
## 1107 4 8
## 1108 8 21
## 1109 1 3
## 1110 2 5
## 1111 2 3
## 1112 1 2
## 1113 1 1
## 1114 1 4
## 1115 1 2
## 1116 1 2
## 1117 2 3
## 1118 1 1
## 1119 1 1
## 1120 1 3
## 1121 1 2
## 1122 1 1
## 1123 1 2
## 1124 1 2
## 1125 1 3
## 1126 1 2
## 1127 1 3
## 1128 1 1
## 1129 2 2
## 1130 1 2
## 1131 1 2
## 1132 1 2
## 1133 1 2
## 1134 1 1
## 1135 1 1
## 1136 2 2
## 1137 1 2
## 1138 1 1
## 1139 1 2
## 1140 2 2
## 1141 1 1
## 1142 2 2
## 1143 1 2
## 1144 2 2
## 1145 1 2
## 1146 1 3
## 1147 1 3
## 1148 1 2
## 1149 1 3
## 1150 1 2
## 1151 1 2
## 1152 1 2
## 1153 1 1
## 1154 1 1
## 1155 1 1
## 1156 1 2
## 1157 1 2
## 1158 1 2
## 1159 2 3
## 1160 1 2
## 1161 1 2
## 1162 1 2
## 1163 1 2
## 1164 1 2
## 1165 7 15
## 1166 6 13
## 1167 3 5
## 1168 3 5
## 1169 3 5
## 1170 3 5
## 1171 3 5
## 1172 3 5
## 1173 3 5
## 1174 2 7
## 1175 3 4
## 1176 8 12
## 1177 7 15
## 1178 3 5
## 1179 2 6
## 1180 2 4
## 1181 2 4
## 1182 2 6
## 1183 2 4
## 1184 89 221
## 1185 2 6
## 1186 1 2
## 1187 2 4
## 1188 2 5
## 1189 1 2
## 1190 1 3
## 1191 1 2
## 1192 2 5
## 1193 1 1
## 1194 1 2
## 1195 1 2
## 1196 1 3
## 1197 1 3
## 1198 2 2
## 1199 1 4
## 1200 2 3
## 1201 1 2
## 1202 1 2
## 1203 2 3
## 1204 2 4
## 1205 1 2
## 1206 2 3
## 1207 2 5
## 1208 1 1
## 1209 1 1
## 1210 2 4
## 1211 1 2
## 1212 1 2
## 1213 1 2
## 1214 158 391
## 1215 6 9
## 1216 4 9
## 1217 8 17
## 1218 5 11
## 1219 28 68
## 1220 11 20
## 1221 11 20
## 1222 8 15
## 1223 8 15
## 1224 6 13
## 1225 8 17
## 1226 124 295
## 1227 120 285
## 1228 4 9
## 1229 6 13
## 1230 4 10
## 1231 10 23
## 1232 10 21
## 1233 15 34
## 1234 19 41
## 1235 6 15
## 1236 37 98
## 1237 5 13
## 1238 5 9
## 1239 38 90
## 1240 14 30
## 1241 11 20
## 1242 7 19
## 1243 3 6
## 1244 2 8
## 1245 4 7
## 1246 4 7
## 1247 2 6
## 1248 3 6
## 1249 4 8
## 1250 3 9
## 1251 3 9
## 1252 5 9
## 1253 9 18
## 1254 9 18
## 1255 10 21
## 1256 8 18
## 1257 6 15
## 1258 11 24
## 1259 21 48
## 1260 32 81
## 1261 20 51
## 1262 3 5
## 1263 3 4
## 1264 3 4
## 1265 3 6
## 1266 27 78
## 1267 159 398
## 1268 8 16
## 1269 10 21
## 1270 5 13
## 1271 3 10
## 1272 5 14
## 1273 3 10
## 1274 152 380
## 1275 13 32
## 1276 37 84
## 1277 82 205
## 1278 29 66
## 1279 4 9
## 1280 2 4
## 1281 2 3
## 1282 2 8
## 1283 3 4
## 1284 2 4
## 1285 3 4
## 1286 3 8
## 1287 14 31
## 1288 42 100
## 1289 13 31
## 1290 4 7
## 1291 4 9
## 1292 5 6
## 1293 13 23
## 1294 12 23
## 1295 5 17
## 1296 7 14
## 1297 10 19
## 1298 10 19
## 1299 2 3
## 1300 2 7
## 1301 3 8
## 1302 2 6
## 1303 2 6
## 1304 2 5
## 1305 2 3
## 1306 1 5
## 1307 2 2
## 1308 2 2
## 1309 2 3
## 1310 1 2
## 1311 1 2
## 1312 2 3
## 1313 1 2
## 1314 2 3
## 1315 2 6
## 1316 2 3
## 1317 1 2
## 1318 1 3
## 1319 2 4
## 1320 2 5
## 1321 1 5
## 1322 1 2
## 1323 2 4
## 1324 1 2
## 1325 2 3
## 1326 2 2
## 1327 2 2
## 1328 2 3
## 1329 16 36
## 1330 11 20
## 1331 11 20
## 1332 5 12
## 1333 5 9
## 1334 6 20
## 1335 6 19
## 1336 7 21
## 1337 2 7
## 1338 5 9
## 1339 29 82
## 1340 29 82
## 1341 15 29
## 1342 15 29
## 1343 2 3
## 1344 1 3
## 1345 2 5
## 1346 1 2
## 1347 1 2
## 1348 1 2
## 1349 1 2
## 1350 1 4
## 1351 1 1
## 1352 2 3
## 1353 1 1
## 1354 1 2
## 1355 2 4
## 1356 1 3
## 1357 1 2
## 1358 1 4
## 1359 2 2
## 1360 2 2
## 1361 2 3
## 1362 1 1
## 1363 1 1
## 1364 1 2
## 1365 1 2
## 1366 2 3
## 1367 1 2
## 1368 1 2
## 1369 2 2
## 1370 1 1
## 1371 1 2
## 1372 1 1
## 1373 1 3
## 1374 1 1
## 1375 1 3
## 1376 1 1
## 1377 2 3
## 1378 1 2
## 1379 1 2
## 1380 1 3
## 1381 1 2
## 1382 1 2
## 1383 1 2
## 1384 1 2
## 1385 2 4
## 1386 1 1
## 1387 2 3
## 1388 1 1
## 1389 2 3
## 1390 2 2
## 1391 2 2
## 1392 1 1
## 1393 1 1
## 1394 1 1
## 1395 1 1
## 1396 1 3
## 1397 1 3
## 1398 1 1
## 1399 1 1
## 1400 1 1
## 1401 1 2
## 1402 1 1
## 1403 1 1
## 1404 1 2
## 1405 1 2
## 1406 1 1
## 1407 1 2
## 1408 1 1
## 1409 1 2
## 1410 1 1
## 1411 1 2
## 1412 1 1
## 1413 1 1
## 1414 1 1
## 1415 1 1
## 1416 1 2
## 1417 1 1
## 1418 1 1
## 1419 1 1
## 1420 1 1
## 1421 1 2
## 1422 1 1
## 1423 1 2
## 1424 1 2
## 1425 1 1
## 1426 1 1
## 1427 1 1
## 1428 1 1
## 1429 1 1
## 1430 1 1
## 1431 1 1
## 1432 1 2
## 1433 1 2
## 1434 1 2
## 1435 1 1
## 1436 1 1
## 1437 1 1
## 1438 1 1
## 1439 1 1
## 1440 1 2
## 1441 1 1
## 1442 1 1
## 1443 1 1
## 1444 1 1
## 1445 1 1
## 1446 1 1
## 1447 1 1
## 1448 1 2
## 1449 1 1
## 1450 1 1
## 1451 1 1
## 1452 1 1
## 1453 1 2
## 1454 1 2
## 1455 1 2
## 1456 1 2
## 1457 1 2
## 1458 1 1
## 1459 1 1
## 1460 1 1
## 1461 1 1
## 1462 1 2
## 1463 1 1
## 1464 1 1
## 1465 1 1
## 1466 1 1
## 1467 1 1
## 1468 1 1
## 1469 1 1
## 1470 1 2
## 1471 1 1
## 1472 1 1
## 1473 1 1
## 1474 1 1
## 1475 1 2
## 1476 1 2
## 1477 1 1
## 1478 1 1
## 1479 1 1
## 1480 1 1
## 1481 1 1
## 1482 1 1
## 1483 1 1
## 1484 1 1
## 1485 1 1
## 1486 1 1
## 1487 1 1
## 1488 1 1
## 1489 1 1
## 1490 1 1
## 1491 1 1
## 1492 1 1
## 1493 1 1
## 1494 1 1
## 1495 1 1
## 1496 1 2
## 1497 1 2
## 1498 1 1
## 1499 1 2
## 1500 1 2
## 1501 1 2
## 1502 1 2
## 1503 1 1
## 1504 1 1
## 1505 1 1
## 1506 1 1
## 1507 1 2
## 1508 1 1
## 1509 1 1
## 1510 1 1
## 1511 1 2
## 1512 1 1
## 1513 1 1
## 1514 1 1
## 1515 1 1
## 1516 1 1
## 1517 1 1
## 1518 1 2
## 1519 1 2
## 1520 1 1
## 1521 1 2
## 1522 1 2
## 1523 1 1
## 1524 1 1
## 1525 1 1
## 1526 1 1
## 1527 1 1
## 1528 1 2
## 1529 1 2
## 1530 1 2
## 1531 1 1
## 1532 1 1
## 1533 1 1
## 1534 1 1
## 1535 1 1
## 1536 1 1
## 1537 1 1
## 1538 12 25
## 1539 21 57
## 1540 4 8
## 1541 5 9
## 1542 2 9
## 1543 4 9
## 1544 4 9
## 1545 4 6
## 1546 2 4
## 1547 2 3
## 1548 4 7
## 1549 4 9
## 1550 2 9
## 1551 4 9
## 1552 50 125
## 1553 10 26
## 1554 9 20
## 1555 10 23
## 1556 10 24
## 1557 17 41
## 1558 10 26
## 1559 15 38
## 1560 4 9
## 1561 4 8
## 1562 5 10
## 1563 2 8
## 1564 5 10
## 1565 4 8
## 1566 4 13
## 1567 5 12
## 1568 4 9
## 1569 7 18
## 1570 3 4
## 1571 2 3
## 1572 2 7
## 1573 1 6
## 1574 2 3
## 1575 2 4
## 1576 3 5
## 1577 2 5
## 1578 3 4
## 1579 2 3
## 1580 2 3
## 1581 2 3
## 1582 2 3
## 1583 3 5
## 1584 12 24
## 1585 12 24
## 1586 7 24
## 1587 34 90
## 1588 25 59
## 1589 44 106
## 1590 4 13
## 1591 3 6
## 1592 4 6
## 1593 5 12
## 1594 4 4
## 1595 4 7
## 1596 2 6
## 1597 3 6
## 1598 4 7
## 1599 3 7
## 1600 4 6
## 1601 3 7
## 1602 19 52
## 1603 44 91
## 1604 4 14
## 1605 4 9
## 1606 9 23
## 1607 7 21
## 1608 9 17
## 1609 11 27
## 1610 7 15
## 1611 8 21
## 1612 22 53
## 1613 19 59
## 1614 16 31
## 1615 2 3
## 1616 2 3
## 1617 1 3
## 1618 1 3
## 1619 1 3
## 1620 2 6
## 1621 2 3
## 1622 2 3
## 1623 2 3
## 1624 2 3
## 1625 2 4
## 1626 2 2
## 1627 2 3
## 1628 2 4
## 1629 1 3
## 1630 1 3
## 1631 2 4
## 1632 2 3
## 1633 3 6
## 1634 2 4
## 1635 1 2
## 1636 2 3
## 1637 2 4
## 1638 44 92
## 1639 29 67
## 1640 29 67
## 1641 22 54
## 1642 30 63
## 1643 14 31
## 1644 3 5
## 1645 3 5
## 1646 5 9
## 1647 3 6
## 1648 2 4
## 1649 3 7
## 1650 5 8
## 1651 2 8
## 1652 3 5
## 1653 3 5
## 1654 2 5
## 1655 4 9
## 1656 1 4
## 1657 2 4
## 1658 2 4
## 1659 2 4
## 1660 3 7
## 1661 8 18
## 1662 6 13
## 1663 6 17
## 1664 5 7
## 1665 4 12
## 1666 5 6
## 1667 5 5
## 1668 5 11
## 1669 5 11
## 1670 5 5
## 1671 5 10
## 1672 24 64
## 1673 44 114
## 1674 12 34
## 1675 7 23
## 1676 46 120
## 1677 17 51
## 1678 10 14
## 1679 10 14
## 1680 11 28
## 1681 7 9
## 1682 6 9
## 1683 6 9
## 1684 6 9
## 1685 40 97
## 1686 5 9
## 1687 5 11
## 1688 55 150
## 1689 4 9
## 1690 4 14
## 1691 5 10
## 1692 3 6
## 1693 2 4
## 1694 1 3
## 1695 1 1
## 1696 1 1
## 1697 2 3
## 1698 1 3
## 1699 2 3
## 1700 1 2
## 1701 2 2
## 1702 1 3
## 1703 1 3
## 1704 2 5
## 1705 1 5
## 1706 1 2
## 1707 1 5
## 1708 1 2
## 1709 1 3
## 1710 2 3
## 1711 1 4
## 1712 2 3
## 1713 2 4
## 1714 1 5
## 1715 1 1
## 1716 1 1
## 1717 1 1
## 1718 1 1
## 1719 2 3
## 1720 1 1
## 1721 1 1
## 1722 1 3
## 1723 1 3
## 1724 1 1
## 1725 1 3
## 1726 1 2
## 1727 1 2
## 1728 2 3
## 1729 1 2
## 1730 1 4
## 1731 2 4
## 1732 1 2
## 1733 1 2
## 1734 2 4
## 1735 1 4
## 1736 2 2
## 1737 1 3
## 1738 1 2
## 1739 1 3
## 1740 1 2
## 1741 2 2
## 1742 1 2
## 1743 17 33
## 1744 3 6
## 1745 3 6
## 1746 2 4
## 1747 4 7
## 1748 3 6
## 1749 3 4
## 1750 3 6
## 1751 3 7
## 1752 2 4
## 1753 3 5
## 1754 3 5
## 1755 3 5
## 1756 3 5
## 1757 2 5
## 1758 2 5
## 1759 3 8
## 1760 2 3
## 1761 23 56
## 1762 6 15
## 1763 8 21
## 1764 40 94
## 1765 185 486
## 1766 6 16
## 1767 6 16
## 1768 80 200
## 1769 14 30
## 1770 15 35
## 1771 27 74
## 1772 3 11
## 1773 7 24
## 1774 6 9
## 1775 71 163
## 1776 8 23
## 1777 4 9
## 1778 4 11
## 1779 4 10
## 1780 4 10
## 1781 5 13
## 1782 11 29
## 1783 11 29
## 1784 11 29
## 1785 55 142
## 1786 2 3
## 1787 3 10
## 1788 3 6
## 1789 3 10
## 1790 3 3
## 1791 2 5
## 1792 2 5
## 1793 3 6
## 1794 7 13
## 1795 6 10
## 1796 6 12
## 1797 6 10
## 1798 94 219
## 1799 39 95
## 1800 5 14
## 1801 6 17
## 1802 4 12
## 1803 5 9
## 1804 1 1
## 1805 1 1
## 1806 2 5
## 1807 2 4
## 1808 2 3
## 1809 2 2
## 1810 1 4
## 1811 2 3
## 1812 3 4
## 1813 2 2
## 1814 1 5
## 1815 2 3
## 1816 3 5
## 1817 2 5
## 1818 2 2
## 1819 2 5
## 1820 2 4
## 1821 2 4
## 1822 2 4
## 1823 11 32
## 1824 5 15
## 1825 5 15
## 1826 5 15
## 1827 7 17
## 1828 4 7
## 1829 3 6
## 1830 3 8
## 1831 4 14
## 1832 4 6
## 1833 11 24
## 1834 4 12
## 1835 4 12
## 1836 8 18
## 1837 7 14
## 1838 1 1
## 1839 1 3
## 1840 1 2
## 1841 1 1
## 1842 1 1
## 1843 1 1
## 1844 1 3
## 1845 1 1
## 1846 1 2
## 1847 1 3
## 1848 1 1
## 1849 1 2
## 1850 1 2
## 1851 1 2
## 1852 1 2
## 1853 1 2
## 1854 1 1
## 1855 1 2
## 1856 1 2
## 1857 1 1
## 1858 1 3
## 1859 1 2
## 1860 1 1
## 1861 1 2
## 1862 1 2
## 1863 1 2
## 1864 1 1
## 1865 1 1
## 1866 1 1
## 1867 1 2
## 1868 1 2
## 1869 1 2
## 1870 1 2
## 1871 1 1
## 1872 1 1
## 1873 1 1
## 1874 1 1
## 1875 1 1
## 1876 1 1
## 1877 1 1
## 1878 1 1
## 1879 1 1
## 1880 1 2
## 1881 1 3
## 1882 1 1
## 1883 1 1
## 1884 1 1
## 1885 1 1
## 1886 1 1
## 1887 1 1
## 1888 1 2
## 1889 1 1
## 1890 1 1
## 1891 1 1
## 1892 1 2
## 1893 1 3
## 1894 1 3
## 1895 1 1
## 1896 1 2
## 1897 1 2
## 1898 1 1
## 1899 1 2
## 1900 1 3
## 1901 1 3
## 1902 1 1
## 1903 1 1
## 1904 1 1
## 1905 1 1
## 1906 1 1
## 1907 1 1
## 1908 1 2
## 1909 1 1
## 1910 1 1
## 1911 1 2
## 1912 1 1
## 1913 1 2
## 1914 1 2
## 1915 1 1
## 1916 1 1
## 1917 1 1
## 1918 1 1
## 1919 1 2
## 1920 1 2
## 1921 1 2
## 1922 1 1
## 1923 1 2
## 1924 1 2
## 1925 1 1
## 1926 1 1
## 1927 1 1
## 1928 1 1
## 1929 1 1
## 1930 1 1
## 1931 1 1
## 1932 1 1
## 1933 1 1
## 1934 1 1
## 1935 1 1
## 1936 1 1
## 1937 1 1
## 1938 1 2
## 1939 1 1
## 1940 1 1
## 1941 1 2
## 1942 1 1
## 1943 1 2
## 1944 1 1
## 1945 1 1
## 1946 1 1
## 1947 1 1
## 1948 1 1
## 1949 1 1
## 1950 1 1
## 1951 1 2
## 1952 1 1
## 1953 1 1
## 1954 1 2
## 1955 9 24
## 1956 2 7
## 1957 4 4
## 1958 2 9
## 1959 3 6
## 1960 3 6
## 1961 2 6
## 1962 2 7
## 1963 3 9
## 1964 3 8
## 1965 3 7
## 1966 3 3
## 1967 3 7
## 1968 2 4
## 1969 32 86
## 1970 4 11
## 1971 4 11
## 1972 5 10
## 1973 10 31
## 1974 10 31
## 1975 6 26
## 1976 61 139
## 1977 55 123
## 1978 55 123
## 1979 6 14
## 1980 7 16
## 1981 8 23
## 1982 9 17
## 1983 5 19
## 1984 4 8
## 1985 4 8
## 1986 3 5
## 1987 2 7
## 1988 2 2
## 1989 2 7
## 1990 4 7
## 1991 3 7
## 1992 9 19
## 1993 9 24
## 1994 22 49
## 1995 46 118
## 1996 50 129
## 1997 21 48
## 1998 21 48
## 1999 1 2
## 2000 1 2
## 2001 1 1
## 2002 1 1
## 2003 2 6
## 2004 1 5
## 2005 1 1
## 2006 1 2
## 2007 1 1
## 2008 1 3
## 2009 1 2
## 2010 1 5
## 2011 2 2
## 2012 1 1
## 2013 1 1
## 2014 2 4
## 2015 1 2
## 2016 1 4
## 2017 2 2
## 2018 1 5
## 2019 1 1
## 2020 1 5
## 2021 2 2
## 2022 2 5
## 2023 1 5
## 2024 1 2
## 2025 1 2
## 2026 1 3
## 2027 1 3
## 2028 1 4
## 2029 1 3
## 2030 1 3
## 2031 1 3
## 2032 2 3
## 2033 1 2
## 2034 1 2
## 2035 10 30
## 2036 6 16
## 2037 5 11
## 2038 8 17
## 2039 3 13
## 2040 6 15
## 2041 6 15
## 2042 4 9
## 2043 5 15
## 2044 5 15
## 2045 4 10
## 2046 4 10
## 2047 4 10
## 2048 38 94
## 2049 23 51
## 2050 7 21
## 2051 8 19
## 2052 15 36
## 2053 6 11
## 2054 3 7
## 2055 3 6
## 2056 2 4
## 2057 3 5
## 2058 3 6
## 2059 2 7
## 2060 2 5
## 2061 2 3
## 2062 1 1
## 2063 1 2
## 2064 2 6
## 2065 1 1
## 2066 3 5
## 2067 2 7
## 2068 3 6
## 2069 2 5
## 2070 3 5
## 2071 1 4
## 2072 1 1
## 2073 1 2
## 2074 3 4
## 2075 1 5
## 2076 1 1
## 2077 1 1
## 2078 1 1
## 2079 1 1
## 2080 1 2
## 2081 1 2
## 2082 1 1
## 2083 1 1
## 2084 1 1
## 2085 4 10
## 2086 32 73
## 2087 23 57
## 2088 8 14
## 2089 40 113
## 2090 14 31
## 2091 4 8
## 2092 7 15
## 2093 4 5
## 2094 3 5
## 2095 4 6
## 2096 2 6
## 2097 2 6
## 2098 3 4
## 2099 3 6
## 2100 4 8
## 2101 4 6
## 2102 3 4
## 2103 3 8
## 2104 9 28
## 2105 18 46
## 2106 16 39
## 2107 16 39
## 2108 16 39
## 2109 16 39
## 2110 16 39
## 2111 10 28
## 2112 6 11
## 2113 3 9
## 2114 4 9
## 2115 4 10
## 2116 3 9
## 2117 2 5
## 2118 3 12
## 2119 76 188
## 2120 15 32
## 2121 10 27
## 2122 11 28
## 2123 25 76
## 2124 4 9
## 2125 4 4
## 2126 4 16
## 2127 5 11
## 2128 11 30
## 2129 11 25
## 2130 7 18
## 2131 3 6
## 2132 5 8
## 2133 5 12
## 2134 5 12
## 2135 5 12
## 2136 3 6
## 2137 5 12
## 2138 5 12
## 2139 4 9
## 2140 5 12
## 2141 16 26
## 2142 49 126
## 2143 11 33
## 2144 4 11
## 2145 3 13
## 2146 6 13
## 2147 133 353
## 2148 13 38
## 2149 4 13
## 2150 4 13
## 2151 12 24
## 2152 2 2
## 2153 2 2
## 2154 2 2
## 2155 1 2
## 2156 2 5
## 2157 1 3
## 2158 2 3
## 2159 2 4
## 2160 1 2
## 2161 2 6
## 2162 2 2
## 2163 1 3
## 2164 1 3
## 2165 1 3
## 2166 1 3
## 2167 1 1
## 2168 1 3
## 2169 1 4
## 2170 1 2
## 2171 1 1
## 2172 1 4
## 2173 1 2
## 2174 2 6
## 2175 1 4
## 2176 1 2
## 2177 1 2
## 2178 1 4
## 2179 1 4
## 2180 2 4
## 2181 2 3
## 2182 2 4
## 2183 1 1
## 2184 1 5
## 2185 1 4
## 2186 1 2
## 2187 1 3
## 2188 1 3
## 2189 2 2
## 2190 2 3
## 2191 1 1
## 2192 2 5
## 2193 2 3
## 2194 1 3
## 2195 1 4
## 2196 2 3
## 2197 2 3
## 2198 2 3
## 2199 2 7
## 2200 2 7
## 2201 2 6
## 2202 1 2
## 2203 1 2
## 2204 1 6
## 2205 1 6
## 2206 1 5
## 2207 2 3
## 2208 2 2
## 2209 1 5
## 2210 1 2
## 2211 7 20
## 2212 15 36
## 2213 4 10
## 2214 3 6
## 2215 4 10
## 2216 3 8
## 2217 3 5
## 2218 4 10
## 2219 3 6
## 2220 30 82
## 2221 18 48
## 2222 4 10
## 2223 3 7
## 2224 4 13
## 2225 2 9
## 2226 2 7
## 2227 3 7
## 2228 4 9
## 2229 3 4
## 2230 3 5
## 2231 3 7
## 2232 17 40
## 2233 17 40
## 2234 1 2
## 2235 1 2
## 2236 1 3
## 2237 1 1
## 2238 1 1
## 2239 1 1
## 2240 1 1
## 2241 1 1
## 2242 1 1
## 2243 1 3
## 2244 1 3
## 2245 1 2
## 2246 1 3
## 2247 1 2
## 2248 1 1
## 2249 1 2
## 2250 1 2
## 2251 1 3
## 2252 1 2
## 2253 1 2
## 2254 1 2
## 2255 1 2
## 2256 1 2
## 2257 1 1
## 2258 1 2
## 2259 1 2
## 2260 1 1
## 2261 1 2
## 2262 1 2
## 2263 1 2
## 2264 1 2
## 2265 1 3
## 2266 1 1
## 2267 1 4
## 2268 1 1
## 2269 1 1
## 2270 1 1
## 2271 1 1
## 2272 1 1
## 2273 1 1
## 2274 1 2
## 2275 1 1
## 2276 1 3
## 2277 1 3
## 2278 1 1
## 2279 1 2
## 2280 1 4
## 2281 1 2
## 2282 1 2
## 2283 1 1
## 2284 1 1
## 2285 1 1
## 2286 1 1
## 2287 1 2
## 2288 1 1
## 2289 1 2
## 2290 1 1
## 2291 1 3
## 2292 1 1
## 2293 1 3
## 2294 1 2
## 2295 1 1
## 2296 1 1
## 2297 1 1
## 2298 1 2
## 2299 1 2
## 2300 1 1
## 2301 1 1
## 2302 1 1
## 2303 1 1
## 2304 1 2
## 2305 1 2
## 2306 1 2
## 2307 1 2
## 2308 1 1
## 2309 1 1
## 2310 1 1
## 2311 1 3
## 2312 1 3
## 2313 1 1
## 2314 1 1
## 2315 1 1
## 2316 1 1
## 2317 1 2
## 2318 1 1
## 2319 1 2
## 2320 1 2
## 2321 1 1
## 2322 1 1
## 2323 1 2
## 2324 1 2
## 2325 1 1
## 2326 1 1
## 2327 1 1
## 2328 1 1
## 2329 1 1
## 2330 1 1
## 2331 1 1
## 2332 1 1
## 2333 1 1
## 2334 1 2
## 2335 1 2
## 2336 1 2
## 2337 1 2
## 2338 1 1
## 2339 1 1
## 2340 1 3
## 2341 1 2
## 2342 1 2
## 2343 1 2
## 2344 1 2
## 2345 1 2
## 2346 1 2
## 2347 1 3
## 2348 1 3
## 2349 1 1
## 2350 1 2
## 2351 1 2
## 2352 1 1
## 2353 1 1
## 2354 1 2
## 2355 1 1
## 2356 1 1
## 2357 11 34
## 2358 4 14
## 2359 5 12
## 2360 4 7
## 2361 4 7
## 2362 5 6
## 2363 5 8
## 2364 9 26
## 2365 8 22
## 2366 5 11
## 2367 4 9
## 2368 4 9
## 2369 4 9
## 2370 4 11
## 2371 7 16
## 2372 3 11
## 2373 11 21
## 2374 6 30
## 2375 10 21
## 2376 28 86
## 2377 28 86
## 2378 5 12
## 2379 58 131
## 2380 88 211
## 2381 88 211
## 2382 17 41
## 2383 13 29
## 2384 13 29
## 2385 30 72
## 2386 10 31
## 2387 8 23
## 2388 6 14
## 2389 5 16
## 2390 14 33
## 2391 9 25
## 2392 14 34
## 2393 22 53
## 2394 5 8
## 2395 2 7
## 2396 3 6
## 2397 2 6
## 2398 3 11
## 2399 2 5
## 2400 3 6
## 2401 3 9
## 2402 2 7
## 2403 3 8
## 2404 3 8
## 2405 5 13
## 2406 4 13
## 2407 4 12
## 2408 14 29
## 2409 5 20
## 2410 3 5
## 2411 2 2
## 2412 2 3
## 2413 2 4
## 2414 3 6
## 2415 1 3
## 2416 2 3
## 2417 2 3
## 2418 2 3
## 2419 2 3
## 2420 2 4
## 2421 3 3
## 2422 2 3
## 2423 2 4
## 2424 2 2
## 2425 2 3
## 2426 2 7
## 2427 5 10
## 2428 4 14
## 2429 5 16
## 2430 5 8
## 2431 5 8
## 2432 5 16
## 2433 5 10
## 2434 4 16
## 2435 6 11
## 2436 6 14
## 2437 7 21
## 2438 18 36
## 2439 2 5
## 2440 1 3
## 2441 2 7
## 2442 1 3
## 2443 1 1
## 2444 1 3
## 2445 2 6
## 2446 2 3
## 2447 1 2
## 2448 1 4
## 2449 2 4
## 2450 2 3
## 2451 1 5
## 2452 2 2
## 2453 1 1
## 2454 1 5
## 2455 1 5
## 2456 1 5
## 2457 1 5
## 2458 2 6
## 2459 2 4
## 2460 1 5
## 2461 1 1
## 2462 2 4
## 2463 2 3
## 2464 1 1
## 2465 1 1
## 2466 1 4
## 2467 2 8
## 2468 1 2
## 2469 1 5
## 2470 2 4
## 2471 1 3
## 2472 1 5
## 2473 1 1
## 2474 2 3
## 2475 1 2
## 2476 1 1
## 2477 1 2
## 2478 1 1
## 2479 1 1
## 2480 1 1
## 2481 2 3
## 2482 1 1
## 2483 1 1
## 2484 1 1
## 2485 1 1
## 2486 1 1
## 2487 1 1
## 2488 1 1
## 2489 1 1
## 2490 1 1
## 2491 1 1
## 2492 1 1
## 2493 1 3
## 2494 1 1
## 2495 1 1
## 2496 1 1
## 2497 1 1
## 2498 1 1
## 2499 1 1
## 2500 1 4
## 2501 10 30
## 2502 97 240
## 2503 21 55
## 2504 11 32
## 2505 12 34
## 2506 8 20
## 2507 8 19
## 2508 27 68
## 2509 8 17
## 2510 9 18
## 2511 10 23
## 2512 13 40
## 2513 18 45
## 2514 18 45
## 2515 399 1129
## 2516 11 41
## 2517 26 72
## 2518 14 28
## 2519 8 22
## 2520 14 28
## 2521 42 95
## 2522 27 70
## 2523 3 9
## 2524 3 10
## 2525 3 9
## 2526 5 10
## 2527 184 489
## 2528 5 15
## 2529 6 15
## 2530 4 11
## 2531 20 52
## 2532 5 12
## 2533 4 10
## 2534 3 8
## 2535 3 8
## 2536 2 6
## 2537 5 13
## 2538 3 7
## 2539 4 8
## 2540 2 7
## 2541 2 6
## 2542 11 31
## 2543 8 20
## 2544 6 24
## 2545 89 255
## 2546 3 10
## 2547 2 2
## 2548 3 10
## 2549 3 10
## 2550 3 6
## 2551 3 5
## 2552 4 9
## 2553 13 40
## 2554 10 24
## 2555 9 19
## 2556 1 2
## 2557 1 3
## 2558 1 3
## 2559 1 1
## 2560 1 1
## 2561 1 2
## 2562 1 1
## 2563 1 1
## 2564 1 1
## 2565 1 1
## 2566 1 2
## 2567 1 2
## 2568 1 4
## 2569 1 2
## 2570 1 3
## 2571 1 1
## 2572 1 2
## 2573 1 2
## 2574 1 2
## 2575 1 2
## 2576 1 2
## 2577 1 2
## 2578 1 4
## 2579 1 4
## 2580 1 3
## 2581 1 1
## 2582 1 4
## 2583 1 1
## 2584 1 1
## 2585 1 2
## 2586 1 1
## 2587 1 1
## 2588 1 2
## 2589 1 2
## 2590 1 2
## 2591 1 2
## 2592 1 3
## 2593 1 1
## 2594 1 2
## 2595 1 1
## 2596 1 2
## 2597 1 1
## 2598 1 1
## 2599 1 1
## 2600 1 3
## 2601 1 1
## 2602 1 2
## 2603 1 3
## 2604 1 2
## 2605 1 1
## 2606 1 2
## 2607 1 5
## 2608 1 1
## 2609 1 1
## 2610 1 1
## 2611 1 1
## 2612 1 2
## 2613 1 4
## 2614 1 4
## 2615 1 2
## 2616 1 1
## 2617 1 1
## 2618 1 1
## 2619 1 1
## 2620 1 1
## 2621 1 1
## 2622 1 2
## 2623 1 2
## 2624 1 1
## 2625 1 2
## 2626 1 1
## 2627 1 1
## 2628 1 1
## 2629 1 1
## 2630 1 2
## 2631 1 2
## 2632 1 4
## 2633 1 1
## 2634 1 1
## 2635 1 3
## 2636 1 1
## 2637 1 1
## 2638 1 2
## 2639 1 2
## 2640 1 1
## 2641 1 1
## 2642 1 4
## 2643 1 3
## 2644 1 1
## 2645 1 1
## 2646 1 3
## 2647 1 1
## 2648 1 1
## 2649 1 2
## 2650 1 2
## 2651 1 3
## 2652 1 2
## 2653 13 33
## 2654 3 8
## 2655 2 5
## 2656 3 8
## 2657 3 7
## 2658 2 4
## 2659 2 8
## 2660 2 4
## 2661 1 3
## 2662 1 8
## 2663 9 21
## 2664 184 477
## 2665 26 56
## 2666 24 49
## 2667 18 48
## 2668 18 48
## 2669 5 14
## 2670 4 14
## 2671 4 15
## 2672 7 16
## 2673 6 12
## 2674 6 17
## 2675 6 22
## 2676 4 10
## 2677 3 9
## 2678 9 21
## 2679 3 11
## 2680 4 7
## 2681 4 12
## 2682 5 13
## 2683 3 10
## 2684 5 19
## 2685 9 19
## 2686 1 5
## 2687 1 1
## 2688 1 4
## 2689 2 2
## 2690 1 1
## 2691 1 1
## 2692 1 6
## 2693 1 6
## 2694 1 6
## 2695 1 6
## 2696 2 2
## 2697 1 3
## 2698 1 7
## 2699 2 3
## 2700 2 3
## 2701 2 3
## 2702 1 3
## 2703 2 4
## 2704 1 3
## 2705 2 3
## 2706 2 3
## 2707 2 2
## 2708 2 2
## 2709 1 4
## 2710 1 5
## 2711 2 4
## 2712 1 2
## 2713 1 2
## 2714 1 3
## 2715 2 5
## 2716 1 3
## 2717 1 2
## 2718 1 2
## 2719 2 16
## 2720 3 5
## 2721 3 9
## 2722 9 29
## 2723 10 25
## 2724 12 37
## 2725 12 36
## 2726 48 147
## 2727 15 28
## 2728 3 8
## 2729 3 7
## 2730 3 6
## 2731 3 9
## 2732 3 6
## 2733 38 103
## 2734 13 25
## 2735 15 37
## 2736 15 39
## 2737 7 20
## 2738 9 25
## 2739 5 14
## 2740 8 26
## 2741 2 7
## 2742 1 8
## 2743 1 3
## 2744 2 6
## 2745 2 4
## 2746 2 9
## 2747 2 8
## 2748 3 7
## 2749 2 5
## 2750 1 8
## 2751 2 3
## 2752 3 7
## 2753 3 10
## 2754 3 9
## 2755 2 4
## 2756 5 18
## 2757 5 13
## 2758 5 13
## 2759 4 17
## 2760 5 10
## 2761 5 13
## 2762 5 10
## 2763 25 54
## 2764 25 54
## 2765 27 76
## 2766 14 30
## 2767 4 16
## 2768 2 7
## 2769 195 520
## 2770 36 85
## 2771 28 79
## 2772 12 28
## 2773 13 32
## 2774 39 95
## 2775 2 7
## 2776 2 5
## 2777 3 8
## 2778 32 99
## 2779 9 24
## 2780 9 24
## 2781 6 23
## 2782 4 16
## 2783 5 11
## 2784 10 30
## 2785 5 15
## 2786 6 16
## 2787 6 16
## 2788 3 9
## 2789 4 11
## 2790 3 11
## 2791 3 9
## 2792 3 9
## 2793 3 13
## 2794 3 5
## 2795 3 7
## 2796 3 11
## 2797 4 9
## 2798 3 8
## 2799 3 13
## 2800 2 6
## 2801 1 5
## 2802 3 9
## 2803 1 1
## 2804 1 1
## 2805 1 1
## 2806 1 4
## 2807 1 2
## 2808 1 2
## 2809 1 3
## 2810 1 3
## 2811 1 1
## 2812 1 4
## 2813 1 1
## 2814 1 1
## 2815 1 2
## 2816 1 1
## 2817 1 1
## 2818 1 1
## 2819 1 1
## 2820 1 1
## 2821 1 1
## 2822 1 3
## 2823 1 2
## 2824 1 3
## 2825 1 1
## 2826 1 1
## 2827 1 1
## 2828 1 3
## 2829 1 2
## 2830 1 2
## 2831 1 3
## 2832 1 3
## 2833 1 4
## 2834 1 1
## 2835 1 4
## 2836 1 1
## 2837 1 2
## 2838 1 4
## 2839 1 1
## 2840 1 5
## 2841 1 2
## 2842 1 3
## 2843 1 1
## 2844 1 1
## 2845 1 3
## 2846 1 4
## 2847 1 1
## 2848 1 2
## 2849 1 3
## 2850 1 2
## 2851 1 2
## 2852 1 2
## 2853 1 2
## 2854 1 2
## 2855 1 1
## 2856 1 1
## 2857 1 6
## 2858 1 4
## 2859 1 2
## 2860 1 1
## 2861 1 3
## 2862 1 2
## 2863 1 3
## 2864 1 3
## 2865 1 4
## 2866 1 1
## 2867 1 1
## 2868 1 2
## 2869 1 1
## 2870 1 1
## 2871 1 1
## 2872 1 1
## 2873 1 1
## 2874 1 4
## 2875 1 3
## 2876 1 3
## 2877 1 4
## 2878 1 1
## 2879 1 2
## 2880 1 2
## 2881 1 2
## 2882 1 1
## 2883 1 2
## 2884 1 2
## 2885 1 2
## 2886 1 1
## 2887 1 1
## 2888 1 2
## 2889 1 1
## 2890 1 1
## 2891 1 1
## 2892 1 2
## 2893 1 2
## 2894 1 1
## 2895 1 1
## 2896 1 1
## 2897 14 38
## 2898 2 5
## 2899 1 4
## 2900 2 7
## 2901 1 3
## 2902 2 2
## 2903 1 2
## 2904 2 7
## 2905 2 7
## 2906 1 4
## 2907 2 4
## 2908 2 3
## 2909 1 2
## 2910 2 5
## 2911 2 5
## 2912 1 5
## 2913 1 4
## 2914 1 3
## 2915 1 3
## 2916 1 4
## 2917 1 4
## 2918 1 4
## 2919 2 4
## 2920 1 3
## 2921 1 5
## 2922 2 5
## 2923 1 3
## 2924 1 2
## 2925 1 2
## 2926 2 5
## 2927 1 4
## 2928 1 4
## 2929 25 63
## 2930 6 18
## 2931 6 18
## 2932 4 13
## 2933 21 45
## 2934 3 10
## 2935 8 21
## 2936 8 21
## 2937 1 2
## 2938 1 6
## 2939 2 5
## 2940 2 9
## 2941 3 5
## 2942 3 11
## 2943 2 5
## 2944 2 9
## 2945 2 6
## 2946 2 6
## 2947 6 20
## 2948 6 20
## 2949 4 6
## 2950 3 13
## 2951 3 12
## 2952 2 8
## 2953 16 44
## 2954 13 42
## 2955 17 48
## 2956 6 13
## 2957 26 75
## 2958 19 47
## 2959 5 11
## 2960 5 19
## 2961 3 16
## 2962 5 16
## 2963 3 13
## 2964 3 13
## 2965 3 10
## 2966 3 11
## 2967 2 8
## 2968 2 4
## 2969 10 28
## 2970 14 36
## 2971 7 22
## 2972 13 42
## 2973 6 15
## 2974 16 52
## 2975 64 155
## 2976 2 8
## 2977 2 8
## 2978 2 8
## 2979 2 8
## 2980 1 7
## 2981 1 5
## 2982 2 5
## 2983 2 7
## 2984 2 3
## 2985 1 5
## 2986 2 8
## 2987 2 3
## 2988 2 8
## 2989 2 8
## 2990 2 7
## 2991 2 7
## 2992 2 7
## 2993 1 5
## 2994 1 7
## 2995 2 3
## 2996 2 3
## 2997 1 6
## 2998 1 6
## 2999 1 5
## 3000 1 5
## 3001 1 5
## 3002 1 2
## 3003 2 4
## 3004 1 6
## 3005 2 4
## 3006 1 4
## 3007 1 4
## 3008 1 3
## 3009 2 6
## 3010 1 5
## 3011 1 5
## 3012 2 3
## 3013 123 337
## 3014 3 9
## 3015 3 10
## 3016 2 10
## 3017 4 15
## 3018 3 10
## 3019 4 10
## 3020 4 11
## 3021 6 19
## 3022 6 16
## 3023 25 66
## 3024 3 9
## 3025 2 7
## 3026 2 6
## 3027 2 7
## 3028 1 5
## 3029 2 5
## 3030 2 5
## 3031 2 5
## 3032 2 5
## 3033 3 7
## 3034 12 32
## 3035 9 20
## 3036 9 26
## 3037 68 162
## 3038 3 8
## 3039 4 17
## 3040 8 25
## 3041 1 1
## 3042 1 1
## 3043 1 2
## 3044 1 3
## 3045 1 4
## 3046 1 1
## 3047 1 1
## 3048 1 2
## 3049 1 1
## 3050 1 2
## 3051 1 4
## 3052 1 3
## 3053 1 3
## 3054 1 5
## 3055 1 2
## 3056 1 3
## 3057 1 8
## 3058 1 2
## 3059 1 3
## 3060 1 1
## 3061 1 2
## 3062 1 2
## 3063 1 2
## 3064 1 1
## 3065 1 1
## 3066 1 3
## 3067 1 3
## 3068 1 1
## 3069 1 1
## 3070 1 2
## 3071 1 2
## 3072 1 2
## 3073 1 5
## 3074 1 3
## 3075 1 2
## 3076 1 1
## 3077 1 2
## 3078 1 1
## 3079 1 1
## 3080 1 3
## 3081 1 2
## 3082 1 2
## 3083 1 2
## 3084 1 2
## 3085 1 3
## 3086 1 3
## 3087 1 2
## 3088 1 2
## 3089 1 2
## 3090 1 8
## 3091 1 3
## 3092 1 4
## 3093 1 1
## 3094 1 2
## 3095 1 3
## 3096 1 3
## 3097 1 1
## 3098 1 1
## 3099 1 2
## 3100 1 1
## 3101 1 3
## 3102 1 2
## 3103 1 3
## 3104 1 1
## 3105 1 1
## 3106 1 2
## 3107 1 2
## 3108 1 2
## 3109 1 2
## 3110 1 2
## 3111 1 2
## 3112 1 2
## 3113 1 3
## 3114 7 15
## 3115 6 15
## 3116 7 23
## 3117 7 17
## 3118 2 8
## 3119 4 13
## 3120 3 9
## 3121 2 10
## 3122 2 10
## 3123 3 11
## 3124 25 72
## 3125 6 17
## 3126 10 27
## 3127 28 65
## 3128 18 54
## 3129 10 22
## 3130 8 27
## 3131 5 11
## 3132 4 14
## 3133 6 15
## 3134 3 13
## 3135 6 13
## 3136 3 11
## 3137 2 7
## 3138 3 9
## 3139 23 63
## 3140 7 16
## 3141 119 327
## 3142 10 30
## 3143 1 5
## 3144 2 5
## 3145 2 7
## 3146 2 3
## 3147 2 6
## 3148 2 5
## 3149 2 6
## 3150 2 6
## 3151 2 3
## 3152 1 7
## 3153 1 7
## 3154 2 3
## 3155 2 6
## 3156 2 5
## 3157 2 7
## 3158 2 6
## 3159 1 2
## 3160 1 2
## 3161 2 8
## 3162 2 8
## 3163 134 375
## 3164 2 6
## 3165 3 8
## 3166 1 1
## 3167 2 8
## 3168 2 5
## 3169 1 1
## 3170 3 8
## 3171 2 7
## 3172 2 6
## 3173 1 1
## 3174 2 8
## 3175 2 7
## 3176 2 8
## 3177 2 6
## 3178 1 1
## 3179 2 3
## 3180 2 6
## 3181 2 3
## 3182 1 6
## 3183 3 8
## 3184 9 25
## 3185 37 110
## 3186 7 11
## 3187 3 12
## 3188 5 17
## 3189 4 15
## 3190 4 17
## 3191 5 17
## 3192 6 16
## 3193 4 15
## 3194 4 17
## 3195 3 12
## 3196 5 14
## 3197 5 17
## 3198 5 14
## 3199 2 12
## 3200 2 11
## 3201 3 10
## 3202 7 21
## 3203 124 322
## 3204 6 18
## 3205 17 43
## 3206 19 54
## 3207 51 133
## 3208 126 346
## 3209 7 20
## 3210 11 36
## 3211 93 255
## 3212 4 9
## 3213 4 12
## 3214 3 14
## 3215 3 8
## 3216 3 8
## 3217 3 13
## 3218 5 18
## 3219 5 18
## 3220 9 26
## 3221 35 93
## 3222 23 58
## 3223 10 24
## 3224 1 4
## 3225 1 1
## 3226 1 1
## 3227 1 2
## 3228 1 3
## 3229 1 2
## 3230 1 3
## 3231 1 7
## 3232 1 3
## 3233 1 2
## 3234 1 5
## 3235 1 4
## 3236 1 3
## 3237 1 3
## 3238 1 3
## 3239 1 2
## 3240 1 3
## 3241 1 3
## 3242 1 3
## 3243 1 3
## 3244 1 3
## 3245 1 4
## 3246 1 4
## 3247 1 3
## 3248 1 2
## 3249 1 1
## 3250 1 1
## 3251 1 5
## 3252 1 2
## 3253 1 7
## 3254 1 4
## 3255 1 2
## 3256 1 3
## 3257 1 4
## 3258 1 3
## 3259 1 3
## 3260 1 3
## 3261 1 1
## 3262 1 3
## 3263 1 3
## 3264 1 2
## 3265 1 2
## 3266 1 1
## 3267 1 4
## 3268 1 3
## 3269 1 1
## 3270 1 2
## 3271 1 4
## 3272 1 4
## 3273 1 5
## 3274 1 3
## 3275 1 1
## 3276 1 5
## 3277 1 3
## 3278 1 3
## 3279 1 1
## 3280 1 1
## 3281 1 5
## 3282 1 2
## 3283 1 2
## 3284 1 3
## 3285 1 3
## 3286 1 1
## 3287 1 1
## 3288 5 20
## 3289 4 16
## 3290 19 66
## 3291 6 20
## 3292 10 33
## 3293 4 16
## 3294 3 13
## 3295 4 16
## 3296 5 19
## 3297 3 12
## 3298 41 101
## 3299 6 18
## 3300 6 17
## 3301 6 23
## 3302 3 8
## 3303 3 5
## 3304 2 4
## 3305 3 8
## 3306 1 5
## 3307 2 10
## 3308 1 4
## 3309 2 8
## 3310 2 11
## 3311 2 6
## 3312 2 6
## 3313 3 7
## 3314 3 5
## 3315 2 4
## 3316 11 37
## 3317 38 118
## 3318 11 25
## 3319 1 4
## 3320 2 3
## 3321 1 8
## 3322 2 7
## 3323 1 4
## 3324 2 7
## 3325 2 6
## 3326 1 7
## 3327 1 6
## 3328 1 3
## 3329 1 3
## 3330 2 7
## 3331 2 5
## 3332 2 10
## 3333 3 11
## 3334 3 7
## 3335 2 8
## 3336 2 8
## 3337 2 8
## 3338 2 8
## 3339 3 8
## 3340 3 7
## 3341 59 145
## 3342 16 46
## 3343 13 32
## 3344 5 12
## 3345 4 12
## 3346 5 15
## 3347 11 46
## 3348 11 46
## 3349 4 10
## 3350 2 10
## 3351 4 13
## 3352 4 15
## 3353 2 10
## 3354 2 19
## 3355 4 16
## 3356 3 10
## 3357 3 7
## 3358 3 10
## 3359 5 14
## 3360 8 27
## 3361 11 31
## 3362 9 34
## 3363 11 31
## 3364 8 21
## 3365 5 12
## 3366 4 13
## 3367 8 27
## 3368 12 39
## 3369 5 17
## 3370 68 183
## 3371 10 26
## 3372 2 10
## 3373 3 11
## 3374 2 6
## 3375 1 5
## 3376 2 6
## 3377 2 8
## 3378 2 11
## 3379 21 60
## 3380 4 8
## 3381 4 13
## 3382 27 74
## 3383 22 65
## 3384 4 14
## 3385 5 21
## 3386 57 155
## 3387 1 2
## 3388 1 4
## 3389 1 8
## 3390 1 3
## 3391 1 8
## 3392 1 2
## 3393 1 3
## 3394 1 3
## 3395 1 2
## 3396 1 5
## 3397 1 6
## 3398 1 4
## 3399 1 3
## 3400 1 3
## 3401 1 2
## 3402 1 2
## 3403 1 6
## 3404 1 4
## 3405 1 4
## 3406 1 3
## 3407 1 4
## 3408 1 3
## 3409 1 4
## 3410 1 3
## 3411 1 3
## 3412 1 6
## 3413 1 4
## 3414 1 3
## 3415 1 1
## 3416 1 6
## 3417 1 5
## 3418 1 3
## 3419 1 3
## 3420 1 3
## 3421 1 8
## 3422 1 3
## 3423 1 1
## 3424 1 1
## 3425 1 1
## 3426 1 2
## 3427 1 6
## 3428 1 4
## 3429 1 3
## 3430 1 4
## 3431 1 4
## 3432 1 5
## 3433 1 4
## 3434 1 4
## 3435 1 4
## 3436 1 3
## 3437 1 2
## 3438 1 3
## 3439 1 3
## 3440 1 3
## 3441 51 126
## 3442 9 22
## 3443 12 45
## 3444 3 15
## 3445 2 4
## 3446 3 9
## 3447 6 28
## 3448 10 27
## 3449 1 7
## 3450 1 5
## 3451 1 5
## 3452 2 6
## 3453 1 3
## 3454 2 3
## 3455 1 4
## 3456 2 6
## 3457 1 3
## 3458 2 8
## 3459 2 5
## 3460 2 5
## 3461 2 6
## 3462 2 10
## 3463 2 5
## 3464 1 4
## 3465 1 3
## 3466 1 3
## 3467 1 4
## 3468 2 9
## 3469 2 10
## 3470 2 3
## 3471 2 10
## 3472 1 5
## 3473 2 6
## 3474 1 3
## 3475 1 9
## 3476 6 16
## 3477 4 13
## 3478 11 39
## 3479 21 62
## 3480 5 17
## 3481 4 12
## 3482 18 45
## 3483 10 31
## 3484 6 20
## 3485 46 128
## 3486 170 452
## 3487 311 880
## 3488 6 23
## 3489 131 356
## 3490 3 14
## 3491 14 44
## 3492 14 34
## 3493 8 27
## 3494 49 120
## 3495 11 37
## 3496 3 12
## 3497 2 13
## 3498 4 7
## 3499 3 14
## 3500 4 7
## 3501 3 9
## 3502 4 14
## 3503 29 78
## 3504 2 8
## 3505 3 6
## 3506 1 8
## 3507 1 8
## 3508 3 6
## 3509 3 5
## 3510 11 36
## 3511 9 22
## 3512 3 12
## 3513 3 9
## 3514 2 8
## 3515 3 10
## 3516 5 19
## 3517 12 32
## 3518 49 121
## 3519 4 14
## 3520 3 7
## 3521 28 65
## 3522 126 329
## 3523 2 5
## 3524 2 7
## 3525 2 6
## 3526 1 5
## 3527 2 5
## 3528 2 4
## 3529 1 8
## 3530 1 4
## 3531 2 5
## 3532 2 3
## 3533 11 36
## 3534 134 365
## 3535 8 28
## 3536 1 2
## 3537 1 3
## 3538 1 9
## 3539 1 2
## 3540 1 2
## 3541 1 3
## 3542 1 4
## 3543 1 3
## 3544 1 2
## 3545 1 3
## 3546 1 1
## 3547 1 1
## 3548 1 2
## 3549 1 2
## 3550 1 5
## 3551 1 6
## 3552 1 3
## 3553 1 2
## 3554 1 3
## 3555 1 5
## 3556 1 2
## 3557 1 2
## 3558 1 2
## 3559 1 2
## 3560 1 7
## 3561 1 3
## 3562 1 3
## 3563 1 3
## 3564 1 2
## 3565 1 2
## 3566 1 3
## 3567 1 2
## 3568 1 2
## 3569 1 9
## 3570 1 3
## 3571 1 3
## 3572 1 2
## 3573 1 2
## 3574 1 1
## 3575 13 41
## 3576 39 110
## 3577 31 89
## 3578 11 29
## 3579 12 43
## 3580 8 22
## 3581 7 18
## 3582 6 18
## 3583 4 15
## 3584 4 15
## 3585 4 15
## 3586 3 8
## 3587 17 49
## 3588 4 11
## 3589 2 9
## 3590 3 11
## 3591 37 110
## 3592 2 8
## 3593 3 12
## 3594 3 8
## 3595 3 8
## 3596 27 74
## 3597 4 13
## 3598 4 13
## 3599 4 18
## 3600 6 16
## 3601 162 436
## 3602 35 84
## 3603 13 47
## 3604 11 30
## 3605 18 60
## 3606 12 42
## 3607 11 34
## 3608 110 282
## 3609 9 28
## 3610 27 70
## 3611 12 36
## 3612 5 13
## 3613 22 63
## 3614 22 63
## 3615 2 10
## 3616 2 7
## 3617 1 8
## 3618 2 8
## 3619 2 6
## 3620 2 5
## 3621 2 7
## 3622 2 8
## 3623 2 5
## 3624 14 35
## 3625 3 17
## 3626 2 7
## 3627 4 8
## 3628 1 8
## 3629 2 14
## 3630 3 10
## 3631 4 8
## 3632 4 8
## 3633 4 9
## 3634 3 8
## 3635 7 24
## 3636 4 15
## 3637 140 355
## 3638 9 29
## 3639 5 17
## 3640 4 14
## 3641 147 378
## 3642 287 805
## 3643 9 40
## 3644 17 45
## 3645 1 2
## 3646 1 4
## 3647 1 4
## 3648 1 5
## 3649 1 4
## 3650 1 4
## 3651 1 2
## 3652 1 2
## 3653 1 2
## 3654 1 2
## 3655 1 4
## 3656 1 3
## 3657 1 1
## 3658 1 1
## 3659 1 3
## 3660 1 3
## 3661 1 4
## 3662 1 4
## 3663 1 3
## 3664 1 4
## 3665 1 3
## 3666 1 2
## 3667 1 3
## 3668 1 2
## 3669 1 2
## 3670 1 3
## 3671 1 3
## 3672 1 2
## 3673 1 3
## 3674 1 2
## 3675 1 2
## 3676 1 2
## 3677 1 6
## 3678 1 3
## 3679 1 1
## 3680 1 6
## 3681 1 7
## 3682 2 7
## 3683 1 9
## 3684 1 9
## 3685 2 7
## 3686 3 6
## 3687 3 7
## 3688 13 36
## 3689 11 40
## 3690 48 128
## 3691 11 38
## 3692 107 305
## 3693 7 20
## 3694 4 16
## 3695 88 267
## 3696 11 31
## 3697 9 17
## 3698 6 13
## 3699 44 129
## 3700 44 129
## 3701 12 33
## 3702 14 39
## 3703 4 14
## 3704 3 7
## 3705 22 67
## 3706 3 10
## 3707 2 8
## 3708 3 11
## 3709 40 118
## 3710 2 8
## 3711 1 5
## 3712 1 4
## 3713 1 2
## 3714 1 2
## 3715 2 6
## 3716 1 4
## 3717 2 12
## 3718 2 5
## 3719 2 5
## 3720 1 4
## 3721 7 16
## 3722 120 322
## 3723 18 54
## 3724 64 153
## 3725 6 27
## 3726 2 7
## 3727 3 14
## 3728 2 10
## 3729 3 8
## 3730 3 8
## 3731 1 5
## 3732 1 5
## 3733 3 5
## 3734 10 25
## 3735 15 47
## 3736 39 127
## 3737 5 18
## 3738 8 23
## 3739 1 4
## 3740 1 5
## 3741 1 5
## 3742 1 5
## 3743 1 4
## 3744 1 12
## 3745 1 4
## 3746 1 3
## 3747 1 3
## 3748 1 1
## 3749 1 2
## 3750 1 2
## 3751 1 1
## 3752 1 5
## 3753 1 4
## 3754 1 2
## 3755 1 2
## 3756 1 3
## 3757 1 2
## 3758 1 4
## 3759 1 7
## 3760 1 2
## 3761 1 5
## 3762 1 12
## 3763 1 3
## 3764 1 3
## 3765 1 3
## 3766 1 2
## 3767 1 2
## 3768 1 2
## 3769 1 5
## 3770 1 1
## 3771 26 76
## 3772 8 21
## 3773 98 259
## 3774 6 21
## 3775 17 47
## 3776 89 267
## 3777 3 10
## 3778 298 852
## 3779 75 221
## 3780 3 10
## 3781 3 15
## 3782 3 15
## 3783 2 13
## 3784 3 7
## 3785 4 11
## 3786 9 33
## 3787 37 111
## 3788 18 54
## 3789 19 59
## 3790 11 30
## 3791 2 7
## 3792 1 6
## 3793 2 6
## 3794 2 6
## 3795 2 6
## 3796 2 9
## 3797 48 138
## 3798 9 41
## 3799 3 12
## 3800 3 14
## 3801 2 8
## 3802 3 12
## 3803 9 25
## 3804 7 16
## 3805 5 19
## 3806 43 126
## 3807 12 36
## 3808 4 15
## 3809 4 13
## 3810 44 111
## 3811 5 15
## 3812 5 15
## 3813 5 13
## 3814 3 13
## 3815 15 40
## 3816 32 90
## 3817 40 130
## 3818 61 146
## 3819 1 8
## 3820 1 3
## 3821 1 3
## 3822 1 2
## 3823 1 6
## 3824 1 2
## 3825 1 3
## 3826 1 6
## 3827 1 6
## 3828 1 3
## 3829 1 2
## 3830 1 2
## 3831 1 5
## 3832 1 8
## 3833 1 5
## 3834 1 4
## 3835 1 4
## 3836 1 5
## 3837 1 5
## 3838 1 5
## 3839 1 13
## 3840 1 3
## 3841 1 4
## 3842 1 3
## 3843 1 6
## 3844 1 2
## 3845 1 2
## 3846 1 2
## 3847 7 34
## 3848 2 10
## 3849 1 5
## 3850 1 7
## 3851 2 4
## 3852 2 4
## 3853 1 9
## 3854 2 6
## 3855 5 19
## 3856 65 156
## 3857 3 15
## 3858 3 15
## 3859 102 297
## 3860 102 297
## 3861 102 297
## 3862 2 9
## 3863 3 7
## 3864 5 21
## 3865 10 37
## 3866 13 40
## 3867 27 77
## 3868 13 44
## 3869 11 45
## 3870 11 41
## 3871 6 20
## 3872 4 14
## 3873 4 17
## 3874 9 27
## 3875 8 37
## 3876 9 27
## 3877 9 27
## 3878 16 55
## 3879 4 18
## 3880 5 10
## 3881 4 14
## 3882 18 62
## 3883 3 7
## 3884 3 14
## 3885 3 6
## 3886 3 12
## 3887 1 3
## 3888 1 4
## 3889 1 5
## 3890 1 3
## 3891 1 3
## 3892 1 5
## 3893 1 3
## 3894 1 4
## 3895 1 8
## 3896 1 6
## 3897 1 5
## 3898 1 6
## 3899 1 5
## 3900 1 3
## 3901 1 6
## 3902 1 6
## 3903 1 3
## 3904 1 2
## 3905 1 2
## 3906 2 4
## 3907 2 7
## 3908 1 7
## 3909 2 7
## 3910 2 8
## 3911 2 4
## 3912 1 4
## 3913 2 6
## 3914 2 7
## 3915 1 7
## 3916 32 96
## 3917 6 21
## 3918 25 70
## 3919 3 10
## 3920 4 13
## 3921 102 305
## 3922 20 55
## 3923 7 32
## 3924 6 18
## 3925 28 69
## 3926 17 54
## 3927 4 18
## 3928 5 13
## 3929 5 12
## 3930 3 15
## 3931 6 17
## 3932 104 279
## 3933 28 79
## 3934 91 272
## 3935 100 262
## 3936 3 8
## 3937 2 9
## 3938 2 9
## 3939 2 8
## 3940 2 9
## 3941 2 7
## 3942 1 7
## 3943 2 9
## 3944 2 5
## 3945 2 5
## 3946 2 12
## 3947 2 8
## 3948 2 6
## 3949 2 5
## 3950 3 12
## 3951 2 13
## 3952 4 11
## 3953 4 17
## 3954 2 13
## 3955 15 54
## 3956 6 20
## 3957 6 20
## 3958 6 20
## 3959 23 67
## 3960 5 22
## 3961 1 5
## 3962 1 9
## 3963 1 6
## 3964 1 7
## 3965 1 6
## 3966 1 7
## 3967 1 6
## 3968 1 2
## 3969 1 2
## 3970 1 5
## 3971 1 5
## 3972 1 3
## 3973 1 5
## 3974 1 3
## 3975 1 3
## 3976 1 3
## 3977 1 3
## 3978 1 2
## 3979 1 4
## 3980 1 3
## 3981 6 19
## 3982 5 24
## 3983 5 18
## 3984 5 18
## 3985 4 22
## 3986 4 19
## 3987 25 73
## 3988 15 60
## 3989 64 172
## 3990 32 99
## 3991 2 10
## 3992 2 11
## 3993 3 11
## 3994 3 16
## 3995 3 10
## 3996 3 11
## 3997 6 22
## 3998 5 23
## 3999 2 15
## 4000 3 15
## 4001 2 15
## 4002 5 19
## 4003 5 19
## 4004 35 116
## 4005 2 8
## 4006 2 8
## 4007 2 10
## 4008 2 10
## 4009 88 240
## 4010 8 23
## 4011 1 4
## 4012 1 4
## 4013 1 7
## 4014 1 7
## 4015 1 4
## 4016 1 7
## 4017 1 3
## 4018 1 7
## 4019 1 4
## 4020 1 4
## 4021 1 7
## 4022 1 3
## 4023 1 7
## 4024 1 3
## 4025 1 7
## 4026 1 4
## 4027 1 3
## 4028 1 3
## 4029 1 4
## 4030 1 4
## 4031 1 4
## 4032 1 8
## 4033 1 3
## 4034 1 10
## 4035 1 7
## 4036 27 80
## 4037 18 64
## 4038 20 63
## 4039 3 17
## 4040 3 10
## 4041 10 40
## 4042 4 12
## 4043 4 12
## 4044 3 9
## 4045 23 74
## 4046 88 260
## 4047 31 94
## 4048 2 8
## 4049 2 8
## 4050 2 4
## 4051 2 9
## 4052 2 10
## 4053 2 6
## 4054 34 108
## 4055 10 43
## 4056 11 29
## 4057 18 55
## 4058 10 28
## 4059 7 24
## 4060 7 24
## 4061 20 67
## 4062 34 109
## 4063 20 64
## 4064 1 6
## 4065 1 13
## 4066 1 3
## 4067 1 8
## 4068 1 5
## 4069 1 3
## 4070 1 6
## 4071 1 5
## 4072 1 6
## 4073 1 3
## 4074 2 11
## 4075 3 16
## 4076 3 10
## 4077 3 12
## 4078 28 93
## 4079 153 413
## 4080 5 9
## 4081 4 14
## 4082 7 25
## 4083 5 23
## 4084 6 29
## 4085 7 25
## 4086 90 244
## 4087 39 121
## 4088 1 9
## 4089 2 14
## 4090 2 9
## 4091 2 12
## 4092 76 212
## 4093 56 162
## 4094 12 37
## 4095 4 17
## 4096 27 67
## 4097 11 32
## 4098 3 14
## 4099 3 14
## 4100 2 12
## 4101 3 15
## 4102 3 13
## 4103 3 13
## 4104 11 37
## 4105 1 4
## 4106 1 5
## 4107 20 65
## 4108 12 39
## 4109 2 10
## 4110 2 11
## 4111 2 11
## 4112 2 9
## 4113 2 11
## 4114 2 11
## 4115 1 7
## 4116 2 11
## 4117 2 11
## 4118 2 9
## 4119 21 74
## 4120 24 64
## 4121 38 120
## 4122 2 8
## 4123 2 14
## 4124 3 16
## 4125 2 13
## 4126 3 16
## 4127 3 10
## 4128 25 74
## 4129 12 34
## 4130 7 28
## 4131 26 78
## 4132 1 7
## 4133 1 7
## 4134 1 8
## 4135 1 8
## 4136 1 5
## 4137 1 6
## 4138 1 4
## 4139 1 3
## 4140 1 3
## 4141 1 11
## 4142 1 7
## 4143 1 5
## 4144 1 5
## 4145 1 7
## 4146 7 26
## 4147 8 24
## 4148 12 45
## 4149 8 24
## 4150 68 194
## 4151 2 12
## 4152 1 14
## 4153 2 7
## 4154 2 9
## 4155 3 10
## 4156 2 15
## 4157 2 15
## 4158 15 52
## 4159 3 15
## 4160 3 15
## 4161 3 14
## 4162 12 39
## 4163 4 18
## 4164 4 19
## 4165 21 72
## 4166 14 56
## 4167 1 8
## 4168 1 8
## 4169 1 5
## 4170 1 7
## 4171 1 4
## 4172 1 4
## 4173 1 4
## 4174 2 10
## 4175 5 25
## 4176 27 89
## 4177 11 37
## 4178 9 28
## 4179 3 13
## 4180 6 30
## 4181 79 218
## 4182 24 80
## 4183 14 43
## 4184 11 34
## 4185 11 38
## 4186 24 83
## 4187 3 12
## 4188 79 243
## 4189 99 301
## 4190 2 11
## 4191 2 9
## 4192 2 14
## 4193 2 10
## 4194 2 11
## 4195 4 16
## 4196 6 33
## 4197 1 9
## 4198 1 5
## 4199 20 74
## 4200 20 66
## 4201 9 36
## 4202 13 46
## 4203 4 13
## 4204 53 152
## 4205 17 53
## 4206 2 9
## 4207 2 9
## 4208 2 15
## 4209 3 16
## 4210 58 169
## 4211 55 159
## 4212 12 36
## 4213 12 36
## 4214 1 7
## 4215 1 8
## 4216 1 11
## 4217 1 8
## 4218 1 8
## 4219 3 13
## 4220 45 145
## 4221 3 13
## 4222 2 17
## 4223 2 10
## 4224 33 111
## 4225 13 42
## 4226 5 22
## 4227 150 411
## 4228 1 6
## 4229 1 6
## 4230 1 10
## 4231 1 8
## 4232 1 10
## 4233 1 6
## 4234 4 30
## 4235 2 10
## 4236 9 30
## 4237 11 41
## 4238 2 8
## 4239 4 18
## 4240 10 33
## 4241 6 31
## 4242 21 87
## 4243 4 24
## 4244 1 6
## 4245 1 11
## 4246 1 8
## 4247 3 15
## 4248 13 44
## 4249 13 44
## 4250 14 46
## 4251 6 29
## 4252 16 46
## 4253 47 143
## 4254 18 64
## 4255 1 8
## 4256 2 15
## 4257 166 462
## 4258 24 90
## 4259 64 217
## 4260 2 16
## 4261 1 12
## 4262 10 34
## 4263 68 200
## 4264 12 41
## 4265 6 32
## 4266 11 37
## 4267 1 8
## 4268 1 13
## 4269 1 12
## 4270 1 9
## 4271 1 13
## 4272 66 200
## 4273 2 16
## 4274 5 18
## 4275 2 18
## 4276 8 47
## 4277 13 58
## 4278 10 26
## 4279 50 164
## 4280 4 21
## 4281 10 39
## 4282 4 21
## 4283 1 12
## 4284 15 63
## 4285 2 9
## 4286 2 19
## 4287 125 364
## 4288 1 13
## 4289 17 57
## 4290 145 420
## 4291 14 42
## 4292 7 31
## 4293 1 10
## 4294 2 17
## 4295 2 17
## 4296 13 48
## 4297 7 35
## 4298 6 24
## 4299 5 32
## 4300 49 165
## 4301 2 15
## 4302 11 41
## 4303 5 23
## 4304 5 20
## 4305 21 78
## 4306 23 87
## 4307 4 30
## 4308 1 11
## 4309 19 59
## 4310 3 15
## 4311 8 31
## 4312 7 37
## 4313 5 24
## 4314 33 118
## 4315 3 21
## 4316 3 21
## 4317 23 82
## 4318 14 44
## 4319 15 69
## 4320 15 68
## 4321 18 64
## 4322 18 63
## 4323 2 11
## 4324 127 382
## 4325 8 48
## 4326 1 8
## 4327 1 8
## 4328 1 8
## 4329 1 8
## 4330 33 120
## 4331 32 127
## 4332 153 459
## 4333 3 18
## 4334 26 82
## 4335 61 185
## 4336 1 9
## 4337 1 8
## 4338 1 10
## 4339 4 19
## 4340 8 28
## 4341 5 28
## 4342 5 28
## 4343 5 28
## 4344 1 11
## 4345 4 20
## 4346 1 11
## 4347 1 9
## 4348 1 10
## 4349 2 23
## 4350 8 34
## 4351 16 69
## 4352 10 45
## 4353 6 31
## 4354 259 772
## 4355 130 402
## 4356 4 22
## 4357 22 76
## 4358 101 312
## 4359 55 165
## 4360 131 407
## 4361 52 178
## 4362 12 58
## 4363 20 80
## 4364 20 80
## 4365 154 471
## 4366 36 118
## 4367 18 87
## 4368 8 38
## 4369 5 31
## 4370 3 19
## 4371 36 131
## 4372 2 12
## 4373 1 14
## 4374 25 84
## 4375 194 587
## 4376 33 118
## 4377 29 98
## 4378 31 118
## 4379 33 128
## 4380 18 81
## 4381 115 391
## 4382 315 949
## 4383 39 152
## 4384 102 351
## 4385 10 54
## 4386 78 275
## 4387 11 60
## 4388 76 270
## 4389 10 58
## 4390 59 226
## 4391 51 189
## 4392 14 72
## 4393 110 379
## 4394 110 380
## 4395 10 68
## 4396 11 65
## 4397 0 0
## 4398 0 0
## 4399 0 0
## 4400 0 2
## 4401 0 0
## 4402 0 0
## 4403 0 1
## 4404 0 0
## 4405 0 0
## 4406 0 0
## 4407 0 0
## 4408 0 0
## 4409 0 0
## 4410 0 0
## 4411 0 0
## 4412 0 0
## 4413 0 0
## 4414 0 2
## 4415 0 2
## 4416 0 0
## 4417 0 1
## 4418 0 1
## 4419 0 0
## 4420 0 0
## 4421 0 2
## 4422 0 1
## 4423 0 2
## 4424 0 1
## 4425 0 0
## 4426 0 0
## 4427 0 1
## 4428 0 0
## 4429 0 0
## 4430 0 0
## 4431 0 0
## 4432 0 0
## 4433 0 0
## 4434 0 0
## 4435 0 0
## 4436 0 0
## 4437 0 0
## 4438 0 2
## 4439 0 0
## 4440 0 0
## 4441 0 0
## 4442 0 0
## 4443 0 0
## 4444 0 0
## 4445 0 0
## 4446 0 0
## 4447 0 1
## 4448 0 0
## 4449 0 0
## 4450 0 4
## 4451 0 0
## 4452 0 1
## 4453 0 1
## 4454 0 0
## 4455 0 1
## 4456 0 3
## 4457 0 0
## 4458 0 1
## 4459 0 1
## 4460 0 0
## 4461 0 0
## 4462 0 1
## 4463 0 1
## 4464 0 0
## 4465 0 0
## 4466 0 0
## 4467 0 0
## 4468 0 0
## 4469 0 0
## 4470 0 0
## 4471 0 2
## 4472 0 0
## 4473 0 0
## 4474 0 0
## 4475 0 1
## 4476 0 1
## 4477 0 0
## 4478 0 0
## 4479 0 0
## 4480 0 1
## 4481 0 1
## 4482 0 0
## 4483 0 0
## 4484 0 0
## 4485 0 0
## 4486 0 0
## 4487 0 0
## 4488 0 0
## 4489 0 0
## 4490 0 0
## 4491 0 1
## 4492 0 0
## 4493 0 0
## 4494 0 0
## 4495 0 0
## 4496 0 0
## 4497 0 0
## 4498 0 0
## 4499 0 0
## 4500 0 0
## 4501 0 0
## 4502 0 0
## 4503 0 0
## 4504 0 0
## 4505 0 0
## 4506 0 0
## 4507 0 0
## 4508 0 1
## 4509 0 0
## 4510 0 1
## 4511 0 2
## 4512 0 0
## 4513 0 0
## 4514 0 0
## 4515 0 0
## 4516 0 0
## 4517 0 0
## 4518 0 0
## 4519 0 0
## 4520 0 0
## 4521 0 0
## 4522 0 0
## 4523 0 0
## 4524 0 0
## 4525 0 0
## 4526 0 1
## 4527 0 0
## 4528 0 0
## 4529 0 3
## 4530 0 1
## 4531 0 0
## 4532 0 0
## 4533 0 0
## 4534 0 0
## 4535 0 0
## 4536 0 0
## 4537 0 2
## 4538 0 0
## 4539 0 1
## 4540 0 3
## 4541 0 1
## 4542 0 0
## 4543 0 0
## 4544 0 0
## 4545 0 2
## 4546 0 0
## 4547 0 0
## 4548 0 0
## 4549 0 0
## 4550 0 0
## 4551 0 0
## 4552 0 0
## 4553 0 0
## 4554 0 0
## 4555 0 0
## 4556 0 0
## 4557 0 0
## 4558 0 0
## 4559 0 0
## 4560 0 2
## 4561 0 1
## 4562 0 1
## 4563 0 0
## 4564 0 1
## 4565 0 0
## 4566 0 0
## 4567 0 0
## 4568 0 2
## 4569 0 2
## 4570 0 0
## 4571 0 1
## 4572 0 1
## 4573 0 0
## 4574 0 1
## 4575 0 1
## 4576 0 2
## 4577 0 0
## 4578 0 0
## 4579 0 0
## 4580 0 0
## 4581 0 0
## 4582 0 0
## 4583 0 0
## 4584 0 0
## 4585 0 0
## 4586 0 0
## 4587 0 0
## 4588 0 0
## 4589 0 0
## 4590 0 0
## 4591 0 0
## 4592 0 0
## 4593 0 0
## 4594 0 0
## 4595 0 0
## 4596 0 0
## 4597 0 0
## 4598 0 0
## 4599 0 2
## 4600 0 2
## 4601 0 1
## 4602 0 0
## 4603 0 0
## 4604 0 0
## 4605 0 0
## 4606 0 0
## 4607 0 0
## 4608 0 0
## 4609 0 0
## 4610 0 0
## 4611 0 1
## 4612 0 0
## 4613 0 2
## 4614 0 0
## 4615 0 0
## 4616 0 2
## 4617 0 0
## 4618 0 2
## 4619 0 0
## 4620 0 1
## 4621 0 0
## 4622 0 1
## 4623 0 1
## 4624 0 0
## 4625 0 0
## 4626 0 0
## 4627 0 2
## 4628 0 2
## 4629 0 1
## 4630 0 0
## 4631 0 0
## 4632 0 1
## 4633 0 0
## 4634 0 0
## 4635 0 2
## 4636 0 1
## 4637 0 1
## 4638 0 0
## 4639 0 0
## 4640 0 0
## 4641 0 1
## 4642 0 0
## 4643 0 1
## 4644 0 0
## 4645 0 2
## 4646 0 0
## 4647 0 0
## 4648 0 0
## 4649 0 0
## 4650 0 0
## 4651 0 0
## 4652 0 4
## 4653 0 2
## 4654 0 1
## 4655 0 0
## 4656 0 0
## 4657 0 0
## 4658 0 0
## 4659 0 0
## 4660 0 2
## 4661 0 1
## 4662 0 0
## 4663 0 1
## 4664 0 0
## 4665 0 1
## 4666 0 0
## 4667 0 3
## 4668 0 0
## 4669 0 2
## 4670 0 0
## 4671 0 5
## 4672 0 0
## 4673 0 0
## 4674 0 0
## 4675 0 0
## 4676 0 0
## 4677 0 0
## 4678 0 0
## 4679 0 0
## 4680 0 0
## 4681 0 0
## 4682 0 0
## 4683 0 3
## 4684 0 0
## 4685 0 0
## 4686 0 3
## 4687 0 0
## 4688 0 0
## 4689 0 1
## 4690 0 0
## 4691 0 0
## 4692 0 1
## 4693 0 0
## 4694 0 3
## 4695 0 0
## 4696 0 0
## 4697 0 0
## 4698 0 0
## 4699 0 1
## 4700 0 0
## 4701 0 0
## 4702 0 0
## 4703 0 0
## 4704 0 0
## 4705 0 0
## 4706 0 0
## 4707 0 0
## 4708 0 0
## 4709 0 0
## 4710 0 1
## 4711 0 0
## 4712 0 0
## 4713 0 0
## 4714 0 0
## 4715 0 0
## 4716 0 1
## 4717 0 0
## 4718 0 1
## 4719 0 0
## 4720 0 0
## 4721 0 0
## 4722 0 0
## 4723 0 1
## 4724 0 1
## 4725 0 1
## 4726 0 3
## 4727 0 1
## 4728 0 0
## 4729 0 0
## 4730 0 4
## 4731 0 1
## 4732 0 0
## 4733 0 0
## 4734 0 0
## 4735 0 0
## 4736 0 0
## 4737 0 0
## 4738 0 1
## 4739 0 0
## 4740 0 0
## 4741 0 5
## 4742 0 0
## 4743 0 4
## 4744 0 4
## 4745 0 2
## 4746 0 0
## 4747 0 0
## 4748 0 0
## 4749 0 0
## 4750 0 1
## 4751 0 0
## 4752 0 0
## 4753 0 0
## 4754 0 0
## 4755 0 0
## 4756 0 0
## 4757 0 0
## 4758 0 0
## 4759 0 0
## 4760 0 0
## 4761 0 0
## 4762 0 0
## 4763 0 0
## 4764 0 0
## 4765 0 0
## 4766 0 0
## 4767 0 0
## 4768 0 0
## 4769 0 0
## 4770 0 0
## 4771 0 0
## 4772 0 0
## 4773 0 0
## 4774 0 0
## 4775 0 2
## 4776 0 0
## 4777 0 0
## 4778 0 2
## 4779 0 0
## 4780 0 0
## 4781 0 0
## 4782 0 1
## 4783 0 3
## 4784 0 1
## 4785 0 0
## 4786 0 0
## 4787 0 0
## 4788 0 0
## 4789 0 0
## 4790 0 1
## 4791 0 1
## 4792 0 0
## 4793 0 0
## 4794 0 0
## 4795 0 0
## 4796 0 1
## 4797 0 0
## 4798 0 0
## 4799 0 0
## 4800 0 0
## 4801 0 0
## 4802 0 0
## 4803 0 0
## 4804 0 0
## 4805 0 0
## 4806 0 1
## 4807 0 0
## 4808 0 0
## 4809 0 0
## 4810 0 0
## 4811 0 0
## 4812 0 0
## 4813 0 0
## 4814 0 0
## 4815 0 0
## 4816 0 0
## 4817 0 0
## 4818 0 0
## 4819 0 0
## 4820 0 0
## 4821 0 2
## 4822 0 5
## 4823 0 1
## 4824 0 0
## 4825 0 0
## 4826 0 0
## 4827 0 0
## 4828 0 1
## 4829 0 0
## 4830 0 1
## 4831 0 1
## 4832 0 2
## 4833 0 0
## 4834 0 0
## 4835 0 0
## 4836 0 0
## 4837 0 0
## 4838 0 0
## 4839 0 0
## 4840 0 0
## 4841 0 0
## 4842 0 0
## 4843 0 0
## 4844 0 0
## 4845 0 0
## 4846 0 0
## 4847 0 0
## 4848 0 0
## 4849 0 0
## 4850 0 0
## 4851 0 0
## 4852 0 0
## 4853 0 1
## 4854 0 1
## 4855 0 0
## 4856 0 2
## 4857 0 0
## 4858 0 1
## 4859 0 0
## 4860 0 0
## 4861 0 0
## 4862 0 0
## 4863 0 0
## 4864 0 0
## 4865 0 0
## 4866 0 0
## 4867 0 0
## 4868 0 0
## 4869 0 0
## 4870 0 0
## 4871 0 1
## 4872 0 1
## 4873 0 0
## 4874 0 1
## 4875 0 7
## 4876 0 1
## 4877 0 6
## 4878 0 1
## 4879 0 0
## 4880 0 1
## 4881 0 3
## 4882 0 5
## 4883 0 4
## 4884 0 1
## 4885 0 2
## 4886 0 0
## 4887 0 2
## 4888 0 3
## 4889 0 0
## 4890 0 1
## 4891 0 0
## 4892 0 0
## 4893 0 0
## 4894 0 0
## 4895 0 0
## 4896 0 0
## 4897 0 0
## 4898 0 1
## 4899 0 0
## 4900 0 1
## 4901 0 0
## 4902 0 0
## 4903 0 0
## 4904 0 0
## 4905 0 0
## 4906 0 0
## 4907 0 0
## 4908 0 0
## 4909 0 0
## 4910 0 0
## 4911 0 0
## 4912 0 2
## 4913 0 0
## 4914 0 0
## 4915 0 0
## 4916 0 7
## 4917 0 7
## 4918 0 1
## 4919 0 2
## 4920 0 0
## 4921 0 0
## 4922 0 0
## 4923 0 0
## 4924 0 0
## 4925 0 0
## 4926 0 0
## 4927 0 0
## 4928 0 2
## 4929 0 0
## 4930 0 1
## 4931 0 1
## 4932 0 0
## 4933 0 0
## 4934 0 0
## 4935 0 0
## 4936 0 0
## 4937 0 0
## 4938 0 0
## 4939 0 0
## 4940 0 0
## 4941 0 0
## 4942 0 3
## 4943 0 1
## 4944 0 2
## 4945 0 5
## 4946 0 3
## 4947 0 1
## 4948 0 0
## 4949 0 3
## 4950 0 2
## 4951 0 1
## 4952 0 1
## 4953 0 0
## 4954 0 3
## 4955 0 3
## 4956 0 0
## 4957 0 0
## 4958 0 1
## 4959 0 0
## 4960 0 0
## 4961 0 0
## 4962 0 0
## 4963 0 0
## 4964 0 0
## 4965 0 0
## 4966 0 0
## 4967 0 0
## 4968 0 5
## 4969 0 0
## 4970 0 0
## 4971 0 0
## 4972 0 1
## 4973 0 1
## 4974 0 1
## 4975 0 0
## 4976 0 0
## 4977 0 0
## 4978 0 3
## 4979 0 2
## 4980 0 0
## 4981 0 2
## 4982 0 1
## 4983 0 1
## 4984 0 0
## 4985 0 0
## 4986 0 1
## 4987 0 2
## 4988 0 0
## 4989 0 1
## 4990 0 0
## 4991 0 0
## 4992 0 0
## 4993 0 0
## 4994 0 0
## 4995 0 0
## 4996 0 0
## 4997 0 0
## 4998 0 0
## 4999 0 0
## 5000 0 0
## 5001 0 0
## 5002 0 1
## 5003 0 2
## 5004 0 2
## 5005 0 1
## 5006 0 1
## 5007 0 1
## 5008 0 0
## 5009 0 0
## 5010 0 0
## 5011 0 0
## 5012 0 0
## 5013 0 0
## 5014 0 0
## 5015 0 1
## 5016 0 0
## 5017 0 1
## 5018 0 1
## 5019 0 2
## 5020 0 0
## 5021 0 0
## 5022 0 1
## 5023 0 0
## 5024 0 0
## 5025 0 0
## 5026 0 0
## 5027 0 2
## 5028 0 1
## 5029 0 1
## 5030 0 2
## 5031 0 0
## 5032 0 6
## 5033 0 0
## 5034 0 0
## 5035 0 0
## 5036 0 0
## 5037 0 1
## 5038 0 0
## 5039 0 0
## 5040 0 0
## 5041 0 0
## 5042 0 2
## 5043 0 1
## 5044 0 0
## 5045 0 5
## 5046 0 0
## 5047 0 1
## 5048 0 1
## 5049 0 0
## 5050 0 0
## 5051 0 0
## 5052 0 0
## 5053 0 0
## 5054 0 0
## 5055 0 0
## 5056 0 0
## 5057 0 0
## 5058 0 1
## 5059 0 0
## 5060 0 1
## 5061 0 1
## 5062 0 0
## 5063 0 1
## 5064 0 0
## 5065 0 0
## 5066 0 1
## 5067 0 0
## 5068 0 0
## 5069 0 0
## 5070 0 0
## 5071 0 0
## 5072 0 0
## 5073 0 0
## 5074 0 0
## 5075 0 0
## 5076 0 0
## 5077 0 0
## 5078 0 0
## 5079 0 0
## 5080 0 0
## 5081 0 0
## 5082 0 0
## 5083 0 0
## 5084 0 0
## 5085 0 0
## 5086 0 0
## 5087 0 1
## 5088 0 0
## 5089 0 1
## 5090 0 0
## 5091 0 0
## 5092 0 0
## 5093 0 0
## 5094 0 0
## 5095 0 0
## 5096 0 0
## 5097 0 0
## 5098 0 1
## 5099 0 1
## 5100 0 0
## 5101 0 0
## 5102 0 1
## 5103 0 1
## 5104 0 0
## 5105 0 0
## 5106 0 0
## 5107 0 0
## 5108 0 0
## 5109 0 0
## 5110 0 0
## 5111 0 0
## 5112 0 0
## 5113 0 0
## 5114 0 1
## 5115 0 1
## 5116 0 1
## 5117 0 0
## 5118 0 0
## 5119 0 0
## 5120 0 0
## 5121 0 0
## 5122 0 0
## 5123 0 0
## 5124 0 0
## 5125 0 0
## 5126 0 0
## 5127 0 0
## 5128 0 1
## 5129 0 0
## 5130 0 0
## 5131 0 0
## 5132 0 0
## 5133 0 0
## 5134 0 0
## 5135 0 0
## 5136 0 0
## 5137 0 0
## 5138 0 0
## 5139 0 0
## 5140 0 0
## 5141 0 1
## 5142 0 0
## 5143 0 0
## 5144 0 0
## 5145 0 0
## 5146 0 0
## 5147 0 1
## 5148 0 0
## 5149 0 0
## 5150 0 0
## 5151 0 1
## 5152 0 0
## 5153 0 0
## 5154 0 2
## 5155 0 1
## 5156 0 1
## 5157 0 0
## 5158 0 0
## 5159 0 1
## 5160 0 0
## 5161 0 1
## 5162 0 0
## 5163 0 0
## 5164 0 0
## 5165 0 0
## 5166 0 0
## 5167 0 0
## 5168 0 1
## 5169 0 0
## 5170 0 0
## 5171 0 0
## 5172 0 0
## 5173 0 0
## 5174 0 0
## 5175 0 0
## 5176 0 0
## 5177 0 2
## 5178 0 1
## 5179 0 0
## 5180 0 0
## 5181 0 0
## 5182 0 0
## 5183 0 1
## 5184 0 1
## 5185 0 0
## 5186 0 0
## 5187 0 0
## 5188 0 1
## 5189 0 0
## 5190 0 1
## 5191 0 0
## 5192 0 0
## 5193 0 0
## 5194 0 0
## 5195 0 0
## 5196 0 0
## 5197 0 0
## 5198 0 0
## 5199 0 1
## 5200 0 0
## 5201 0 0
## 5202 0 0
## 5203 0 0
## 5204 0 0
## 5205 0 0
## 5206 0 0
## 5207 0 0
## 5208 0 0
## 5209 0 0
## 5210 0 0
## 5211 0 0
## 5212 0 2
## 5213 0 0
## 5214 0 1
## 5215 0 0
## 5216 0 0
## 5217 0 0
## 5218 0 0
## 5219 0 1
## 5220 0 3
## 5221 0 0
## 5222 0 0
## 5223 0 1
## 5224 0 0
## 5225 0 2
## 5226 0 0
## 5227 0 1
## 5228 0 0
## 5229 0 2
## 5230 0 2
## 5231 0 2
## 5232 0 1
## 5233 0 1
## 5234 0 1
## 5235 0 1
## 5236 0 0
## 5237 0 1
## 5238 0 1
## 5239 0 0
## 5240 0 0
## 5241 0 2
## 5242 0 0
## 5243 0 0
## 5244 0 1
## 5245 0 0
## 5246 0 0
## 5247 0 0
## 5248 0 0
## 5249 0 0
## 5250 0 0
## 5251 0 0
## 5252 0 0
## 5253 0 1
## 5254 0 0
## 5255 0 0
## 5256 0 0
## 5257 0 0
## 5258 0 1
## 5259 0 1
## 5260 0 0
## 5261 0 0
## 5262 0 0
## 5263 0 0
## 5264 0 0
## 5265 0 0
## 5266 0 0
## 5267 0 0
## 5268 0 0
## 5269 0 0
## 5270 0 1
## 5271 0 0
## 5272 0 0
## 5273 0 5
## 5274 0 5
## 5275 0 0
## 5276 0 1
## 5277 0 0
## 5278 0 2
## 5279 0 0
## 5280 0 1
## 5281 0 0
## 5282 0 0
## 5283 0 0
## 5284 0 0
## 5285 0 0
## 5286 0 0
## 5287 0 0
## 5288 0 0
## 5289 0 0
## 5290 0 0
## 5291 0 0
## 5292 0 0
## 5293 0 0
## 5294 0 0
## 5295 0 0
## 5296 0 0
## 5297 0 1
## 5298 0 1
## 5299 0 0
## 5300 0 0
## 5301 0 0
## 5302 0 0
## 5303 0 0
## 5304 0 3
## 5305 0 2
## 5306 0 1
## 5307 0 1
## 5308 0 1
## 5309 0 0
## 5310 0 1
## 5311 0 1
## 5312 0 0
## 5313 0 0
## 5314 0 0
## 5315 0 0
## 5316 0 5
## 5317 0 1
## 5318 0 1
## 5319 0 0
## 5320 0 0
## 5321 0 0
## 5322 0 0
## 5323 0 1
## 5324 0 0
## 5325 0 1
## 5326 0 0
## 5327 0 0
## 5328 0 1
## 5329 0 0
## 5330 0 0
## 5331 0 4
## 5332 0 4
## 5333 0 0
## 5334 0 0
## 5335 0 0
## 5336 0 0
## 5337 0 2
## 5338 0 0
## 5339 0 0
## 5340 0 0
## 5341 0 0
## 5342 0 0
## 5343 0 0
## 5344 0 0
## 5345 0 5
## 5346 0 1
## 5347 0 1
## 5348 0 1
## 5349 0 0
## 5350 0 0
## 5351 0 0
## 5352 0 0
## 5353 0 4
## 5354 0 0
## 5355 0 2
## 5356 0 0
## 5357 0 3
## 5358 0 0
## 5359 0 0
## 5360 0 1
## 5361 0 1
## 5362 0 0
## 5363 0 0
## 5364 0 0
## 5365 0 0
## 5366 0 1
## 5367 0 2
## 5368 0 1
## 5369 0 0
## 5370 0 1
## 5371 0 1
## 5372 0 1
## 5373 0 0
## 5374 0 0
## 5375 0 0
## 5376 0 0
## 5377 0 0
## 5378 0 4
## 5379 0 2
## 5380 0 0
## 5381 0 0
## 5382 0 0
## 5383 0 1
## 5384 0 1
## 5385 0 1
## 5386 0 0
## 5387 0 0
## 5388 0 0
## 5389 0 0
## 5390 0 0
## 5391 0 0
## 5392 0 0
## 5393 0 0
## 5394 0 0
## 5395 0 0
## 5396 0 0
## 5397 0 2
## 5398 0 2
## 5399 0 1
## 5400 0 1
## 5401 0 0
## 5402 0 1
## 5403 0 0
## 5404 0 0
## 5405 0 1
## 5406 0 0
## 5407 0 1
## 5408 0 0
## 5409 0 0
## 5410 0 0
## 5411 0 0
## 5412 0 0
## 5413 0 0
## 5414 0 0
## 5415 0 0
## 5416 0 0
## 5417 0 0
## 5418 0 1
## 5419 0 0
## 5420 0 0
## 5421 0 1
## 5422 0 5
## 5423 0 0
## 5424 0 0
## 5425 0 0
## 5426 0 0
## 5427 0 0
## 5428 0 0
## 5429 0 2
## 5430 0 0
## 5431 0 0
## 5432 0 0
## 5433 0 0
## 5434 0 0
## 5435 0 4
## 5436 0 0
## 5437 0 2
## 5438 0 1
## 5439 0 0
## 5440 0 1
## 5441 0 1
## 5442 0 0
## 5443 0 0
## 5444 0 0
## 5445 0 2
## 5446 0 3
## 5447 0 0
## 5448 0 1
## 5449 0 2
## 5450 0 2
## 5451 0 0
## 5452 0 0
## 5453 0 0
## 5454 0 0
## 5455 0 1
## 5456 0 1
## 5457 0 0
## 5458 0 1
## 5459 0 0
## 5460 0 0
## 5461 0 0
## 5462 0 0
## 5463 0 1
## 5464 0 1
## 5465 0 0
## 5466 0 0
## 5467 0 2
## 5468 0 0
## 5469 0 0
## 5470 0 0
## 5471 0 1
## 5472 0 2
## 5473 0 0
## 5474 0 0
## 5475 0 0
## 5476 0 1
## 5477 0 0
## 5478 0 1
## 5479 0 0
## 5480 0 0
## 5481 0 3
## 5482 0 1
## 5483 0 0
## 5484 0 2
## 5485 0 2
## 5486 0 1
## 5487 0 3
## 5488 0 0
## 5489 0 1
## 5490 0 0
## 5491 0 0
## 5492 0 3
## 5493 0 0
## 5494 0 0
## 5495 0 0
## 5496 0 0
## 5497 0 1
## 5498 0 2
## 5499 0 0
## 5500 0 1
## 5501 0 2
## 5502 0 1
## 5503 0 1
## 5504 0 0
## 5505 0 1
## 5506 0 0
## 5507 0 0
## 5508 0 0
## 5509 0 5
## 5510 0 1
## 5511 0 0
## 5512 0 0
## 5513 0 0
## 5514 0 0
## 5515 0 0
## 5516 0 3
## 5517 0 3
## 5518 0 0
## 5519 0 1
## 5520 0 1
## 5521 0 0
## 5522 0 3
## 5523 0 1
## 5524 0 1
## 5525 0 0
## 5526 0 0
## 5527 0 0
## 5528 0 2
## 5529 0 0
## 5530 0 0
## 5531 0 2
## 5532 0 0
## 5533 0 2
## 5534 0 0
## 5535 0 0
## 5536 0 0
## 5537 0 0
## 5538 0 0
## 5539 0 0
## 5540 0 1
## 5541 0 0
## 5542 0 0
## 5543 0 2
## 5544 0 0
## 5545 0 0
## 5546 0 0
## 5547 0 0
## 5548 0 0
## 5549 0 1
## 5550 0 0
## 5551 0 1
## 5552 0 0
## 5553 0 0
## 5554 0 0
## 5555 0 0
## 5556 0 0
## 5557 0 0
## 5558 0 0
## 5559 0 0
## 5560 0 0
## 5561 0 0
## 5562 0 0
## 5563 0 0
## 5564 0 0
## 5565 0 3
## 5566 0 0
## 5567 0 0
## 5568 0 3
## 5569 0 3
## 5570 0 0
## 5571 0 0
## 5572 0 0
## 5573 0 0
## 5574 0 0
## 5575 0 1
## 5576 0 0
## 5577 0 0
## 5578 0 0
## 5579 0 0
## 5580 0 0
## 5581 0 0
## 5582 0 0
## 5583 0 0
## 5584 0 0
## 5585 0 0
## 5586 0 0
## 5587 0 0
## 5588 0 1
## 5589 0 0
## 5590 0 2
## 5591 0 3
## 5592 0 0
## 5593 0 3
## 5594 0 0
## 5595 0 0
## 5596 0 1
## 5597 0 1
## 5598 0 0
## 5599 0 1
## 5600 0 1
## 5601 0 0
## 5602 0 0
## 5603 0 0
## 5604 0 1
## 5605 0 0
## 5606 0 0
## 5607 0 3
## 5608 0 0
## 5609 0 1
## 5610 0 0
## 5611 0 3
## 5612 0 0
## 5613 0 0
## 5614 0 0
## 5615 0 0
## 5616 0 0
## 5617 0 2
## 5618 0 0
## 5619 0 1
## 5620 0 1
## 5621 0 0
## 5622 0 1
## 5623 0 1
## 5624 0 1
## 5625 0 0
## 5626 0 2
## 5627 0 0
## 5628 0 0
## 5629 0 1
## 5630 0 0
## 5631 0 0
## 5632 0 2
## 5633 0 1
## 5634 0 0
## 5635 0 3
## 5636 0 1
## 5637 0 0
## 5638 0 2
## 5639 0 2
## 5640 0 0
## 5641 0 1
## 5642 0 0
## 5643 0 0
## 5644 0 0
## 5645 0 1
## 5646 0 0
## 5647 0 0
## 5648 0 1
## 5649 0 0
## 5650 0 3
## 5651 0 1
## 5652 0 0
## 5653 0 0
## 5654 0 0
## 5655 0 0
## 5656 0 0
## 5657 0 0
## 5658 0 0
## 5659 0 1
## 5660 0 1
## 5661 0 2
## 5662 0 2
## 5663 0 0
## 5664 0 0
## 5665 0 0
## 5666 0 0
## 5667 0 0
## 5668 0 0
## 5669 0 0
## 5670 0 0
## 5671 0 0
## 5672 0 0
## 5673 0 0
## 5674 0 3
## 5675 0 0
## 5676 0 0
## 5677 0 0
## 5678 0 2
## 5679 0 0
## 5680 0 2
## 5681 0 2
## 5682 0 1
## 5683 0 0
## 5684 0 0
## 5685 0 0
## 5686 0 1
## 5687 0 0
## 5688 0 1
## 5689 0 0
## 5690 0 0
## 5691 0 0
## 5692 0 3
## 5693 0 0
## 5694 0 2
## 5695 0 2
## 5696 0 2
## 5697 0 2
## 5698 0 0
## 5699 0 1
## 5700 0 0
## 5701 0 0
## 5702 0 2
## 5703 0 0
## 5704 0 0
## 5705 0 1
## 5706 0 1
## 5707 0 0
## 5708 0 0
## 5709 0 0
## 5710 0 0
## 5711 0 0
## 5712 0 0
## 5713 0 0
## 5714 0 0
## 5715 0 1
## 5716 0 1
## 5717 0 1
## 5718 0 0
## 5719 0 0
## 5720 0 1
## 5721 0 2
## 5722 0 0
## 5723 0 0
## 5724 0 0
## 5725 0 1
## 5726 0 2
## 5727 0 2
## 5728 0 0
## 5729 0 2
## 5730 0 0
## 5731 0 2
## 5732 0 0
## 5733 0 0
## 5734 0 5
## 5735 0 4
## 5736 0 1
## 5737 0 0
## 5738 0 2
## 5739 0 0
## 5740 0 0
## 5741 0 0
## 5742 0 0
## 5743 0 0
## 5744 0 0
## 5745 0 0
## 5746 0 0
## 5747 0 1
## 5748 0 0
## 5749 0 1
## 5750 0 0
## 5751 0 0
## 5752 0 0
## 5753 0 2
## 5754 0 2
## 5755 0 0
## 5756 0 0
## 5757 0 0
## 5758 0 0
## 5759 0 0
## 5760 0 0
## 5761 0 0
## 5762 0 1
## 5763 0 2
## 5764 0 1
## 5765 0 2
## 5766 0 0
## 5767 0 0
## 5768 0 0
## 5769 0 0
## 5770 0 0
## 5771 0 0
## 5772 0 0
## 5773 0 1
## 5774 0 1
## 5775 0 0
## 5776 0 0
## 5777 0 0
## 5778 0 0
## 5779 0 1
## 5780 0 0
## 5781 0 0
## 5782 0 0
## 5783 0 1
## 5784 0 0
## 5785 0 0
## 5786 0 0
## 5787 0 0
## 5788 0 0
## 5789 0 0
## 5790 0 0
## 5791 0 0
## 5792 0 0
## 5793 0 1
## 5794 0 0
## 5795 0 0
## 5796 0 0
## 5797 0 0
## 5798 0 0
## 5799 0 0
## 5800 0 2
## 5801 0 0
## 5802 0 1
## 5803 0 0
## 5804 0 0
## 5805 0 0
## 5806 0 0
## 5807 0 0
## 5808 0 1
## 5809 0 0
## 5810 0 0
## 5811 0 1
## 5812 0 0
## 5813 0 0
## 5814 0 0
## 5815 0 0
## 5816 0 0
## 5817 0 0
## 5818 0 0
## 5819 0 0
## 5820 0 1
## 5821 0 0
## 5822 0 0
## 5823 0 0
## 5824 0 2
## 5825 0 0
## 5826 0 0
## 5827 0 0
## 5828 0 0
## 5829 0 0
## 5830 0 2
## 5831 0 0
## 5832 0 0
## 5833 0 0
## 5834 0 0
## 5835 0 0
## 5836 0 0
## 5837 0 0
## 5838 0 1
## 5839 0 0
## 5840 0 0
## 5841 0 0
## 5842 0 0
## 5843 0 2
## 5844 0 4
## 5845 0 1
## 5846 0 1
## 5847 0 0
## 5848 0 1
## 5849 0 3
## 5850 0 0
## 5851 0 2
## 5852 0 1
## 5853 0 0
## 5854 0 0
## 5855 0 0
## 5856 0 0
## 5857 0 0
## 5858 0 0
## 5859 0 0
## 5860 0 0
## 5861 0 0
## 5862 0 2
## 5863 0 0
## 5864 0 1
## 5865 0 0
## 5866 0 0
## 5867 0 0
## 5868 0 1
## 5869 0 1
## 5870 0 0
## 5871 0 0
## 5872 0 2
## 5873 0 1
## 5874 0 1
## 5875 0 1
## 5876 0 1
## 5877 0 0
## 5878 0 0
## 5879 0 2
## 5880 0 1
## 5881 0 0
## 5882 0 0
## 5883 0 4
## 5884 0 2
## 5885 0 0
## 5886 0 3
## 5887 0 1
## 5888 0 0
## 5889 0 0
## 5890 0 0
## 5891 0 0
## 5892 0 0
## 5893 0 5
## 5894 0 0
## 5895 0 1
## 5896 0 0
## 5897 0 2
## 5898 0 0
## 5899 0 2
## 5900 0 1
## 5901 0 0
## 5902 0 0
## 5903 0 0
## 5904 0 0
## 5905 0 0
## 5906 0 1
## 5907 0 1
## 5908 0 1
## 5909 0 1
## 5910 0 0
## 5911 0 0
## 5912 0 0
## 5913 0 0
## 5914 0 0
## 5915 0 0
## 5916 0 0
## 5917 0 1
## 5918 0 1
## 5919 0 0
## 5920 0 0
## 5921 0 0
## 5922 0 0
## 5923 0 0
## 5924 0 0
## 5925 0 2
## 5926 0 1
## 5927 0 0
## 5928 0 6
## 5929 0 2
## 5930 0 5
## 5931 0 0
## 5932 0 0
## 5933 0 0
## 5934 0 0
## 5935 0 0
## 5936 0 0
## 5937 0 0
## 5938 0 0
## 5939 0 0
## 5940 0 0
## 5941 0 0
## 5942 0 0
## 5943 0 1
## 5944 0 2
## 5945 0 2
## 5946 0 0
## 5947 0 0
## 5948 0 2
## 5949 0 1
## 5950 0 1
## 5951 0 0
## 5952 0 0
## 5953 0 0
## 5954 0 3
## 5955 0 3
## 5956 0 0
## 5957 0 1
## 5958 0 2
## 5959 0 0
## 5960 0 1
## 5961 0 0
## 5962 0 0
## 5963 0 0
## 5964 0 0
## 5965 0 0
## 5966 0 0
## 5967 0 0
## 5968 0 0
## 5969 0 0
## 5970 0 0
## 5971 0 0
## 5972 0 0
## 5973 0 0
## 5974 0 0
## 5975 0 1
## 5976 0 1
## 5977 0 1
## 5978 0 1
## 5979 0 1
## 5980 0 1
## 5981 0 0
## 5982 0 0
## 5983 0 0
## 5984 0 3
## 5985 0 3
## 5986 0 0
## 5987 0 3
## 5988 0 0
## 5989 0 0
## 5990 0 0
## 5991 0 0
## 5992 0 0
## 5993 0 1
## 5994 0 1
## 5995 0 0
## 5996 0 1
## 5997 0 0
## 5998 0 0
## 5999 0 4
## 6000 0 3
## 6001 0 0
## 6002 0 0
## 6003 0 0
## 6004 0 1
## 6005 0 0
## 6006 0 0
## 6007 0 0
## 6008 0 0
## 6009 0 0
## 6010 0 0
## 6011 0 1
## 6012 0 0
## 6013 0 0
## 6014 0 0
## 6015 0 1
## 6016 0 1
## 6017 0 0
## 6018 0 0
## 6019 0 0
## 6020 0 0
## 6021 0 0
## 6022 0 0
## 6023 0 0
## 6024 0 1
## 6025 0 0
## 6026 0 0
## 6027 0 0
## 6028 0 0
## 6029 0 0
## 6030 0 0
## 6031 0 0
## 6032 0 0
## 6033 0 0
## 6034 0 1
## 6035 0 0
## 6036 0 0
## 6037 0 0
## 6038 0 0
## 6039 0 1
## 6040 0 0
## 6041 0 0
## 6042 0 0
## 6043 0 0
## 6044 0 0
## 6045 0 1
## 6046 0 1
## 6047 0 1
## 6048 0 0
## 6049 0 0
## 6050 0 0
## 6051 0 0
## 6052 0 0
## 6053 0 0
## 6054 0 3
## 6055 0 0
## 6056 0 0
## 6057 0 0
## 6058 0 0
## 6059 0 0
## 6060 0 1
## 6061 0 1
## 6062 0 0
## 6063 0 0
## 6064 0 1
## 6065 0 1
## 6066 0 0
## 6067 0 0
## 6068 0 0
## 6069 0 0
## 6070 0 0
## 6071 0 0
## 6072 0 1
## 6073 0 0
## 6074 0 0
## 6075 0 0
## 6076 0 0
## 6077 0 0
## 6078 0 0
## 6079 0 0
## 6080 0 0
## 6081 0 0
## 6082 0 1
## 6083 0 1
## 6084 0 0
## 6085 0 2
## 6086 0 0
## 6087 0 0
## 6088 0 0
## 6089 0 0
## 6090 0 0
## 6091 0 0
## 6092 0 0
## 6093 0 0
## 6094 0 0
## 6095 0 0
## 6096 0 0
## 6097 0 0
## 6098 0 0
## 6099 0 0
## 6100 0 3
## 6101 0 0
## 6102 0 3
## 6103 0 1
## 6104 0 0
## 6105 0 0
## 6106 0 0
## 6107 0 0
## 6108 0 0
## 6109 0 0
## 6110 0 0
## 6111 0 0
## 6112 0 2
## 6113 0 1
## 6114 0 0
## 6115 0 2
## 6116 0 1
## 6117 0 1
## 6118 0 0
## 6119 0 0
## 6120 0 0
## 6121 0 5
## 6122 0 2
## 6123 0 4
## 6124 0 0
## 6125 0 0
## 6126 0 0
## 6127 0 0
## 6128 0 0
## 6129 0 0
## 6130 0 1
## 6131 0 1
## 6132 0 1
## 6133 0 0
## 6134 0 1
## 6135 0 2
## 6136 0 0
## 6137 0 4
## 6138 0 1
## 6139 0 1
## 6140 0 1
## 6141 0 1
## 6142 0 1
## 6143 0 0
## 6144 0 0
## 6145 0 0
## 6146 0 0
## 6147 0 0
## 6148 0 1
## 6149 0 0
## 6150 0 0
## 6151 0 2
## 6152 0 0
## 6153 0 2
## 6154 0 2
## 6155 0 1
## 6156 0 0
## 6157 0 0
## 6158 0 2
## 6159 0 1
## 6160 0 1
## 6161 0 2
## 6162 0 0
## 6163 0 2
## 6164 0 0
## 6165 0 0
## 6166 0 5
## 6167 0 3
## 6168 0 2
## 6169 0 1
## 6170 0 0
## 6171 0 2
## 6172 0 0
## 6173 0 0
## 6174 0 1
## 6175 0 1
## 6176 0 0
## 6177 0 0
## 6178 0 0
## 6179 0 0
## 6180 0 0
## 6181 0 0
## 6182 0 0
## 6183 0 0
## 6184 0 0
## 6185 0 0
## 6186 0 0
## 6187 0 0
## 6188 0 1
## 6189 0 0
## 6190 0 5
## 6191 0 0
## 6192 0 3
## 6193 0 0
## 6194 0 0
## 6195 0 0
## 6196 0 0
## 6197 0 0
## 6198 0 0
## 6199 0 0
## 6200 0 0
## 6201 0 0
## 6202 0 0
## 6203 0 0
## 6204 0 0
## 6205 0 0
## 6206 0 0
## 6207 0 0
## 6208 0 1
## 6209 0 0
## 6210 0 0
## 6211 0 1
## 6212 0 2
## 6213 0 2
## 6214 0 0
## 6215 0 0
## 6216 0 0
## 6217 0 1
## 6218 0 0
## 6219 0 0
## 6220 0 0
## 6221 0 2
## 6222 0 0
## 6223 0 1
## 6224 0 0
## 6225 0 0
## 6226 0 0
## 6227 0 0
## 6228 0 2
## 6229 0 1
## 6230 0 0
## 6231 0 1
## 6232 0 1
## 6233 0 0
## 6234 0 0
## 6235 0 0
## 6236 0 0
## 6237 0 0
## 6238 0 0
## 6239 0 3
## 6240 0 2
## 6241 0 0
## 6242 0 0
## 6243 0 0
## 6244 0 1
## 6245 0 0
## 6246 0 0
## 6247 0 0
## 6248 0 1
## 6249 0 1
## 6250 0 1
## 6251 0 1
## 6252 0 0
## 6253 0 2
## 6254 0 0
## 6255 0 0
## 6256 0 0
## 6257 0 0
## 6258 0 1
## 6259 0 1
## 6260 0 0
## 6261 0 0
## 6262 0 0
## 6263 0 0
## 6264 0 0
## 6265 0 0
## 6266 0 0
## 6267 0 0
## 6268 0 0
## 6269 0 0
## 6270 0 0
## 6271 0 0
## 6272 0 0
## 6273 0 0
## 6274 0 0
## 6275 0 0
## 6276 0 1
## 6277 0 0
## 6278 0 0
## 6279 0 0
## 6280 0 0
## 6281 0 0
## 6282 0 3
## 6283 0 0
## 6284 0 0
## 6285 0 1
## 6286 0 0
## 6287 0 0
## 6288 0 1
## 6289 0 0
## 6290 0 0
## 6291 0 0
## 6292 0 0
## 6293 0 1
## 6294 0 0
## 6295 0 0
## 6296 0 1
## 6297 0 0
## 6298 0 0
## 6299 0 0
## 6300 0 0
## 6301 0 0
## 6302 0 0
## 6303 0 1
## 6304 0 0
## 6305 0 0
## 6306 0 1
## 6307 0 0
## 6308 0 0
## 6309 0 0
## 6310 0 5
## 6311 0 1
## 6312 0 0
## 6313 0 1
## 6314 0 3
## 6315 0 1
## 6316 0 0
## 6317 0 1
## 6318 0 0
## 6319 0 0
## 6320 0 0
## 6321 0 0
## 6322 0 0
## 6323 0 0
## 6324 0 1
## 6325 0 0
## 6326 0 0
## 6327 0 0
## 6328 0 0
## 6329 0 1
## 6330 0 0
## 6331 0 0
## 6332 0 0
## 6333 0 0
## 6334 0 0
## 6335 0 1
## 6336 0 0
## 6337 0 0
## 6338 0 0
## 6339 0 2
## 6340 0 0
## 6341 0 0
## 6342 0 1
## 6343 0 2
## 6344 0 0
## 6345 0 0
## 6346 0 0
## 6347 0 0
## 6348 0 0
## 6349 0 0
## 6350 0 0
## 6351 0 0
## 6352 0 0
## 6353 0 0
## 6354 0 2
## 6355 0 5
## 6356 0 1
## 6357 0 0
## 6358 0 0
## 6359 0 0
## 6360 0 0
## 6361 0 0
## 6362 0 0
## 6363 0 0
## 6364 0 0
## 6365 0 0
## 6366 0 0
## 6367 0 0
## 6368 0 1
## 6369 0 1
## 6370 0 2
## 6371 0 0
## 6372 0 0
## 6373 0 0
## 6374 0 0
## 6375 0 1
## 6376 0 1
## 6377 0 0
## 6378 0 1
## 6379 0 0
## 6380 0 1
## 6381 0 0
## 6382 0 1
## 6383 0 0
## 6384 0 0
## 6385 0 0
## 6386 0 0
## 6387 0 0
## 6388 0 1
## 6389 0 0
## 6390 0 1
## 6391 0 0
## 6392 0 0
## 6393 0 2
## 6394 0 0
## 6395 0 0
## 6396 0 0
## 6397 0 0
## 6398 0 0
## 6399 0 0
## 6400 0 2
## 6401 0 0
## 6402 0 0
## 6403 0 0
## 6404 0 0
## 6405 0 0
## 6406 0 0
## 6407 0 1
## 6408 0 0
## 6409 0 0
## 6410 0 1
## 6411 0 0
## 6412 0 0
## 6413 0 2
## 6414 0 0
## 6415 0 2
## 6416 0 1
## 6417 0 0
## 6418 0 1
## 6419 0 0
## 6420 0 0
## 6421 0 0
## 6422 0 0
## 6423 0 0
## 6424 0 0
## 6425 0 1
## 6426 0 0
## 6427 0 0
## 6428 0 1
## 6429 0 0
## 6430 0 0
## 6431 0 0
## 6432 0 0
## 6433 0 0
## 6434 0 0
## 6435 0 0
## 6436 0 0
## 6437 0 0
## 6438 0 0
## 6439 0 0
## 6440 0 0
## 6441 0 0
## 6442 0 0
## 6443 0 1
## 6444 0 0
## 6445 0 0
## 6446 0 0
## 6447 0 1
## 6448 0 4
## 6449 0 0
## 6450 0 2
## 6451 0 4
## 6452 0 0
## 6453 0 2
## 6454 0 0
## 6455 0 0
## 6456 0 0
## 6457 0 0
## 6458 0 1
## 6459 0 0
## 6460 0 1
## 6461 0 0
## 6462 0 0
## 6463 0 0
## 6464 0 1
## 6465 0 0
## 6466 0 0
## 6467 0 0
## 6468 0 0
## 6469 0 0
## 6470 0 0
## 6471 0 0
## 6472 0 0
## 6473 0 1
## 6474 0 2
## 6475 0 0
## 6476 0 0
## 6477 0 2
## 6478 0 1
## 6479 0 1
## 6480 0 0
## 6481 0 6
## 6482 0 1
## 6483 0 0
## 6484 0 0
## 6485 0 0
## 6486 0 0
## 6487 0 0
## 6488 0 0
## 6489 0 0
## 6490 0 0
## 6491 0 0
## 6492 0 0
## 6493 0 1
## 6494 0 0
## 6495 0 0
## 6496 0 0
## 6497 0 1
## 6498 0 0
## 6499 0 0
## 6500 0 0
## 6501 0 0
## 6502 0 0
## 6503 0 0
## 6504 0 0
## 6505 0 0
## 6506 0 0
## 6507 0 0
## 6508 0 1
## 6509 0 0
## 6510 0 0
## 6511 0 1
## 6512 0 0
## 6513 0 0
## 6514 0 0
## 6515 0 0
## 6516 0 0
## 6517 0 0
## 6518 0 1
## 6519 0 0
## 6520 0 0
## 6521 0 0
## 6522 0 0
## 6523 0 1
## 6524 0 0
## 6525 0 1
## 6526 0 0
## 6527 0 0
## 6528 0 2
## 6529 0 0
## 6530 0 6
## 6531 0 1
## 6532 0 0
## 6533 0 0
## 6534 0 0
## 6535 0 0
## 6536 0 1
## 6537 0 1
## 6538 0 0
## 6539 0 1
## 6540 0 0
## 6541 0 0
## 6542 0 0
## 6543 0 1
## 6544 0 0
## 6545 0 0
## 6546 0 2
## 6547 0 0
## 6548 0 1
## 6549 0 0
## 6550 0 0
## 6551 0 0
## 6552 0 0
## 6553 0 0
## 6554 0 1
## 6555 0 0
## 6556 0 0
## 6557 0 7
## 6558 0 0
## 6559 0 0
## 6560 0 0
## 6561 0 1
## 6562 0 4
## 6563 0 5
## 6564 0 2
## 6565 0 0
## 6566 0 0
## 6567 0 1
## 6568 0 0
## 6569 0 0
## 6570 0 0
## 6571 0 3
## 6572 0 1
## 6573 0 0
## 6574 0 1
## 6575 0 1
## 6576 0 2
## 6577 0 0
## 6578 0 1
## 6579 0 0
## 6580 0 3
## 6581 0 0
## 6582 0 0
## 6583 0 9
## 6584 0 0
## 6585 0 0
## 6586 0 0
## 6587 0 2
## 6588 0 1
## 6589 0 1
## 6590 0 1
## 6591 0 0
## 6592 0 0
## 6593 0 0
## 6594 0 0
## 6595 0 0
## 6596 0 0
## 6597 0 0
## 6598 0 0
## 6599 0 0
## 6600 0 6
## 6601 0 1
## 6602 0 0
## 6603 0 5
## 6604 0 0
## 6605 0 1
## 6606 0 0
## 6607 0 0
## 6608 0 2
## 6609 0 0
## 6610 0 1
## 6611 0 0
## 6612 0 0
## 6613 0 0
## 6614 0 0
## 6615 0 0
## 6616 0 2
## 6617 0 1
## 6618 0 0
## 6619 0 0
## 6620 0 0
## 6621 0 0
## 6622 0 0
## 6623 0 0
## 6624 0 0
## 6625 0 0
## 6626 0 0
## 6627 0 3
## 6628 0 2
## 6629 0 0
## 6630 0 2
## 6631 0 1
## 6632 0 0
## 6633 0 0
## 6634 0 0
## 6635 0 1
## 6636 0 1
## 6637 0 1
## 6638 0 5
## 6639 0 3
## 6640 0 1
## 6641 0 1
## 6642 0 0
## 6643 0 0
## 6644 0 1
## 6645 0 0
## 6646 0 0
## 6647 0 0
## 6648 0 0
## 6649 0 0
## 6650 0 0
## 6651 0 0
## 6652 0 0
## 6653 0 0
## 6654 0 0
## 6655 0 0
## 6656 0 0
## 6657 0 0
## 6658 0 0
## 6659 0 0
## 6660 0 0
## 6661 0 0
## 6662 0 0
## 6663 0 0
## 6664 0 1
## 6665 0 0
## 6666 0 0
## 6667 0 0
## 6668 0 3
## 6669 0 1
## 6670 0 0
## 6671 0 0
## 6672 0 2
## 6673 0 0
## 6674 0 2
## 6675 0 1
## 6676 0 1
## 6677 0 0
## 6678 0 0
## 6679 0 0
## 6680 0 0
## 6681 0 0
## 6682 0 0
## 6683 0 0
## 6684 0 0
## 6685 0 1
## 6686 0 0
## 6687 0 0
## 6688 0 0
## 6689 0 3
## 6690 0 0
## 6691 0 0
## 6692 0 1
## 6693 0 1
## 6694 0 0
## 6695 0 0
## 6696 0 0
## 6697 0 1
## 6698 0 1
## 6699 0 0
## 6700 0 0
## 6701 0 2
## 6702 0 1
## 6703 0 0
## 6704 0 0
## 6705 0 3
## 6706 0 0
## 6707 0 0
## 6708 0 3
## 6709 0 5
## 6710 0 0
## 6711 0 0
## 6712 0 1
## 6713 0 0
## 6714 0 1
## 6715 0 2
## 6716 0 0
## 6717 0 0
## 6718 0 0
## 6719 0 1
## 6720 0 0
## 6721 0 0
## 6722 0 0
## 6723 0 0
## 6724 0 0
## 6725 0 0
## 6726 0 0
## 6727 0 0
## 6728 0 1
## 6729 0 2
## 6730 0 0
## 6731 0 0
## 6732 0 0
## 6733 0 0
## 6734 0 2
## 6735 0 0
## 6736 0 0
## 6737 0 0
## 6738 0 0
## 6739 0 0
## 6740 0 0
## 6741 0 0
## 6742 0 1
## 6743 0 0
## 6744 0 2
## 6745 0 1
## 6746 0 0
## 6747 0 0
## 6748 0 0
## 6749 0 0
## 6750 0 0
## 6751 0 0
## 6752 0 2
## 6753 0 0
## 6754 0 0
## 6755 0 0
## 6756 0 1
## 6757 0 0
## 6758 0 5
## 6759 0 9
## 6760 0 0
## 6761 0 0
## 6762 0 0
## 6763 0 2
## 6764 0 0
## 6765 0 0
## 6766 0 1
## 6767 0 0
## 6768 0 1
## 6769 0 0
## 6770 0 0
## 6771 0 0
## 6772 0 0
## 6773 0 0
## 6774 0 0
## 6775 0 0
## 6776 0 0
## 6777 0 0
## 6778 0 1
## 6779 0 0
## 6780 0 2
## 6781 0 3
## 6782 0 0
## 6783 0 6
## 6784 0 2
## 6785 0 0
## 6786 0 0
## 6787 0 2
## 6788 0 0
## 6789 0 0
## 6790 0 4
## 6791 0 0
## 6792 0 0
## 6793 0 0
## 6794 0 0
## 6795 0 1
## 6796 0 0
## 6797 0 0
## 6798 0 1
## 6799 0 0
## 6800 0 2
## 6801 0 0
## 6802 0 0
## 6803 0 0
## 6804 0 2
## 6805 0 1
## 6806 0 0
## 6807 0 0
## 6808 0 0
## 6809 0 0
## 6810 0 4
## 6811 0 0
## 6812 0 0
## 6813 0 0
## 6814 0 0
## 6815 0 2
## 6816 0 0
## 6817 0 2
## 6818 0 0
## 6819 0 0
## 6820 0 0
## 6821 0 0
## 6822 0 0
## 6823 0 0
## 6824 0 0
## 6825 0 0
## 6826 0 1
## 6827 0 2
## 6828 0 0
## 6829 0 0
## 6830 0 1
## 6831 0 2
## 6832 0 0
## 6833 0 0
## 6834 0 0
## 6835 0 2
## 6836 0 0
## 6837 0 0
## 6838 0 0
## 6839 0 0
## 6840 0 1
## 6841 0 1
## 6842 0 0
## 6843 0 0
## 6844 0 0
## 6845 0 0
## 6846 0 0
## 6847 0 0
## 6848 0 2
## 6849 0 2
## 6850 0 1
## 6851 0 1
## 6852 0 0
## 6853 0 0
## 6854 0 0
## 6855 0 1
## 6856 0 0
## 6857 0 1
## 6858 0 0
## 6859 0 0
## 6860 0 3
## 6861 0 0
## 6862 0 1
## 6863 0 1
## 6864 0 1
## 6865 0 0
## 6866 0 1
## 6867 0 0
## 6868 0 1
## 6869 0 0
## 6870 0 0
## 6871 0 1
## 6872 0 3
## 6873 0 2
## 6874 0 1
## 6875 0 1
## 6876 0 2
## 6877 0 1
## 6878 0 1
## 6879 0 0
## 6880 0 1
## 6881 0 0
## 6882 0 0
## 6883 0 0
## 6884 0 0
## 6885 0 0
## 6886 0 0
## 6887 0 0
## 6888 0 3
## 6889 0 0
## 6890 0 1
## 6891 0 0
## 6892 0 1
## 6893 0 0
## 6894 0 0
## 6895 0 0
## 6896 0 2
## 6897 0 3
## 6898 0 0
## 6899 0 3
## 6900 0 5
## 6901 0 0
## 6902 0 5
## 6903 0 2
## 6904 0 2
## 6905 0 4
## 6906 0 1
## 6907 0 1
## 6908 0 2
## 6909 0 0
## 6910 0 0
## 6911 0 0
## 6912 0 0
## 6913 0 0
## 6914 0 0
## 6915 0 1
## 6916 0 0
## 6917 0 5
## 6918 0 7
## 6919 0 0
## 6920 0 0
## 6921 0 0
## 6922 0 0
## 6923 0 0
## 6924 0 0
## 6925 0 2
## 6926 0 1
## 6927 0 1
## 6928 0 0
## 6929 0 1
## 6930 0 1
## 6931 0 0
## 6932 0 0
## 6933 0 0
## 6934 0 4
## 6935 0 0
## 6936 0 4
## 6937 0 0
## 6938 0 0
## 6939 0 0
## 6940 0 0
## 6941 0 0
## 6942 0 0
## 6943 0 0
## 6944 0 0
## 6945 0 0
## 6946 0 0
## 6947 0 1
## 6948 0 0
## 6949 0 1
## 6950 0 1
## 6951 0 0
## 6952 0 0
## 6953 0 0
## 6954 0 0
## 6955 0 0
## 6956 0 0
## 6957 0 3
## 6958 0 1
## 6959 0 0
## 6960 0 0
## 6961 0 0
## 6962 0 0
## 6963 0 1
## 6964 0 1
## 6965 0 2
## 6966 0 1
## 6967 0 2
## 6968 0 0
## 6969 0 0
## 6970 0 0
## 6971 0 1
## 6972 0 1
## 6973 0 5
## 6974 0 0
## 6975 0 1
## 6976 0 0
## 6977 0 1
## 6978 0 0
## 6979 0 0
## 6980 0 0
## 6981 0 0
## 6982 0 2
## 6983 0 0
## 6984 0 0
## 6985 0 1
## 6986 0 1
## 6987 0 0
## 6988 0 2
## 6989 0 1
## 6990 0 2
## 6991 0 0
## 6992 0 2
## 6993 0 0
## 6994 0 0
## 6995 0 0
## 6996 0 0
## 6997 0 0
## 6998 0 0
## 6999 0 1
## 7000 0 1
## 7001 0 0
## 7002 0 0
## 7003 0 0
## 7004 0 1
## 7005 0 0
## 7006 0 0
## 7007 0 1
## 7008 0 0
## 7009 0 2
## 7010 0 0
## 7011 0 1
## 7012 0 0
## 7013 0 0
## 7014 0 0
## 7015 0 0
## 7016 0 0
## 7017 0 0
## 7018 0 0
## 7019 0 0
## 7020 0 0
## 7021 0 0
## 7022 0 0
## 7023 0 0
## 7024 0 1
## 7025 0 1
## 7026 0 0
## 7027 0 0
## 7028 0 0
## 7029 0 0
## 7030 0 0
## 7031 0 1
## 7032 0 0
## 7033 0 1
## 7034 0 0
## 7035 0 1
## 7036 0 1
## 7037 0 0
## 7038 0 0
## 7039 0 0
## 7040 0 0
## 7041 0 0
## 7042 0 0
## 7043 0 0
## 7044 0 1
## 7045 0 0
## 7046 0 1
## 7047 0 0
## 7048 0 0
## 7049 0 3
## 7050 0 0
## 7051 0 1
## 7052 0 0
## 7053 0 1
## 7054 0 0
## 7055 0 1
## 7056 0 0
## 7057 0 2
## 7058 0 0
## 7059 0 0
## 7060 0 1
## 7061 0 1
## 7062 0 0
## 7063 0 0
## 7064 0 0
## 7065 0 0
## 7066 0 1
## 7067 0 0
## 7068 0 1
## 7069 0 2
## 7070 0 3
## 7071 0 0
## 7072 0 0
## 7073 0 1
## 7074 0 1
## 7075 0 3
## 7076 0 4
## 7077 0 1
## 7078 0 2
## 7079 0 4
## 7080 0 2
## 7081 0 0
## 7082 0 0
## 7083 0 0
## 7084 0 3
## 7085 0 2
## 7086 0 0
## 7087 0 0
## 7088 0 0
## 7089 0 0
## 7090 0 0
## 7091 0 0
## 7092 0 0
## 7093 0 0
## 7094 0 3
## 7095 0 0
## 7096 0 0
## 7097 0 0
## 7098 0 0
## 7099 0 4
## 7100 0 1
## 7101 0 0
## 7102 0 0
## 7103 0 0
## 7104 0 0
## 7105 0 0
## 7106 0 0
## 7107 0 0
## 7108 0 3
## 7109 0 1
## 7110 0 1
## 7111 0 1
## 7112 0 1
## 7113 0 1
## 7114 0 0
## 7115 0 0
## 7116 0 0
## 7117 0 3
## 7118 0 0
## 7119 0 0
## 7120 0 0
## 7121 0 1
## 7122 0 1
## 7123 0 0
## 7124 0 0
## 7125 0 0
## 7126 0 0
## 7127 0 0
## 7128 0 1
## 7129 0 0
## 7130 0 0
## 7131 0 1
## 7132 0 1
## 7133 0 0
## 7134 0 0
## 7135 0 2
## 7136 0 0
## 7137 0 0
## 7138 0 0
## 7139 0 0
## 7140 0 2
## 7141 0 0
## 7142 0 0
## 7143 0 0
## 7144 0 1
## 7145 0 0
## 7146 0 0
## 7147 0 1
## 7148 0 0
## 7149 0 3
## 7150 0 0
## 7151 0 0
## 7152 0 2
## 7153 0 0
## 7154 0 4
## 7155 0 0
## 7156 0 0
## 7157 0 1
## 7158 0 1
## 7159 0 0
## 7160 0 5
## 7161 0 0
## 7162 0 1
## 7163 0 2
## 7164 0 0
## 7165 0 0
## 7166 0 0
## 7167 0 0
## 7168 0 6
## 7169 0 3
## 7170 0 1
## 7171 0 0
## 7172 0 1
## 7173 0 0
## 7174 0 2
## 7175 0 0
## 7176 0 3
## 7177 0 4
## 7178 0 0
## 7179 0 0
## 7180 0 1
## 7181 0 0
## 7182 0 1
## 7183 0 0
## 7184 0 0
## 7185 0 0
## 7186 0 0
## 7187 0 0
## 7188 0 0
## 7189 0 0
## 7190 0 2
## 7191 0 0
## 7192 0 1
## 7193 0 1
## 7194 0 1
## 7195 0 1
## 7196 0 0
## 7197 0 1
## 7198 0 0
## 7199 0 0
## 7200 0 4
## 7201 0 1
## 7202 0 1
## 7203 0 2
## 7204 0 1
## 7205 0 2
## 7206 0 0
## 7207 0 2
## 7208 0 1
## 7209 0 0
## 7210 0 0
## 7211 0 0
## 7212 0 0
## 7213 0 0
## 7214 0 0
## 7215 0 0
## 7216 0 0
## 7217 0 0
## 7218 0 0
## 7219 0 1
## 7220 0 1
## 7221 0 0
## 7222 0 1
## 7223 0 0
## 7224 0 1
## 7225 0 0
## 7226 0 0
## 7227 0 0
## 7228 0 0
## 7229 0 0
## 7230 0 1
## 7231 0 0
## 7232 0 0
## 7233 0 0
## 7234 0 0
## 7235 0 0
## 7236 0 0
## 7237 0 0
## 7238 0 0
## 7239 0 0
## 7240 0 0
## 7241 0 0
## 7242 0 0
## 7243 0 0
## 7244 0 0
## 7245 0 1
## 7246 0 2
## 7247 0 1
## 7248 0 1
## 7249 0 0
## 7250 0 0
## 7251 0 0
## 7252 0 2
## 7253 0 0
## 7254 0 0
## 7255 0 0
## 7256 0 0
## 7257 0 0
## 7258 0 2
## 7259 0 3
## 7260 0 2
## 7261 0 1
## 7262 0 1
## 7263 0 0
## 7264 0 0
## 7265 0 0
## 7266 0 1
## 7267 0 1
## 7268 0 0
## 7269 0 3
## 7270 0 3
## 7271 0 0
## 7272 0 3
## 7273 0 0
## 7274 0 2
## 7275 0 1
## 7276 0 0
## 7277 0 1
## 7278 0 0
## 7279 0 0
## 7280 0 0
## 7281 0 0
## 7282 0 0
## 7283 0 0
## 7284 0 0
## 7285 0 0
## 7286 0 0
## 7287 0 0
## 7288 0 0
## 7289 0 0
## 7290 0 0
## 7291 0 0
## 7292 0 0
## 7293 0 0
## 7294 0 2
## 7295 0 0
## 7296 0 0
## 7297 0 0
## 7298 0 0
## 7299 0 0
## 7300 0 0
## 7301 0 0
## 7302 0 0
## 7303 0 2
## 7304 0 1
## 7305 0 1
## 7306 0 1
## 7307 0 0
## 7308 0 0
## 7309 0 0
## 7310 0 0
## 7311 0 1
## 7312 0 1
## 7313 0 0
## 7314 0 0
## 7315 0 0
## 7316 0 0
## 7317 0 3
## 7318 0 1
## 7319 0 1
## 7320 0 0
## 7321 0 0
## 7322 0 0
## 7323 0 0
## 7324 0 0
## 7325 0 0
## 7326 0 1
## 7327 0 0
## 7328 0 0
## 7329 0 0
## 7330 0 0
## 7331 0 0
## 7332 0 0
## 7333 0 0
## 7334 0 2
## 7335 0 0
## 7336 0 1
## 7337 0 1
## 7338 0 0
## 7339 0 0
## 7340 0 1
## 7341 0 1
## 7342 0 1
## 7343 0 0
## 7344 0 0
## 7345 0 0
## 7346 0 0
## 7347 0 0
## 7348 0 0
## 7349 0 0
## 7350 0 0
## 7351 0 1
## 7352 0 1
## 7353 0 1
## 7354 0 0
## 7355 0 2
## 7356 0 4
## 7357 0 0
## 7358 0 0
## 7359 0 0
## 7360 0 0
## 7361 0 3
## 7362 0 0
## 7363 0 0
## 7364 0 0
## 7365 0 0
## 7366 0 0
## 7367 0 0
## 7368 0 0
## 7369 0 0
## 7370 0 0
## 7371 0 0
## 7372 0 0
## 7373 0 1
## 7374 0 2
## 7375 0 1
## 7376 0 0
## 7377 0 0
## 7378 0 1
## 7379 0 1
## 7380 0 0
## 7381 0 0
## 7382 0 0
## 7383 0 0
## 7384 0 0
## 7385 0 1
## 7386 0 0
## 7387 0 1
## 7388 0 0
## 7389 0 1
## 7390 0 1
## 7391 0 0
## 7392 0 0
## 7393 0 0
## 7394 0 1
## 7395 0 0
## 7396 0 0
## 7397 0 0
## 7398 0 0
## 7399 0 0
## 7400 0 0
## 7401 0 0
## 7402 0 0
## 7403 0 0
## 7404 0 4
## 7405 0 0
## 7406 0 0
## 7407 0 0
## 7408 0 1
## 7409 0 1
## 7410 0 1
## 7411 0 0
## 7412 0 1
## 7413 0 0
## 7414 0 0
## 7415 0 0
## 7416 0 0
## 7417 0 0
## 7418 0 0
## 7419 0 0
## 7420 0 0
## 7421 0 0
## 7422 0 0
## 7423 0 1
## 7424 0 0
## 7425 0 1
## 7426 0 0
## 7427 0 2
## 7428 0 1
## 7429 0 1
## 7430 0 0
## 7431 0 0
## 7432 0 0
## 7433 0 0
## 7434 0 0
## 7435 0 0
## 7436 0 0
## 7437 0 0
## 7438 0 1
## 7439 0 1
## 7440 0 0
## 7441 0 0
## 7442 0 0
## 7443 0 0
## 7444 0 0
## 7445 0 0
## 7446 0 1
## 7447 0 0
## 7448 0 0
## 7449 0 0
## 7450 0 0
## 7451 0 0
## 7452 0 0
## 7453 0 0
## 7454 0 0
## 7455 0 0
## 7456 0 0
## 7457 0 0
## 7458 0 0
## 7459 0 0
## 7460 0 0
## 7461 0 2
## 7462 0 2
## 7463 0 0
## 7464 0 0
## 7465 0 0
## 7466 0 0
## 7467 0 0
## 7468 0 0
## 7469 0 0
## 7470 0 0
## 7471 0 0
## 7472 0 1
## 7473 0 0
## 7474 0 0
## 7475 0 0
## 7476 0 0
## 7477 0 1
## 7478 0 0
## 7479 0 0
## 7480 0 1
## 7481 0 3
## 7482 0 0
## 7483 0 3
## 7484 0 0
## 7485 0 1
## 7486 0 0
## 7487 0 0
## 7488 0 0
## 7489 0 2
## 7490 0 0
## 7491 0 0
## 7492 0 0
## 7493 0 0
## 7494 0 0
## 7495 0 0
## 7496 0 0
## 7497 0 0
## 7498 0 1
## 7499 0 1
## 7500 0 6
## 7501 0 0
## 7502 0 0
## 7503 0 0
## 7504 0 0
## 7505 0 3
## 7506 0 0
## 7507 0 0
## 7508 0 0
## 7509 0 0
## 7510 0 1
## 7511 0 0
## 7512 0 0
## 7513 0 0
## 7514 0 0
## 7515 0 0
## 7516 0 0
## 7517 0 1
## 7518 0 0
## 7519 0 1
## 7520 0 0
## 7521 0 3
## 7522 0 0
## 7523 0 0
## 7524 0 1
## 7525 0 1
## 7526 0 2
## 7527 0 0
## 7528 0 0
## 7529 0 0
## 7530 0 0
## 7531 0 0
## 7532 0 0
## 7533 0 0
## 7534 0 3
## 7535 0 0
## 7536 0 4
## 7537 0 3
## 7538 0 0
## 7539 0 3
## 7540 0 1
## 7541 0 0
## 7542 0 0
## 7543 0 0
## 7544 0 0
## 7545 0 0
## 7546 0 0
## 7547 0 1
## 7548 0 1
## 7549 0 0
## 7550 0 0
## 7551 0 1
## 7552 0 1
## 7553 0 1
## 7554 0 0
## 7555 0 0
## 7556 0 1
## 7557 0 0
## 7558 0 1
## 7559 0 0
## 7560 0 0
## 7561 0 1
## 7562 0 0
## 7563 0 0
## 7564 0 0
## 7565 0 0
## 7566 0 0
## 7567 0 0
## 7568 0 0
## 7569 0 0
## 7570 0 1
## 7571 0 2
## 7572 0 0
## 7573 0 1
## 7574 0 1
## 7575 0 0
## 7576 0 1
## 7577 0 0
## 7578 0 0
## 7579 0 1
## 7580 0 0
## 7581 0 0
## 7582 0 1
## 7583 0 0
## 7584 0 2
## 7585 0 0
## 7586 0 2
## 7587 0 0
## 7588 0 1
## 7589 0 0
## 7590 0 1
## 7591 0 0
## 7592 0 2
## 7593 0 1
## 7594 0 0
## 7595 0 1
## 7596 0 1
## 7597 0 4
## 7598 0 1
## 7599 0 0
## 7600 0 0
## 7601 0 0
## 7602 0 0
## 7603 0 0
## 7604 0 0
## 7605 0 1
## 7606 0 0
## 7607 0 0
## 7608 0 0
## 7609 0 0
## 7610 0 0
## 7611 0 0
## 7612 0 0
## 7613 0 0
## 7614 0 0
## 7615 0 0
## 7616 0 0
## 7617 0 0
## 7618 0 0
## 7619 0 0
## 7620 0 0
## 7621 0 0
## 7622 0 0
## 7623 0 0
## 7624 0 0
## 7625 0 0
## 7626 0 1
## 7627 0 0
## 7628 0 0
## 7629 0 0
## 7630 0 1
## 7631 0 0
## 7632 0 0
## 7633 0 1
## 7634 0 1
## 7635 0 1
## 7636 0 1
## 7637 0 0
## 7638 0 0
## 7639 0 0
## 7640 0 0
## 7641 0 0
## 7642 0 2
## 7643 0 0
## 7644 0 0
## 7645 0 0
## 7646 0 0
## 7647 0 0
## 7648 0 0
## 7649 0 0
## 7650 0 0
## 7651 0 0
## 7652 0 0
## 7653 0 0
## 7654 0 1
## 7655 0 1
## 7656 0 0
## 7657 0 0
## 7658 0 0
## 7659 0 0
## 7660 0 0
## 7661 0 0
## 7662 0 0
## 7663 0 0
## 7664 0 2
## 7665 0 0
## 7666 0 2
## 7667 0 0
## 7668 0 0
## 7669 0 0
## 7670 0 0
## 7671 0 0
## 7672 0 0
## 7673 0 1
## 7674 0 0
## 7675 0 1
## 7676 0 0
## 7677 0 2
## 7678 0 2
## 7679 0 1
## 7680 0 1
## 7681 0 0
## 7682 0 0
## 7683 0 0
## 7684 0 0
## 7685 0 0
## 7686 0 0
## 7687 0 0
## 7688 0 0
## 7689 0 0
## 7690 0 0
## 7691 0 0
## 7692 0 0
## Total_Genes_Annotated Hyper_Raw_PValue Hyper_Adjp_BH
## 1 893 2.668026e-05 0.3510855
## 2 471 1.937665e-04 1.0000000
## 3 67 4.765860e-04 1.0000000
## 4 50 4.765860e-04 1.0000000
## 5 5 5.251431e-04 1.0000000
## 6 659 5.402147e-04 1.0000000
## 7 109 5.450029e-04 1.0000000
## 8 69 1.287051e-03 1.0000000
## 9 288 1.422206e-03 1.0000000
## 10 285 1.422206e-03 1.0000000
## 11 4738 1.505145e-03 1.0000000
## 12 4773 1.677950e-03 1.0000000
## 13 113 1.714505e-03 1.0000000
## 14 50 1.894825e-03 1.0000000
## 15 4564 2.029452e-03 1.0000000
## 16 11 2.345881e-03 1.0000000
## 17 44 2.345881e-03 1.0000000
## 18 68 2.632376e-03 1.0000000
## 19 127 3.059850e-03 1.0000000
## 20 114 3.233384e-03 1.0000000
## 21 399 3.294444e-03 1.0000000
## 22 4980 3.429323e-03 1.0000000
## 23 144 4.149016e-03 1.0000000
## 24 75 4.390715e-03 1.0000000
## 25 5172 4.507003e-03 1.0000000
## 26 59 4.694616e-03 1.0000000
## 27 67 4.694616e-03 1.0000000
## 28 30 4.694616e-03 1.0000000
## 29 83 4.694616e-03 1.0000000
## 30 62 4.694616e-03 1.0000000
## 31 40 4.694616e-03 1.0000000
## 32 147 6.692690e-03 1.0000000
## 33 65 6.744465e-03 1.0000000
## 34 83 6.744465e-03 1.0000000
## 35 8 6.744465e-03 1.0000000
## 36 68 6.744465e-03 1.0000000
## 37 63 6.744465e-03 1.0000000
## 38 31 6.744465e-03 1.0000000
## 39 6 6.744465e-03 1.0000000
## 40 18 6.744465e-03 1.0000000
## 41 108 7.046942e-03 1.0000000
## 42 119 7.351516e-03 1.0000000
## 43 90 7.351516e-03 1.0000000
## 44 79 8.677134e-03 1.0000000
## 45 118 8.677134e-03 1.0000000
## 46 57 9.131154e-03 1.0000000
## 47 7 9.131154e-03 1.0000000
## 48 146 9.457774e-03 1.0000000
## 49 1590 9.536224e-03 1.0000000
## 50 63 9.601127e-03 1.0000000
## 51 38 9.601127e-03 1.0000000
## 52 67 9.601127e-03 1.0000000
## 53 15 1.020856e-02 1.0000000
## 54 5 1.020856e-02 1.0000000
## 55 37 1.020856e-02 1.0000000
## 56 10 1.020856e-02 1.0000000
## 57 5 1.020856e-02 1.0000000
## 58 4 1.020856e-02 1.0000000
## 59 39 1.020856e-02 1.0000000
## 60 19 1.020856e-02 1.0000000
## 61 11 1.020856e-02 1.0000000
## 62 6 1.020856e-02 1.0000000
## 63 13 1.020856e-02 1.0000000
## 64 9 1.020856e-02 1.0000000
## 65 27 1.020856e-02 1.0000000
## 66 13 1.020856e-02 1.0000000
## 67 3 1.020856e-02 1.0000000
## 68 95 1.086487e-02 1.0000000
## 69 123 1.086487e-02 1.0000000
## 70 497 1.129784e-02 1.0000000
## 71 93 1.133399e-02 1.0000000
## 72 557 1.148424e-02 1.0000000
## 73 427 1.182013e-02 1.0000000
## 74 4010 1.183815e-02 1.0000000
## 75 461 1.203891e-02 1.0000000
## 76 359 1.251383e-02 1.0000000
## 77 740 1.299254e-02 1.0000000
## 78 144 1.303452e-02 1.0000000
## 79 176 1.431441e-02 1.0000000
## 80 474 1.467277e-02 1.0000000
## 81 298 1.579938e-02 1.0000000
## 82 114 1.607009e-02 1.0000000
## 83 121 1.607009e-02 1.0000000
## 84 139 1.607009e-02 1.0000000
## 85 132 1.729864e-02 1.0000000
## 86 4 1.729864e-02 1.0000000
## 87 4 1.729864e-02 1.0000000
## 88 131 1.755966e-02 1.0000000
## 89 12 1.796648e-02 1.0000000
## 90 50 1.796648e-02 1.0000000
## 91 781 2.113327e-02 1.0000000
## 92 5667 2.133366e-02 1.0000000
## 93 53 2.165629e-02 1.0000000
## 94 42 2.165629e-02 1.0000000
## 95 23 2.165629e-02 1.0000000
## 96 36 2.270170e-02 1.0000000
## 97 36 2.270170e-02 1.0000000
## 98 73 2.270170e-02 1.0000000
## 99 26 2.270170e-02 1.0000000
## 100 2 2.270170e-02 1.0000000
## 101 27 2.270170e-02 1.0000000
## 102 3 2.270170e-02 1.0000000
## 103 13 2.270170e-02 1.0000000
## 104 2 2.270170e-02 1.0000000
## 105 162 2.316967e-02 1.0000000
## 106 136 2.316967e-02 1.0000000
## 107 141 2.316967e-02 1.0000000
## 108 77 2.379505e-02 1.0000000
## 109 160 2.562504e-02 1.0000000
## 110 214 2.562504e-02 1.0000000
## 111 66 2.583510e-02 1.0000000
## 112 74 2.583510e-02 1.0000000
## 113 171 2.639903e-02 1.0000000
## 114 67 2.741739e-02 1.0000000
## 115 71 2.741739e-02 1.0000000
## 116 76 2.741739e-02 1.0000000
## 117 88 2.741739e-02 1.0000000
## 118 27 2.752108e-02 1.0000000
## 119 53 2.752108e-02 1.0000000
## 120 124 2.752108e-02 1.0000000
## 121 24 2.752108e-02 1.0000000
## 122 82 2.836707e-02 1.0000000
## 123 267 2.856180e-02 1.0000000
## 124 260 2.856180e-02 1.0000000
## 125 175 2.928899e-02 1.0000000
## 126 623 2.936438e-02 1.0000000
## 127 635 2.936438e-02 1.0000000
## 128 1507 2.983786e-02 1.0000000
## 129 121 2.999632e-02 1.0000000
## 130 199 3.125692e-02 1.0000000
## 131 132 3.340301e-02 1.0000000
## 132 212 3.392035e-02 1.0000000
## 133 252 3.392035e-02 1.0000000
## 134 259 3.392035e-02 1.0000000
## 135 120 3.406420e-02 1.0000000
## 136 107 3.406420e-02 1.0000000
## 137 121 3.406420e-02 1.0000000
## 138 14 3.421174e-02 1.0000000
## 139 21 3.421174e-02 1.0000000
## 140 29 3.421174e-02 1.0000000
## 141 22 3.421174e-02 1.0000000
## 142 37 3.421174e-02 1.0000000
## 143 28 3.421174e-02 1.0000000
## 144 19 3.421174e-02 1.0000000
## 145 13 3.421174e-02 1.0000000
## 146 25 3.421174e-02 1.0000000
## 147 17 3.421174e-02 1.0000000
## 148 40 3.421174e-02 1.0000000
## 149 11 3.421174e-02 1.0000000
## 150 18 3.421174e-02 1.0000000
## 151 50 3.421174e-02 1.0000000
## 152 16 3.421174e-02 1.0000000
## 153 20 3.421174e-02 1.0000000
## 154 30 3.421174e-02 1.0000000
## 155 19 3.421174e-02 1.0000000
## 156 9 3.421174e-02 1.0000000
## 157 16 3.421174e-02 1.0000000
## 158 21 3.421174e-02 1.0000000
## 159 7 3.421174e-02 1.0000000
## 160 29 3.421174e-02 1.0000000
## 161 10 3.421174e-02 1.0000000
## 162 6 3.421174e-02 1.0000000
## 163 4 3.421174e-02 1.0000000
## 164 6 3.421174e-02 1.0000000
## 165 20 3.421174e-02 1.0000000
## 166 2 3.421174e-02 1.0000000
## 167 1 3.421174e-02 1.0000000
## 168 4 3.421174e-02 1.0000000
## 169 2 3.421174e-02 1.0000000
## 170 17 3.421174e-02 1.0000000
## 171 4 3.421174e-02 1.0000000
## 172 39 3.421174e-02 1.0000000
## 173 5 3.421174e-02 1.0000000
## 174 2 3.421174e-02 1.0000000
## 175 4 3.421174e-02 1.0000000
## 176 6 3.421174e-02 1.0000000
## 177 4 3.421174e-02 1.0000000
## 178 1 3.421174e-02 1.0000000
## 179 10 3.421174e-02 1.0000000
## 180 689 3.546684e-02 1.0000000
## 181 691 3.546684e-02 1.0000000
## 182 172 3.579919e-02 1.0000000
## 183 117 3.638137e-02 1.0000000
## 184 145 3.864811e-02 1.0000000
## 185 109 3.887688e-02 1.0000000
## 186 52 4.001186e-02 1.0000000
## 187 68 4.001186e-02 1.0000000
## 188 33 4.001186e-02 1.0000000
## 189 1292 4.106196e-02 1.0000000
## 190 201 4.165065e-02 1.0000000
## 191 94 4.324736e-02 1.0000000
## 192 90 4.324736e-02 1.0000000
## 193 11 4.324736e-02 1.0000000
## 194 10 4.324736e-02 1.0000000
## 195 105 4.324736e-02 1.0000000
## 196 91 4.361946e-02 1.0000000
## 197 123 4.378363e-02 1.0000000
## 198 106 4.378363e-02 1.0000000
## 199 46 4.397801e-02 1.0000000
## 200 10 4.397801e-02 1.0000000
## 201 29 4.397801e-02 1.0000000
## 202 4 4.397801e-02 1.0000000
## 203 22 4.397801e-02 1.0000000
## 204 8 4.397801e-02 1.0000000
## 205 28 4.523365e-02 1.0000000
## 206 8 4.523365e-02 1.0000000
## 207 2 4.523365e-02 1.0000000
## 208 92 4.523365e-02 1.0000000
## 209 2 4.523365e-02 1.0000000
## 210 51 4.523365e-02 1.0000000
## 211 17 4.523365e-02 1.0000000
## 212 101 4.523365e-02 1.0000000
## 213 1105 4.700782e-02 1.0000000
## 214 1106 4.700782e-02 1.0000000
## 215 3 4.713402e-02 1.0000000
## 216 4 4.713402e-02 1.0000000
## 217 2 4.713402e-02 1.0000000
## 218 17 4.713402e-02 1.0000000
## 219 9 4.713402e-02 1.0000000
## 220 4 4.713402e-02 1.0000000
## 221 3 4.713402e-02 1.0000000
## 222 34 4.713402e-02 1.0000000
## 223 10 4.713402e-02 1.0000000
## 224 7 4.713402e-02 1.0000000
## 225 15 4.713402e-02 1.0000000
## 226 20 4.713402e-02 1.0000000
## 227 19 4.713402e-02 1.0000000
## 228 6 4.713402e-02 1.0000000
## 229 5 4.713402e-02 1.0000000
## 230 6 4.713402e-02 1.0000000
## 231 4 4.713402e-02 1.0000000
## 232 26 4.713402e-02 1.0000000
## 233 31 4.713402e-02 1.0000000
## 234 8 4.713402e-02 1.0000000
## 235 14 4.713402e-02 1.0000000
## 236 10 4.713402e-02 1.0000000
## 237 30 4.713402e-02 1.0000000
## 238 21 4.713402e-02 1.0000000
## 239 11 4.713402e-02 1.0000000
## 240 4 4.713402e-02 1.0000000
## 241 10 4.713402e-02 1.0000000
## 242 8 4.713402e-02 1.0000000
## 243 11 4.713402e-02 1.0000000
## 244 133 4.777584e-02 1.0000000
## 245 3493 4.800188e-02 1.0000000
## 246 294 4.834150e-02 1.0000000
## 247 107 4.948022e-02 1.0000000
## 248 118 4.948022e-02 1.0000000
## 249 85 4.948022e-02 1.0000000
## 250 454 4.984896e-02 1.0000000
## 251 254 5.088913e-02 1.0000000
## 252 201 5.088913e-02 1.0000000
## 253 118 5.123209e-02 1.0000000
## 254 198 5.409138e-02 1.0000000
## 255 244 5.438225e-02 1.0000000
## 256 329 5.510143e-02 1.0000000
## 257 21 5.568605e-02 1.0000000
## 258 368 5.603170e-02 1.0000000
## 259 166 5.644254e-02 1.0000000
## 260 69 5.706003e-02 1.0000000
## 261 1669 5.706260e-02 1.0000000
## 262 590 5.739428e-02 1.0000000
## 263 160 5.836080e-02 1.0000000
## 264 180 5.836080e-02 1.0000000
## 265 234 5.892896e-02 1.0000000
## 266 201 5.892896e-02 1.0000000
## 267 140 5.892896e-02 1.0000000
## 268 205 5.990934e-02 1.0000000
## 269 207 5.990934e-02 1.0000000
## 270 3749 6.090875e-02 1.0000000
## 271 160 6.210110e-02 1.0000000
## 272 42 6.220801e-02 1.0000000
## 273 8 6.220801e-02 1.0000000
## 274 20 6.220801e-02 1.0000000
## 275 43 6.220801e-02 1.0000000
## 276 23 6.220801e-02 1.0000000
## 277 242 6.487793e-02 1.0000000
## 278 231 6.487793e-02 1.0000000
## 279 112 6.528648e-02 1.0000000
## 280 55 6.528648e-02 1.0000000
## 281 824 6.637713e-02 1.0000000
## 282 106 6.789426e-02 1.0000000
## 283 96 6.851284e-02 1.0000000
## 284 97 6.851284e-02 1.0000000
## 285 66 6.851284e-02 1.0000000
## 286 57 6.851284e-02 1.0000000
## 287 95 6.851284e-02 1.0000000
## 288 32 6.851284e-02 1.0000000
## 289 4 6.851284e-02 1.0000000
## 290 3 6.851284e-02 1.0000000
## 291 190 6.997292e-02 1.0000000
## 292 151 7.169193e-02 1.0000000
## 293 26 7.183261e-02 1.0000000
## 294 40 7.183261e-02 1.0000000
## 295 21 7.183261e-02 1.0000000
## 296 32 7.183261e-02 1.0000000
## 297 114 7.183261e-02 1.0000000
## 298 29 7.183261e-02 1.0000000
## 299 20 7.183261e-02 1.0000000
## 300 21 7.183261e-02 1.0000000
## 301 13 7.183261e-02 1.0000000
## 302 24 7.183261e-02 1.0000000
## 303 11 7.183261e-02 1.0000000
## 304 53 7.183261e-02 1.0000000
## 305 12 7.183261e-02 1.0000000
## 306 27 7.183261e-02 1.0000000
## 307 11 7.183261e-02 1.0000000
## 308 22 7.183261e-02 1.0000000
## 309 32 7.183261e-02 1.0000000
## 310 20 7.183261e-02 1.0000000
## 311 22 7.183261e-02 1.0000000
## 312 9 7.183261e-02 1.0000000
## 313 17 7.183261e-02 1.0000000
## 314 65 7.183261e-02 1.0000000
## 315 6 7.183261e-02 1.0000000
## 316 12 7.183261e-02 1.0000000
## 317 36 7.183261e-02 1.0000000
## 318 36 7.183261e-02 1.0000000
## 319 22 7.183261e-02 1.0000000
## 320 396 7.252752e-02 1.0000000
## 321 72 7.268124e-02 1.0000000
## 322 69 7.316240e-02 1.0000000
## 323 30 7.316240e-02 1.0000000
## 324 60 7.316240e-02 1.0000000
## 325 4 7.316240e-02 1.0000000
## 326 1 7.316240e-02 1.0000000
## 327 1 7.316240e-02 1.0000000
## 328 60 7.316240e-02 1.0000000
## 329 23 7.316240e-02 1.0000000
## 330 22 7.316240e-02 1.0000000
## 331 87 7.468211e-02 1.0000000
## 332 65 7.468211e-02 1.0000000
## 333 177 7.880135e-02 1.0000000
## 334 179 7.880135e-02 1.0000000
## 335 151 8.014371e-02 1.0000000
## 336 393 8.185109e-02 1.0000000
## 337 161 8.276035e-02 1.0000000
## 338 109 8.276035e-02 1.0000000
## 339 109 8.276035e-02 1.0000000
## 340 90 8.388063e-02 1.0000000
## 341 23 8.533262e-02 1.0000000
## 342 134 8.533262e-02 1.0000000
## 343 86 8.533262e-02 1.0000000
## 344 57 8.533262e-02 1.0000000
## 345 22 8.533262e-02 1.0000000
## 346 21 8.533262e-02 1.0000000
## 347 267 8.864634e-02 1.0000000
## 348 260 8.864634e-02 1.0000000
## 349 479 8.957219e-02 1.0000000
## 350 91 9.052635e-02 1.0000000
## 351 42 9.069878e-02 1.0000000
## 352 38 9.069878e-02 1.0000000
## 353 145 9.069878e-02 1.0000000
## 354 6978 9.123812e-02 1.0000000
## 355 127 9.575795e-02 1.0000000
## 356 125 9.575795e-02 1.0000000
## 357 101 9.575795e-02 1.0000000
## 358 97 9.575795e-02 1.0000000
## 359 760 9.583436e-02 1.0000000
## 360 803 9.711472e-02 1.0000000
## 361 54 9.718838e-02 1.0000000
## 362 104 9.718838e-02 1.0000000
## 363 29 9.718838e-02 1.0000000
## 364 98 9.718838e-02 1.0000000
## 365 57 9.718838e-02 1.0000000
## 366 20 9.718838e-02 1.0000000
## 367 14 9.718838e-02 1.0000000
## 368 27 9.718838e-02 1.0000000
## 369 81 9.718838e-02 1.0000000
## 370 12 9.718838e-02 1.0000000
## 371 37 9.718838e-02 1.0000000
## 372 215 9.949207e-02 1.0000000
## 373 2039 9.966307e-02 1.0000000
## 374 372 1.047639e-01 1.0000000
## 375 156 1.052657e-01 1.0000000
## 376 122 1.052657e-01 1.0000000
## 377 328 1.065196e-01 1.0000000
## 378 391 1.070640e-01 1.0000000
## 379 555 1.086456e-01 1.0000000
## 380 72 1.097584e-01 1.0000000
## 381 10 1.097584e-01 1.0000000
## 382 3 1.097584e-01 1.0000000
## 383 29 1.097584e-01 1.0000000
## 384 38 1.097584e-01 1.0000000
## 385 10 1.097584e-01 1.0000000
## 386 39 1.097584e-01 1.0000000
## 387 12 1.097584e-01 1.0000000
## 388 15 1.097584e-01 1.0000000
## 389 14 1.097584e-01 1.0000000
## 390 18 1.097584e-01 1.0000000
## 391 28 1.097584e-01 1.0000000
## 392 129 1.097584e-01 1.0000000
## 393 75 1.097584e-01 1.0000000
## 394 10 1.097584e-01 1.0000000
## 395 5 1.097584e-01 1.0000000
## 396 5 1.097584e-01 1.0000000
## 397 5 1.097584e-01 1.0000000
## 398 4 1.097584e-01 1.0000000
## 399 2 1.097584e-01 1.0000000
## 400 58 1.097584e-01 1.0000000
## 401 44 1.097584e-01 1.0000000
## 402 42 1.097584e-01 1.0000000
## 403 23 1.097584e-01 1.0000000
## 404 17 1.097584e-01 1.0000000
## 405 4 1.097584e-01 1.0000000
## 406 43 1.097584e-01 1.0000000
## 407 183 1.111083e-01 1.0000000
## 408 37 1.111083e-01 1.0000000
## 409 67 1.125251e-01 1.0000000
## 410 15 1.125251e-01 1.0000000
## 411 100 1.125251e-01 1.0000000
## 412 70 1.125251e-01 1.0000000
## 413 3115 1.137847e-01 1.0000000
## 414 202 1.152299e-01 1.0000000
## 415 107 1.152299e-01 1.0000000
## 416 397 1.177467e-01 1.0000000
## 417 131 1.180835e-01 1.0000000
## 418 176 1.180835e-01 1.0000000
## 419 298 1.195508e-01 1.0000000
## 420 3480 1.197639e-01 1.0000000
## 421 209 1.199821e-01 1.0000000
## 422 47 1.209635e-01 1.0000000
## 423 38 1.209635e-01 1.0000000
## 424 12 1.209635e-01 1.0000000
## 425 51 1.209635e-01 1.0000000
## 426 52 1.209635e-01 1.0000000
## 427 31 1.209635e-01 1.0000000
## 428 15 1.209635e-01 1.0000000
## 429 26 1.209635e-01 1.0000000
## 430 28 1.209635e-01 1.0000000
## 431 24 1.209635e-01 1.0000000
## 432 33 1.209635e-01 1.0000000
## 433 66 1.209635e-01 1.0000000
## 434 47 1.209635e-01 1.0000000
## 435 69 1.209635e-01 1.0000000
## 436 63 1.209635e-01 1.0000000
## 437 32 1.209635e-01 1.0000000
## 438 43 1.209635e-01 1.0000000
## 439 26 1.209635e-01 1.0000000
## 440 38 1.209635e-01 1.0000000
## 441 36 1.209635e-01 1.0000000
## 442 8 1.209635e-01 1.0000000
## 443 77 1.209635e-01 1.0000000
## 444 22 1.209849e-01 1.0000000
## 445 9 1.209849e-01 1.0000000
## 446 20 1.209849e-01 1.0000000
## 447 7 1.209849e-01 1.0000000
## 448 8 1.209849e-01 1.0000000
## 449 11 1.209849e-01 1.0000000
## 450 14 1.209849e-01 1.0000000
## 451 8 1.209849e-01 1.0000000
## 452 13 1.209849e-01 1.0000000
## 453 6 1.209849e-01 1.0000000
## 454 17 1.209849e-01 1.0000000
## 455 39 1.209849e-01 1.0000000
## 456 11 1.209849e-01 1.0000000
## 457 5 1.209849e-01 1.0000000
## 458 3 1.209849e-01 1.0000000
## 459 6 1.209849e-01 1.0000000
## 460 17 1.209849e-01 1.0000000
## 461 2 1.209849e-01 1.0000000
## 462 11 1.209849e-01 1.0000000
## 463 22 1.209849e-01 1.0000000
## 464 11 1.209849e-01 1.0000000
## 465 12 1.209849e-01 1.0000000
## 466 7 1.209849e-01 1.0000000
## 467 3 1.209849e-01 1.0000000
## 468 2 1.209849e-01 1.0000000
## 469 1 1.209849e-01 1.0000000
## 470 11 1.209849e-01 1.0000000
## 471 2 1.209849e-01 1.0000000
## 472 3 1.209849e-01 1.0000000
## 473 6 1.209849e-01 1.0000000
## 474 7 1.209849e-01 1.0000000
## 475 4 1.209849e-01 1.0000000
## 476 2 1.209849e-01 1.0000000
## 477 8 1.209849e-01 1.0000000
## 478 6 1.209849e-01 1.0000000
## 479 4 1.209849e-01 1.0000000
## 480 21 1.209849e-01 1.0000000
## 481 4 1.209849e-01 1.0000000
## 482 12 1.209849e-01 1.0000000
## 483 9 1.209849e-01 1.0000000
## 484 8 1.209849e-01 1.0000000
## 485 5 1.209849e-01 1.0000000
## 486 34 1.209849e-01 1.0000000
## 487 10 1.209849e-01 1.0000000
## 488 4 1.209849e-01 1.0000000
## 489 5 1.209849e-01 1.0000000
## 490 1 1.209849e-01 1.0000000
## 491 1 1.209849e-01 1.0000000
## 492 1 1.209849e-01 1.0000000
## 493 1 1.209849e-01 1.0000000
## 494 1 1.209849e-01 1.0000000
## 495 1 1.209849e-01 1.0000000
## 496 1 1.209849e-01 1.0000000
## 497 1 1.209849e-01 1.0000000
## 498 19 1.209849e-01 1.0000000
## 499 26 1.209849e-01 1.0000000
## 500 3 1.209849e-01 1.0000000
## 501 18 1.209849e-01 1.0000000
## 502 13 1.209849e-01 1.0000000
## 503 7 1.209849e-01 1.0000000
## 504 7 1.209849e-01 1.0000000
## 505 3 1.209849e-01 1.0000000
## 506 34 1.209849e-01 1.0000000
## 507 3 1.209849e-01 1.0000000
## 508 6 1.209849e-01 1.0000000
## 509 18 1.209849e-01 1.0000000
## 510 6 1.209849e-01 1.0000000
## 511 28 1.209849e-01 1.0000000
## 512 12 1.209849e-01 1.0000000
## 513 7 1.209849e-01 1.0000000
## 514 33 1.209849e-01 1.0000000
## 515 1 1.209849e-01 1.0000000
## 516 2 1.209849e-01 1.0000000
## 517 10 1.209849e-01 1.0000000
## 518 5 1.209849e-01 1.0000000
## 519 15 1.209849e-01 1.0000000
## 520 23 1.209849e-01 1.0000000
## 521 2 1.209849e-01 1.0000000
## 522 9 1.209849e-01 1.0000000
## 523 4 1.209849e-01 1.0000000
## 524 7 1.209849e-01 1.0000000
## 525 62 1.209849e-01 1.0000000
## 526 32 1.209849e-01 1.0000000
## 527 2 1.209849e-01 1.0000000
## 528 11 1.209849e-01 1.0000000
## 529 5 1.209849e-01 1.0000000
## 530 7 1.209849e-01 1.0000000
## 531 12 1.209849e-01 1.0000000
## 532 18 1.209849e-01 1.0000000
## 533 5 1.209849e-01 1.0000000
## 534 4 1.209849e-01 1.0000000
## 535 16 1.209849e-01 1.0000000
## 536 8 1.209849e-01 1.0000000
## 537 3 1.209849e-01 1.0000000
## 538 27 1.209849e-01 1.0000000
## 539 8 1.209849e-01 1.0000000
## 540 6 1.209849e-01 1.0000000
## 541 3 1.209849e-01 1.0000000
## 542 30 1.209849e-01 1.0000000
## 543 7 1.209849e-01 1.0000000
## 544 1 1.209849e-01 1.0000000
## 545 2 1.209849e-01 1.0000000
## 546 1 1.209849e-01 1.0000000
## 547 1 1.209849e-01 1.0000000
## 548 1 1.209849e-01 1.0000000
## 549 2 1.209849e-01 1.0000000
## 550 1 1.209849e-01 1.0000000
## 551 1 1.209849e-01 1.0000000
## 552 8 1.209849e-01 1.0000000
## 553 1 1.209849e-01 1.0000000
## 554 11 1.209849e-01 1.0000000
## 555 2 1.209849e-01 1.0000000
## 556 8 1.209849e-01 1.0000000
## 557 2 1.209849e-01 1.0000000
## 558 1 1.209849e-01 1.0000000
## 559 1 1.209849e-01 1.0000000
## 560 1 1.209849e-01 1.0000000
## 561 4 1.209849e-01 1.0000000
## 562 2 1.209849e-01 1.0000000
## 563 4 1.209849e-01 1.0000000
## 564 1 1.209849e-01 1.0000000
## 565 23 1.209849e-01 1.0000000
## 566 4 1.209849e-01 1.0000000
## 567 6 1.209849e-01 1.0000000
## 568 3 1.209849e-01 1.0000000
## 569 2 1.209849e-01 1.0000000
## 570 4 1.209849e-01 1.0000000
## 571 5 1.209849e-01 1.0000000
## 572 405 1.215662e-01 1.0000000
## 573 180 1.217451e-01 1.0000000
## 574 325 1.217451e-01 1.0000000
## 575 143 1.218929e-01 1.0000000
## 576 22 1.226248e-01 1.0000000
## 577 3119 1.283612e-01 1.0000000
## 578 57 1.293685e-01 1.0000000
## 579 25 1.293685e-01 1.0000000
## 580 109 1.293685e-01 1.0000000
## 581 46 1.309015e-01 1.0000000
## 582 60 1.309015e-01 1.0000000
## 583 36 1.309015e-01 1.0000000
## 584 81 1.309015e-01 1.0000000
## 585 134 1.309015e-01 1.0000000
## 586 138 1.309015e-01 1.0000000
## 587 25 1.309015e-01 1.0000000
## 588 51 1.309015e-01 1.0000000
## 589 100 1.338502e-01 1.0000000
## 590 110 1.338502e-01 1.0000000
## 591 8934 1.348145e-01 1.0000000
## 592 640 1.359538e-01 1.0000000
## 593 129 1.367461e-01 1.0000000
## 594 133 1.367461e-01 1.0000000
## 595 144 1.367461e-01 1.0000000
## 596 9327 1.373626e-01 1.0000000
## 597 156 1.393968e-01 1.0000000
## 598 7605 1.394260e-01 1.0000000
## 599 2199 1.396490e-01 1.0000000
## 600 36 1.435282e-01 1.0000000
## 601 87 1.435282e-01 1.0000000
## 602 23 1.435282e-01 1.0000000
## 603 80 1.435282e-01 1.0000000
## 604 80 1.435282e-01 1.0000000
## 605 1344 1.450625e-01 1.0000000
## 606 564 1.475451e-01 1.0000000
## 607 60 1.512940e-01 1.0000000
## 608 124 1.512940e-01 1.0000000
## 609 175 1.514566e-01 1.0000000
## 610 383 1.518354e-01 1.0000000
## 611 40 1.527749e-01 1.0000000
## 612 65 1.527749e-01 1.0000000
## 613 18 1.527749e-01 1.0000000
## 614 11 1.527749e-01 1.0000000
## 615 32 1.527749e-01 1.0000000
## 616 67 1.527749e-01 1.0000000
## 617 107 1.527749e-01 1.0000000
## 618 7 1.527749e-01 1.0000000
## 619 30 1.527749e-01 1.0000000
## 620 72 1.527749e-01 1.0000000
## 621 3049 1.532426e-01 1.0000000
## 622 1007 1.539336e-01 1.0000000
## 623 20 1.560449e-01 1.0000000
## 624 108 1.560449e-01 1.0000000
## 625 34 1.560449e-01 1.0000000
## 626 114 1.560449e-01 1.0000000
## 627 3241 1.569467e-01 1.0000000
## 628 134 1.588125e-01 1.0000000
## 629 153 1.588125e-01 1.0000000
## 630 166 1.596171e-01 1.0000000
## 631 490 1.598264e-01 1.0000000
## 632 134 1.602182e-01 1.0000000
## 633 136 1.602182e-01 1.0000000
## 634 88 1.602182e-01 1.0000000
## 635 8847 1.622568e-01 1.0000000
## 636 1321 1.628252e-01 1.0000000
## 637 621 1.640796e-01 1.0000000
## 638 2575 1.674384e-01 1.0000000
## 639 248 1.684632e-01 1.0000000
## 640 84 1.690646e-01 1.0000000
## 641 20 1.690646e-01 1.0000000
## 642 34 1.690646e-01 1.0000000
## 643 259 1.711691e-01 1.0000000
## 644 1534 1.745212e-01 1.0000000
## 645 9664 1.747026e-01 1.0000000
## 646 71 1.779512e-01 1.0000000
## 647 28 1.779512e-01 1.0000000
## 648 27 1.779512e-01 1.0000000
## 649 101 1.779512e-01 1.0000000
## 650 36 1.787027e-01 1.0000000
## 651 88 1.787027e-01 1.0000000
## 652 64 1.787027e-01 1.0000000
## 653 10 1.787027e-01 1.0000000
## 654 4 1.787027e-01 1.0000000
## 655 2 1.787027e-01 1.0000000
## 656 75 1.787027e-01 1.0000000
## 657 13 1.787027e-01 1.0000000
## 658 13 1.787027e-01 1.0000000
## 659 30 1.787027e-01 1.0000000
## 660 9 1.787027e-01 1.0000000
## 661 61 1.787027e-01 1.0000000
## 662 5 1.787027e-01 1.0000000
## 663 47 1.787027e-01 1.0000000
## 664 28 1.787027e-01 1.0000000
## 665 21 1.787027e-01 1.0000000
## 666 6 1.787027e-01 1.0000000
## 667 19 1.787027e-01 1.0000000
## 668 17 1.787027e-01 1.0000000
## 669 2 1.787027e-01 1.0000000
## 670 1 1.787027e-01 1.0000000
## 671 37 1.787027e-01 1.0000000
## 672 697 1.803451e-01 1.0000000
## 673 511 1.807601e-01 1.0000000
## 674 166 1.809603e-01 1.0000000
## 675 42 1.827535e-01 1.0000000
## 676 84 1.827535e-01 1.0000000
## 677 13 1.827535e-01 1.0000000
## 678 412 1.827710e-01 1.0000000
## 679 121 1.850876e-01 1.0000000
## 680 71 1.850876e-01 1.0000000
## 681 83 1.850876e-01 1.0000000
## 682 83 1.850876e-01 1.0000000
## 683 72 1.850876e-01 1.0000000
## 684 144 1.850876e-01 1.0000000
## 685 51 1.850876e-01 1.0000000
## 686 89 1.850876e-01 1.0000000
## 687 120 1.858359e-01 1.0000000
## 688 105 1.858359e-01 1.0000000
## 689 148 1.858359e-01 1.0000000
## 690 275 1.864311e-01 1.0000000
## 691 261 1.864311e-01 1.0000000
## 692 476 1.879901e-01 1.0000000
## 693 511 1.884556e-01 1.0000000
## 694 191 1.899083e-01 1.0000000
## 695 517 1.952133e-01 1.0000000
## 696 511 1.952133e-01 1.0000000
## 697 392 1.970687e-01 1.0000000
## 698 36 2.009247e-01 1.0000000
## 699 24 2.009247e-01 1.0000000
## 700 20 2.009247e-01 1.0000000
## 701 26 2.009247e-01 1.0000000
## 702 49 2.009247e-01 1.0000000
## 703 46 2.009247e-01 1.0000000
## 704 27 2.009247e-01 1.0000000
## 705 46 2.009247e-01 1.0000000
## 706 43 2.009247e-01 1.0000000
## 707 50 2.009247e-01 1.0000000
## 708 83 2.009247e-01 1.0000000
## 709 20 2.009247e-01 1.0000000
## 710 17 2.009247e-01 1.0000000
## 711 29 2.009247e-01 1.0000000
## 712 62 2.009247e-01 1.0000000
## 713 131 2.009247e-01 1.0000000
## 714 71 2.009247e-01 1.0000000
## 715 46 2.009247e-01 1.0000000
## 716 49 2.009247e-01 1.0000000
## 717 13 2.009247e-01 1.0000000
## 718 24 2.009247e-01 1.0000000
## 719 12 2.009247e-01 1.0000000
## 720 15 2.009247e-01 1.0000000
## 721 26 2.009247e-01 1.0000000
## 722 48 2.009247e-01 1.0000000
## 723 143 2.036014e-01 1.0000000
## 724 154 2.036014e-01 1.0000000
## 725 396 2.040997e-01 1.0000000
## 726 305 2.053143e-01 1.0000000
## 727 323 2.053143e-01 1.0000000
## 728 155 2.068055e-01 1.0000000
## 729 13 2.077581e-01 1.0000000
## 730 20 2.077581e-01 1.0000000
## 731 32 2.077581e-01 1.0000000
## 732 36 2.077581e-01 1.0000000
## 733 42 2.077581e-01 1.0000000
## 734 33 2.077581e-01 1.0000000
## 735 19 2.077581e-01 1.0000000
## 736 16 2.077581e-01 1.0000000
## 737 21 2.077581e-01 1.0000000
## 738 46 2.077581e-01 1.0000000
## 739 21 2.077581e-01 1.0000000
## 740 45 2.077581e-01 1.0000000
## 741 9 2.077581e-01 1.0000000
## 742 4 2.077581e-01 1.0000000
## 743 19 2.077581e-01 1.0000000
## 744 28 2.077581e-01 1.0000000
## 745 22 2.077581e-01 1.0000000
## 746 12 2.077581e-01 1.0000000
## 747 14 2.077581e-01 1.0000000
## 748 46 2.077581e-01 1.0000000
## 749 31 2.077581e-01 1.0000000
## 750 20 2.077581e-01 1.0000000
## 751 12 2.077581e-01 1.0000000
## 752 26 2.077581e-01 1.0000000
## 753 46 2.077581e-01 1.0000000
## 754 2 2.077581e-01 1.0000000
## 755 33 2.077581e-01 1.0000000
## 756 24 2.077581e-01 1.0000000
## 757 43 2.077581e-01 1.0000000
## 758 31 2.077581e-01 1.0000000
## 759 16 2.077581e-01 1.0000000
## 760 7 2.077581e-01 1.0000000
## 761 11 2.077581e-01 1.0000000
## 762 2 2.077581e-01 1.0000000
## 763 1 2.077581e-01 1.0000000
## 764 15 2.077581e-01 1.0000000
## 765 40 2.077581e-01 1.0000000
## 766 43 2.077581e-01 1.0000000
## 767 64 2.077581e-01 1.0000000
## 768 34 2.077581e-01 1.0000000
## 769 8 2.077581e-01 1.0000000
## 770 13 2.077581e-01 1.0000000
## 771 6 2.077581e-01 1.0000000
## 772 7 2.077581e-01 1.0000000
## 773 31 2.077581e-01 1.0000000
## 774 19 2.077581e-01 1.0000000
## 775 65 2.077581e-01 1.0000000
## 776 3 2.077581e-01 1.0000000
## 777 4 2.077581e-01 1.0000000
## 778 5 2.077581e-01 1.0000000
## 779 47 2.077581e-01 1.0000000
## 780 6 2.077581e-01 1.0000000
## 781 6 2.077581e-01 1.0000000
## 782 423 2.087382e-01 1.0000000
## 783 278 2.096068e-01 1.0000000
## 784 116 2.098052e-01 1.0000000
## 785 208 2.098052e-01 1.0000000
## 786 352 2.104822e-01 1.0000000
## 787 42 2.109306e-01 1.0000000
## 788 136 2.109306e-01 1.0000000
## 789 33 2.109306e-01 1.0000000
## 790 57 2.109306e-01 1.0000000
## 791 48 2.109306e-01 1.0000000
## 792 26 2.109306e-01 1.0000000
## 793 139 2.109306e-01 1.0000000
## 794 42 2.109306e-01 1.0000000
## 795 32 2.109306e-01 1.0000000
## 796 57 2.109306e-01 1.0000000
## 797 61 2.109306e-01 1.0000000
## 798 189 2.124956e-01 1.0000000
## 799 226 2.139747e-01 1.0000000
## 800 66 2.147201e-01 1.0000000
## 801 232 2.152044e-01 1.0000000
## 802 85 2.153022e-01 1.0000000
## 803 86 2.153022e-01 1.0000000
## 804 109 2.153022e-01 1.0000000
## 805 58 2.153022e-01 1.0000000
## 806 119 2.153022e-01 1.0000000
## 807 12 2.153022e-01 1.0000000
## 808 105 2.153022e-01 1.0000000
## 809 96 2.153022e-01 1.0000000
## 810 69 2.162368e-01 1.0000000
## 811 214 2.162368e-01 1.0000000
## 812 62 2.166545e-01 1.0000000
## 813 78 2.166545e-01 1.0000000
## 814 115 2.166545e-01 1.0000000
## 815 65 2.166545e-01 1.0000000
## 816 121 2.166545e-01 1.0000000
## 817 66 2.166545e-01 1.0000000
## 818 65 2.166545e-01 1.0000000
## 819 63 2.166545e-01 1.0000000
## 820 60 2.166545e-01 1.0000000
## 821 18 2.172763e-01 1.0000000
## 822 36 2.172763e-01 1.0000000
## 823 23 2.172763e-01 1.0000000
## 824 18 2.172763e-01 1.0000000
## 825 36 2.172763e-01 1.0000000
## 826 10 2.172763e-01 1.0000000
## 827 9 2.172763e-01 1.0000000
## 828 11 2.172763e-01 1.0000000
## 829 6 2.172763e-01 1.0000000
## 830 2 2.172763e-01 1.0000000
## 831 1 2.172763e-01 1.0000000
## 832 6 2.172763e-01 1.0000000
## 833 9 2.172763e-01 1.0000000
## 834 3 2.172763e-01 1.0000000
## 835 8 2.172763e-01 1.0000000
## 836 10 2.172763e-01 1.0000000
## 837 21 2.172763e-01 1.0000000
## 838 18 2.172763e-01 1.0000000
## 839 9 2.172763e-01 1.0000000
## 840 23 2.172763e-01 1.0000000
## 841 2 2.172763e-01 1.0000000
## 842 3 2.172763e-01 1.0000000
## 843 2 2.172763e-01 1.0000000
## 844 21 2.172763e-01 1.0000000
## 845 7 2.172763e-01 1.0000000
## 846 7 2.172763e-01 1.0000000
## 847 34 2.172763e-01 1.0000000
## 848 19 2.172763e-01 1.0000000
## 849 13 2.172763e-01 1.0000000
## 850 16 2.172763e-01 1.0000000
## 851 3 2.172763e-01 1.0000000
## 852 12 2.172763e-01 1.0000000
## 853 3 2.172763e-01 1.0000000
## 854 3 2.172763e-01 1.0000000
## 855 14 2.172763e-01 1.0000000
## 856 10 2.172763e-01 1.0000000
## 857 37 2.172763e-01 1.0000000
## 858 6 2.172763e-01 1.0000000
## 859 6 2.172763e-01 1.0000000
## 860 9 2.172763e-01 1.0000000
## 861 11 2.172763e-01 1.0000000
## 862 6 2.172763e-01 1.0000000
## 863 6 2.172763e-01 1.0000000
## 864 8 2.172763e-01 1.0000000
## 865 2 2.172763e-01 1.0000000
## 866 3 2.172763e-01 1.0000000
## 867 12 2.172763e-01 1.0000000
## 868 11 2.172763e-01 1.0000000
## 869 5 2.172763e-01 1.0000000
## 870 20 2.172763e-01 1.0000000
## 871 8 2.172763e-01 1.0000000
## 872 3 2.172763e-01 1.0000000
## 873 17 2.172763e-01 1.0000000
## 874 7 2.172763e-01 1.0000000
## 875 25 2.172763e-01 1.0000000
## 876 17 2.172763e-01 1.0000000
## 877 7 2.172763e-01 1.0000000
## 878 7 2.172763e-01 1.0000000
## 879 4 2.172763e-01 1.0000000
## 880 22 2.172763e-01 1.0000000
## 881 18 2.172763e-01 1.0000000
## 882 60 2.172763e-01 1.0000000
## 883 39 2.172763e-01 1.0000000
## 884 10 2.172763e-01 1.0000000
## 885 36 2.172763e-01 1.0000000
## 886 7 2.172763e-01 1.0000000
## 887 6 2.172763e-01 1.0000000
## 888 12 2.172763e-01 1.0000000
## 889 16 2.172763e-01 1.0000000
## 890 21 2.172763e-01 1.0000000
## 891 5 2.172763e-01 1.0000000
## 892 3 2.172763e-01 1.0000000
## 893 2 2.172763e-01 1.0000000
## 894 3 2.172763e-01 1.0000000
## 895 1 2.172763e-01 1.0000000
## 896 1 2.172763e-01 1.0000000
## 897 6 2.172763e-01 1.0000000
## 898 5 2.172763e-01 1.0000000
## 899 7 2.172763e-01 1.0000000
## 900 10 2.172763e-01 1.0000000
## 901 1 2.172763e-01 1.0000000
## 902 16 2.172763e-01 1.0000000
## 903 3 2.172763e-01 1.0000000
## 904 5 2.172763e-01 1.0000000
## 905 37 2.172763e-01 1.0000000
## 906 1 2.172763e-01 1.0000000
## 907 4 2.172763e-01 1.0000000
## 908 22 2.172763e-01 1.0000000
## 909 11 2.172763e-01 1.0000000
## 910 15 2.172763e-01 1.0000000
## 911 11 2.172763e-01 1.0000000
## 912 11 2.172763e-01 1.0000000
## 913 10 2.172763e-01 1.0000000
## 914 11 2.172763e-01 1.0000000
## 915 25 2.172763e-01 1.0000000
## 916 20 2.172763e-01 1.0000000
## 917 28 2.172763e-01 1.0000000
## 918 4 2.172763e-01 1.0000000
## 919 2 2.172763e-01 1.0000000
## 920 32 2.172763e-01 1.0000000
## 921 16 2.172763e-01 1.0000000
## 922 1 2.172763e-01 1.0000000
## 923 16 2.172763e-01 1.0000000
## 924 16 2.172763e-01 1.0000000
## 925 12 2.172763e-01 1.0000000
## 926 12 2.172763e-01 1.0000000
## 927 12 2.172763e-01 1.0000000
## 928 17 2.172763e-01 1.0000000
## 929 10 2.172763e-01 1.0000000
## 930 4 2.172763e-01 1.0000000
## 931 1 2.172763e-01 1.0000000
## 932 4 2.172763e-01 1.0000000
## 933 28 2.172763e-01 1.0000000
## 934 6 2.172763e-01 1.0000000
## 935 3 2.172763e-01 1.0000000
## 936 1 2.172763e-01 1.0000000
## 937 4 2.172763e-01 1.0000000
## 938 4 2.172763e-01 1.0000000
## 939 5 2.172763e-01 1.0000000
## 940 8 2.172763e-01 1.0000000
## 941 8 2.172763e-01 1.0000000
## 942 6 2.172763e-01 1.0000000
## 943 3 2.172763e-01 1.0000000
## 944 22 2.172763e-01 1.0000000
## 945 3 2.172763e-01 1.0000000
## 946 9 2.172763e-01 1.0000000
## 947 1 2.172763e-01 1.0000000
## 948 21 2.172763e-01 1.0000000
## 949 3 2.172763e-01 1.0000000
## 950 1 2.172763e-01 1.0000000
## 951 1 2.172763e-01 1.0000000
## 952 2 2.172763e-01 1.0000000
## 953 8 2.172763e-01 1.0000000
## 954 6 2.172763e-01 1.0000000
## 955 4 2.172763e-01 1.0000000
## 956 2 2.172763e-01 1.0000000
## 957 5 2.172763e-01 1.0000000
## 958 4 2.172763e-01 1.0000000
## 959 4 2.172763e-01 1.0000000
## 960 9 2.172763e-01 1.0000000
## 961 3 2.172763e-01 1.0000000
## 962 2 2.172763e-01 1.0000000
## 963 1 2.172763e-01 1.0000000
## 964 4 2.172763e-01 1.0000000
## 965 1 2.172763e-01 1.0000000
## 966 27 2.172763e-01 1.0000000
## 967 24 2.172763e-01 1.0000000
## 968 1 2.172763e-01 1.0000000
## 969 3 2.172763e-01 1.0000000
## 970 1 2.172763e-01 1.0000000
## 971 8 2.172763e-01 1.0000000
## 972 15 2.172763e-01 1.0000000
## 973 2 2.172763e-01 1.0000000
## 974 2 2.172763e-01 1.0000000
## 975 1 2.172763e-01 1.0000000
## 976 1 2.172763e-01 1.0000000
## 977 5 2.172763e-01 1.0000000
## 978 6 2.172763e-01 1.0000000
## 979 15 2.172763e-01 1.0000000
## 980 16 2.172763e-01 1.0000000
## 981 19 2.172763e-01 1.0000000
## 982 2 2.172763e-01 1.0000000
## 983 3 2.172763e-01 1.0000000
## 984 286 2.229039e-01 1.0000000
## 985 277 2.229039e-01 1.0000000
## 986 179 2.250583e-01 1.0000000
## 987 248 2.250583e-01 1.0000000
## 988 381 2.252625e-01 1.0000000
## 989 488 2.252625e-01 1.0000000
## 990 196 2.302017e-01 1.0000000
## 991 199 2.302017e-01 1.0000000
## 992 203 2.319859e-01 1.0000000
## 993 641 2.337020e-01 1.0000000
## 994 174 2.354972e-01 1.0000000
## 995 208 2.354972e-01 1.0000000
## 996 273 2.365118e-01 1.0000000
## 997 149 2.365118e-01 1.0000000
## 998 264 2.365118e-01 1.0000000
## 999 600 2.391371e-01 1.0000000
## 1000 2321 2.395634e-01 1.0000000
## 1001 1488 2.396465e-01 1.0000000
## 1002 208 2.397940e-01 1.0000000
## 1003 148 2.409571e-01 1.0000000
## 1004 516 2.418169e-01 1.0000000
## 1005 35 2.420268e-01 1.0000000
## 1006 64 2.420268e-01 1.0000000
## 1007 20 2.420268e-01 1.0000000
## 1008 46 2.420268e-01 1.0000000
## 1009 10 2.420268e-01 1.0000000
## 1010 22 2.420268e-01 1.0000000
## 1011 31 2.420268e-01 1.0000000
## 1012 55 2.420268e-01 1.0000000
## 1013 34 2.420268e-01 1.0000000
## 1014 29 2.420268e-01 1.0000000
## 1015 3 2.420268e-01 1.0000000
## 1016 36 2.420268e-01 1.0000000
## 1017 14 2.420268e-01 1.0000000
## 1018 23 2.420268e-01 1.0000000
## 1019 39 2.420268e-01 1.0000000
## 1020 86 2.420268e-01 1.0000000
## 1021 11 2.420268e-01 1.0000000
## 1022 16 2.420268e-01 1.0000000
## 1023 23 2.420268e-01 1.0000000
## 1024 20 2.420268e-01 1.0000000
## 1025 10 2.420268e-01 1.0000000
## 1026 6 2.420268e-01 1.0000000
## 1027 884 2.441574e-01 1.0000000
## 1028 1086 2.451352e-01 1.0000000
## 1029 368 2.465668e-01 1.0000000
## 1030 361 2.465668e-01 1.0000000
## 1031 86 2.491914e-01 1.0000000
## 1032 98 2.491914e-01 1.0000000
## 1033 61 2.491914e-01 1.0000000
## 1034 69 2.491914e-01 1.0000000
## 1035 176 2.525958e-01 1.0000000
## 1036 117 2.525958e-01 1.0000000
## 1037 77 2.525958e-01 1.0000000
## 1038 139 2.525958e-01 1.0000000
## 1039 166 2.525958e-01 1.0000000
## 1040 37 2.527928e-01 1.0000000
## 1041 53 2.527928e-01 1.0000000
## 1042 50 2.527928e-01 1.0000000
## 1043 30 2.527928e-01 1.0000000
## 1044 20 2.527928e-01 1.0000000
## 1045 54 2.527928e-01 1.0000000
## 1046 63 2.527928e-01 1.0000000
## 1047 54 2.527928e-01 1.0000000
## 1048 53 2.527928e-01 1.0000000
## 1049 59 2.527928e-01 1.0000000
## 1050 11 2.527928e-01 1.0000000
## 1051 60 2.527928e-01 1.0000000
## 1052 24 2.527928e-01 1.0000000
## 1053 7 2.527928e-01 1.0000000
## 1054 50 2.527928e-01 1.0000000
## 1055 12 2.527928e-01 1.0000000
## 1056 44 2.527928e-01 1.0000000
## 1057 59 2.527928e-01 1.0000000
## 1058 372 2.538648e-01 1.0000000
## 1059 351 2.538648e-01 1.0000000
## 1060 42 2.550210e-01 1.0000000
## 1061 58 2.550210e-01 1.0000000
## 1062 33 2.550210e-01 1.0000000
## 1063 47 2.556603e-01 1.0000000
## 1064 61 2.556603e-01 1.0000000
## 1065 42 2.556603e-01 1.0000000
## 1066 58 2.556603e-01 1.0000000
## 1067 32 2.556603e-01 1.0000000
## 1068 21 2.556603e-01 1.0000000
## 1069 28 2.556603e-01 1.0000000
## 1070 53 2.556603e-01 1.0000000
## 1071 83 2.556603e-01 1.0000000
## 1072 10 2.556603e-01 1.0000000
## 1073 65 2.556603e-01 1.0000000
## 1074 98 2.556603e-01 1.0000000
## 1075 249 2.643724e-01 1.0000000
## 1076 248 2.644206e-01 1.0000000
## 1077 126 2.644206e-01 1.0000000
## 1078 568 2.689950e-01 1.0000000
## 1079 213 2.706974e-01 1.0000000
## 1080 140 2.706974e-01 1.0000000
## 1081 2372 2.722482e-01 1.0000000
## 1082 253 2.771117e-01 1.0000000
## 1083 243 2.771117e-01 1.0000000
## 1084 86 2.771117e-01 1.0000000
## 1085 150 2.782090e-01 1.0000000
## 1086 287 2.810089e-01 1.0000000
## 1087 348 2.813276e-01 1.0000000
## 1088 116 2.836215e-01 1.0000000
## 1089 169 2.836215e-01 1.0000000
## 1090 81 2.836215e-01 1.0000000
## 1091 52 2.836215e-01 1.0000000
## 1092 51 2.836215e-01 1.0000000
## 1093 63 2.836215e-01 1.0000000
## 1094 141 2.836215e-01 1.0000000
## 1095 150 2.855989e-01 1.0000000
## 1096 205 2.855989e-01 1.0000000
## 1097 396 2.874760e-01 1.0000000
## 1098 313 2.885718e-01 1.0000000
## 1099 208 2.887945e-01 1.0000000
## 1100 68 2.901433e-01 1.0000000
## 1101 65 2.901433e-01 1.0000000
## 1102 56 2.901433e-01 1.0000000
## 1103 159 2.933468e-01 1.0000000
## 1104 75 2.965118e-01 1.0000000
## 1105 88 2.965118e-01 1.0000000
## 1106 140 2.965118e-01 1.0000000
## 1107 47 2.965118e-01 1.0000000
## 1108 296 2.965119e-01 1.0000000
## 1109 54 2.983752e-01 1.0000000
## 1110 38 2.983752e-01 1.0000000
## 1111 37 2.983752e-01 1.0000000
## 1112 14 2.983752e-01 1.0000000
## 1113 43 2.983752e-01 1.0000000
## 1114 27 2.983752e-01 1.0000000
## 1115 31 2.983752e-01 1.0000000
## 1116 33 2.983752e-01 1.0000000
## 1117 24 2.983752e-01 1.0000000
## 1118 59 2.983752e-01 1.0000000
## 1119 22 2.983752e-01 1.0000000
## 1120 21 2.983752e-01 1.0000000
## 1121 10 2.983752e-01 1.0000000
## 1122 19 2.983752e-01 1.0000000
## 1123 12 2.983752e-01 1.0000000
## 1124 13 2.983752e-01 1.0000000
## 1125 17 2.983752e-01 1.0000000
## 1126 25 2.983752e-01 1.0000000
## 1127 27 2.983752e-01 1.0000000
## 1128 5 2.983752e-01 1.0000000
## 1129 21 2.983752e-01 1.0000000
## 1130 18 2.983752e-01 1.0000000
## 1131 24 2.983752e-01 1.0000000
## 1132 27 2.983752e-01 1.0000000
## 1133 24 2.983752e-01 1.0000000
## 1134 23 2.983752e-01 1.0000000
## 1135 9 2.983752e-01 1.0000000
## 1136 13 2.983752e-01 1.0000000
## 1137 14 2.983752e-01 1.0000000
## 1138 3 2.983752e-01 1.0000000
## 1139 53 2.983752e-01 1.0000000
## 1140 19 2.983752e-01 1.0000000
## 1141 3 2.983752e-01 1.0000000
## 1142 25 2.983752e-01 1.0000000
## 1143 21 2.983752e-01 1.0000000
## 1144 26 2.983752e-01 1.0000000
## 1145 12 2.983752e-01 1.0000000
## 1146 33 2.983752e-01 1.0000000
## 1147 6 2.983752e-01 1.0000000
## 1148 26 2.983752e-01 1.0000000
## 1149 14 2.983752e-01 1.0000000
## 1150 48 2.983752e-01 1.0000000
## 1151 37 2.983752e-01 1.0000000
## 1152 24 2.983752e-01 1.0000000
## 1153 4 2.983752e-01 1.0000000
## 1154 50 2.983752e-01 1.0000000
## 1155 32 2.983752e-01 1.0000000
## 1156 8 2.983752e-01 1.0000000
## 1157 18 2.983752e-01 1.0000000
## 1158 10 2.983752e-01 1.0000000
## 1159 19 2.983752e-01 1.0000000
## 1160 26 2.983752e-01 1.0000000
## 1161 11 2.983752e-01 1.0000000
## 1162 29 2.983752e-01 1.0000000
## 1163 31 2.983752e-01 1.0000000
## 1164 24 2.983752e-01 1.0000000
## 1165 158 3.014927e-01 1.0000000
## 1166 96 3.014927e-01 1.0000000
## 1167 74 3.023821e-01 1.0000000
## 1168 36 3.023821e-01 1.0000000
## 1169 45 3.023821e-01 1.0000000
## 1170 31 3.023821e-01 1.0000000
## 1171 82 3.023821e-01 1.0000000
## 1172 24 3.023821e-01 1.0000000
## 1173 22 3.023821e-01 1.0000000
## 1174 98 3.023821e-01 1.0000000
## 1175 13 3.023821e-01 1.0000000
## 1176 131 3.048738e-01 1.0000000
## 1177 128 3.048738e-01 1.0000000
## 1178 35 3.069667e-01 1.0000000
## 1179 69 3.069667e-01 1.0000000
## 1180 21 3.069667e-01 1.0000000
## 1181 33 3.069667e-01 1.0000000
## 1182 95 3.069667e-01 1.0000000
## 1183 36 3.069667e-01 1.0000000
## 1184 2683 3.074989e-01 1.0000000
## 1185 81 3.081610e-01 1.0000000
## 1186 15 3.081610e-01 1.0000000
## 1187 66 3.081610e-01 1.0000000
## 1188 81 3.081610e-01 1.0000000
## 1189 24 3.081610e-01 1.0000000
## 1190 11 3.081610e-01 1.0000000
## 1191 10 3.081610e-01 1.0000000
## 1192 33 3.081610e-01 1.0000000
## 1193 5 3.081610e-01 1.0000000
## 1194 4 3.081610e-01 1.0000000
## 1195 8 3.081610e-01 1.0000000
## 1196 40 3.081610e-01 1.0000000
## 1197 55 3.081610e-01 1.0000000
## 1198 14 3.081610e-01 1.0000000
## 1199 59 3.081610e-01 1.0000000
## 1200 68 3.081610e-01 1.0000000
## 1201 30 3.081610e-01 1.0000000
## 1202 31 3.081610e-01 1.0000000
## 1203 44 3.081610e-01 1.0000000
## 1204 69 3.081610e-01 1.0000000
## 1205 8 3.081610e-01 1.0000000
## 1206 32 3.081610e-01 1.0000000
## 1207 9 3.081610e-01 1.0000000
## 1208 6 3.081610e-01 1.0000000
## 1209 7 3.081610e-01 1.0000000
## 1210 50 3.081610e-01 1.0000000
## 1211 4 3.081610e-01 1.0000000
## 1212 3 3.081610e-01 1.0000000
## 1213 2 3.081610e-01 1.0000000
## 1214 4746 3.096258e-01 1.0000000
## 1215 97 3.100845e-01 1.0000000
## 1216 112 3.100845e-01 1.0000000
## 1217 154 3.100845e-01 1.0000000
## 1218 86 3.100845e-01 1.0000000
## 1219 927 3.116053e-01 1.0000000
## 1220 239 3.134376e-01 1.0000000
## 1221 215 3.134376e-01 1.0000000
## 1222 132 3.137124e-01 1.0000000
## 1223 135 3.137124e-01 1.0000000
## 1224 115 3.137124e-01 1.0000000
## 1225 231 3.137124e-01 1.0000000
## 1226 3748 3.153952e-01 1.0000000
## 1227 3666 3.189697e-01 1.0000000
## 1228 143 3.191799e-01 1.0000000
## 1229 97 3.191799e-01 1.0000000
## 1230 97 3.191799e-01 1.0000000
## 1231 241 3.230954e-01 1.0000000
## 1232 247 3.230954e-01 1.0000000
## 1233 367 3.268055e-01 1.0000000
## 1234 461 3.268055e-01 1.0000000
## 1235 238 3.288481e-01 1.0000000
## 1236 1013 3.311800e-01 1.0000000
## 1237 155 3.331091e-01 1.0000000
## 1238 77 3.331091e-01 1.0000000
## 1239 1008 3.374475e-01 1.0000000
## 1240 372 3.388529e-01 1.0000000
## 1241 329 3.388529e-01 1.0000000
## 1242 247 3.388529e-01 1.0000000
## 1243 65 3.391712e-01 1.0000000
## 1244 68 3.391712e-01 1.0000000
## 1245 85 3.391712e-01 1.0000000
## 1246 76 3.391712e-01 1.0000000
## 1247 74 3.391712e-01 1.0000000
## 1248 53 3.391712e-01 1.0000000
## 1249 140 3.391712e-01 1.0000000
## 1250 76 3.391712e-01 1.0000000
## 1251 30 3.391712e-01 1.0000000
## 1252 79 3.391712e-01 1.0000000
## 1253 241 3.424707e-01 1.0000000
## 1254 234 3.424707e-01 1.0000000
## 1255 241 3.424707e-01 1.0000000
## 1256 198 3.438653e-01 1.0000000
## 1257 121 3.438653e-01 1.0000000
## 1258 409 3.438658e-01 1.0000000
## 1259 673 3.439569e-01 1.0000000
## 1260 1237 3.450408e-01 1.0000000
## 1261 578 3.489045e-01 1.0000000
## 1262 67 3.502401e-01 1.0000000
## 1263 30 3.502401e-01 1.0000000
## 1264 12 3.502401e-01 1.0000000
## 1265 41 3.502401e-01 1.0000000
## 1266 961 3.522107e-01 1.0000000
## 1267 4832 3.534048e-01 1.0000000
## 1268 149 3.534652e-01 1.0000000
## 1269 379 3.539874e-01 1.0000000
## 1270 125 3.555137e-01 1.0000000
## 1271 70 3.555137e-01 1.0000000
## 1272 128 3.555137e-01 1.0000000
## 1273 72 3.555137e-01 1.0000000
## 1274 4675 3.575974e-01 1.0000000
## 1275 320 3.576477e-01 1.0000000
## 1276 1058 3.589179e-01 1.0000000
## 1277 2506 3.593589e-01 1.0000000
## 1278 863 3.595436e-01 1.0000000
## 1279 118 3.621275e-01 1.0000000
## 1280 38 3.621275e-01 1.0000000
## 1281 29 3.621275e-01 1.0000000
## 1282 123 3.621275e-01 1.0000000
## 1283 26 3.621275e-01 1.0000000
## 1284 38 3.621275e-01 1.0000000
## 1285 27 3.621275e-01 1.0000000
## 1286 109 3.621275e-01 1.0000000
## 1287 392 3.646978e-01 1.0000000
## 1288 1259 3.661848e-01 1.0000000
## 1289 355 3.681049e-01 1.0000000
## 1290 81 3.682620e-01 1.0000000
## 1291 36 3.682620e-01 1.0000000
## 1292 63 3.682620e-01 1.0000000
## 1293 411 3.706229e-01 1.0000000
## 1294 259 3.706229e-01 1.0000000
## 1295 163 3.716990e-01 1.0000000
## 1296 121 3.716990e-01 1.0000000
## 1297 207 3.716990e-01 1.0000000
## 1298 199 3.716990e-01 1.0000000
## 1299 19 3.747551e-01 1.0000000
## 1300 54 3.747551e-01 1.0000000
## 1301 89 3.747551e-01 1.0000000
## 1302 120 3.747551e-01 1.0000000
## 1303 119 3.747551e-01 1.0000000
## 1304 31 3.747551e-01 1.0000000
## 1305 70 3.747551e-01 1.0000000
## 1306 73 3.747551e-01 1.0000000
## 1307 19 3.747551e-01 1.0000000
## 1308 11 3.747551e-01 1.0000000
## 1309 90 3.747551e-01 1.0000000
## 1310 21 3.747551e-01 1.0000000
## 1311 22 3.747551e-01 1.0000000
## 1312 24 3.747551e-01 1.0000000
## 1313 25 3.747551e-01 1.0000000
## 1314 19 3.747551e-01 1.0000000
## 1315 34 3.747551e-01 1.0000000
## 1316 41 3.747551e-01 1.0000000
## 1317 20 3.747551e-01 1.0000000
## 1318 28 3.747551e-01 1.0000000
## 1319 37 3.747551e-01 1.0000000
## 1320 35 3.747551e-01 1.0000000
## 1321 70 3.747551e-01 1.0000000
## 1322 35 3.747551e-01 1.0000000
## 1323 63 3.747551e-01 1.0000000
## 1324 41 3.747551e-01 1.0000000
## 1325 27 3.747551e-01 1.0000000
## 1326 10 3.747551e-01 1.0000000
## 1327 6 3.747551e-01 1.0000000
## 1328 11 3.747551e-01 1.0000000
## 1329 398 3.748640e-01 1.0000000
## 1330 250 3.760739e-01 1.0000000
## 1331 249 3.760739e-01 1.0000000
## 1332 153 3.781680e-01 1.0000000
## 1333 134 3.781680e-01 1.0000000
## 1334 310 3.781680e-01 1.0000000
## 1335 299 3.781680e-01 1.0000000
## 1336 135 3.791487e-01 1.0000000
## 1337 113 3.824124e-01 1.0000000
## 1338 96 3.824124e-01 1.0000000
## 1339 965 3.825839e-01 1.0000000
## 1340 948 3.825839e-01 1.0000000
## 1341 382 3.828807e-01 1.0000000
## 1342 366 3.828807e-01 1.0000000
## 1343 12 3.870810e-01 1.0000000
## 1344 23 3.870810e-01 1.0000000
## 1345 30 3.870810e-01 1.0000000
## 1346 29 3.870810e-01 1.0000000
## 1347 51 3.870810e-01 1.0000000
## 1348 7 3.870810e-01 1.0000000
## 1349 6 3.870810e-01 1.0000000
## 1350 38 3.870810e-01 1.0000000
## 1351 1 3.870810e-01 1.0000000
## 1352 23 3.870810e-01 1.0000000
## 1353 3 3.870810e-01 1.0000000
## 1354 38 3.870810e-01 1.0000000
## 1355 53 3.870810e-01 1.0000000
## 1356 53 3.870810e-01 1.0000000
## 1357 9 3.870810e-01 1.0000000
## 1358 23 3.870810e-01 1.0000000
## 1359 23 3.870810e-01 1.0000000
## 1360 56 3.870810e-01 1.0000000
## 1361 9 3.870810e-01 1.0000000
## 1362 6 3.870810e-01 1.0000000
## 1363 3 3.870810e-01 1.0000000
## 1364 17 3.870810e-01 1.0000000
## 1365 21 3.870810e-01 1.0000000
## 1366 14 3.870810e-01 1.0000000
## 1367 8 3.870810e-01 1.0000000
## 1368 14 3.870810e-01 1.0000000
## 1369 13 3.870810e-01 1.0000000
## 1370 30 3.870810e-01 1.0000000
## 1371 29 3.870810e-01 1.0000000
## 1372 17 3.870810e-01 1.0000000
## 1373 44 3.870810e-01 1.0000000
## 1374 28 3.870810e-01 1.0000000
## 1375 107 3.870810e-01 1.0000000
## 1376 1 3.870810e-01 1.0000000
## 1377 106 3.870810e-01 1.0000000
## 1378 15 3.870810e-01 1.0000000
## 1379 43 3.870810e-01 1.0000000
## 1380 26 3.870810e-01 1.0000000
## 1381 10 3.870810e-01 1.0000000
## 1382 15 3.870810e-01 1.0000000
## 1383 18 3.870810e-01 1.0000000
## 1384 10 3.870810e-01 1.0000000
## 1385 35 3.870810e-01 1.0000000
## 1386 9 3.870810e-01 1.0000000
## 1387 39 3.870810e-01 1.0000000
## 1388 32 3.870810e-01 1.0000000
## 1389 62 3.870810e-01 1.0000000
## 1390 13 3.870810e-01 1.0000000
## 1391 2 3.870810e-01 1.0000000
## 1392 6 3.870810e-01 1.0000000
## 1393 4 3.870810e-01 1.0000000
## 1394 9 3.870810e-01 1.0000000
## 1395 6 3.870810e-01 1.0000000
## 1396 15 3.870810e-01 1.0000000
## 1397 7 3.870810e-01 1.0000000
## 1398 4 3.870810e-01 1.0000000
## 1399 6 3.874186e-01 1.0000000
## 1400 7 3.874186e-01 1.0000000
## 1401 72 3.874186e-01 1.0000000
## 1402 13 3.874186e-01 1.0000000
## 1403 1 3.874186e-01 1.0000000
## 1404 22 3.874186e-01 1.0000000
## 1405 38 3.874186e-01 1.0000000
## 1406 3 3.874186e-01 1.0000000
## 1407 33 3.874186e-01 1.0000000
## 1408 3 3.874186e-01 1.0000000
## 1409 49 3.874186e-01 1.0000000
## 1410 6 3.874186e-01 1.0000000
## 1411 73 3.874186e-01 1.0000000
## 1412 10 3.874186e-01 1.0000000
## 1413 3 3.874186e-01 1.0000000
## 1414 3 3.874186e-01 1.0000000
## 1415 9 3.874186e-01 1.0000000
## 1416 12 3.874186e-01 1.0000000
## 1417 17 3.874186e-01 1.0000000
## 1418 3 3.874186e-01 1.0000000
## 1419 3 3.874186e-01 1.0000000
## 1420 5 3.874186e-01 1.0000000
## 1421 28 3.874186e-01 1.0000000
## 1422 3 3.874186e-01 1.0000000
## 1423 15 3.874186e-01 1.0000000
## 1424 10 3.874186e-01 1.0000000
## 1425 28 3.874186e-01 1.0000000
## 1426 27 3.874186e-01 1.0000000
## 1427 2 3.874186e-01 1.0000000
## 1428 15 3.874186e-01 1.0000000
## 1429 4 3.874186e-01 1.0000000
## 1430 14 3.874186e-01 1.0000000
## 1431 2 3.874186e-01 1.0000000
## 1432 23 3.874186e-01 1.0000000
## 1433 29 3.874186e-01 1.0000000
## 1434 15 3.874186e-01 1.0000000
## 1435 7 3.874186e-01 1.0000000
## 1436 10 3.874186e-01 1.0000000
## 1437 8 3.874186e-01 1.0000000
## 1438 9 3.874186e-01 1.0000000
## 1439 12 3.874186e-01 1.0000000
## 1440 58 3.874186e-01 1.0000000
## 1441 8 3.874186e-01 1.0000000
## 1442 26 3.874186e-01 1.0000000
## 1443 10 3.874186e-01 1.0000000
## 1444 7 3.874186e-01 1.0000000
## 1445 2 3.874186e-01 1.0000000
## 1446 24 3.874186e-01 1.0000000
## 1447 15 3.874186e-01 1.0000000
## 1448 64 3.874186e-01 1.0000000
## 1449 10 3.874186e-01 1.0000000
## 1450 15 3.874186e-01 1.0000000
## 1451 9 3.874186e-01 1.0000000
## 1452 11 3.874186e-01 1.0000000
## 1453 40 3.874186e-01 1.0000000
## 1454 16 3.874186e-01 1.0000000
## 1455 40 3.874186e-01 1.0000000
## 1456 16 3.874186e-01 1.0000000
## 1457 4 3.874186e-01 1.0000000
## 1458 2 3.874186e-01 1.0000000
## 1459 28 3.874186e-01 1.0000000
## 1460 10 3.874186e-01 1.0000000
## 1461 1 3.874186e-01 1.0000000
## 1462 8 3.874186e-01 1.0000000
## 1463 1 3.874186e-01 1.0000000
## 1464 12 3.874186e-01 1.0000000
## 1465 12 3.874186e-01 1.0000000
## 1466 8 3.874186e-01 1.0000000
## 1467 8 3.874186e-01 1.0000000
## 1468 1 3.874186e-01 1.0000000
## 1469 3 3.874186e-01 1.0000000
## 1470 23 3.874186e-01 1.0000000
## 1471 6 3.874186e-01 1.0000000
## 1472 6 3.874186e-01 1.0000000
## 1473 17 3.874186e-01 1.0000000
## 1474 18 3.874186e-01 1.0000000
## 1475 48 3.874186e-01 1.0000000
## 1476 77 3.874186e-01 1.0000000
## 1477 8 3.874186e-01 1.0000000
## 1478 25 3.874186e-01 1.0000000
## 1479 9 3.874186e-01 1.0000000
## 1480 7 3.874186e-01 1.0000000
## 1481 16 3.874186e-01 1.0000000
## 1482 5 3.874186e-01 1.0000000
## 1483 17 3.874186e-01 1.0000000
## 1484 7 3.874186e-01 1.0000000
## 1485 28 3.874186e-01 1.0000000
## 1486 62 3.874186e-01 1.0000000
## 1487 29 3.874186e-01 1.0000000
## 1488 11 3.874186e-01 1.0000000
## 1489 2 3.874186e-01 1.0000000
## 1490 1 3.874186e-01 1.0000000
## 1491 1 3.874186e-01 1.0000000
## 1492 5 3.874186e-01 1.0000000
## 1493 8 3.874186e-01 1.0000000
## 1494 8 3.874186e-01 1.0000000
## 1495 3 3.874186e-01 1.0000000
## 1496 35 3.874186e-01 1.0000000
## 1497 5 3.874186e-01 1.0000000
## 1498 14 3.874186e-01 1.0000000
## 1499 18 3.874186e-01 1.0000000
## 1500 18 3.874186e-01 1.0000000
## 1501 23 3.874186e-01 1.0000000
## 1502 15 3.874186e-01 1.0000000
## 1503 12 3.874186e-01 1.0000000
## 1504 7 3.874186e-01 1.0000000
## 1505 16 3.874186e-01 1.0000000
## 1506 9 3.874186e-01 1.0000000
## 1507 40 3.874186e-01 1.0000000
## 1508 23 3.874186e-01 1.0000000
## 1509 9 3.874186e-01 1.0000000
## 1510 9 3.874186e-01 1.0000000
## 1511 35 3.874186e-01 1.0000000
## 1512 2 3.874186e-01 1.0000000
## 1513 2 3.874186e-01 1.0000000
## 1514 33 3.874186e-01 1.0000000
## 1515 7 3.874186e-01 1.0000000
## 1516 1 3.874186e-01 1.0000000
## 1517 22 3.874186e-01 1.0000000
## 1518 4 3.874186e-01 1.0000000
## 1519 2 3.874186e-01 1.0000000
## 1520 9 3.874186e-01 1.0000000
## 1521 5 3.874186e-01 1.0000000
## 1522 21 3.874186e-01 1.0000000
## 1523 9 3.874186e-01 1.0000000
## 1524 2 3.874186e-01 1.0000000
## 1525 10 3.874186e-01 1.0000000
## 1526 5 3.874186e-01 1.0000000
## 1527 5 3.874186e-01 1.0000000
## 1528 8 3.874186e-01 1.0000000
## 1529 18 3.874186e-01 1.0000000
## 1530 4 3.874186e-01 1.0000000
## 1531 13 3.874186e-01 1.0000000
## 1532 14 3.874186e-01 1.0000000
## 1533 9 3.874186e-01 1.0000000
## 1534 29 3.874186e-01 1.0000000
## 1535 2 3.874186e-01 1.0000000
## 1536 6 3.874186e-01 1.0000000
## 1537 2 3.874186e-01 1.0000000
## 1538 279 3.908506e-01 1.0000000
## 1539 716 3.913951e-01 1.0000000
## 1540 39 3.922743e-01 1.0000000
## 1541 48 3.922743e-01 1.0000000
## 1542 123 3.984322e-01 1.0000000
## 1543 158 3.984322e-01 1.0000000
## 1544 77 3.984322e-01 1.0000000
## 1545 120 3.984322e-01 1.0000000
## 1546 14 3.984322e-01 1.0000000
## 1547 35 3.984322e-01 1.0000000
## 1548 66 3.984322e-01 1.0000000
## 1549 157 3.984322e-01 1.0000000
## 1550 113 3.984322e-01 1.0000000
## 1551 57 3.984322e-01 1.0000000
## 1552 1562 4.007111e-01 1.0000000
## 1553 263 4.012222e-01 1.0000000
## 1554 284 4.012222e-01 1.0000000
## 1555 269 4.012222e-01 1.0000000
## 1556 300 4.032967e-01 1.0000000
## 1557 539 4.038311e-01 1.0000000
## 1558 270 4.045453e-01 1.0000000
## 1559 435 4.049483e-01 1.0000000
## 1560 52 4.079522e-01 1.0000000
## 1561 40 4.079522e-01 1.0000000
## 1562 104 4.079522e-01 1.0000000
## 1563 72 4.079522e-01 1.0000000
## 1564 98 4.079522e-01 1.0000000
## 1565 85 4.079522e-01 1.0000000
## 1566 148 4.127121e-01 1.0000000
## 1567 242 4.127121e-01 1.0000000
## 1568 56 4.127121e-01 1.0000000
## 1569 281 4.165924e-01 1.0000000
## 1570 32 4.171083e-01 1.0000000
## 1571 86 4.171083e-01 1.0000000
## 1572 50 4.171083e-01 1.0000000
## 1573 89 4.171083e-01 1.0000000
## 1574 35 4.171083e-01 1.0000000
## 1575 44 4.171083e-01 1.0000000
## 1576 54 4.171083e-01 1.0000000
## 1577 29 4.171083e-01 1.0000000
## 1578 49 4.171083e-01 1.0000000
## 1579 90 4.171083e-01 1.0000000
## 1580 13 4.171083e-01 1.0000000
## 1581 46 4.171083e-01 1.0000000
## 1582 24 4.171083e-01 1.0000000
## 1583 47 4.171083e-01 1.0000000
## 1584 327 4.171896e-01 1.0000000
## 1585 324 4.171896e-01 1.0000000
## 1586 307 4.171896e-01 1.0000000
## 1587 1094 4.193928e-01 1.0000000
## 1588 747 4.198622e-01 1.0000000
## 1589 1419 4.216591e-01 1.0000000
## 1590 167 4.256846e-01 1.0000000
## 1591 97 4.256846e-01 1.0000000
## 1592 55 4.256846e-01 1.0000000
## 1593 107 4.256846e-01 1.0000000
## 1594 44 4.256846e-01 1.0000000
## 1595 84 4.256846e-01 1.0000000
## 1596 47 4.256846e-01 1.0000000
## 1597 57 4.256846e-01 1.0000000
## 1598 52 4.256846e-01 1.0000000
## 1599 102 4.256846e-01 1.0000000
## 1600 30 4.256846e-01 1.0000000
## 1601 71 4.256846e-01 1.0000000
## 1602 657 4.263354e-01 1.0000000
## 1603 1239 4.271604e-01 1.0000000
## 1604 77 4.291264e-01 1.0000000
## 1605 137 4.291264e-01 1.0000000
## 1606 238 4.300679e-01 1.0000000
## 1607 180 4.306452e-01 1.0000000
## 1608 298 4.306452e-01 1.0000000
## 1609 358 4.308679e-01 1.0000000
## 1610 129 4.308679e-01 1.0000000
## 1611 259 4.308679e-01 1.0000000
## 1612 618 4.309666e-01 1.0000000
## 1613 930 4.356464e-01 1.0000000
## 1614 418 4.389139e-01 1.0000000
## 1615 14 4.399415e-01 1.0000000
## 1616 15 4.399415e-01 1.0000000
## 1617 28 4.399415e-01 1.0000000
## 1618 31 4.399415e-01 1.0000000
## 1619 29 4.399415e-01 1.0000000
## 1620 34 4.399415e-01 1.0000000
## 1621 19 4.399415e-01 1.0000000
## 1622 26 4.399415e-01 1.0000000
## 1623 13 4.399415e-01 1.0000000
## 1624 21 4.399415e-01 1.0000000
## 1625 24 4.399415e-01 1.0000000
## 1626 16 4.399415e-01 1.0000000
## 1627 8 4.399415e-01 1.0000000
## 1628 12 4.399415e-01 1.0000000
## 1629 31 4.399415e-01 1.0000000
## 1630 25 4.399415e-01 1.0000000
## 1631 16 4.399415e-01 1.0000000
## 1632 28 4.399415e-01 1.0000000
## 1633 64 4.399415e-01 1.0000000
## 1634 11 4.399415e-01 1.0000000
## 1635 19 4.399415e-01 1.0000000
## 1636 63 4.399415e-01 1.0000000
## 1637 50 4.399415e-01 1.0000000
## 1638 1250 4.412091e-01 1.0000000
## 1639 834 4.412824e-01 1.0000000
## 1640 846 4.412824e-01 1.0000000
## 1641 689 4.432188e-01 1.0000000
## 1642 825 4.432188e-01 1.0000000
## 1643 281 4.449346e-01 1.0000000
## 1644 81 4.462359e-01 1.0000000
## 1645 77 4.462359e-01 1.0000000
## 1646 143 4.462359e-01 1.0000000
## 1647 107 4.462359e-01 1.0000000
## 1648 23 4.462359e-01 1.0000000
## 1649 112 4.462359e-01 1.0000000
## 1650 112 4.462359e-01 1.0000000
## 1651 27 4.462359e-01 1.0000000
## 1652 26 4.462359e-01 1.0000000
## 1653 20 4.462359e-01 1.0000000
## 1654 31 4.462359e-01 1.0000000
## 1655 65 4.462359e-01 1.0000000
## 1656 58 4.462359e-01 1.0000000
## 1657 28 4.462359e-01 1.0000000
## 1658 10 4.462359e-01 1.0000000
## 1659 35 4.462359e-01 1.0000000
## 1660 78 4.462359e-01 1.0000000
## 1661 179 4.462871e-01 1.0000000
## 1662 166 4.472285e-01 1.0000000
## 1663 157 4.472285e-01 1.0000000
## 1664 85 4.475120e-01 1.0000000
## 1665 115 4.475120e-01 1.0000000
## 1666 56 4.475120e-01 1.0000000
## 1667 74 4.475120e-01 1.0000000
## 1668 155 4.475120e-01 1.0000000
## 1669 147 4.475120e-01 1.0000000
## 1670 68 4.475120e-01 1.0000000
## 1671 78 4.475120e-01 1.0000000
## 1672 854 4.493570e-01 1.0000000
## 1673 1351 4.555496e-01 1.0000000
## 1674 362 4.556093e-01 1.0000000
## 1675 171 4.556093e-01 1.0000000
## 1676 1435 4.586903e-01 1.0000000
## 1677 772 4.597859e-01 1.0000000
## 1678 143 4.604691e-01 1.0000000
## 1679 152 4.604691e-01 1.0000000
## 1680 405 4.604691e-01 1.0000000
## 1681 78 4.604691e-01 1.0000000
## 1682 74 4.630606e-01 1.0000000
## 1683 86 4.630606e-01 1.0000000
## 1684 80 4.630606e-01 1.0000000
## 1685 1210 4.638271e-01 1.0000000
## 1686 68 4.657547e-01 1.0000000
## 1687 136 4.657547e-01 1.0000000
## 1688 1777 4.666746e-01 1.0000000
## 1689 124 4.684871e-01 1.0000000
## 1690 174 4.684871e-01 1.0000000
## 1691 149 4.684871e-01 1.0000000
## 1692 59 4.684871e-01 1.0000000
## 1693 43 4.704323e-01 1.0000000
## 1694 59 4.704323e-01 1.0000000
## 1695 14 4.704323e-01 1.0000000
## 1696 1 4.704323e-01 1.0000000
## 1697 20 4.704323e-01 1.0000000
## 1698 36 4.704323e-01 1.0000000
## 1699 17 4.704323e-01 1.0000000
## 1700 33 4.704323e-01 1.0000000
## 1701 22 4.704323e-01 1.0000000
## 1702 84 4.704323e-01 1.0000000
## 1703 38 4.704323e-01 1.0000000
## 1704 76 4.704323e-01 1.0000000
## 1705 29 4.704323e-01 1.0000000
## 1706 30 4.704323e-01 1.0000000
## 1707 62 4.704323e-01 1.0000000
## 1708 31 4.704323e-01 1.0000000
## 1709 58 4.704323e-01 1.0000000
## 1710 17 4.704323e-01 1.0000000
## 1711 35 4.704323e-01 1.0000000
## 1712 36 4.704323e-01 1.0000000
## 1713 59 4.704323e-01 1.0000000
## 1714 34 4.704323e-01 1.0000000
## 1715 12 4.704323e-01 1.0000000
## 1716 17 4.704323e-01 1.0000000
## 1717 5 4.704323e-01 1.0000000
## 1718 3 4.704323e-01 1.0000000
## 1719 113 4.704323e-01 1.0000000
## 1720 6 4.704323e-01 1.0000000
## 1721 4 4.704323e-01 1.0000000
## 1722 41 4.704323e-01 1.0000000
## 1723 72 4.704323e-01 1.0000000
## 1724 19 4.704323e-01 1.0000000
## 1725 27 4.704323e-01 1.0000000
## 1726 27 4.704323e-01 1.0000000
## 1727 12 4.704323e-01 1.0000000
## 1728 120 4.704323e-01 1.0000000
## 1729 8 4.704323e-01 1.0000000
## 1730 49 4.704323e-01 1.0000000
## 1731 26 4.704323e-01 1.0000000
## 1732 35 4.704323e-01 1.0000000
## 1733 23 4.704323e-01 1.0000000
## 1734 37 4.704323e-01 1.0000000
## 1735 56 4.704323e-01 1.0000000
## 1736 5 4.704323e-01 1.0000000
## 1737 15 4.704323e-01 1.0000000
## 1738 58 4.704323e-01 1.0000000
## 1739 45 4.704323e-01 1.0000000
## 1740 23 4.704323e-01 1.0000000
## 1741 8 4.704323e-01 1.0000000
## 1742 23 4.704323e-01 1.0000000
## 1743 463 4.707436e-01 1.0000000
## 1744 40 4.709242e-01 1.0000000
## 1745 115 4.709242e-01 1.0000000
## 1746 72 4.709242e-01 1.0000000
## 1747 61 4.709242e-01 1.0000000
## 1748 68 4.709242e-01 1.0000000
## 1749 69 4.709242e-01 1.0000000
## 1750 46 4.709242e-01 1.0000000
## 1751 69 4.709242e-01 1.0000000
## 1752 37 4.709242e-01 1.0000000
## 1753 69 4.709242e-01 1.0000000
## 1754 101 4.709242e-01 1.0000000
## 1755 65 4.709242e-01 1.0000000
## 1756 28 4.709242e-01 1.0000000
## 1757 67 4.709242e-01 1.0000000
## 1758 28 4.709242e-01 1.0000000
## 1759 131 4.709242e-01 1.0000000
## 1760 37 4.709242e-01 1.0000000
## 1761 598 4.726324e-01 1.0000000
## 1762 170 4.733633e-01 1.0000000
## 1763 267 4.733633e-01 1.0000000
## 1764 1142 4.737522e-01 1.0000000
## 1765 5942 4.761296e-01 1.0000000
## 1766 278 4.771515e-01 1.0000000
## 1767 282 4.771515e-01 1.0000000
## 1768 2580 4.774604e-01 1.0000000
## 1769 358 4.798560e-01 1.0000000
## 1770 462 4.810651e-01 1.0000000
## 1771 837 4.810956e-01 1.0000000
## 1772 181 4.814644e-01 1.0000000
## 1773 597 4.814644e-01 1.0000000
## 1774 111 4.814644e-01 1.0000000
## 1775 2192 4.838325e-01 1.0000000
## 1776 405 4.851971e-01 1.0000000
## 1777 136 4.865696e-01 1.0000000
## 1778 118 4.865696e-01 1.0000000
## 1779 67 4.865696e-01 1.0000000
## 1780 69 4.865696e-01 1.0000000
## 1781 145 4.865696e-01 1.0000000
## 1782 415 4.898668e-01 1.0000000
## 1783 403 4.898668e-01 1.0000000
## 1784 444 4.898668e-01 1.0000000
## 1785 1837 4.927630e-01 1.0000000
## 1786 44 4.930247e-01 1.0000000
## 1787 96 4.930247e-01 1.0000000
## 1788 83 4.930247e-01 1.0000000
## 1789 92 4.930247e-01 1.0000000
## 1790 10 4.930247e-01 1.0000000
## 1791 63 4.930247e-01 1.0000000
## 1792 60 4.930247e-01 1.0000000
## 1793 96 4.930247e-01 1.0000000
## 1794 304 4.952946e-01 1.0000000
## 1795 102 4.952946e-01 1.0000000
## 1796 76 4.952946e-01 1.0000000
## 1797 90 4.952946e-01 1.0000000
## 1798 2720 4.957814e-01 1.0000000
## 1799 1194 4.976707e-01 1.0000000
## 1800 154 5.018700e-01 1.0000000
## 1801 173 5.018700e-01 1.0000000
## 1802 153 5.018700e-01 1.0000000
## 1803 94 5.018700e-01 1.0000000
## 1804 4 5.023244e-01 1.0000000
## 1805 2 5.023244e-01 1.0000000
## 1806 18 5.023244e-01 1.0000000
## 1807 24 5.023244e-01 1.0000000
## 1808 45 5.023244e-01 1.0000000
## 1809 18 5.023244e-01 1.0000000
## 1810 41 5.023244e-01 1.0000000
## 1811 48 5.023244e-01 1.0000000
## 1812 18 5.023244e-01 1.0000000
## 1813 20 5.023244e-01 1.0000000
## 1814 70 5.023244e-01 1.0000000
## 1815 34 5.023244e-01 1.0000000
## 1816 48 5.023244e-01 1.0000000
## 1817 57 5.023244e-01 1.0000000
## 1818 12 5.023244e-01 1.0000000
## 1819 24 5.023244e-01 1.0000000
## 1820 37 5.023244e-01 1.0000000
## 1821 27 5.023244e-01 1.0000000
## 1822 34 5.023244e-01 1.0000000
## 1823 464 5.054946e-01 1.0000000
## 1824 120 5.076772e-01 1.0000000
## 1825 141 5.076772e-01 1.0000000
## 1826 121 5.076772e-01 1.0000000
## 1827 174 5.076772e-01 1.0000000
## 1828 43 5.103789e-01 1.0000000
## 1829 22 5.103789e-01 1.0000000
## 1830 114 5.103789e-01 1.0000000
## 1831 177 5.103789e-01 1.0000000
## 1832 75 5.103789e-01 1.0000000
## 1833 299 5.121533e-01 1.0000000
## 1834 86 5.151871e-01 1.0000000
## 1835 87 5.151871e-01 1.0000000
## 1836 194 5.189117e-01 1.0000000
## 1837 285 5.189117e-01 1.0000000
## 1838 16 5.206355e-01 1.0000000
## 1839 12 5.206355e-01 1.0000000
## 1840 51 5.206355e-01 1.0000000
## 1841 7 5.206355e-01 1.0000000
## 1842 1 5.206355e-01 1.0000000
## 1843 29 5.206355e-01 1.0000000
## 1844 34 5.206355e-01 1.0000000
## 1845 31 5.206355e-01 1.0000000
## 1846 57 5.206355e-01 1.0000000
## 1847 26 5.206355e-01 1.0000000
## 1848 33 5.206355e-01 1.0000000
## 1849 62 5.206355e-01 1.0000000
## 1850 14 5.206355e-01 1.0000000
## 1851 14 5.206355e-01 1.0000000
## 1852 2 5.206355e-01 1.0000000
## 1853 35 5.206355e-01 1.0000000
## 1854 26 5.206355e-01 1.0000000
## 1855 22 5.206355e-01 1.0000000
## 1856 8 5.206355e-01 1.0000000
## 1857 17 5.206355e-01 1.0000000
## 1858 40 5.206355e-01 1.0000000
## 1859 75 5.206355e-01 1.0000000
## 1860 37 5.206355e-01 1.0000000
## 1861 21 5.206355e-01 1.0000000
## 1862 65 5.206355e-01 1.0000000
## 1863 28 5.206355e-01 1.0000000
## 1864 22 5.206355e-01 1.0000000
## 1865 12 5.206355e-01 1.0000000
## 1866 7 5.206355e-01 1.0000000
## 1867 39 5.206355e-01 1.0000000
## 1868 23 5.206355e-01 1.0000000
## 1869 19 5.206355e-01 1.0000000
## 1870 46 5.206355e-01 1.0000000
## 1871 18 5.206355e-01 1.0000000
## 1872 13 5.206355e-01 1.0000000
## 1873 14 5.206355e-01 1.0000000
## 1874 12 5.206355e-01 1.0000000
## 1875 32 5.206355e-01 1.0000000
## 1876 16 5.206355e-01 1.0000000
## 1877 23 5.206355e-01 1.0000000
## 1878 1 5.206355e-01 1.0000000
## 1879 11 5.206355e-01 1.0000000
## 1880 42 5.206355e-01 1.0000000
## 1881 25 5.206355e-01 1.0000000
## 1882 13 5.206355e-01 1.0000000
## 1883 7 5.206355e-01 1.0000000
## 1884 9 5.206355e-01 1.0000000
## 1885 4 5.206355e-01 1.0000000
## 1886 4 5.206355e-01 1.0000000
## 1887 4 5.206355e-01 1.0000000
## 1888 23 5.206355e-01 1.0000000
## 1889 1 5.206355e-01 1.0000000
## 1890 25 5.206355e-01 1.0000000
## 1891 12 5.206355e-01 1.0000000
## 1892 72 5.206355e-01 1.0000000
## 1893 24 5.206355e-01 1.0000000
## 1894 20 5.206355e-01 1.0000000
## 1895 16 5.206355e-01 1.0000000
## 1896 10 5.206355e-01 1.0000000
## 1897 41 5.206355e-01 1.0000000
## 1898 8 5.206355e-01 1.0000000
## 1899 11 5.206355e-01 1.0000000
## 1900 24 5.206355e-01 1.0000000
## 1901 31 5.206355e-01 1.0000000
## 1902 14 5.206355e-01 1.0000000
## 1903 7 5.206355e-01 1.0000000
## 1904 3 5.206355e-01 1.0000000
## 1905 6 5.206355e-01 1.0000000
## 1906 3 5.206355e-01 1.0000000
## 1907 23 5.206355e-01 1.0000000
## 1908 28 5.206355e-01 1.0000000
## 1909 7 5.206355e-01 1.0000000
## 1910 6 5.206355e-01 1.0000000
## 1911 10 5.206355e-01 1.0000000
## 1912 22 5.206355e-01 1.0000000
## 1913 17 5.206355e-01 1.0000000
## 1914 45 5.206355e-01 1.0000000
## 1915 47 5.206355e-01 1.0000000
## 1916 15 5.206355e-01 1.0000000
## 1917 16 5.206355e-01 1.0000000
## 1918 38 5.206355e-01 1.0000000
## 1919 23 5.206355e-01 1.0000000
## 1920 24 5.206355e-01 1.0000000
## 1921 7 5.206355e-01 1.0000000
## 1922 3 5.206355e-01 1.0000000
## 1923 10 5.206355e-01 1.0000000
## 1924 62 5.206355e-01 1.0000000
## 1925 5 5.206355e-01 1.0000000
## 1926 8 5.206355e-01 1.0000000
## 1927 9 5.206355e-01 1.0000000
## 1928 52 5.206355e-01 1.0000000
## 1929 16 5.206355e-01 1.0000000
## 1930 20 5.206355e-01 1.0000000
## 1931 11 5.206355e-01 1.0000000
## 1932 19 5.206355e-01 1.0000000
## 1933 16 5.206355e-01 1.0000000
## 1934 1 5.206355e-01 1.0000000
## 1935 8 5.206355e-01 1.0000000
## 1936 2 5.206355e-01 1.0000000
## 1937 11 5.206355e-01 1.0000000
## 1938 29 5.206355e-01 1.0000000
## 1939 8 5.206355e-01 1.0000000
## 1940 3 5.206355e-01 1.0000000
## 1941 4 5.206355e-01 1.0000000
## 1942 5 5.206355e-01 1.0000000
## 1943 21 5.206355e-01 1.0000000
## 1944 18 5.206355e-01 1.0000000
## 1945 19 5.206355e-01 1.0000000
## 1946 5 5.206355e-01 1.0000000
## 1947 5 5.206355e-01 1.0000000
## 1948 4 5.206355e-01 1.0000000
## 1949 4 5.206355e-01 1.0000000
## 1950 5 5.206355e-01 1.0000000
## 1951 12 5.206355e-01 1.0000000
## 1952 4 5.206355e-01 1.0000000
## 1953 20 5.206355e-01 1.0000000
## 1954 35 5.206355e-01 1.0000000
## 1955 228 5.220670e-01 1.0000000
## 1956 76 5.227834e-01 1.0000000
## 1957 20 5.227834e-01 1.0000000
## 1958 86 5.227834e-01 1.0000000
## 1959 71 5.227834e-01 1.0000000
## 1960 68 5.227834e-01 1.0000000
## 1961 105 5.227834e-01 1.0000000
## 1962 110 5.227834e-01 1.0000000
## 1963 84 5.227834e-01 1.0000000
## 1964 54 5.227834e-01 1.0000000
## 1965 83 5.227834e-01 1.0000000
## 1966 8 5.227834e-01 1.0000000
## 1967 109 5.227834e-01 1.0000000
## 1968 46 5.227834e-01 1.0000000
## 1969 1038 5.234447e-01 1.0000000
## 1970 104 5.247943e-01 1.0000000
## 1971 103 5.247943e-01 1.0000000
## 1972 158 5.247943e-01 1.0000000
## 1973 511 5.248626e-01 1.0000000
## 1974 513 5.248626e-01 1.0000000
## 1975 297 5.292135e-01 1.0000000
## 1976 1805 5.345496e-01 1.0000000
## 1977 1471 5.355880e-01 1.0000000
## 1978 1485 5.355880e-01 1.0000000
## 1979 172 5.372135e-01 1.0000000
## 1980 221 5.372135e-01 1.0000000
## 1981 187 5.377030e-01 1.0000000
## 1982 180 5.377030e-01 1.0000000
## 1983 346 5.377030e-01 1.0000000
## 1984 128 5.382757e-01 1.0000000
## 1985 77 5.382757e-01 1.0000000
## 1986 30 5.382757e-01 1.0000000
## 1987 37 5.382757e-01 1.0000000
## 1988 12 5.382757e-01 1.0000000
## 1989 65 5.382757e-01 1.0000000
## 1990 72 5.382757e-01 1.0000000
## 1991 44 5.382757e-01 1.0000000
## 1992 155 5.387431e-01 1.0000000
## 1993 218 5.387431e-01 1.0000000
## 1994 540 5.389896e-01 1.0000000
## 1995 1426 5.392089e-01 1.0000000
## 1996 1537 5.399337e-01 1.0000000
## 1997 560 5.407477e-01 1.0000000
## 1998 555 5.407477e-01 1.0000000
## 1999 27 5.465675e-01 1.0000000
## 2000 27 5.465675e-01 1.0000000
## 2001 3 5.465675e-01 1.0000000
## 2002 4 5.465675e-01 1.0000000
## 2003 47 5.465675e-01 1.0000000
## 2004 85 5.465675e-01 1.0000000
## 2005 22 5.465675e-01 1.0000000
## 2006 6 5.465675e-01 1.0000000
## 2007 9 5.465675e-01 1.0000000
## 2008 23 5.465675e-01 1.0000000
## 2009 13 5.465675e-01 1.0000000
## 2010 54 5.465675e-01 1.0000000
## 2011 34 5.465675e-01 1.0000000
## 2012 1 5.465675e-01 1.0000000
## 2013 7 5.465675e-01 1.0000000
## 2014 42 5.465675e-01 1.0000000
## 2015 10 5.465675e-01 1.0000000
## 2016 35 5.465675e-01 1.0000000
## 2017 13 5.465675e-01 1.0000000
## 2018 77 5.465675e-01 1.0000000
## 2019 9 5.465675e-01 1.0000000
## 2020 68 5.465675e-01 1.0000000
## 2021 78 5.465675e-01 1.0000000
## 2022 53 5.465675e-01 1.0000000
## 2023 72 5.465675e-01 1.0000000
## 2024 14 5.465675e-01 1.0000000
## 2025 16 5.465675e-01 1.0000000
## 2026 21 5.465675e-01 1.0000000
## 2027 16 5.465675e-01 1.0000000
## 2028 28 5.465675e-01 1.0000000
## 2029 36 5.465675e-01 1.0000000
## 2030 6 5.465675e-01 1.0000000
## 2031 14 5.465675e-01 1.0000000
## 2032 33 5.465675e-01 1.0000000
## 2033 2 5.465675e-01 1.0000000
## 2034 4 5.465675e-01 1.0000000
## 2035 289 5.474659e-01 1.0000000
## 2036 161 5.481875e-01 1.0000000
## 2037 126 5.481875e-01 1.0000000
## 2038 252 5.481875e-01 1.0000000
## 2039 211 5.481875e-01 1.0000000
## 2040 200 5.481875e-01 1.0000000
## 2041 204 5.481875e-01 1.0000000
## 2042 174 5.509837e-01 1.0000000
## 2043 129 5.509837e-01 1.0000000
## 2044 182 5.509837e-01 1.0000000
## 2045 109 5.509837e-01 1.0000000
## 2046 111 5.509837e-01 1.0000000
## 2047 110 5.509837e-01 1.0000000
## 2048 1150 5.529474e-01 1.0000000
## 2049 558 5.535022e-01 1.0000000
## 2050 312 5.564771e-01 1.0000000
## 2051 261 5.564771e-01 1.0000000
## 2052 447 5.570111e-01 1.0000000
## 2053 153 5.580656e-01 1.0000000
## 2054 85 5.609317e-01 1.0000000
## 2055 23 5.609317e-01 1.0000000
## 2056 31 5.609317e-01 1.0000000
## 2057 77 5.609317e-01 1.0000000
## 2058 69 5.609317e-01 1.0000000
## 2059 46 5.609317e-01 1.0000000
## 2060 54 5.609317e-01 1.0000000
## 2061 45 5.609317e-01 1.0000000
## 2062 12 5.609317e-01 1.0000000
## 2063 36 5.609317e-01 1.0000000
## 2064 72 5.609317e-01 1.0000000
## 2065 30 5.609317e-01 1.0000000
## 2066 93 5.609317e-01 1.0000000
## 2067 100 5.609317e-01 1.0000000
## 2068 14 5.609317e-01 1.0000000
## 2069 41 5.609317e-01 1.0000000
## 2070 52 5.609317e-01 1.0000000
## 2071 45 5.609317e-01 1.0000000
## 2072 9 5.609317e-01 1.0000000
## 2073 28 5.609317e-01 1.0000000
## 2074 27 5.609317e-01 1.0000000
## 2075 50 5.609317e-01 1.0000000
## 2076 12 5.609317e-01 1.0000000
## 2077 4 5.609317e-01 1.0000000
## 2078 3 5.609317e-01 1.0000000
## 2079 4 5.609317e-01 1.0000000
## 2080 12 5.609317e-01 1.0000000
## 2081 29 5.609317e-01 1.0000000
## 2082 2 5.609317e-01 1.0000000
## 2083 1 5.609317e-01 1.0000000
## 2084 2 5.609317e-01 1.0000000
## 2085 114 5.618999e-01 1.0000000
## 2086 924 5.627113e-01 1.0000000
## 2087 795 5.636887e-01 1.0000000
## 2088 217 5.670826e-01 1.0000000
## 2089 1170 5.694629e-01 1.0000000
## 2090 299 5.704349e-01 1.0000000
## 2091 106 5.715587e-01 1.0000000
## 2092 224 5.715587e-01 1.0000000
## 2093 37 5.720815e-01 1.0000000
## 2094 115 5.720815e-01 1.0000000
## 2095 102 5.720815e-01 1.0000000
## 2096 60 5.720815e-01 1.0000000
## 2097 62 5.720815e-01 1.0000000
## 2098 34 5.720815e-01 1.0000000
## 2099 72 5.720815e-01 1.0000000
## 2100 90 5.720815e-01 1.0000000
## 2101 94 5.720815e-01 1.0000000
## 2102 13 5.720815e-01 1.0000000
## 2103 85 5.720815e-01 1.0000000
## 2104 255 5.754042e-01 1.0000000
## 2105 429 5.765843e-01 1.0000000
## 2106 480 5.771789e-01 1.0000000
## 2107 491 5.771789e-01 1.0000000
## 2108 491 5.771789e-01 1.0000000
## 2109 488 5.771789e-01 1.0000000
## 2110 478 5.771789e-01 1.0000000
## 2111 293 5.801163e-01 1.0000000
## 2112 120 5.802812e-01 1.0000000
## 2113 130 5.815710e-01 1.0000000
## 2114 57 5.815710e-01 1.0000000
## 2115 125 5.815710e-01 1.0000000
## 2116 70 5.815710e-01 1.0000000
## 2117 59 5.815710e-01 1.0000000
## 2118 133 5.815710e-01 1.0000000
## 2119 2436 5.818277e-01 1.0000000
## 2120 417 5.836470e-01 1.0000000
## 2121 457 5.871206e-01 1.0000000
## 2122 418 5.871206e-01 1.0000000
## 2123 1219 5.879068e-01 1.0000000
## 2124 62 5.899923e-01 1.0000000
## 2125 55 5.899923e-01 1.0000000
## 2126 206 5.899923e-01 1.0000000
## 2127 150 5.899923e-01 1.0000000
## 2128 320 5.904153e-01 1.0000000
## 2129 279 5.937781e-01 1.0000000
## 2130 315 5.956862e-01 1.0000000
## 2131 89 5.976466e-01 1.0000000
## 2132 82 5.976466e-01 1.0000000
## 2133 122 5.976466e-01 1.0000000
## 2134 119 5.976466e-01 1.0000000
## 2135 111 5.976466e-01 1.0000000
## 2136 96 5.976466e-01 1.0000000
## 2137 104 5.976466e-01 1.0000000
## 2138 135 5.976466e-01 1.0000000
## 2139 81 5.976466e-01 1.0000000
## 2140 113 5.976466e-01 1.0000000
## 2141 365 6.001286e-01 1.0000000
## 2142 1516 6.004898e-01 1.0000000
## 2143 508 6.037601e-01 1.0000000
## 2144 237 6.047134e-01 1.0000000
## 2145 126 6.047134e-01 1.0000000
## 2146 148 6.047134e-01 1.0000000
## 2147 4508 6.064994e-01 1.0000000
## 2148 417 6.092621e-01 1.0000000
## 2149 101 6.113102e-01 1.0000000
## 2150 93 6.113102e-01 1.0000000
## 2151 291 6.120364e-01 1.0000000
## 2152 17 6.146836e-01 1.0000000
## 2153 27 6.146836e-01 1.0000000
## 2154 46 6.146836e-01 1.0000000
## 2155 15 6.146836e-01 1.0000000
## 2156 95 6.146836e-01 1.0000000
## 2157 16 6.146836e-01 1.0000000
## 2158 35 6.146836e-01 1.0000000
## 2159 44 6.146836e-01 1.0000000
## 2160 66 6.146836e-01 1.0000000
## 2161 26 6.146836e-01 1.0000000
## 2162 12 6.146836e-01 1.0000000
## 2163 32 6.146836e-01 1.0000000
## 2164 26 6.146836e-01 1.0000000
## 2165 36 6.146836e-01 1.0000000
## 2166 23 6.146836e-01 1.0000000
## 2167 3 6.146836e-01 1.0000000
## 2168 26 6.146836e-01 1.0000000
## 2169 60 6.146836e-01 1.0000000
## 2170 22 6.146836e-01 1.0000000
## 2171 4 6.146836e-01 1.0000000
## 2172 30 6.146836e-01 1.0000000
## 2173 13 6.146836e-01 1.0000000
## 2174 44 6.146836e-01 1.0000000
## 2175 47 6.146836e-01 1.0000000
## 2176 38 6.146836e-01 1.0000000
## 2177 49 6.146836e-01 1.0000000
## 2178 24 6.146836e-01 1.0000000
## 2179 44 6.146836e-01 1.0000000
## 2180 15 6.146836e-01 1.0000000
## 2181 29 6.146836e-01 1.0000000
## 2182 48 6.146836e-01 1.0000000
## 2183 8 6.146836e-01 1.0000000
## 2184 46 6.146836e-01 1.0000000
## 2185 24 6.146836e-01 1.0000000
## 2186 42 6.146836e-01 1.0000000
## 2187 22 6.146836e-01 1.0000000
## 2188 55 6.146836e-01 1.0000000
## 2189 49 6.146836e-01 1.0000000
## 2190 26 6.146836e-01 1.0000000
## 2191 1 6.146836e-01 1.0000000
## 2192 52 6.151510e-01 1.0000000
## 2193 14 6.151510e-01 1.0000000
## 2194 37 6.151510e-01 1.0000000
## 2195 72 6.151510e-01 1.0000000
## 2196 21 6.151510e-01 1.0000000
## 2197 18 6.151510e-01 1.0000000
## 2198 15 6.151510e-01 1.0000000
## 2199 48 6.151510e-01 1.0000000
## 2200 136 6.151510e-01 1.0000000
## 2201 43 6.151510e-01 1.0000000
## 2202 8 6.151510e-01 1.0000000
## 2203 16 6.151510e-01 1.0000000
## 2204 71 6.151510e-01 1.0000000
## 2205 70 6.151510e-01 1.0000000
## 2206 35 6.151510e-01 1.0000000
## 2207 45 6.151510e-01 1.0000000
## 2208 17 6.151510e-01 1.0000000
## 2209 37 6.151510e-01 1.0000000
## 2210 5 6.151510e-01 1.0000000
## 2211 399 6.153174e-01 1.0000000
## 2212 506 6.158460e-01 1.0000000
## 2213 96 6.183879e-01 1.0000000
## 2214 66 6.183879e-01 1.0000000
## 2215 171 6.183879e-01 1.0000000
## 2216 91 6.183879e-01 1.0000000
## 2217 72 6.183879e-01 1.0000000
## 2218 174 6.183879e-01 1.0000000
## 2219 90 6.183879e-01 1.0000000
## 2220 998 6.186998e-01 1.0000000
## 2221 665 6.201147e-01 1.0000000
## 2222 86 6.225938e-01 1.0000000
## 2223 30 6.225938e-01 1.0000000
## 2224 135 6.225938e-01 1.0000000
## 2225 44 6.225938e-01 1.0000000
## 2226 83 6.225938e-01 1.0000000
## 2227 32 6.225938e-01 1.0000000
## 2228 109 6.225938e-01 1.0000000
## 2229 35 6.225938e-01 1.0000000
## 2230 61 6.225938e-01 1.0000000
## 2231 49 6.225938e-01 1.0000000
## 2232 511 6.230517e-01 1.0000000
## 2233 499 6.230517e-01 1.0000000
## 2234 11 6.249280e-01 1.0000000
## 2235 28 6.249280e-01 1.0000000
## 2236 19 6.249280e-01 1.0000000
## 2237 7 6.249280e-01 1.0000000
## 2238 14 6.249280e-01 1.0000000
## 2239 12 6.249280e-01 1.0000000
## 2240 4 6.249280e-01 1.0000000
## 2241 11 6.249280e-01 1.0000000
## 2242 11 6.249280e-01 1.0000000
## 2243 27 6.249280e-01 1.0000000
## 2244 15 6.249280e-01 1.0000000
## 2245 11 6.249280e-01 1.0000000
## 2246 26 6.249280e-01 1.0000000
## 2247 16 6.249280e-01 1.0000000
## 2248 10 6.249280e-01 1.0000000
## 2249 40 6.249280e-01 1.0000000
## 2250 16 6.249280e-01 1.0000000
## 2251 14 6.249280e-01 1.0000000
## 2252 20 6.249280e-01 1.0000000
## 2253 23 6.249280e-01 1.0000000
## 2254 63 6.249280e-01 1.0000000
## 2255 8 6.249280e-01 1.0000000
## 2256 10 6.249280e-01 1.0000000
## 2257 14 6.249280e-01 1.0000000
## 2258 10 6.249280e-01 1.0000000
## 2259 6 6.249280e-01 1.0000000
## 2260 13 6.249280e-01 1.0000000
## 2261 8 6.249280e-01 1.0000000
## 2262 23 6.249280e-01 1.0000000
## 2263 40 6.249280e-01 1.0000000
## 2264 24 6.249280e-01 1.0000000
## 2265 24 6.249280e-01 1.0000000
## 2266 16 6.249280e-01 1.0000000
## 2267 41 6.249280e-01 1.0000000
## 2268 14 6.249280e-01 1.0000000
## 2269 13 6.249280e-01 1.0000000
## 2270 23 6.249280e-01 1.0000000
## 2271 4 6.249280e-01 1.0000000
## 2272 6 6.249280e-01 1.0000000
## 2273 2 6.249280e-01 1.0000000
## 2274 16 6.249280e-01 1.0000000
## 2275 8 6.249280e-01 1.0000000
## 2276 26 6.249280e-01 1.0000000
## 2277 80 6.249280e-01 1.0000000
## 2278 31 6.249280e-01 1.0000000
## 2279 2 6.249280e-01 1.0000000
## 2280 42 6.249280e-01 1.0000000
## 2281 20 6.249280e-01 1.0000000
## 2282 11 6.249280e-01 1.0000000
## 2283 14 6.249280e-01 1.0000000
## 2284 2 6.249280e-01 1.0000000
## 2285 17 6.249280e-01 1.0000000
## 2286 22 6.249280e-01 1.0000000
## 2287 5 6.249280e-01 1.0000000
## 2288 4 6.249280e-01 1.0000000
## 2289 20 6.249280e-01 1.0000000
## 2290 1 6.249280e-01 1.0000000
## 2291 25 6.249280e-01 1.0000000
## 2292 9 6.249280e-01 1.0000000
## 2293 85 6.249280e-01 1.0000000
## 2294 23 6.249280e-01 1.0000000
## 2295 1 6.249280e-01 1.0000000
## 2296 2 6.249280e-01 1.0000000
## 2297 13 6.249280e-01 1.0000000
## 2298 2 6.249280e-01 1.0000000
## 2299 3 6.249280e-01 1.0000000
## 2300 24 6.249280e-01 1.0000000
## 2301 16 6.249280e-01 1.0000000
## 2302 45 6.249280e-01 1.0000000
## 2303 18 6.249280e-01 1.0000000
## 2304 29 6.249280e-01 1.0000000
## 2305 42 6.249280e-01 1.0000000
## 2306 7 6.249280e-01 1.0000000
## 2307 17 6.249280e-01 1.0000000
## 2308 8 6.249280e-01 1.0000000
## 2309 8 6.249280e-01 1.0000000
## 2310 3 6.249280e-01 1.0000000
## 2311 20 6.249280e-01 1.0000000
## 2312 14 6.249280e-01 1.0000000
## 2313 4 6.249280e-01 1.0000000
## 2314 1 6.249280e-01 1.0000000
## 2315 6 6.249280e-01 1.0000000
## 2316 2 6.249280e-01 1.0000000
## 2317 26 6.249280e-01 1.0000000
## 2318 7 6.249280e-01 1.0000000
## 2319 21 6.249280e-01 1.0000000
## 2320 21 6.249280e-01 1.0000000
## 2321 19 6.249280e-01 1.0000000
## 2322 20 6.249280e-01 1.0000000
## 2323 18 6.249280e-01 1.0000000
## 2324 23 6.249280e-01 1.0000000
## 2325 11 6.249280e-01 1.0000000
## 2326 23 6.249280e-01 1.0000000
## 2327 5 6.249280e-01 1.0000000
## 2328 2 6.249280e-01 1.0000000
## 2329 1 6.249280e-01 1.0000000
## 2330 1 6.249280e-01 1.0000000
## 2331 10 6.249280e-01 1.0000000
## 2332 3 6.249280e-01 1.0000000
## 2333 16 6.249280e-01 1.0000000
## 2334 24 6.249280e-01 1.0000000
## 2335 13 6.249280e-01 1.0000000
## 2336 14 6.249280e-01 1.0000000
## 2337 13 6.249280e-01 1.0000000
## 2338 4 6.249280e-01 1.0000000
## 2339 34 6.249280e-01 1.0000000
## 2340 49 6.249280e-01 1.0000000
## 2341 32 6.249280e-01 1.0000000
## 2342 21 6.249280e-01 1.0000000
## 2343 12 6.249280e-01 1.0000000
## 2344 33 6.249280e-01 1.0000000
## 2345 3 6.249280e-01 1.0000000
## 2346 2 6.249280e-01 1.0000000
## 2347 48 6.249280e-01 1.0000000
## 2348 38 6.249280e-01 1.0000000
## 2349 12 6.249280e-01 1.0000000
## 2350 23 6.249280e-01 1.0000000
## 2351 25 6.249280e-01 1.0000000
## 2352 6 6.249280e-01 1.0000000
## 2353 4 6.249280e-01 1.0000000
## 2354 14 6.249280e-01 1.0000000
## 2355 8 6.249280e-01 1.0000000
## 2356 3 6.249280e-01 1.0000000
## 2357 517 6.268106e-01 1.0000000
## 2358 172 6.271610e-01 1.0000000
## 2359 130 6.271610e-01 1.0000000
## 2360 140 6.271610e-01 1.0000000
## 2361 50 6.271610e-01 1.0000000
## 2362 83 6.271610e-01 1.0000000
## 2363 78 6.271610e-01 1.0000000
## 2364 285 6.290010e-01 1.0000000
## 2365 281 6.290010e-01 1.0000000
## 2366 67 6.318408e-01 1.0000000
## 2367 134 6.318408e-01 1.0000000
## 2368 102 6.318408e-01 1.0000000
## 2369 72 6.318408e-01 1.0000000
## 2370 189 6.318408e-01 1.0000000
## 2371 217 6.318408e-01 1.0000000
## 2372 95 6.318408e-01 1.0000000
## 2373 200 6.343556e-01 1.0000000
## 2374 322 6.343556e-01 1.0000000
## 2375 254 6.343556e-01 1.0000000
## 2376 1356 6.350565e-01 1.0000000
## 2377 1355 6.350565e-01 1.0000000
## 2378 166 6.365196e-01 1.0000000
## 2379 1599 6.371367e-01 1.0000000
## 2380 2600 6.398165e-01 1.0000000
## 2381 2601 6.398165e-01 1.0000000
## 2382 509 6.421263e-01 1.0000000
## 2383 269 6.421263e-01 1.0000000
## 2384 283 6.421263e-01 1.0000000
## 2385 1011 6.443887e-01 1.0000000
## 2386 502 6.444378e-01 1.0000000
## 2387 237 6.444378e-01 1.0000000
## 2388 185 6.456838e-01 1.0000000
## 2389 136 6.501307e-01 1.0000000
## 2390 317 6.518287e-01 1.0000000
## 2391 286 6.544787e-01 1.0000000
## 2392 437 6.582902e-01 1.0000000
## 2393 617 6.607322e-01 1.0000000
## 2394 53 6.611204e-01 1.0000000
## 2395 30 6.611204e-01 1.0000000
## 2396 39 6.611204e-01 1.0000000
## 2397 46 6.611204e-01 1.0000000
## 2398 105 6.611204e-01 1.0000000
## 2399 57 6.614259e-01 1.0000000
## 2400 87 6.614259e-01 1.0000000
## 2401 123 6.614259e-01 1.0000000
## 2402 79 6.614259e-01 1.0000000
## 2403 85 6.614259e-01 1.0000000
## 2404 143 6.614259e-01 1.0000000
## 2405 75 6.623089e-01 1.0000000
## 2406 139 6.623089e-01 1.0000000
## 2407 190 6.623089e-01 1.0000000
## 2408 393 6.626274e-01 1.0000000
## 2409 188 6.643335e-01 1.0000000
## 2410 34 6.646617e-01 1.0000000
## 2411 23 6.646617e-01 1.0000000
## 2412 28 6.646617e-01 1.0000000
## 2413 57 6.646617e-01 1.0000000
## 2414 84 6.646617e-01 1.0000000
## 2415 15 6.646617e-01 1.0000000
## 2416 78 6.646617e-01 1.0000000
## 2417 45 6.646617e-01 1.0000000
## 2418 50 6.646617e-01 1.0000000
## 2419 34 6.646617e-01 1.0000000
## 2420 42 6.646617e-01 1.0000000
## 2421 16 6.646617e-01 1.0000000
## 2422 21 6.646617e-01 1.0000000
## 2423 54 6.646617e-01 1.0000000
## 2424 8 6.646617e-01 1.0000000
## 2425 36 6.646617e-01 1.0000000
## 2426 54 6.646617e-01 1.0000000
## 2427 169 6.668527e-01 1.0000000
## 2428 187 6.668527e-01 1.0000000
## 2429 135 6.668527e-01 1.0000000
## 2430 73 6.668527e-01 1.0000000
## 2431 84 6.668527e-01 1.0000000
## 2432 137 6.668527e-01 1.0000000
## 2433 78 6.668527e-01 1.0000000
## 2434 190 6.696733e-01 1.0000000
## 2435 112 6.696733e-01 1.0000000
## 2436 114 6.726790e-01 1.0000000
## 2437 243 6.726790e-01 1.0000000
## 2438 490 6.732034e-01 1.0000000
## 2439 30 6.746657e-01 1.0000000
## 2440 16 6.746657e-01 1.0000000
## 2441 96 6.746657e-01 1.0000000
## 2442 22 6.746657e-01 1.0000000
## 2443 8 6.746657e-01 1.0000000
## 2444 38 6.746657e-01 1.0000000
## 2445 110 6.746657e-01 1.0000000
## 2446 14 6.746657e-01 1.0000000
## 2447 27 6.746657e-01 1.0000000
## 2448 72 6.746657e-01 1.0000000
## 2449 121 6.746657e-01 1.0000000
## 2450 22 6.746657e-01 1.0000000
## 2451 76 6.746657e-01 1.0000000
## 2452 15 6.746657e-01 1.0000000
## 2453 46 6.746657e-01 1.0000000
## 2454 112 6.746657e-01 1.0000000
## 2455 101 6.746657e-01 1.0000000
## 2456 92 6.746657e-01 1.0000000
## 2457 83 6.746657e-01 1.0000000
## 2458 81 6.746657e-01 1.0000000
## 2459 75 6.746657e-01 1.0000000
## 2460 94 6.746657e-01 1.0000000
## 2461 20 6.746657e-01 1.0000000
## 2462 94 6.746657e-01 1.0000000
## 2463 87 6.746657e-01 1.0000000
## 2464 2 6.746657e-01 1.0000000
## 2465 6 6.746657e-01 1.0000000
## 2466 29 6.746657e-01 1.0000000
## 2467 57 6.746657e-01 1.0000000
## 2468 16 6.746657e-01 1.0000000
## 2469 79 6.746657e-01 1.0000000
## 2470 27 6.746657e-01 1.0000000
## 2471 30 6.746657e-01 1.0000000
## 2472 37 6.746657e-01 1.0000000
## 2473 49 6.746657e-01 1.0000000
## 2474 30 6.746657e-01 1.0000000
## 2475 47 6.746657e-01 1.0000000
## 2476 16 6.746657e-01 1.0000000
## 2477 8 6.746657e-01 1.0000000
## 2478 6 6.746657e-01 1.0000000
## 2479 5 6.746657e-01 1.0000000
## 2480 21 6.746657e-01 1.0000000
## 2481 12 6.746657e-01 1.0000000
## 2482 3 6.746657e-01 1.0000000
## 2483 2 6.746657e-01 1.0000000
## 2484 1 6.746657e-01 1.0000000
## 2485 7 6.746657e-01 1.0000000
## 2486 6 6.746657e-01 1.0000000
## 2487 3 6.746657e-01 1.0000000
## 2488 19 6.746657e-01 1.0000000
## 2489 8 6.746657e-01 1.0000000
## 2490 3 6.746657e-01 1.0000000
## 2491 7 6.746657e-01 1.0000000
## 2492 2 6.746657e-01 1.0000000
## 2493 9 6.746657e-01 1.0000000
## 2494 9 6.746657e-01 1.0000000
## 2495 5 6.746657e-01 1.0000000
## 2496 1 6.746657e-01 1.0000000
## 2497 4 6.746657e-01 1.0000000
## 2498 2 6.746657e-01 1.0000000
## 2499 4 6.746657e-01 1.0000000
## 2500 18 6.746657e-01 1.0000000
## 2501 517 6.747803e-01 1.0000000
## 2502 2824 6.765873e-01 1.0000000
## 2503 772 6.766032e-01 1.0000000
## 2504 273 6.785760e-01 1.0000000
## 2505 377 6.785760e-01 1.0000000
## 2506 336 6.789791e-01 1.0000000
## 2507 169 6.789791e-01 1.0000000
## 2508 905 6.813803e-01 1.0000000
## 2509 162 6.821938e-01 1.0000000
## 2510 201 6.821938e-01 1.0000000
## 2511 297 6.821938e-01 1.0000000
## 2512 448 6.826556e-01 1.0000000
## 2513 577 6.847849e-01 1.0000000
## 2514 576 6.847849e-01 1.0000000
## 2515 14773 6.858834e-01 1.0000000
## 2516 630 6.859326e-01 1.0000000
## 2517 796 6.897130e-01 1.0000000
## 2518 282 6.918467e-01 1.0000000
## 2519 264 6.918467e-01 1.0000000
## 2520 289 6.918467e-01 1.0000000
## 2521 1098 6.929640e-01 1.0000000
## 2522 780 6.932160e-01 1.0000000
## 2523 124 6.950176e-01 1.0000000
## 2524 58 6.953124e-01 1.0000000
## 2525 130 6.953124e-01 1.0000000
## 2526 94 6.953124e-01 1.0000000
## 2527 5989 6.954481e-01 1.0000000
## 2528 126 6.956200e-01 1.0000000
## 2529 135 6.956200e-01 1.0000000
## 2530 165 6.956200e-01 1.0000000
## 2531 712 6.964330e-01 1.0000000
## 2532 196 6.968211e-01 1.0000000
## 2533 97 6.968211e-01 1.0000000
## 2534 114 6.970112e-01 1.0000000
## 2535 65 6.970112e-01 1.0000000
## 2536 102 6.970112e-01 1.0000000
## 2537 226 6.970112e-01 1.0000000
## 2538 73 6.970112e-01 1.0000000
## 2539 169 6.970112e-01 1.0000000
## 2540 106 6.970112e-01 1.0000000
## 2541 87 6.970112e-01 1.0000000
## 2542 412 6.981878e-01 1.0000000
## 2543 219 6.984343e-01 1.0000000
## 2544 418 7.003373e-01 1.0000000
## 2545 3518 7.003810e-01 1.0000000
## 2546 95 7.010498e-01 1.0000000
## 2547 17 7.010498e-01 1.0000000
## 2548 85 7.010498e-01 1.0000000
## 2549 87 7.010498e-01 1.0000000
## 2550 50 7.010498e-01 1.0000000
## 2551 64 7.010498e-01 1.0000000
## 2552 48 7.010498e-01 1.0000000
## 2553 621 7.013139e-01 1.0000000
## 2554 250 7.024471e-01 1.0000000
## 2555 210 7.047055e-01 1.0000000
## 2556 22 7.065662e-01 1.0000000
## 2557 17 7.065662e-01 1.0000000
## 2558 20 7.065662e-01 1.0000000
## 2559 8 7.065662e-01 1.0000000
## 2560 7 7.065662e-01 1.0000000
## 2561 43 7.065662e-01 1.0000000
## 2562 7 7.065662e-01 1.0000000
## 2563 16 7.065662e-01 1.0000000
## 2564 4 7.065662e-01 1.0000000
## 2565 28 7.065662e-01 1.0000000
## 2566 57 7.065662e-01 1.0000000
## 2567 30 7.065662e-01 1.0000000
## 2568 46 7.065662e-01 1.0000000
## 2569 7 7.065662e-01 1.0000000
## 2570 113 7.065662e-01 1.0000000
## 2571 11 7.065662e-01 1.0000000
## 2572 30 7.065662e-01 1.0000000
## 2573 49 7.065662e-01 1.0000000
## 2574 29 7.065662e-01 1.0000000
## 2575 22 7.065662e-01 1.0000000
## 2576 9 7.065662e-01 1.0000000
## 2577 39 7.065662e-01 1.0000000
## 2578 69 7.065662e-01 1.0000000
## 2579 55 7.065662e-01 1.0000000
## 2580 11 7.065662e-01 1.0000000
## 2581 11 7.065662e-01 1.0000000
## 2582 73 7.065662e-01 1.0000000
## 2583 10 7.065662e-01 1.0000000
## 2584 8 7.065662e-01 1.0000000
## 2585 39 7.065662e-01 1.0000000
## 2586 16 7.065662e-01 1.0000000
## 2587 1 7.065662e-01 1.0000000
## 2588 32 7.065662e-01 1.0000000
## 2589 42 7.065662e-01 1.0000000
## 2590 11 7.065662e-01 1.0000000
## 2591 11 7.065662e-01 1.0000000
## 2592 15 7.065662e-01 1.0000000
## 2593 1 7.065662e-01 1.0000000
## 2594 36 7.065662e-01 1.0000000
## 2595 12 7.065662e-01 1.0000000
## 2596 7 7.065662e-01 1.0000000
## 2597 14 7.065662e-01 1.0000000
## 2598 49 7.065662e-01 1.0000000
## 2599 2 7.065662e-01 1.0000000
## 2600 12 7.065662e-01 1.0000000
## 2601 10 7.065662e-01 1.0000000
## 2602 14 7.065662e-01 1.0000000
## 2603 33 7.065662e-01 1.0000000
## 2604 26 7.065662e-01 1.0000000
## 2605 1 7.065662e-01 1.0000000
## 2606 18 7.065662e-01 1.0000000
## 2607 92 7.065662e-01 1.0000000
## 2608 33 7.065662e-01 1.0000000
## 2609 3 7.065662e-01 1.0000000
## 2610 2 7.065662e-01 1.0000000
## 2611 1 7.065662e-01 1.0000000
## 2612 50 7.065662e-01 1.0000000
## 2613 81 7.065662e-01 1.0000000
## 2614 72 7.065662e-01 1.0000000
## 2615 18 7.065662e-01 1.0000000
## 2616 19 7.065662e-01 1.0000000
## 2617 18 7.065662e-01 1.0000000
## 2618 8 7.065662e-01 1.0000000
## 2619 4 7.065662e-01 1.0000000
## 2620 3 7.065662e-01 1.0000000
## 2621 14 7.065662e-01 1.0000000
## 2622 14 7.065662e-01 1.0000000
## 2623 48 7.065662e-01 1.0000000
## 2624 11 7.065662e-01 1.0000000
## 2625 13 7.065662e-01 1.0000000
## 2626 9 7.065662e-01 1.0000000
## 2627 15 7.065662e-01 1.0000000
## 2628 1 7.065662e-01 1.0000000
## 2629 6 7.065662e-01 1.0000000
## 2630 33 7.065662e-01 1.0000000
## 2631 51 7.065662e-01 1.0000000
## 2632 68 7.065662e-01 1.0000000
## 2633 3 7.065662e-01 1.0000000
## 2634 1 7.065662e-01 1.0000000
## 2635 14 7.065662e-01 1.0000000
## 2636 17 7.065662e-01 1.0000000
## 2637 2 7.065662e-01 1.0000000
## 2638 40 7.065662e-01 1.0000000
## 2639 27 7.065662e-01 1.0000000
## 2640 13 7.065662e-01 1.0000000
## 2641 26 7.065662e-01 1.0000000
## 2642 71 7.065662e-01 1.0000000
## 2643 43 7.065662e-01 1.0000000
## 2644 5 7.065662e-01 1.0000000
## 2645 3 7.065662e-01 1.0000000
## 2646 8 7.065662e-01 1.0000000
## 2647 20 7.065662e-01 1.0000000
## 2648 16 7.065662e-01 1.0000000
## 2649 14 7.065662e-01 1.0000000
## 2650 18 7.065662e-01 1.0000000
## 2651 47 7.065662e-01 1.0000000
## 2652 53 7.065662e-01 1.0000000
## 2653 410 7.074647e-01 1.0000000
## 2654 86 7.093704e-01 1.0000000
## 2655 74 7.093704e-01 1.0000000
## 2656 21 7.093704e-01 1.0000000
## 2657 88 7.093704e-01 1.0000000
## 2658 74 7.093704e-01 1.0000000
## 2659 61 7.093704e-01 1.0000000
## 2660 31 7.093704e-01 1.0000000
## 2661 13 7.093704e-01 1.0000000
## 2662 103 7.093704e-01 1.0000000
## 2663 155 7.095126e-01 1.0000000
## 2664 5980 7.107773e-01 1.0000000
## 2665 643 7.135972e-01 1.0000000
## 2666 618 7.188414e-01 1.0000000
## 2667 607 7.222125e-01 1.0000000
## 2668 603 7.222125e-01 1.0000000
## 2669 211 7.225291e-01 1.0000000
## 2670 133 7.227585e-01 1.0000000
## 2671 179 7.227585e-01 1.0000000
## 2672 155 7.227585e-01 1.0000000
## 2673 124 7.228981e-01 1.0000000
## 2674 195 7.237056e-01 1.0000000
## 2675 368 7.237056e-01 1.0000000
## 2676 55 7.238247e-01 1.0000000
## 2677 110 7.238247e-01 1.0000000
## 2678 401 7.248409e-01 1.0000000
## 2679 100 7.260999e-01 1.0000000
## 2680 81 7.260999e-01 1.0000000
## 2681 140 7.260999e-01 1.0000000
## 2682 192 7.260999e-01 1.0000000
## 2683 221 7.260999e-01 1.0000000
## 2684 199 7.260999e-01 1.0000000
## 2685 262 7.262248e-01 1.0000000
## 2686 81 7.268266e-01 1.0000000
## 2687 1 7.268266e-01 1.0000000
## 2688 39 7.268266e-01 1.0000000
## 2689 23 7.268266e-01 1.0000000
## 2690 6 7.268266e-01 1.0000000
## 2691 7 7.268266e-01 1.0000000
## 2692 169 7.268266e-01 1.0000000
## 2693 147 7.268266e-01 1.0000000
## 2694 144 7.268266e-01 1.0000000
## 2695 127 7.268266e-01 1.0000000
## 2696 19 7.268266e-01 1.0000000
## 2697 7 7.268266e-01 1.0000000
## 2698 71 7.268266e-01 1.0000000
## 2699 32 7.268266e-01 1.0000000
## 2700 48 7.268266e-01 1.0000000
## 2701 36 7.268266e-01 1.0000000
## 2702 8 7.268266e-01 1.0000000
## 2703 18 7.268266e-01 1.0000000
## 2704 30 7.268266e-01 1.0000000
## 2705 12 7.268266e-01 1.0000000
## 2706 19 7.268266e-01 1.0000000
## 2707 42 7.268266e-01 1.0000000
## 2708 12 7.268266e-01 1.0000000
## 2709 44 7.268266e-01 1.0000000
## 2710 74 7.268266e-01 1.0000000
## 2711 59 7.268266e-01 1.0000000
## 2712 15 7.268266e-01 1.0000000
## 2713 7 7.268266e-01 1.0000000
## 2714 17 7.268266e-01 1.0000000
## 2715 57 7.268266e-01 1.0000000
## 2716 19 7.268266e-01 1.0000000
## 2717 14 7.268266e-01 1.0000000
## 2718 10 7.268266e-01 1.0000000
## 2719 227 7.301993e-01 1.0000000
## 2720 33 7.301993e-01 1.0000000
## 2721 135 7.301993e-01 1.0000000
## 2722 543 7.332825e-01 1.0000000
## 2723 289 7.332825e-01 1.0000000
## 2724 580 7.332825e-01 1.0000000
## 2725 552 7.332825e-01 1.0000000
## 2726 1841 7.337011e-01 1.0000000
## 2727 392 7.352770e-01 1.0000000
## 2728 33 7.372218e-01 1.0000000
## 2729 119 7.372218e-01 1.0000000
## 2730 64 7.372218e-01 1.0000000
## 2731 118 7.372218e-01 1.0000000
## 2732 66 7.372218e-01 1.0000000
## 2733 1427 7.391297e-01 1.0000000
## 2734 276 7.394141e-01 1.0000000
## 2735 461 7.436773e-01 1.0000000
## 2736 388 7.458367e-01 1.0000000
## 2737 250 7.460369e-01 1.0000000
## 2738 271 7.467250e-01 1.0000000
## 2739 98 7.467622e-01 1.0000000
## 2740 317 7.486433e-01 1.0000000
## 2741 81 7.493533e-01 1.0000000
## 2742 109 7.493533e-01 1.0000000
## 2743 60 7.493533e-01 1.0000000
## 2744 60 7.493533e-01 1.0000000
## 2745 225 7.493533e-01 1.0000000
## 2746 88 7.493533e-01 1.0000000
## 2747 66 7.493533e-01 1.0000000
## 2748 57 7.493533e-01 1.0000000
## 2749 53 7.493533e-01 1.0000000
## 2750 74 7.493533e-01 1.0000000
## 2751 38 7.493533e-01 1.0000000
## 2752 58 7.493533e-01 1.0000000
## 2753 115 7.493533e-01 1.0000000
## 2754 106 7.493533e-01 1.0000000
## 2755 64 7.493533e-01 1.0000000
## 2756 283 7.507208e-01 1.0000000
## 2757 89 7.507208e-01 1.0000000
## 2758 114 7.507208e-01 1.0000000
## 2759 185 7.507208e-01 1.0000000
## 2760 266 7.507208e-01 1.0000000
## 2761 115 7.507208e-01 1.0000000
## 2762 149 7.507208e-01 1.0000000
## 2763 591 7.522695e-01 1.0000000
## 2764 597 7.522695e-01 1.0000000
## 2765 1055 7.541208e-01 1.0000000
## 2766 419 7.542763e-01 1.0000000
## 2767 229 7.546450e-01 1.0000000
## 2768 52 7.546450e-01 1.0000000
## 2769 6340 7.549218e-01 1.0000000
## 2770 1047 7.571555e-01 1.0000000
## 2771 914 7.571555e-01 1.0000000
## 2772 336 7.576075e-01 1.0000000
## 2773 343 7.576075e-01 1.0000000
## 2774 1233 7.596337e-01 1.0000000
## 2775 172 7.606791e-01 1.0000000
## 2776 25 7.606791e-01 1.0000000
## 2777 171 7.606791e-01 1.0000000
## 2778 1436 7.661538e-01 1.0000000
## 2779 307 7.663018e-01 1.0000000
## 2780 308 7.663018e-01 1.0000000
## 2781 388 7.668145e-01 1.0000000
## 2782 275 7.678338e-01 1.0000000
## 2783 101 7.678338e-01 1.0000000
## 2784 360 7.693915e-01 1.0000000
## 2785 220 7.695048e-01 1.0000000
## 2786 205 7.695048e-01 1.0000000
## 2787 206 7.695048e-01 1.0000000
## 2788 66 7.699904e-01 1.0000000
## 2789 177 7.699904e-01 1.0000000
## 2790 112 7.699904e-01 1.0000000
## 2791 48 7.699904e-01 1.0000000
## 2792 48 7.699904e-01 1.0000000
## 2793 138 7.699904e-01 1.0000000
## 2794 45 7.699904e-01 1.0000000
## 2795 77 7.699904e-01 1.0000000
## 2796 78 7.699904e-01 1.0000000
## 2797 79 7.699904e-01 1.0000000
## 2798 62 7.699904e-01 1.0000000
## 2799 149 7.699904e-01 1.0000000
## 2800 22 7.699904e-01 1.0000000
## 2801 22 7.699904e-01 1.0000000
## 2802 49 7.699904e-01 1.0000000
## 2803 10 7.704632e-01 1.0000000
## 2804 61 7.704632e-01 1.0000000
## 2805 28 7.704632e-01 1.0000000
## 2806 42 7.704632e-01 1.0000000
## 2807 5 7.704632e-01 1.0000000
## 2808 15 7.704632e-01 1.0000000
## 2809 46 7.704632e-01 1.0000000
## 2810 31 7.704632e-01 1.0000000
## 2811 10 7.704632e-01 1.0000000
## 2812 21 7.704632e-01 1.0000000
## 2813 12 7.704632e-01 1.0000000
## 2814 6 7.704632e-01 1.0000000
## 2815 18 7.704632e-01 1.0000000
## 2816 13 7.704632e-01 1.0000000
## 2817 1 7.704632e-01 1.0000000
## 2818 2 7.704632e-01 1.0000000
## 2819 3 7.704632e-01 1.0000000
## 2820 4 7.704632e-01 1.0000000
## 2821 4 7.704632e-01 1.0000000
## 2822 52 7.704632e-01 1.0000000
## 2823 25 7.704632e-01 1.0000000
## 2824 40 7.704632e-01 1.0000000
## 2825 7 7.704632e-01 1.0000000
## 2826 2 7.704632e-01 1.0000000
## 2827 1 7.704632e-01 1.0000000
## 2828 24 7.704632e-01 1.0000000
## 2829 16 7.704632e-01 1.0000000
## 2830 11 7.704632e-01 1.0000000
## 2831 15 7.704632e-01 1.0000000
## 2832 16 7.704632e-01 1.0000000
## 2833 7 7.704632e-01 1.0000000
## 2834 27 7.704632e-01 1.0000000
## 2835 38 7.704632e-01 1.0000000
## 2836 9 7.704632e-01 1.0000000
## 2837 144 7.704632e-01 1.0000000
## 2838 58 7.704632e-01 1.0000000
## 2839 1 7.704632e-01 1.0000000
## 2840 59 7.704632e-01 1.0000000
## 2841 37 7.704632e-01 1.0000000
## 2842 41 7.704632e-01 1.0000000
## 2843 19 7.704632e-01 1.0000000
## 2844 9 7.704632e-01 1.0000000
## 2845 34 7.704632e-01 1.0000000
## 2846 93 7.704632e-01 1.0000000
## 2847 16 7.704632e-01 1.0000000
## 2848 33 7.704632e-01 1.0000000
## 2849 60 7.704632e-01 1.0000000
## 2850 10 7.704632e-01 1.0000000
## 2851 13 7.704632e-01 1.0000000
## 2852 10 7.704632e-01 1.0000000
## 2853 30 7.704632e-01 1.0000000
## 2854 28 7.704632e-01 1.0000000
## 2855 26 7.704632e-01 1.0000000
## 2856 11 7.704632e-01 1.0000000
## 2857 104 7.704632e-01 1.0000000
## 2858 20 7.704632e-01 1.0000000
## 2859 7 7.704632e-01 1.0000000
## 2860 10 7.704632e-01 1.0000000
## 2861 48 7.704632e-01 1.0000000
## 2862 6 7.704632e-01 1.0000000
## 2863 26 7.704632e-01 1.0000000
## 2864 16 7.704632e-01 1.0000000
## 2865 38 7.704632e-01 1.0000000
## 2866 26 7.704632e-01 1.0000000
## 2867 25 7.704632e-01 1.0000000
## 2868 13 7.704632e-01 1.0000000
## 2869 5 7.704632e-01 1.0000000
## 2870 3 7.704632e-01 1.0000000
## 2871 8 7.704632e-01 1.0000000
## 2872 1 7.704632e-01 1.0000000
## 2873 5 7.704632e-01 1.0000000
## 2874 29 7.704632e-01 1.0000000
## 2875 39 7.704632e-01 1.0000000
## 2876 7 7.704632e-01 1.0000000
## 2877 67 7.704632e-01 1.0000000
## 2878 1 7.704632e-01 1.0000000
## 2879 9 7.704632e-01 1.0000000
## 2880 15 7.704632e-01 1.0000000
## 2881 13 7.704632e-01 1.0000000
## 2882 14 7.704632e-01 1.0000000
## 2883 37 7.704632e-01 1.0000000
## 2884 29 7.704632e-01 1.0000000
## 2885 19 7.704632e-01 1.0000000
## 2886 21 7.704632e-01 1.0000000
## 2887 3 7.704632e-01 1.0000000
## 2888 3 7.704632e-01 1.0000000
## 2889 1 7.704632e-01 1.0000000
## 2890 8 7.704632e-01 1.0000000
## 2891 5 7.704632e-01 1.0000000
## 2892 7 7.704632e-01 1.0000000
## 2893 5 7.704632e-01 1.0000000
## 2894 6 7.704632e-01 1.0000000
## 2895 4 7.704632e-01 1.0000000
## 2896 21 7.704632e-01 1.0000000
## 2897 538 7.717246e-01 1.0000000
## 2898 62 7.717271e-01 1.0000000
## 2899 93 7.717271e-01 1.0000000
## 2900 160 7.717271e-01 1.0000000
## 2901 36 7.717271e-01 1.0000000
## 2902 20 7.717271e-01 1.0000000
## 2903 83 7.717271e-01 1.0000000
## 2904 161 7.717271e-01 1.0000000
## 2905 141 7.717271e-01 1.0000000
## 2906 38 7.717271e-01 1.0000000
## 2907 26 7.717271e-01 1.0000000
## 2908 27 7.717271e-01 1.0000000
## 2909 32 7.717271e-01 1.0000000
## 2910 60 7.717271e-01 1.0000000
## 2911 37 7.717271e-01 1.0000000
## 2912 82 7.717271e-01 1.0000000
## 2913 16 7.717271e-01 1.0000000
## 2914 8 7.717271e-01 1.0000000
## 2915 6 7.717271e-01 1.0000000
## 2916 35 7.717271e-01 1.0000000
## 2917 15 7.717271e-01 1.0000000
## 2918 19 7.717271e-01 1.0000000
## 2919 29 7.717271e-01 1.0000000
## 2920 47 7.717271e-01 1.0000000
## 2921 93 7.717271e-01 1.0000000
## 2922 44 7.717271e-01 1.0000000
## 2923 41 7.717271e-01 1.0000000
## 2924 21 7.717271e-01 1.0000000
## 2925 11 7.717271e-01 1.0000000
## 2926 71 7.717271e-01 1.0000000
## 2927 47 7.717271e-01 1.0000000
## 2928 21 7.717271e-01 1.0000000
## 2929 891 7.717309e-01 1.0000000
## 2930 190 7.720302e-01 1.0000000
## 2931 182 7.720302e-01 1.0000000
## 2932 161 7.757024e-01 1.0000000
## 2933 701 7.773072e-01 1.0000000
## 2934 192 7.809602e-01 1.0000000
## 2935 290 7.846106e-01 1.0000000
## 2936 306 7.846106e-01 1.0000000
## 2937 26 7.848077e-01 1.0000000
## 2938 102 7.848077e-01 1.0000000
## 2939 12 7.848077e-01 1.0000000
## 2940 57 7.848077e-01 1.0000000
## 2941 24 7.848077e-01 1.0000000
## 2942 129 7.848077e-01 1.0000000
## 2943 8 7.848077e-01 1.0000000
## 2944 154 7.848077e-01 1.0000000
## 2945 171 7.848077e-01 1.0000000
## 2946 54 7.848077e-01 1.0000000
## 2947 255 7.882865e-01 1.0000000
## 2948 234 7.882865e-01 1.0000000
## 2949 60 7.884954e-01 1.0000000
## 2950 167 7.884954e-01 1.0000000
## 2951 149 7.884954e-01 1.0000000
## 2952 129 7.884954e-01 1.0000000
## 2953 525 7.888084e-01 1.0000000
## 2954 377 7.910827e-01 1.0000000
## 2955 516 7.923097e-01 1.0000000
## 2956 161 7.941614e-01 1.0000000
## 2957 866 7.952509e-01 1.0000000
## 2958 656 7.976422e-01 1.0000000
## 2959 101 7.987917e-01 1.0000000
## 2960 234 7.987917e-01 1.0000000
## 2961 224 7.987917e-01 1.0000000
## 2962 159 7.987917e-01 1.0000000
## 2963 131 7.994697e-01 1.0000000
## 2964 89 7.994697e-01 1.0000000
## 2965 113 7.994697e-01 1.0000000
## 2966 108 7.994697e-01 1.0000000
## 2967 97 7.994697e-01 1.0000000
## 2968 31 7.994697e-01 1.0000000
## 2969 296 8.003147e-01 1.0000000
## 2970 339 8.012700e-01 1.0000000
## 2971 359 8.019902e-01 1.0000000
## 2972 550 8.025847e-01 1.0000000
## 2973 189 8.050315e-01 1.0000000
## 2974 577 8.084204e-01 1.0000000
## 2975 1867 8.086607e-01 1.0000000
## 2976 123 8.100535e-01 1.0000000
## 2977 120 8.100535e-01 1.0000000
## 2978 125 8.100535e-01 1.0000000
## 2979 109 8.100535e-01 1.0000000
## 2980 60 8.100535e-01 1.0000000
## 2981 105 8.100535e-01 1.0000000
## 2982 64 8.100535e-01 1.0000000
## 2983 92 8.100535e-01 1.0000000
## 2984 19 8.100535e-01 1.0000000
## 2985 47 8.100535e-01 1.0000000
## 2986 100 8.100535e-01 1.0000000
## 2987 32 8.100535e-01 1.0000000
## 2988 104 8.100535e-01 1.0000000
## 2989 107 8.100535e-01 1.0000000
## 2990 86 8.100535e-01 1.0000000
## 2991 56 8.100535e-01 1.0000000
## 2992 74 8.100535e-01 1.0000000
## 2993 103 8.100535e-01 1.0000000
## 2994 78 8.100535e-01 1.0000000
## 2995 46 8.100535e-01 1.0000000
## 2996 19 8.100535e-01 1.0000000
## 2997 70 8.100535e-01 1.0000000
## 2998 60 8.100535e-01 1.0000000
## 2999 43 8.100535e-01 1.0000000
## 3000 64 8.100535e-01 1.0000000
## 3001 43 8.100535e-01 1.0000000
## 3002 35 8.100535e-01 1.0000000
## 3003 91 8.100535e-01 1.0000000
## 3004 80 8.100535e-01 1.0000000
## 3005 42 8.100535e-01 1.0000000
## 3006 75 8.100535e-01 1.0000000
## 3007 63 8.100535e-01 1.0000000
## 3008 112 8.100535e-01 1.0000000
## 3009 73 8.100535e-01 1.0000000
## 3010 50 8.100535e-01 1.0000000
## 3011 87 8.100535e-01 1.0000000
## 3012 27 8.100535e-01 1.0000000
## 3013 4101 8.135365e-01 1.0000000
## 3014 82 8.137327e-01 1.0000000
## 3015 80 8.137327e-01 1.0000000
## 3016 111 8.137327e-01 1.0000000
## 3017 218 8.137327e-01 1.0000000
## 3018 68 8.137327e-01 1.0000000
## 3019 108 8.137327e-01 1.0000000
## 3020 119 8.137327e-01 1.0000000
## 3021 218 8.146541e-01 1.0000000
## 3022 150 8.146541e-01 1.0000000
## 3023 818 8.157972e-01 1.0000000
## 3024 109 8.160114e-01 1.0000000
## 3025 113 8.160114e-01 1.0000000
## 3026 41 8.160114e-01 1.0000000
## 3027 96 8.160114e-01 1.0000000
## 3028 115 8.160114e-01 1.0000000
## 3029 67 8.160114e-01 1.0000000
## 3030 66 8.160114e-01 1.0000000
## 3031 63 8.160114e-01 1.0000000
## 3032 65 8.160114e-01 1.0000000
## 3033 112 8.160114e-01 1.0000000
## 3034 389 8.170278e-01 1.0000000
## 3035 239 8.183373e-01 1.0000000
## 3036 281 8.183373e-01 1.0000000
## 3037 1800 8.199224e-01 1.0000000
## 3038 134 8.200329e-01 1.0000000
## 3039 263 8.200329e-01 1.0000000
## 3040 246 8.200738e-01 1.0000000
## 3041 14 8.204683e-01 1.0000000
## 3042 9 8.204683e-01 1.0000000
## 3043 67 8.204683e-01 1.0000000
## 3044 35 8.204683e-01 1.0000000
## 3045 89 8.204683e-01 1.0000000
## 3046 19 8.204683e-01 1.0000000
## 3047 5 8.204683e-01 1.0000000
## 3048 14 8.204683e-01 1.0000000
## 3049 5 8.204683e-01 1.0000000
## 3050 20 8.204683e-01 1.0000000
## 3051 84 8.204683e-01 1.0000000
## 3052 11 8.204683e-01 1.0000000
## 3053 71 8.204683e-01 1.0000000
## 3054 55 8.204683e-01 1.0000000
## 3055 12 8.204683e-01 1.0000000
## 3056 144 8.204683e-01 1.0000000
## 3057 384 8.204683e-01 1.0000000
## 3058 40 8.204683e-01 1.0000000
## 3059 55 8.204683e-01 1.0000000
## 3060 13 8.204683e-01 1.0000000
## 3061 22 8.204683e-01 1.0000000
## 3062 4 8.204683e-01 1.0000000
## 3063 5 8.204683e-01 1.0000000
## 3064 4 8.204683e-01 1.0000000
## 3065 8 8.204683e-01 1.0000000
## 3066 26 8.204683e-01 1.0000000
## 3067 52 8.204683e-01 1.0000000
## 3068 3 8.204683e-01 1.0000000
## 3069 6 8.204683e-01 1.0000000
## 3070 20 8.204683e-01 1.0000000
## 3071 18 8.204683e-01 1.0000000
## 3072 39 8.204683e-01 1.0000000
## 3073 52 8.204683e-01 1.0000000
## 3074 17 8.204683e-01 1.0000000
## 3075 27 8.204683e-01 1.0000000
## 3076 17 8.204683e-01 1.0000000
## 3077 62 8.204683e-01 1.0000000
## 3078 28 8.204683e-01 1.0000000
## 3079 22 8.204683e-01 1.0000000
## 3080 13 8.204683e-01 1.0000000
## 3081 30 8.204683e-01 1.0000000
## 3082 24 8.204683e-01 1.0000000
## 3083 69 8.204683e-01 1.0000000
## 3084 10 8.204683e-01 1.0000000
## 3085 12 8.204683e-01 1.0000000
## 3086 43 8.204683e-01 1.0000000
## 3087 15 8.204683e-01 1.0000000
## 3088 5 8.204683e-01 1.0000000
## 3089 38 8.204683e-01 1.0000000
## 3090 357 8.204683e-01 1.0000000
## 3091 161 8.204683e-01 1.0000000
## 3092 32 8.204683e-01 1.0000000
## 3093 3 8.204683e-01 1.0000000
## 3094 6 8.204683e-01 1.0000000
## 3095 29 8.204683e-01 1.0000000
## 3096 14 8.204683e-01 1.0000000
## 3097 16 8.204683e-01 1.0000000
## 3098 7 8.204683e-01 1.0000000
## 3099 40 8.204683e-01 1.0000000
## 3100 6 8.204683e-01 1.0000000
## 3101 32 8.204683e-01 1.0000000
## 3102 30 8.204683e-01 1.0000000
## 3103 8 8.204683e-01 1.0000000
## 3104 10 8.204683e-01 1.0000000
## 3105 6 8.204683e-01 1.0000000
## 3106 5 8.204683e-01 1.0000000
## 3107 4 8.204683e-01 1.0000000
## 3108 20 8.204683e-01 1.0000000
## 3109 23 8.204683e-01 1.0000000
## 3110 22 8.204683e-01 1.0000000
## 3111 28 8.204683e-01 1.0000000
## 3112 22 8.204683e-01 1.0000000
## 3113 56 8.204683e-01 1.0000000
## 3114 126 8.223275e-01 1.0000000
## 3115 152 8.223275e-01 1.0000000
## 3116 229 8.252145e-01 1.0000000
## 3117 171 8.252145e-01 1.0000000
## 3118 135 8.258219e-01 1.0000000
## 3119 87 8.258219e-01 1.0000000
## 3120 57 8.258219e-01 1.0000000
## 3121 97 8.258219e-01 1.0000000
## 3122 104 8.258219e-01 1.0000000
## 3123 128 8.258219e-01 1.0000000
## 3124 948 8.274106e-01 1.0000000
## 3125 173 8.288875e-01 1.0000000
## 3126 406 8.289578e-01 1.0000000
## 3127 834 8.297427e-01 1.0000000
## 3128 612 8.312227e-01 1.0000000
## 3129 240 8.319869e-01 1.0000000
## 3130 472 8.319869e-01 1.0000000
## 3131 93 8.335515e-01 1.0000000
## 3132 153 8.335515e-01 1.0000000
## 3133 188 8.335515e-01 1.0000000
## 3134 166 8.335515e-01 1.0000000
## 3135 196 8.335515e-01 1.0000000
## 3136 87 8.365058e-01 1.0000000
## 3137 72 8.365058e-01 1.0000000
## 3138 111 8.365058e-01 1.0000000
## 3139 802 8.373008e-01 1.0000000
## 3140 153 8.384458e-01 1.0000000
## 3141 4229 8.402361e-01 1.0000000
## 3142 467 8.413424e-01 1.0000000
## 3143 127 8.425372e-01 1.0000000
## 3144 43 8.425372e-01 1.0000000
## 3145 89 8.425372e-01 1.0000000
## 3146 21 8.425372e-01 1.0000000
## 3147 85 8.425372e-01 1.0000000
## 3148 80 8.425372e-01 1.0000000
## 3149 34 8.425372e-01 1.0000000
## 3150 57 8.425372e-01 1.0000000
## 3151 33 8.425372e-01 1.0000000
## 3152 66 8.425372e-01 1.0000000
## 3153 44 8.425372e-01 1.0000000
## 3154 26 8.425372e-01 1.0000000
## 3155 53 8.425372e-01 1.0000000
## 3156 95 8.425372e-01 1.0000000
## 3157 91 8.425372e-01 1.0000000
## 3158 65 8.425372e-01 1.0000000
## 3159 26 8.425372e-01 1.0000000
## 3160 17 8.425372e-01 1.0000000
## 3161 92 8.425372e-01 1.0000000
## 3162 77 8.425372e-01 1.0000000
## 3163 4426 8.429268e-01 1.0000000
## 3164 76 8.432912e-01 1.0000000
## 3165 41 8.432912e-01 1.0000000
## 3166 7 8.432912e-01 1.0000000
## 3167 75 8.432912e-01 1.0000000
## 3168 46 8.432912e-01 1.0000000
## 3169 2 8.432912e-01 1.0000000
## 3170 46 8.432912e-01 1.0000000
## 3171 177 8.432912e-01 1.0000000
## 3172 132 8.432912e-01 1.0000000
## 3173 5 8.432912e-01 1.0000000
## 3174 78 8.432912e-01 1.0000000
## 3175 72 8.432912e-01 1.0000000
## 3176 83 8.432912e-01 1.0000000
## 3177 80 8.432912e-01 1.0000000
## 3178 2 8.432912e-01 1.0000000
## 3179 28 8.432912e-01 1.0000000
## 3180 77 8.432912e-01 1.0000000
## 3181 96 8.432912e-01 1.0000000
## 3182 107 8.432912e-01 1.0000000
## 3183 42 8.432912e-01 1.0000000
## 3184 282 8.444026e-01 1.0000000
## 3185 1638 8.446394e-01 1.0000000
## 3186 154 8.458343e-01 1.0000000
## 3187 232 8.470940e-01 1.0000000
## 3188 112 8.470940e-01 1.0000000
## 3189 136 8.470940e-01 1.0000000
## 3190 277 8.470940e-01 1.0000000
## 3191 130 8.470940e-01 1.0000000
## 3192 214 8.470940e-01 1.0000000
## 3193 137 8.470940e-01 1.0000000
## 3194 270 8.470940e-01 1.0000000
## 3195 268 8.470940e-01 1.0000000
## 3196 107 8.470940e-01 1.0000000
## 3197 117 8.470940e-01 1.0000000
## 3198 108 8.470940e-01 1.0000000
## 3199 146 8.492421e-01 1.0000000
## 3200 128 8.492421e-01 1.0000000
## 3201 72 8.492421e-01 1.0000000
## 3202 345 8.504445e-01 1.0000000
## 3203 4234 8.506258e-01 1.0000000
## 3204 323 8.509094e-01 1.0000000
## 3205 548 8.512838e-01 1.0000000
## 3206 573 8.516960e-01 1.0000000
## 3207 1514 8.525652e-01 1.0000000
## 3208 4202 8.533780e-01 1.0000000
## 3209 281 8.534191e-01 1.0000000
## 3210 539 8.534878e-01 1.0000000
## 3211 3269 8.565541e-01 1.0000000
## 3212 161 8.569514e-01 1.0000000
## 3213 274 8.569514e-01 1.0000000
## 3214 200 8.569514e-01 1.0000000
## 3215 97 8.569514e-01 1.0000000
## 3216 128 8.569514e-01 1.0000000
## 3217 152 8.569514e-01 1.0000000
## 3218 333 8.570363e-01 1.0000000
## 3219 264 8.572319e-01 1.0000000
## 3220 336 8.572695e-01 1.0000000
## 3221 1135 8.573361e-01 1.0000000
## 3222 679 8.588873e-01 1.0000000
## 3223 294 8.591305e-01 1.0000000
## 3224 74 8.595970e-01 1.0000000
## 3225 18 8.595970e-01 1.0000000
## 3226 17 8.595970e-01 1.0000000
## 3227 20 8.595970e-01 1.0000000
## 3228 58 8.595970e-01 1.0000000
## 3229 11 8.595970e-01 1.0000000
## 3230 41 8.595970e-01 1.0000000
## 3231 109 8.595970e-01 1.0000000
## 3232 53 8.595970e-01 1.0000000
## 3233 19 8.595970e-01 1.0000000
## 3234 77 8.595970e-01 1.0000000
## 3235 51 8.595970e-01 1.0000000
## 3236 49 8.595970e-01 1.0000000
## 3237 35 8.595970e-01 1.0000000
## 3238 46 8.595970e-01 1.0000000
## 3239 22 8.595970e-01 1.0000000
## 3240 55 8.595970e-01 1.0000000
## 3241 21 8.595970e-01 1.0000000
## 3242 13 8.595970e-01 1.0000000
## 3243 14 8.595970e-01 1.0000000
## 3244 18 8.595970e-01 1.0000000
## 3245 37 8.595970e-01 1.0000000
## 3246 42 8.595970e-01 1.0000000
## 3247 11 8.595970e-01 1.0000000
## 3248 8 8.595970e-01 1.0000000
## 3249 2 8.595970e-01 1.0000000
## 3250 2 8.595970e-01 1.0000000
## 3251 98 8.595970e-01 1.0000000
## 3252 40 8.595970e-01 1.0000000
## 3253 86 8.595970e-01 1.0000000
## 3254 51 8.595970e-01 1.0000000
## 3255 51 8.595970e-01 1.0000000
## 3256 39 8.595970e-01 1.0000000
## 3257 22 8.595970e-01 1.0000000
## 3258 43 8.595970e-01 1.0000000
## 3259 39 8.595970e-01 1.0000000
## 3260 23 8.595970e-01 1.0000000
## 3261 3 8.595970e-01 1.0000000
## 3262 47 8.595970e-01 1.0000000
## 3263 32 8.595970e-01 1.0000000
## 3264 16 8.595970e-01 1.0000000
## 3265 6 8.595970e-01 1.0000000
## 3266 9 8.595970e-01 1.0000000
## 3267 26 8.595970e-01 1.0000000
## 3268 21 8.595970e-01 1.0000000
## 3269 31 8.595970e-01 1.0000000
## 3270 24 8.595970e-01 1.0000000
## 3271 47 8.595970e-01 1.0000000
## 3272 44 8.595970e-01 1.0000000
## 3273 80 8.595970e-01 1.0000000
## 3274 45 8.595970e-01 1.0000000
## 3275 13 8.595970e-01 1.0000000
## 3276 57 8.595970e-01 1.0000000
## 3277 11 8.595970e-01 1.0000000
## 3278 33 8.595970e-01 1.0000000
## 3279 29 8.595970e-01 1.0000000
## 3280 20 8.595970e-01 1.0000000
## 3281 100 8.595970e-01 1.0000000
## 3282 6 8.595970e-01 1.0000000
## 3283 5 8.595970e-01 1.0000000
## 3284 6 8.595970e-01 1.0000000
## 3285 4 8.595970e-01 1.0000000
## 3286 5 8.595970e-01 1.0000000
## 3287 26 8.595970e-01 1.0000000
## 3288 349 8.614343e-01 1.0000000
## 3289 164 8.614343e-01 1.0000000
## 3290 925 8.630033e-01 1.0000000
## 3291 247 8.640653e-01 1.0000000
## 3292 365 8.649163e-01 1.0000000
## 3293 210 8.651639e-01 1.0000000
## 3294 83 8.651639e-01 1.0000000
## 3295 216 8.651639e-01 1.0000000
## 3296 193 8.651639e-01 1.0000000
## 3297 146 8.651639e-01 1.0000000
## 3298 1320 8.659454e-01 1.0000000
## 3299 195 8.667932e-01 1.0000000
## 3300 171 8.667932e-01 1.0000000
## 3301 289 8.667932e-01 1.0000000
## 3302 147 8.669981e-01 1.0000000
## 3303 31 8.669981e-01 1.0000000
## 3304 21 8.669981e-01 1.0000000
## 3305 145 8.669981e-01 1.0000000
## 3306 41 8.669981e-01 1.0000000
## 3307 149 8.669981e-01 1.0000000
## 3308 77 8.669981e-01 1.0000000
## 3309 131 8.669981e-01 1.0000000
## 3310 82 8.669981e-01 1.0000000
## 3311 81 8.669981e-01 1.0000000
## 3312 93 8.669981e-01 1.0000000
## 3313 90 8.669981e-01 1.0000000
## 3314 43 8.669981e-01 1.0000000
## 3315 25 8.669981e-01 1.0000000
## 3316 494 8.675670e-01 1.0000000
## 3317 1757 8.687986e-01 1.0000000
## 3318 304 8.693023e-01 1.0000000
## 3319 14 8.699027e-01 1.0000000
## 3320 17 8.699027e-01 1.0000000
## 3321 50 8.699027e-01 1.0000000
## 3322 65 8.699027e-01 1.0000000
## 3323 53 8.699027e-01 1.0000000
## 3324 70 8.699027e-01 1.0000000
## 3325 54 8.699027e-01 1.0000000
## 3326 72 8.699027e-01 1.0000000
## 3327 59 8.699027e-01 1.0000000
## 3328 43 8.699027e-01 1.0000000
## 3329 18 8.699027e-01 1.0000000
## 3330 92 8.699027e-01 1.0000000
## 3331 47 8.699027e-01 1.0000000
## 3332 88 8.699027e-01 1.0000000
## 3333 199 8.699451e-01 1.0000000
## 3334 107 8.699451e-01 1.0000000
## 3335 101 8.699451e-01 1.0000000
## 3336 75 8.699451e-01 1.0000000
## 3337 170 8.699451e-01 1.0000000
## 3338 166 8.699451e-01 1.0000000
## 3339 63 8.699451e-01 1.0000000
## 3340 49 8.699451e-01 1.0000000
## 3341 1753 8.704830e-01 1.0000000
## 3342 501 8.721431e-01 1.0000000
## 3343 466 8.727678e-01 1.0000000
## 3344 184 8.733511e-01 1.0000000
## 3345 216 8.733511e-01 1.0000000
## 3346 166 8.733511e-01 1.0000000
## 3347 791 8.735471e-01 1.0000000
## 3348 779 8.735471e-01 1.0000000
## 3349 95 8.752204e-01 1.0000000
## 3350 53 8.752204e-01 1.0000000
## 3351 295 8.752204e-01 1.0000000
## 3352 164 8.752204e-01 1.0000000
## 3353 55 8.752204e-01 1.0000000
## 3354 267 8.752204e-01 1.0000000
## 3355 231 8.752204e-01 1.0000000
## 3356 91 8.752204e-01 1.0000000
## 3357 83 8.752204e-01 1.0000000
## 3358 84 8.752204e-01 1.0000000
## 3359 199 8.757459e-01 1.0000000
## 3360 266 8.766908e-01 1.0000000
## 3361 485 8.770139e-01 1.0000000
## 3362 538 8.805276e-01 1.0000000
## 3363 505 8.805276e-01 1.0000000
## 3364 292 8.805276e-01 1.0000000
## 3365 142 8.812759e-01 1.0000000
## 3366 142 8.814297e-01 1.0000000
## 3367 486 8.827489e-01 1.0000000
## 3368 362 8.833259e-01 1.0000000
## 3369 188 8.840989e-01 1.0000000
## 3370 2271 8.856791e-01 1.0000000
## 3371 251 8.857013e-01 1.0000000
## 3372 100 8.874891e-01 1.0000000
## 3373 128 8.874891e-01 1.0000000
## 3374 69 8.874891e-01 1.0000000
## 3375 109 8.874891e-01 1.0000000
## 3376 80 8.874891e-01 1.0000000
## 3377 130 8.874891e-01 1.0000000
## 3378 83 8.874891e-01 1.0000000
## 3379 762 8.878335e-01 1.0000000
## 3380 54 8.881561e-01 1.0000000
## 3381 178 8.881561e-01 1.0000000
## 3382 904 8.882211e-01 1.0000000
## 3383 855 8.887887e-01 1.0000000
## 3384 120 8.888322e-01 1.0000000
## 3385 361 8.888322e-01 1.0000000
## 3386 2000 8.896832e-01 1.0000000
## 3387 15 8.902112e-01 1.0000000
## 3388 78 8.902112e-01 1.0000000
## 3389 105 8.902112e-01 1.0000000
## 3390 88 8.902112e-01 1.0000000
## 3391 117 8.902112e-01 1.0000000
## 3392 41 8.902112e-01 1.0000000
## 3393 25 8.902112e-01 1.0000000
## 3394 29 8.902112e-01 1.0000000
## 3395 31 8.902112e-01 1.0000000
## 3396 66 8.902112e-01 1.0000000
## 3397 12 8.902112e-01 1.0000000
## 3398 71 8.902112e-01 1.0000000
## 3399 24 8.902112e-01 1.0000000
## 3400 46 8.902112e-01 1.0000000
## 3401 10 8.902112e-01 1.0000000
## 3402 18 8.902112e-01 1.0000000
## 3403 94 8.902112e-01 1.0000000
## 3404 56 8.902112e-01 1.0000000
## 3405 29 8.902112e-01 1.0000000
## 3406 54 8.902112e-01 1.0000000
## 3407 36 8.902112e-01 1.0000000
## 3408 112 8.902112e-01 1.0000000
## 3409 42 8.902112e-01 1.0000000
## 3410 93 8.902112e-01 1.0000000
## 3411 108 8.902112e-01 1.0000000
## 3412 122 8.902112e-01 1.0000000
## 3413 39 8.902112e-01 1.0000000
## 3414 22 8.902112e-01 1.0000000
## 3415 5 8.902112e-01 1.0000000
## 3416 65 8.902112e-01 1.0000000
## 3417 75 8.902112e-01 1.0000000
## 3418 18 8.902112e-01 1.0000000
## 3419 15 8.902112e-01 1.0000000
## 3420 17 8.902112e-01 1.0000000
## 3421 109 8.902112e-01 1.0000000
## 3422 23 8.902112e-01 1.0000000
## 3423 3 8.902112e-01 1.0000000
## 3424 4 8.902112e-01 1.0000000
## 3425 11 8.902112e-01 1.0000000
## 3426 22 8.902112e-01 1.0000000
## 3427 87 8.902112e-01 1.0000000
## 3428 32 8.902112e-01 1.0000000
## 3429 31 8.902112e-01 1.0000000
## 3430 70 8.902112e-01 1.0000000
## 3431 58 8.902112e-01 1.0000000
## 3432 54 8.902112e-01 1.0000000
## 3433 53 8.902112e-01 1.0000000
## 3434 11 8.902112e-01 1.0000000
## 3435 42 8.902112e-01 1.0000000
## 3436 65 8.902112e-01 1.0000000
## 3437 29 8.902112e-01 1.0000000
## 3438 14 8.902112e-01 1.0000000
## 3439 12 8.902112e-01 1.0000000
## 3440 34 8.902112e-01 1.0000000
## 3441 1489 8.906761e-01 1.0000000
## 3442 181 8.909751e-01 1.0000000
## 3443 486 8.914693e-01 1.0000000
## 3444 366 8.914721e-01 1.0000000
## 3445 65 8.914721e-01 1.0000000
## 3446 122 8.914721e-01 1.0000000
## 3447 396 8.918791e-01 1.0000000
## 3448 398 8.918791e-01 1.0000000
## 3449 142 8.928359e-01 1.0000000
## 3450 42 8.928359e-01 1.0000000
## 3451 23 8.928359e-01 1.0000000
## 3452 73 8.928359e-01 1.0000000
## 3453 54 8.928359e-01 1.0000000
## 3454 13 8.928359e-01 1.0000000
## 3455 37 8.928359e-01 1.0000000
## 3456 76 8.928359e-01 1.0000000
## 3457 67 8.928359e-01 1.0000000
## 3458 65 8.928359e-01 1.0000000
## 3459 39 8.928359e-01 1.0000000
## 3460 39 8.928359e-01 1.0000000
## 3461 86 8.928359e-01 1.0000000
## 3462 159 8.928359e-01 1.0000000
## 3463 64 8.928359e-01 1.0000000
## 3464 126 8.928359e-01 1.0000000
## 3465 46 8.928359e-01 1.0000000
## 3466 36 8.928359e-01 1.0000000
## 3467 139 8.928359e-01 1.0000000
## 3468 94 8.928359e-01 1.0000000
## 3469 99 8.928359e-01 1.0000000
## 3470 9 8.928359e-01 1.0000000
## 3471 112 8.928359e-01 1.0000000
## 3472 39 8.928359e-01 1.0000000
## 3473 75 8.928359e-01 1.0000000
## 3474 69 8.928359e-01 1.0000000
## 3475 138 8.928359e-01 1.0000000
## 3476 178 8.944354e-01 1.0000000
## 3477 157 8.944354e-01 1.0000000
## 3478 601 8.951023e-01 1.0000000
## 3479 831 8.951590e-01 1.0000000
## 3480 194 8.960128e-01 1.0000000
## 3481 153 8.960128e-01 1.0000000
## 3482 561 8.974455e-01 1.0000000
## 3483 509 8.985593e-01 1.0000000
## 3484 268 8.991208e-01 1.0000000
## 3485 1559 8.994863e-01 1.0000000
## 3486 5495 8.998177e-01 1.0000000
## 3487 11658 9.003999e-01 1.0000000
## 3488 371 9.007606e-01 1.0000000
## 3489 4400 9.008447e-01 1.0000000
## 3490 163 9.010923e-01 1.0000000
## 3491 645 9.010969e-01 1.0000000
## 3492 648 9.023925e-01 1.0000000
## 3493 415 9.027031e-01 1.0000000
## 3494 1414 9.029603e-01 1.0000000
## 3495 553 9.038747e-01 1.0000000
## 3496 142 9.041019e-01 1.0000000
## 3497 163 9.041019e-01 1.0000000
## 3498 104 9.041019e-01 1.0000000
## 3499 156 9.041019e-01 1.0000000
## 3500 120 9.041019e-01 1.0000000
## 3501 172 9.041019e-01 1.0000000
## 3502 195 9.041019e-01 1.0000000
## 3503 939 9.042913e-01 1.0000000
## 3504 95 9.051140e-01 1.0000000
## 3505 91 9.051140e-01 1.0000000
## 3506 116 9.051140e-01 1.0000000
## 3507 115 9.051140e-01 1.0000000
## 3508 84 9.051140e-01 1.0000000
## 3509 54 9.051140e-01 1.0000000
## 3510 386 9.055642e-01 1.0000000
## 3511 408 9.058601e-01 1.0000000
## 3512 120 9.058692e-01 1.0000000
## 3513 168 9.058692e-01 1.0000000
## 3514 90 9.058692e-01 1.0000000
## 3515 73 9.058692e-01 1.0000000
## 3516 163 9.063532e-01 1.0000000
## 3517 377 9.074849e-01 1.0000000
## 3518 1435 9.079656e-01 1.0000000
## 3519 131 9.090380e-01 1.0000000
## 3520 76 9.090380e-01 1.0000000
## 3521 858 9.092989e-01 1.0000000
## 3522 4344 9.105386e-01 1.0000000
## 3523 64 9.119669e-01 1.0000000
## 3524 86 9.119669e-01 1.0000000
## 3525 83 9.119669e-01 1.0000000
## 3526 52 9.119669e-01 1.0000000
## 3527 49 9.119669e-01 1.0000000
## 3528 24 9.119669e-01 1.0000000
## 3529 104 9.119669e-01 1.0000000
## 3530 17 9.119669e-01 1.0000000
## 3531 39 9.119669e-01 1.0000000
## 3532 38 9.119669e-01 1.0000000
## 3533 385 9.121327e-01 1.0000000
## 3534 4471 9.122481e-01 1.0000000
## 3535 418 9.126142e-01 1.0000000
## 3536 21 9.141607e-01 1.0000000
## 3537 32 9.141607e-01 1.0000000
## 3538 150 9.141607e-01 1.0000000
## 3539 34 9.141607e-01 1.0000000
## 3540 30 9.141607e-01 1.0000000
## 3541 43 9.141607e-01 1.0000000
## 3542 92 9.141607e-01 1.0000000
## 3543 57 9.141607e-01 1.0000000
## 3544 5 9.141607e-01 1.0000000
## 3545 30 9.141607e-01 1.0000000
## 3546 1 9.141607e-01 1.0000000
## 3547 1 9.141607e-01 1.0000000
## 3548 21 9.141607e-01 1.0000000
## 3549 16 9.141607e-01 1.0000000
## 3550 36 9.141607e-01 1.0000000
## 3551 49 9.141607e-01 1.0000000
## 3552 19 9.141607e-01 1.0000000
## 3553 16 9.141607e-01 1.0000000
## 3554 17 9.141607e-01 1.0000000
## 3555 106 9.141607e-01 1.0000000
## 3556 17 9.141607e-01 1.0000000
## 3557 38 9.141607e-01 1.0000000
## 3558 16 9.141607e-01 1.0000000
## 3559 32 9.141607e-01 1.0000000
## 3560 132 9.141607e-01 1.0000000
## 3561 49 9.141607e-01 1.0000000
## 3562 24 9.141607e-01 1.0000000
## 3563 28 9.141607e-01 1.0000000
## 3564 13 9.141607e-01 1.0000000
## 3565 5 9.141607e-01 1.0000000
## 3566 17 9.141607e-01 1.0000000
## 3567 22 9.141607e-01 1.0000000
## 3568 20 9.141607e-01 1.0000000
## 3569 161 9.141607e-01 1.0000000
## 3570 19 9.141607e-01 1.0000000
## 3571 22 9.141607e-01 1.0000000
## 3572 35 9.141607e-01 1.0000000
## 3573 21 9.141607e-01 1.0000000
## 3574 2 9.141607e-01 1.0000000
## 3575 499 9.142555e-01 1.0000000
## 3576 1444 9.148430e-01 1.0000000
## 3577 1171 9.151834e-01 1.0000000
## 3578 308 9.157585e-01 1.0000000
## 3579 637 9.166295e-01 1.0000000
## 3580 413 9.167246e-01 1.0000000
## 3581 184 9.171122e-01 1.0000000
## 3582 145 9.171122e-01 1.0000000
## 3583 190 9.180048e-01 1.0000000
## 3584 206 9.180048e-01 1.0000000
## 3585 183 9.180048e-01 1.0000000
## 3586 99 9.180048e-01 1.0000000
## 3587 689 9.183932e-01 1.0000000
## 3588 142 9.185732e-01 1.0000000
## 3589 105 9.185732e-01 1.0000000
## 3590 160 9.185732e-01 1.0000000
## 3591 1377 9.186512e-01 1.0000000
## 3592 146 9.202060e-01 1.0000000
## 3593 182 9.202060e-01 1.0000000
## 3594 78 9.202060e-01 1.0000000
## 3595 53 9.202060e-01 1.0000000
## 3596 977 9.204579e-01 1.0000000
## 3597 110 9.206297e-01 1.0000000
## 3598 113 9.206297e-01 1.0000000
## 3599 215 9.214218e-01 1.0000000
## 3600 180 9.214218e-01 1.0000000
## 3601 5336 9.219722e-01 1.0000000
## 3602 1098 9.220908e-01 1.0000000
## 3603 618 9.223136e-01 1.0000000
## 3604 323 9.234118e-01 1.0000000
## 3605 855 9.239479e-01 1.0000000
## 3606 642 9.250647e-01 1.0000000
## 3607 495 9.250647e-01 1.0000000
## 3608 3731 9.254509e-01 1.0000000
## 3609 348 9.263914e-01 1.0000000
## 3610 816 9.266631e-01 1.0000000
## 3611 513 9.266817e-01 1.0000000
## 3612 148 9.267953e-01 1.0000000
## 3613 780 9.274422e-01 1.0000000
## 3614 777 9.274422e-01 1.0000000
## 3615 90 9.278618e-01 1.0000000
## 3616 101 9.278618e-01 1.0000000
## 3617 216 9.278618e-01 1.0000000
## 3618 87 9.278618e-01 1.0000000
## 3619 121 9.278618e-01 1.0000000
## 3620 54 9.278618e-01 1.0000000
## 3621 94 9.278618e-01 1.0000000
## 3622 137 9.278618e-01 1.0000000
## 3623 57 9.278618e-01 1.0000000
## 3624 470 9.284799e-01 1.0000000
## 3625 407 9.297418e-01 1.0000000
## 3626 92 9.297418e-01 1.0000000
## 3627 73 9.300787e-01 1.0000000
## 3628 47 9.300787e-01 1.0000000
## 3629 215 9.300787e-01 1.0000000
## 3630 163 9.300787e-01 1.0000000
## 3631 75 9.300787e-01 1.0000000
## 3632 71 9.300787e-01 1.0000000
## 3633 82 9.300787e-01 1.0000000
## 3634 116 9.300787e-01 1.0000000
## 3635 194 9.302956e-01 1.0000000
## 3636 135 9.302956e-01 1.0000000
## 3637 4432 9.306996e-01 1.0000000
## 3638 494 9.308866e-01 1.0000000
## 3639 131 9.309104e-01 1.0000000
## 3640 158 9.309104e-01 1.0000000
## 3641 4747 9.312077e-01 1.0000000
## 3642 10477 9.326475e-01 1.0000000
## 3643 798 9.326919e-01 1.0000000
## 3644 451 9.327955e-01 1.0000000
## 3645 41 9.328941e-01 1.0000000
## 3646 24 9.328941e-01 1.0000000
## 3647 21 9.328941e-01 1.0000000
## 3648 93 9.328941e-01 1.0000000
## 3649 114 9.328941e-01 1.0000000
## 3650 117 9.328941e-01 1.0000000
## 3651 12 9.328941e-01 1.0000000
## 3652 4 9.328941e-01 1.0000000
## 3653 9 9.328941e-01 1.0000000
## 3654 4 9.328941e-01 1.0000000
## 3655 57 9.328941e-01 1.0000000
## 3656 39 9.328941e-01 1.0000000
## 3657 13 9.328941e-01 1.0000000
## 3658 6 9.328941e-01 1.0000000
## 3659 19 9.328941e-01 1.0000000
## 3660 87 9.328941e-01 1.0000000
## 3661 11 9.328941e-01 1.0000000
## 3662 30 9.328941e-01 1.0000000
## 3663 31 9.328941e-01 1.0000000
## 3664 78 9.328941e-01 1.0000000
## 3665 35 9.328941e-01 1.0000000
## 3666 24 9.328941e-01 1.0000000
## 3667 14 9.328941e-01 1.0000000
## 3668 7 9.328941e-01 1.0000000
## 3669 5 9.328941e-01 1.0000000
## 3670 13 9.328941e-01 1.0000000
## 3671 15 9.328941e-01 1.0000000
## 3672 14 9.328941e-01 1.0000000
## 3673 36 9.328941e-01 1.0000000
## 3674 3 9.328941e-01 1.0000000
## 3675 4 9.328941e-01 1.0000000
## 3676 6 9.328941e-01 1.0000000
## 3677 73 9.328941e-01 1.0000000
## 3678 31 9.328941e-01 1.0000000
## 3679 1 9.328941e-01 1.0000000
## 3680 37 9.328941e-01 1.0000000
## 3681 91 9.328941e-01 1.0000000
## 3682 163 9.330765e-01 1.0000000
## 3683 138 9.330765e-01 1.0000000
## 3684 88 9.330765e-01 1.0000000
## 3685 54 9.330765e-01 1.0000000
## 3686 87 9.330765e-01 1.0000000
## 3687 82 9.330765e-01 1.0000000
## 3688 450 9.332042e-01 1.0000000
## 3689 615 9.332042e-01 1.0000000
## 3690 1648 9.337938e-01 1.0000000
## 3691 471 9.351465e-01 1.0000000
## 3692 3833 9.352541e-01 1.0000000
## 3693 288 9.354845e-01 1.0000000
## 3694 179 9.354845e-01 1.0000000
## 3695 3593 9.358266e-01 1.0000000
## 3696 400 9.369859e-01 1.0000000
## 3697 191 9.374036e-01 1.0000000
## 3698 132 9.382912e-01 1.0000000
## 3699 1701 9.389681e-01 1.0000000
## 3700 1715 9.389681e-01 1.0000000
## 3701 394 9.391728e-01 1.0000000
## 3702 486 9.392325e-01 1.0000000
## 3703 175 9.395263e-01 1.0000000
## 3704 116 9.395263e-01 1.0000000
## 3705 899 9.399624e-01 1.0000000
## 3706 165 9.405255e-01 1.0000000
## 3707 135 9.405255e-01 1.0000000
## 3708 114 9.405255e-01 1.0000000
## 3709 1486 9.409240e-01 1.0000000
## 3710 157 9.410207e-01 1.0000000
## 3711 27 9.410207e-01 1.0000000
## 3712 100 9.410207e-01 1.0000000
## 3713 26 9.410207e-01 1.0000000
## 3714 11 9.410207e-01 1.0000000
## 3715 52 9.410207e-01 1.0000000
## 3716 13 9.410207e-01 1.0000000
## 3717 170 9.410207e-01 1.0000000
## 3718 74 9.410207e-01 1.0000000
## 3719 84 9.410207e-01 1.0000000
## 3720 102 9.410207e-01 1.0000000
## 3721 165 9.413604e-01 1.0000000
## 3722 4232 9.416785e-01 1.0000000
## 3723 680 9.422051e-01 1.0000000
## 3724 1814 9.427778e-01 1.0000000
## 3725 418 9.432599e-01 1.0000000
## 3726 101 9.440115e-01 1.0000000
## 3727 225 9.440115e-01 1.0000000
## 3728 167 9.440115e-01 1.0000000
## 3729 85 9.440115e-01 1.0000000
## 3730 74 9.440115e-01 1.0000000
## 3731 26 9.440115e-01 1.0000000
## 3732 27 9.440115e-01 1.0000000
## 3733 41 9.440115e-01 1.0000000
## 3734 292 9.442303e-01 1.0000000
## 3735 676 9.443367e-01 1.0000000
## 3736 1599 9.454233e-01 1.0000000
## 3737 235 9.454765e-01 1.0000000
## 3738 288 9.474604e-01 1.0000000
## 3739 21 9.475457e-01 1.0000000
## 3740 40 9.475457e-01 1.0000000
## 3741 36 9.475457e-01 1.0000000
## 3742 52 9.475457e-01 1.0000000
## 3743 22 9.475457e-01 1.0000000
## 3744 436 9.475457e-01 1.0000000
## 3745 88 9.475457e-01 1.0000000
## 3746 34 9.475457e-01 1.0000000
## 3747 30 9.475457e-01 1.0000000
## 3748 5 9.475457e-01 1.0000000
## 3749 41 9.475457e-01 1.0000000
## 3750 11 9.475457e-01 1.0000000
## 3751 6 9.475457e-01 1.0000000
## 3752 70 9.475457e-01 1.0000000
## 3753 25 9.475457e-01 1.0000000
## 3754 5 9.475457e-01 1.0000000
## 3755 26 9.475457e-01 1.0000000
## 3756 42 9.475457e-01 1.0000000
## 3757 11 9.475457e-01 1.0000000
## 3758 37 9.475457e-01 1.0000000
## 3759 119 9.475457e-01 1.0000000
## 3760 44 9.475457e-01 1.0000000
## 3761 27 9.475457e-01 1.0000000
## 3762 402 9.475457e-01 1.0000000
## 3763 49 9.475457e-01 1.0000000
## 3764 16 9.475457e-01 1.0000000
## 3765 13 9.475457e-01 1.0000000
## 3766 6 9.475457e-01 1.0000000
## 3767 13 9.475457e-01 1.0000000
## 3768 14 9.475457e-01 1.0000000
## 3769 48 9.475457e-01 1.0000000
## 3770 6 9.475457e-01 1.0000000
## 3771 995 9.477229e-01 1.0000000
## 3772 371 9.478674e-01 1.0000000
## 3773 3414 9.479487e-01 1.0000000
## 3774 242 9.480079e-01 1.0000000
## 3775 493 9.480261e-01 1.0000000
## 3776 3326 9.480576e-01 1.0000000
## 3777 152 9.480700e-01 1.0000000
## 3778 11037 9.486464e-01 1.0000000
## 3779 2753 9.492722e-01 1.0000000
## 3780 154 9.495331e-01 1.0000000
## 3781 186 9.495331e-01 1.0000000
## 3782 189 9.495331e-01 1.0000000
## 3783 145 9.495331e-01 1.0000000
## 3784 109 9.495331e-01 1.0000000
## 3785 86 9.495331e-01 1.0000000
## 3786 352 9.503385e-01 1.0000000
## 3787 1466 9.508351e-01 1.0000000
## 3788 706 9.510552e-01 1.0000000
## 3789 693 9.514679e-01 1.0000000
## 3790 406 9.516322e-01 1.0000000
## 3791 59 9.518795e-01 1.0000000
## 3792 61 9.518795e-01 1.0000000
## 3793 47 9.518795e-01 1.0000000
## 3794 53 9.518795e-01 1.0000000
## 3795 90 9.518795e-01 1.0000000
## 3796 177 9.518795e-01 1.0000000
## 3797 1722 9.524528e-01 1.0000000
## 3798 445 9.528218e-01 1.0000000
## 3799 150 9.532698e-01 1.0000000
## 3800 212 9.532698e-01 1.0000000
## 3801 147 9.532698e-01 1.0000000
## 3802 155 9.532698e-01 1.0000000
## 3803 325 9.534952e-01 1.0000000
## 3804 166 9.538425e-01 1.0000000
## 3805 269 9.538425e-01 1.0000000
## 3806 1576 9.545161e-01 1.0000000
## 3807 513 9.547699e-01 1.0000000
## 3808 215 9.550452e-01 1.0000000
## 3809 155 9.550452e-01 1.0000000
## 3810 1625 9.553417e-01 1.0000000
## 3811 192 9.554325e-01 1.0000000
## 3812 202 9.554325e-01 1.0000000
## 3813 177 9.555067e-01 1.0000000
## 3814 174 9.555067e-01 1.0000000
## 3815 546 9.568968e-01 1.0000000
## 3816 1259 9.569369e-01 1.0000000
## 3817 1606 9.579219e-01 1.0000000
## 3818 1677 9.581052e-01 1.0000000
## 3819 71 9.590034e-01 1.0000000
## 3820 31 9.590034e-01 1.0000000
## 3821 35 9.590034e-01 1.0000000
## 3822 13 9.590034e-01 1.0000000
## 3823 137 9.590034e-01 1.0000000
## 3824 8 9.590034e-01 1.0000000
## 3825 22 9.590034e-01 1.0000000
## 3826 97 9.590034e-01 1.0000000
## 3827 41 9.590034e-01 1.0000000
## 3828 50 9.590034e-01 1.0000000
## 3829 7 9.590034e-01 1.0000000
## 3830 36 9.590034e-01 1.0000000
## 3831 77 9.590034e-01 1.0000000
## 3832 74 9.590034e-01 1.0000000
## 3833 43 9.590034e-01 1.0000000
## 3834 110 9.590034e-01 1.0000000
## 3835 98 9.590034e-01 1.0000000
## 3836 59 9.590034e-01 1.0000000
## 3837 62 9.590034e-01 1.0000000
## 3838 97 9.590034e-01 1.0000000
## 3839 451 9.590034e-01 1.0000000
## 3840 20 9.590034e-01 1.0000000
## 3841 41 9.590034e-01 1.0000000
## 3842 20 9.590034e-01 1.0000000
## 3843 64 9.590034e-01 1.0000000
## 3844 3 9.590034e-01 1.0000000
## 3845 14 9.590034e-01 1.0000000
## 3846 9 9.590034e-01 1.0000000
## 3847 416 9.600641e-01 1.0000000
## 3848 111 9.608144e-01 1.0000000
## 3849 46 9.608144e-01 1.0000000
## 3850 127 9.608144e-01 1.0000000
## 3851 21 9.608144e-01 1.0000000
## 3852 29 9.608144e-01 1.0000000
## 3853 101 9.608144e-01 1.0000000
## 3854 57 9.610834e-01 1.0000000
## 3855 234 9.612639e-01 1.0000000
## 3856 1844 9.617137e-01 1.0000000
## 3857 201 9.619607e-01 1.0000000
## 3858 209 9.619607e-01 1.0000000
## 3859 3664 9.639055e-01 1.0000000
## 3860 3686 9.639055e-01 1.0000000
## 3861 3704 9.639055e-01 1.0000000
## 3862 88 9.639075e-01 1.0000000
## 3863 50 9.639075e-01 1.0000000
## 3864 302 9.640076e-01 1.0000000
## 3865 521 9.641566e-01 1.0000000
## 3866 384 9.651329e-01 1.0000000
## 3867 1043 9.654249e-01 1.0000000
## 3868 441 9.660685e-01 1.0000000
## 3869 544 9.661202e-01 1.0000000
## 3870 585 9.661202e-01 1.0000000
## 3871 289 9.663975e-01 1.0000000
## 3872 172 9.667126e-01 1.0000000
## 3873 203 9.667126e-01 1.0000000
## 3874 335 9.667957e-01 1.0000000
## 3875 430 9.667957e-01 1.0000000
## 3876 343 9.667957e-01 1.0000000
## 3877 367 9.667957e-01 1.0000000
## 3878 733 9.668793e-01 1.0000000
## 3879 226 9.673840e-01 1.0000000
## 3880 95 9.675460e-01 1.0000000
## 3881 314 9.675460e-01 1.0000000
## 3882 847 9.676232e-01 1.0000000
## 3883 105 9.676582e-01 1.0000000
## 3884 185 9.676582e-01 1.0000000
## 3885 78 9.676582e-01 1.0000000
## 3886 141 9.676582e-01 1.0000000
## 3887 31 9.679623e-01 1.0000000
## 3888 97 9.679623e-01 1.0000000
## 3889 37 9.679623e-01 1.0000000
## 3890 20 9.679623e-01 1.0000000
## 3891 27 9.679623e-01 1.0000000
## 3892 36 9.679623e-01 1.0000000
## 3893 53 9.679623e-01 1.0000000
## 3894 50 9.679623e-01 1.0000000
## 3895 80 9.679623e-01 1.0000000
## 3896 60 9.679623e-01 1.0000000
## 3897 31 9.679623e-01 1.0000000
## 3898 67 9.679623e-01 1.0000000
## 3899 37 9.679623e-01 1.0000000
## 3900 15 9.679623e-01 1.0000000
## 3901 62 9.679623e-01 1.0000000
## 3902 53 9.679623e-01 1.0000000
## 3903 57 9.679623e-01 1.0000000
## 3904 36 9.679623e-01 1.0000000
## 3905 15 9.679623e-01 1.0000000
## 3906 23 9.681469e-01 1.0000000
## 3907 144 9.681469e-01 1.0000000
## 3908 46 9.681469e-01 1.0000000
## 3909 108 9.681469e-01 1.0000000
## 3910 82 9.681469e-01 1.0000000
## 3911 25 9.681469e-01 1.0000000
## 3912 45 9.681469e-01 1.0000000
## 3913 76 9.681469e-01 1.0000000
## 3914 105 9.681469e-01 1.0000000
## 3915 48 9.681469e-01 1.0000000
## 3916 1341 9.681691e-01 1.0000000
## 3917 259 9.682986e-01 1.0000000
## 3918 869 9.685336e-01 1.0000000
## 3919 54 9.695743e-01 1.0000000
## 3920 151 9.695743e-01 1.0000000
## 3921 3981 9.699304e-01 1.0000000
## 3922 792 9.704977e-01 1.0000000
## 3923 567 9.705566e-01 1.0000000
## 3924 208 9.709057e-01 1.0000000
## 3925 880 9.710475e-01 1.0000000
## 3926 772 9.712244e-01 1.0000000
## 3927 199 9.712941e-01 1.0000000
## 3928 182 9.712941e-01 1.0000000
## 3929 185 9.712941e-01 1.0000000
## 3930 157 9.712941e-01 1.0000000
## 3931 165 9.714430e-01 1.0000000
## 3932 3198 9.722762e-01 1.0000000
## 3933 1078 9.726123e-01 1.0000000
## 3934 3376 9.726468e-01 1.0000000
## 3935 3005 9.730427e-01 1.0000000
## 3936 112 9.731752e-01 1.0000000
## 3937 132 9.731752e-01 1.0000000
## 3938 137 9.731752e-01 1.0000000
## 3939 160 9.741500e-01 1.0000000
## 3940 81 9.741500e-01 1.0000000
## 3941 100 9.741500e-01 1.0000000
## 3942 70 9.741500e-01 1.0000000
## 3943 79 9.741500e-01 1.0000000
## 3944 73 9.741500e-01 1.0000000
## 3945 47 9.741500e-01 1.0000000
## 3946 164 9.741500e-01 1.0000000
## 3947 124 9.741500e-01 1.0000000
## 3948 46 9.741500e-01 1.0000000
## 3949 68 9.744025e-01 1.0000000
## 3950 181 9.744025e-01 1.0000000
## 3951 205 9.744025e-01 1.0000000
## 3952 108 9.744025e-01 1.0000000
## 3953 139 9.744025e-01 1.0000000
## 3954 209 9.744025e-01 1.0000000
## 3955 610 9.746007e-01 1.0000000
## 3956 306 9.747843e-01 1.0000000
## 3957 311 9.747843e-01 1.0000000
## 3958 308 9.747843e-01 1.0000000
## 3959 833 9.747953e-01 1.0000000
## 3960 404 9.748551e-01 1.0000000
## 3961 83 9.749665e-01 1.0000000
## 3962 89 9.749665e-01 1.0000000
## 3963 74 9.749665e-01 1.0000000
## 3964 87 9.749665e-01 1.0000000
## 3965 79 9.749665e-01 1.0000000
## 3966 62 9.749665e-01 1.0000000
## 3967 94 9.749665e-01 1.0000000
## 3968 9 9.749665e-01 1.0000000
## 3969 7 9.749665e-01 1.0000000
## 3970 86 9.749665e-01 1.0000000
## 3971 65 9.749665e-01 1.0000000
## 3972 25 9.749665e-01 1.0000000
## 3973 113 9.749665e-01 1.0000000
## 3974 46 9.749665e-01 1.0000000
## 3975 19 9.749665e-01 1.0000000
## 3976 16 9.749665e-01 1.0000000
## 3977 42 9.749665e-01 1.0000000
## 3978 9 9.749665e-01 1.0000000
## 3979 38 9.749665e-01 1.0000000
## 3980 24 9.749665e-01 1.0000000
## 3981 262 9.753759e-01 1.0000000
## 3982 317 9.753759e-01 1.0000000
## 3983 220 9.753759e-01 1.0000000
## 3984 222 9.753759e-01 1.0000000
## 3985 289 9.765162e-01 1.0000000
## 3986 227 9.765162e-01 1.0000000
## 3987 915 9.768963e-01 1.0000000
## 3988 733 9.769476e-01 1.0000000
## 3989 1970 9.770485e-01 1.0000000
## 3990 1158 9.775991e-01 1.0000000
## 3991 123 9.777927e-01 1.0000000
## 3992 119 9.777927e-01 1.0000000
## 3993 89 9.777927e-01 1.0000000
## 3994 240 9.777927e-01 1.0000000
## 3995 152 9.777927e-01 1.0000000
## 3996 87 9.777927e-01 1.0000000
## 3997 332 9.781105e-01 1.0000000
## 3998 410 9.783070e-01 1.0000000
## 3999 150 9.785056e-01 1.0000000
## 4000 163 9.785056e-01 1.0000000
## 4001 169 9.785056e-01 1.0000000
## 4002 259 9.789160e-01 1.0000000
## 4003 228 9.789160e-01 1.0000000
## 4004 1476 9.790227e-01 1.0000000
## 4005 43 9.790540e-01 1.0000000
## 4006 45 9.790540e-01 1.0000000
## 4007 125 9.790540e-01 1.0000000
## 4008 112 9.790540e-01 1.0000000
## 4009 3134 9.793021e-01 1.0000000
## 4010 250 9.796569e-01 1.0000000
## 4011 28 9.804419e-01 1.0000000
## 4012 85 9.804419e-01 1.0000000
## 4013 123 9.804419e-01 1.0000000
## 4014 61 9.804419e-01 1.0000000
## 4015 29 9.804419e-01 1.0000000
## 4016 155 9.804419e-01 1.0000000
## 4017 8 9.804419e-01 1.0000000
## 4018 64 9.804419e-01 1.0000000
## 4019 109 9.804419e-01 1.0000000
## 4020 71 9.804419e-01 1.0000000
## 4021 59 9.804419e-01 1.0000000
## 4022 32 9.804419e-01 1.0000000
## 4023 71 9.804419e-01 1.0000000
## 4024 25 9.804419e-01 1.0000000
## 4025 71 9.804419e-01 1.0000000
## 4026 18 9.804419e-01 1.0000000
## 4027 16 9.804419e-01 1.0000000
## 4028 13 9.804419e-01 1.0000000
## 4029 52 9.804419e-01 1.0000000
## 4030 86 9.804419e-01 1.0000000
## 4031 53 9.804419e-01 1.0000000
## 4032 109 9.804419e-01 1.0000000
## 4033 20 9.804419e-01 1.0000000
## 4034 122 9.804419e-01 1.0000000
## 4035 86 9.804419e-01 1.0000000
## 4036 1045 9.804580e-01 1.0000000
## 4037 806 9.809881e-01 1.0000000
## 4038 675 9.811699e-01 1.0000000
## 4039 242 9.816480e-01 1.0000000
## 4040 87 9.816480e-01 1.0000000
## 4041 617 9.818718e-01 1.0000000
## 4042 123 9.819790e-01 1.0000000
## 4043 126 9.819790e-01 1.0000000
## 4044 96 9.819839e-01 1.0000000
## 4045 875 9.820785e-01 1.0000000
## 4046 3321 9.824382e-01 1.0000000
## 4047 1215 9.830159e-01 1.0000000
## 4048 66 9.830521e-01 1.0000000
## 4049 100 9.830521e-01 1.0000000
## 4050 28 9.830521e-01 1.0000000
## 4051 69 9.830521e-01 1.0000000
## 4052 224 9.830521e-01 1.0000000
## 4053 71 9.830521e-01 1.0000000
## 4054 1258 9.830548e-01 1.0000000
## 4055 629 9.832423e-01 1.0000000
## 4056 376 9.832423e-01 1.0000000
## 4057 593 9.835661e-01 1.0000000
## 4058 315 9.838524e-01 1.0000000
## 4059 358 9.838524e-01 1.0000000
## 4060 354 9.838524e-01 1.0000000
## 4061 724 9.839002e-01 1.0000000
## 4062 1262 9.843030e-01 1.0000000
## 4063 713 9.843708e-01 1.0000000
## 4064 79 9.847216e-01 1.0000000
## 4065 455 9.847216e-01 1.0000000
## 4066 14 9.847216e-01 1.0000000
## 4067 100 9.847216e-01 1.0000000
## 4068 60 9.847216e-01 1.0000000
## 4069 23 9.847216e-01 1.0000000
## 4070 131 9.847216e-01 1.0000000
## 4071 51 9.847216e-01 1.0000000
## 4072 96 9.847216e-01 1.0000000
## 4073 31 9.847216e-01 1.0000000
## 4074 129 9.848594e-01 1.0000000
## 4075 137 9.848594e-01 1.0000000
## 4076 127 9.848594e-01 1.0000000
## 4077 128 9.848594e-01 1.0000000
## 4078 1197 9.849650e-01 1.0000000
## 4079 5262 9.854286e-01 1.0000000
## 4080 96 9.857424e-01 1.0000000
## 4081 139 9.857424e-01 1.0000000
## 4082 223 9.858213e-01 1.0000000
## 4083 238 9.858213e-01 1.0000000
## 4084 469 9.858213e-01 1.0000000
## 4085 225 9.858213e-01 1.0000000
## 4086 2970 9.860212e-01 1.0000000
## 4087 1439 9.862793e-01 1.0000000
## 4088 69 9.863055e-01 1.0000000
## 4089 197 9.863055e-01 1.0000000
## 4090 130 9.863055e-01 1.0000000
## 4091 128 9.863055e-01 1.0000000
## 4092 2766 9.866132e-01 1.0000000
## 4093 2115 9.866230e-01 1.0000000
## 4094 398 9.868636e-01 1.0000000
## 4095 106 9.869017e-01 1.0000000
## 4096 821 9.871585e-01 1.0000000
## 4097 379 9.873375e-01 1.0000000
## 4098 206 9.874085e-01 1.0000000
## 4099 246 9.874085e-01 1.0000000
## 4100 168 9.875289e-01 1.0000000
## 4101 148 9.875289e-01 1.0000000
## 4102 152 9.875289e-01 1.0000000
## 4103 128 9.875289e-01 1.0000000
## 4104 464 9.878159e-01 1.0000000
## 4105 12 9.880663e-01 1.0000000
## 4106 90 9.880663e-01 1.0000000
## 4107 924 9.883561e-01 1.0000000
## 4108 510 9.888166e-01 1.0000000
## 4109 156 9.889483e-01 1.0000000
## 4110 103 9.889483e-01 1.0000000
## 4111 96 9.889483e-01 1.0000000
## 4112 143 9.889483e-01 1.0000000
## 4113 114 9.889483e-01 1.0000000
## 4114 171 9.889483e-01 1.0000000
## 4115 83 9.889483e-01 1.0000000
## 4116 130 9.889483e-01 1.0000000
## 4117 92 9.889483e-01 1.0000000
## 4118 144 9.889483e-01 1.0000000
## 4119 967 9.893526e-01 1.0000000
## 4120 1050 9.893812e-01 1.0000000
## 4121 1424 9.894906e-01 1.0000000
## 4122 65 9.894993e-01 1.0000000
## 4123 160 9.897435e-01 1.0000000
## 4124 182 9.897435e-01 1.0000000
## 4125 197 9.897435e-01 1.0000000
## 4126 272 9.898632e-01 1.0000000
## 4127 133 9.898632e-01 1.0000000
## 4128 1013 9.900618e-01 1.0000000
## 4129 458 9.904265e-01 1.0000000
## 4130 267 9.905792e-01 1.0000000
## 4131 1074 9.906502e-01 1.0000000
## 4132 126 9.906799e-01 1.0000000
## 4133 89 9.906799e-01 1.0000000
## 4134 107 9.906799e-01 1.0000000
## 4135 166 9.906799e-01 1.0000000
## 4136 58 9.906799e-01 1.0000000
## 4137 76 9.906799e-01 1.0000000
## 4138 29 9.906799e-01 1.0000000
## 4139 18 9.906799e-01 1.0000000
## 4140 9 9.906799e-01 1.0000000
## 4141 119 9.906799e-01 1.0000000
## 4142 125 9.906799e-01 1.0000000
## 4143 37 9.906799e-01 1.0000000
## 4144 34 9.906799e-01 1.0000000
## 4145 71 9.906799e-01 1.0000000
## 4146 320 9.906935e-01 1.0000000
## 4147 329 9.906935e-01 1.0000000
## 4148 619 9.907795e-01 1.0000000
## 4149 284 9.909438e-01 1.0000000
## 4150 2536 9.909511e-01 1.0000000
## 4151 171 9.910918e-01 1.0000000
## 4152 108 9.910918e-01 1.0000000
## 4153 57 9.910918e-01 1.0000000
## 4154 119 9.910918e-01 1.0000000
## 4155 100 9.912566e-01 1.0000000
## 4156 227 9.912566e-01 1.0000000
## 4157 243 9.912566e-01 1.0000000
## 4158 581 9.915199e-01 1.0000000
## 4159 257 9.915770e-01 1.0000000
## 4160 212 9.915770e-01 1.0000000
## 4161 172 9.915770e-01 1.0000000
## 4162 500 9.918247e-01 1.0000000
## 4163 253 9.919804e-01 1.0000000
## 4164 127 9.919804e-01 1.0000000
## 4165 900 9.920923e-01 1.0000000
## 4166 829 9.922721e-01 1.0000000
## 4167 120 9.927221e-01 1.0000000
## 4168 62 9.927221e-01 1.0000000
## 4169 47 9.927221e-01 1.0000000
## 4170 90 9.927221e-01 1.0000000
## 4171 43 9.927221e-01 1.0000000
## 4172 35 9.927221e-01 1.0000000
## 4173 40 9.927221e-01 1.0000000
## 4174 120 9.927306e-01 1.0000000
## 4175 323 9.928378e-01 1.0000000
## 4176 1182 9.930139e-01 1.0000000
## 4177 472 9.930546e-01 1.0000000
## 4178 301 9.932085e-01 1.0000000
## 4179 154 9.932107e-01 1.0000000
## 4180 345 9.932107e-01 1.0000000
## 4181 2936 9.933149e-01 1.0000000
## 4182 914 9.934577e-01 1.0000000
## 4183 561 9.935951e-01 1.0000000
## 4184 414 9.937809e-01 1.0000000
## 4185 374 9.937809e-01 1.0000000
## 4186 1093 9.938650e-01 1.0000000
## 4187 117 9.939648e-01 1.0000000
## 4188 3040 9.941105e-01 1.0000000
## 4189 3885 9.941667e-01 1.0000000
## 4190 138 9.942313e-01 1.0000000
## 4191 142 9.942313e-01 1.0000000
## 4192 263 9.942313e-01 1.0000000
## 4193 140 9.942313e-01 1.0000000
## 4194 188 9.942313e-01 1.0000000
## 4195 224 9.942606e-01 1.0000000
## 4196 435 9.942907e-01 1.0000000
## 4197 72 9.943175e-01 1.0000000
## 4198 14 9.943175e-01 1.0000000
## 4199 949 9.944253e-01 1.0000000
## 4200 952 9.946822e-01 1.0000000
## 4201 344 9.947073e-01 1.0000000
## 4202 577 9.947503e-01 1.0000000
## 4203 154 9.949965e-01 1.0000000
## 4204 1778 9.951540e-01 1.0000000
## 4205 630 9.952112e-01 1.0000000
## 4206 87 9.953650e-01 1.0000000
## 4207 72 9.953650e-01 1.0000000
## 4208 178 9.953650e-01 1.0000000
## 4209 242 9.953726e-01 1.0000000
## 4210 2157 9.954528e-01 1.0000000
## 4211 2066 9.954665e-01 1.0000000
## 4212 481 9.954842e-01 1.0000000
## 4213 490 9.954842e-01 1.0000000
## 4214 74 9.955637e-01 1.0000000
## 4215 101 9.955637e-01 1.0000000
## 4216 131 9.955637e-01 1.0000000
## 4217 46 9.955637e-01 1.0000000
## 4218 45 9.955637e-01 1.0000000
## 4219 185 9.957922e-01 1.0000000
## 4220 1744 9.958068e-01 1.0000000
## 4221 110 9.962197e-01 1.0000000
## 4222 139 9.962795e-01 1.0000000
## 4223 88 9.962795e-01 1.0000000
## 4224 1518 9.964006e-01 1.0000000
## 4225 575 9.964627e-01 1.0000000
## 4226 271 9.964853e-01 1.0000000
## 4227 4914 9.964907e-01 1.0000000
## 4228 50 9.965370e-01 1.0000000
## 4229 115 9.965370e-01 1.0000000
## 4230 71 9.965370e-01 1.0000000
## 4231 96 9.965370e-01 1.0000000
## 4232 72 9.965370e-01 1.0000000
## 4233 80 9.965370e-01 1.0000000
## 4234 865 9.965611e-01 1.0000000
## 4235 96 9.965745e-01 1.0000000
## 4236 382 9.967639e-01 1.0000000
## 4237 441 9.968897e-01 1.0000000
## 4238 46 9.970163e-01 1.0000000
## 4239 249 9.970681e-01 1.0000000
## 4240 364 9.970870e-01 1.0000000
## 4241 421 9.971085e-01 1.0000000
## 4242 1295 9.971143e-01 1.0000000
## 4243 309 9.971710e-01 1.0000000
## 4244 141 9.972971e-01 1.0000000
## 4245 181 9.972971e-01 1.0000000
## 4246 164 9.972971e-01 1.0000000
## 4247 131 9.974857e-01 1.0000000
## 4248 470 9.976399e-01 1.0000000
## 4249 449 9.976399e-01 1.0000000
## 4250 638 9.976581e-01 1.0000000
## 4251 420 9.976668e-01 1.0000000
## 4252 586 9.978024e-01 1.0000000
## 4253 1788 9.978037e-01 1.0000000
## 4254 741 9.978897e-01 1.0000000
## 4255 91 9.978907e-01 1.0000000
## 4256 220 9.979529e-01 1.0000000
## 4257 5433 9.979768e-01 1.0000000
## 4258 1168 9.980099e-01 1.0000000
## 4259 2574 9.980279e-01 1.0000000
## 4260 241 9.980860e-01 1.0000000
## 4261 179 9.980860e-01 1.0000000
## 4262 508 9.982162e-01 1.0000000
## 4263 2368 9.982541e-01 1.0000000
## 4264 442 9.982819e-01 1.0000000
## 4265 421 9.982938e-01 1.0000000
## 4266 405 9.983435e-01 1.0000000
## 4267 110 9.983541e-01 1.0000000
## 4268 98 9.983541e-01 1.0000000
## 4269 154 9.983541e-01 1.0000000
## 4270 81 9.983541e-01 1.0000000
## 4271 101 9.983541e-01 1.0000000
## 4272 2555 9.983923e-01 1.0000000
## 4273 258 9.984179e-01 1.0000000
## 4274 243 9.984249e-01 1.0000000
## 4275 139 9.984688e-01 1.0000000
## 4276 1188 9.984779e-01 1.0000000
## 4277 695 9.984963e-01 1.0000000
## 4278 396 9.985191e-01 1.0000000
## 4279 2014 9.985401e-01 1.0000000
## 4280 295 9.985723e-01 1.0000000
## 4281 393 9.985778e-01 1.0000000
## 4282 239 9.985975e-01 1.0000000
## 4283 90 9.987159e-01 1.0000000
## 4284 807 9.987379e-01 1.0000000
## 4285 130 9.987761e-01 1.0000000
## 4286 172 9.987761e-01 1.0000000
## 4287 4728 9.988090e-01 1.0000000
## 4288 204 9.990224e-01 1.0000000
## 4289 617 9.990245e-01 1.0000000
## 4290 5541 9.990587e-01 1.0000000
## 4291 511 9.991144e-01 1.0000000
## 4292 414 9.991701e-01 1.0000000
## 4293 83 9.992186e-01 1.0000000
## 4294 244 9.992196e-01 1.0000000
## 4295 233 9.992196e-01 1.0000000
## 4296 491 9.992335e-01 1.0000000
## 4297 401 9.992377e-01 1.0000000
## 4298 301 9.993041e-01 1.0000000
## 4299 473 9.993041e-01 1.0000000
## 4300 2143 9.993588e-01 1.0000000
## 4301 209 9.993775e-01 1.0000000
## 4302 477 9.994428e-01 1.0000000
## 4303 342 9.994558e-01 1.0000000
## 4304 212 9.994558e-01 1.0000000
## 4305 921 9.994650e-01 1.0000000
## 4306 1214 9.994935e-01 1.0000000
## 4307 408 9.995210e-01 1.0000000
## 4308 141 9.995248e-01 1.0000000
## 4309 653 9.995254e-01 1.0000000
## 4310 245 9.995276e-01 1.0000000
## 4311 365 9.995383e-01 1.0000000
## 4312 470 9.995383e-01 1.0000000
## 4313 410 9.995511e-01 1.0000000
## 4314 1423 9.995784e-01 1.0000000
## 4315 177 9.996182e-01 1.0000000
## 4316 158 9.996182e-01 1.0000000
## 4317 897 9.996302e-01 1.0000000
## 4318 559 9.996613e-01 1.0000000
## 4319 1123 9.996616e-01 1.0000000
## 4320 785 9.997068e-01 1.0000000
## 4321 870 9.997137e-01 1.0000000
## 4322 711 9.997465e-01 1.0000000
## 4323 158 9.997496e-01 1.0000000
## 4324 5084 9.997526e-01 1.0000000
## 4325 570 9.997666e-01 1.0000000
## 4326 62 9.997748e-01 1.0000000
## 4327 68 9.997748e-01 1.0000000
## 4328 78 9.997748e-01 1.0000000
## 4329 71 9.997748e-01 1.0000000
## 4330 1489 9.997791e-01 1.0000000
## 4331 1466 9.997817e-01 1.0000000
## 4332 6124 9.997963e-01 1.0000000
## 4333 183 9.997994e-01 1.0000000
## 4334 905 9.998146e-01 1.0000000
## 4335 2329 9.998177e-01 1.0000000
## 4336 63 9.998245e-01 1.0000000
## 4337 34 9.998245e-01 1.0000000
## 4338 178 9.998245e-01 1.0000000
## 4339 232 9.998263e-01 1.0000000
## 4340 313 9.998330e-01 1.0000000
## 4341 422 9.998719e-01 1.0000000
## 4342 470 9.998719e-01 1.0000000
## 4343 440 9.998719e-01 1.0000000
## 4344 159 9.998743e-01 1.0000000
## 4345 213 9.998851e-01 1.0000000
## 4346 117 9.998934e-01 1.0000000
## 4347 103 9.998934e-01 1.0000000
## 4348 66 9.998934e-01 1.0000000
## 4349 327 9.999002e-01 1.0000000
## 4350 390 9.999026e-01 1.0000000
## 4351 985 9.999175e-01 1.0000000
## 4352 496 9.999229e-01 1.0000000
## 4353 430 9.999282e-01 1.0000000
## 4354 9965 9.999325e-01 1.0000000
## 4355 5357 9.999375e-01 1.0000000
## 4356 278 9.999385e-01 1.0000000
## 4357 806 9.999433e-01 1.0000000
## 4358 4138 9.999473e-01 1.0000000
## 4359 1978 9.999475e-01 1.0000000
## 4360 5444 9.999536e-01 1.0000000
## 4361 2204 9.999546e-01 1.0000000
## 4362 629 9.999584e-01 1.0000000
## 4363 1053 9.999592e-01 1.0000000
## 4364 1058 9.999592e-01 1.0000000
## 4365 6553 9.999595e-01 1.0000000
## 4366 1394 9.999632e-01 1.0000000
## 4367 1740 9.999662e-01 1.0000000
## 4368 505 9.999667e-01 1.0000000
## 4369 450 9.999672e-01 1.0000000
## 4370 288 9.999673e-01 1.0000000
## 4371 1672 9.999703e-01 1.0000000
## 4372 167 9.999752e-01 1.0000000
## 4373 128 9.999815e-01 1.0000000
## 4374 1210 9.999837e-01 1.0000000
## 4375 7718 9.999851e-01 1.0000000
## 4376 1470 9.999867e-01 1.0000000
## 4377 1139 9.999894e-01 1.0000000
## 4378 1385 9.999914e-01 1.0000000
## 4379 1479 9.999916e-01 1.0000000
## 4380 1039 9.999967e-01 1.0000000
## 4381 5177 9.999971e-01 1.0000000
## 4382 12665 9.999983e-01 1.0000000
## 4383 1820 9.999989e-01 1.0000000
## 4384 4700 9.999992e-01 1.0000000
## 4385 717 9.999993e-01 1.0000000
## 4386 3543 9.999996e-01 1.0000000
## 4387 839 9.999998e-01 1.0000000
## 4388 3468 9.999998e-01 1.0000000
## 4389 772 9.999998e-01 1.0000000
## 4390 2776 9.999999e-01 1.0000000
## 4391 2362 9.999999e-01 1.0000000
## 4392 958 9.999999e-01 1.0000000
## 4393 5081 9.999999e-01 1.0000000
## 4394 5085 9.999999e-01 1.0000000
## 4395 1213 1.000000e+00 1.0000000
## 4396 843 1.000000e+00 1.0000000
## 4397 1 1.000000e+00 1.0000000
## 4398 9 1.000000e+00 1.0000000
## 4399 6 1.000000e+00 1.0000000
## 4400 10 1.000000e+00 1.0000000
## 4401 3 1.000000e+00 1.0000000
## 4402 1 1.000000e+00 1.0000000
## 4403 30 1.000000e+00 1.0000000
## 4404 8 1.000000e+00 1.0000000
## 4405 12 1.000000e+00 1.0000000
## 4406 1 1.000000e+00 1.0000000
## 4407 7 1.000000e+00 1.0000000
## 4408 28 1.000000e+00 1.0000000
## 4409 3 1.000000e+00 1.0000000
## 4410 6 1.000000e+00 1.0000000
## 4411 3 1.000000e+00 1.0000000
## 4412 2 1.000000e+00 1.0000000
## 4413 2 1.000000e+00 1.0000000
## 4414 21 1.000000e+00 1.0000000
## 4415 8 1.000000e+00 1.0000000
## 4416 1 1.000000e+00 1.0000000
## 4417 1 1.000000e+00 1.0000000
## 4418 13 1.000000e+00 1.0000000
## 4419 5 1.000000e+00 1.0000000
## 4420 1 1.000000e+00 1.0000000
## 4421 19 1.000000e+00 1.0000000
## 4422 38 1.000000e+00 1.0000000
## 4423 67 1.000000e+00 1.0000000
## 4424 30 1.000000e+00 1.0000000
## 4425 10 1.000000e+00 1.0000000
## 4426 35 1.000000e+00 1.0000000
## 4427 2 1.000000e+00 1.0000000
## 4428 1 1.000000e+00 1.0000000
## 4429 12 1.000000e+00 1.0000000
## 4430 2 1.000000e+00 1.0000000
## 4431 10 1.000000e+00 1.0000000
## 4432 2 1.000000e+00 1.0000000
## 4433 4 1.000000e+00 1.0000000
## 4434 2 1.000000e+00 1.0000000
## 4435 3 1.000000e+00 1.0000000
## 4436 3 1.000000e+00 1.0000000
## 4437 6 1.000000e+00 1.0000000
## 4438 16 1.000000e+00 1.0000000
## 4439 6 1.000000e+00 1.0000000
## 4440 1 1.000000e+00 1.0000000
## 4441 4 1.000000e+00 1.0000000
## 4442 1 1.000000e+00 1.0000000
## 4443 1 1.000000e+00 1.0000000
## 4444 1 1.000000e+00 1.0000000
## 4445 1 1.000000e+00 1.0000000
## 4446 9 1.000000e+00 1.0000000
## 4447 2 1.000000e+00 1.0000000
## 4448 3 1.000000e+00 1.0000000
## 4449 2 1.000000e+00 1.0000000
## 4450 32 1.000000e+00 1.0000000
## 4451 2 1.000000e+00 1.0000000
## 4452 9 1.000000e+00 1.0000000
## 4453 20 1.000000e+00 1.0000000
## 4454 5 1.000000e+00 1.0000000
## 4455 24 1.000000e+00 1.0000000
## 4456 23 1.000000e+00 1.0000000
## 4457 3 1.000000e+00 1.0000000
## 4458 15 1.000000e+00 1.0000000
## 4459 14 1.000000e+00 1.0000000
## 4460 6 1.000000e+00 1.0000000
## 4461 1 1.000000e+00 1.0000000
## 4462 9 1.000000e+00 1.0000000
## 4463 7 1.000000e+00 1.0000000
## 4464 2 1.000000e+00 1.0000000
## 4465 2 1.000000e+00 1.0000000
## 4466 1 1.000000e+00 1.0000000
## 4467 4 1.000000e+00 1.0000000
## 4468 6 1.000000e+00 1.0000000
## 4469 2 1.000000e+00 1.0000000
## 4470 3 1.000000e+00 1.0000000
## 4471 14 1.000000e+00 1.0000000
## 4472 1 1.000000e+00 1.0000000
## 4473 3 1.000000e+00 1.0000000
## 4474 12 1.000000e+00 1.0000000
## 4475 71 1.000000e+00 1.0000000
## 4476 5 1.000000e+00 1.0000000
## 4477 23 1.000000e+00 1.0000000
## 4478 10 1.000000e+00 1.0000000
## 4479 2 1.000000e+00 1.0000000
## 4480 5 1.000000e+00 1.0000000
## 4481 2 1.000000e+00 1.0000000
## 4482 3 1.000000e+00 1.0000000
## 4483 1 1.000000e+00 1.0000000
## 4484 1 1.000000e+00 1.0000000
## 4485 17 1.000000e+00 1.0000000
## 4486 1 1.000000e+00 1.0000000
## 4487 3 1.000000e+00 1.0000000
## 4488 4 1.000000e+00 1.0000000
## 4489 2 1.000000e+00 1.0000000
## 4490 2 1.000000e+00 1.0000000
## 4491 15 1.000000e+00 1.0000000
## 4492 2 1.000000e+00 1.0000000
## 4493 3 1.000000e+00 1.0000000
## 4494 6 1.000000e+00 1.0000000
## 4495 3 1.000000e+00 1.0000000
## 4496 1 1.000000e+00 1.0000000
## 4497 1 1.000000e+00 1.0000000
## 4498 1 1.000000e+00 1.0000000
## 4499 1 1.000000e+00 1.0000000
## 4500 2 1.000000e+00 1.0000000
## 4501 3 1.000000e+00 1.0000000
## 4502 2 1.000000e+00 1.0000000
## 4503 1 1.000000e+00 1.0000000
## 4504 1 1.000000e+00 1.0000000
## 4505 2 1.000000e+00 1.0000000
## 4506 5 1.000000e+00 1.0000000
## 4507 1 1.000000e+00 1.0000000
## 4508 20 1.000000e+00 1.0000000
## 4509 2 1.000000e+00 1.0000000
## 4510 8 1.000000e+00 1.0000000
## 4511 18 1.000000e+00 1.0000000
## 4512 2 1.000000e+00 1.0000000
## 4513 23 1.000000e+00 1.0000000
## 4514 53 1.000000e+00 1.0000000
## 4515 9 1.000000e+00 1.0000000
## 4516 1 1.000000e+00 1.0000000
## 4517 1 1.000000e+00 1.0000000
## 4518 3 1.000000e+00 1.0000000
## 4519 3 1.000000e+00 1.0000000
## 4520 5 1.000000e+00 1.0000000
## 4521 2 1.000000e+00 1.0000000
## 4522 1 1.000000e+00 1.0000000
## 4523 8 1.000000e+00 1.0000000
## 4524 5 1.000000e+00 1.0000000
## 4525 3 1.000000e+00 1.0000000
## 4526 19 1.000000e+00 1.0000000
## 4527 3 1.000000e+00 1.0000000
## 4528 8 1.000000e+00 1.0000000
## 4529 25 1.000000e+00 1.0000000
## 4530 29 1.000000e+00 1.0000000
## 4531 1 1.000000e+00 1.0000000
## 4532 17 1.000000e+00 1.0000000
## 4533 9 1.000000e+00 1.0000000
## 4534 2 1.000000e+00 1.0000000
## 4535 1 1.000000e+00 1.0000000
## 4536 2 1.000000e+00 1.0000000
## 4537 36 1.000000e+00 1.0000000
## 4538 2 1.000000e+00 1.0000000
## 4539 2 1.000000e+00 1.0000000
## 4540 44 1.000000e+00 1.0000000
## 4541 30 1.000000e+00 1.0000000
## 4542 5 1.000000e+00 1.0000000
## 4543 5 1.000000e+00 1.0000000
## 4544 29 1.000000e+00 1.0000000
## 4545 9 1.000000e+00 1.0000000
## 4546 14 1.000000e+00 1.0000000
## 4547 1 1.000000e+00 1.0000000
## 4548 12 1.000000e+00 1.0000000
## 4549 4 1.000000e+00 1.0000000
## 4550 2 1.000000e+00 1.0000000
## 4551 1 1.000000e+00 1.0000000
## 4552 7 1.000000e+00 1.0000000
## 4553 1 1.000000e+00 1.0000000
## 4554 1 1.000000e+00 1.0000000
## 4555 3 1.000000e+00 1.0000000
## 4556 13 1.000000e+00 1.0000000
## 4557 2 1.000000e+00 1.0000000
## 4558 6 1.000000e+00 1.0000000
## 4559 2 1.000000e+00 1.0000000
## 4560 19 1.000000e+00 1.0000000
## 4561 3 1.000000e+00 1.0000000
## 4562 42 1.000000e+00 1.0000000
## 4563 5 1.000000e+00 1.0000000
## 4564 15 1.000000e+00 1.0000000
## 4565 10 1.000000e+00 1.0000000
## 4566 6 1.000000e+00 1.0000000
## 4567 11 1.000000e+00 1.0000000
## 4568 24 1.000000e+00 1.0000000
## 4569 67 1.000000e+00 1.0000000
## 4570 1 1.000000e+00 1.0000000
## 4571 7 1.000000e+00 1.0000000
## 4572 10 1.000000e+00 1.0000000
## 4573 3 1.000000e+00 1.0000000
## 4574 24 1.000000e+00 1.0000000
## 4575 7 1.000000e+00 1.0000000
## 4576 3 1.000000e+00 1.0000000
## 4577 3 1.000000e+00 1.0000000
## 4578 2 1.000000e+00 1.0000000
## 4579 2 1.000000e+00 1.0000000
## 4580 1 1.000000e+00 1.0000000
## 4581 3 1.000000e+00 1.0000000
## 4582 2 1.000000e+00 1.0000000
## 4583 1 1.000000e+00 1.0000000
## 4584 4 1.000000e+00 1.0000000
## 4585 1 1.000000e+00 1.0000000
## 4586 3 1.000000e+00 1.0000000
## 4587 1 1.000000e+00 1.0000000
## 4588 4 1.000000e+00 1.0000000
## 4589 7 1.000000e+00 1.0000000
## 4590 7 1.000000e+00 1.0000000
## 4591 2 1.000000e+00 1.0000000
## 4592 2 1.000000e+00 1.0000000
## 4593 15 1.000000e+00 1.0000000
## 4594 2 1.000000e+00 1.0000000
## 4595 16 1.000000e+00 1.0000000
## 4596 11 1.000000e+00 1.0000000
## 4597 1 1.000000e+00 1.0000000
## 4598 1 1.000000e+00 1.0000000
## 4599 7 1.000000e+00 1.0000000
## 4600 10 1.000000e+00 1.0000000
## 4601 7 1.000000e+00 1.0000000
## 4602 6 1.000000e+00 1.0000000
## 4603 11 1.000000e+00 1.0000000
## 4604 2 1.000000e+00 1.0000000
## 4605 2 1.000000e+00 1.0000000
## 4606 10 1.000000e+00 1.0000000
## 4607 2 1.000000e+00 1.0000000
## 4608 6 1.000000e+00 1.0000000
## 4609 4 1.000000e+00 1.0000000
## 4610 11 1.000000e+00 1.0000000
## 4611 10 1.000000e+00 1.0000000
## 4612 5 1.000000e+00 1.0000000
## 4613 32 1.000000e+00 1.0000000
## 4614 1 1.000000e+00 1.0000000
## 4615 5 1.000000e+00 1.0000000
## 4616 50 1.000000e+00 1.0000000
## 4617 11 1.000000e+00 1.0000000
## 4618 33 1.000000e+00 1.0000000
## 4619 6 1.000000e+00 1.0000000
## 4620 20 1.000000e+00 1.0000000
## 4621 4 1.000000e+00 1.0000000
## 4622 14 1.000000e+00 1.0000000
## 4623 4 1.000000e+00 1.0000000
## 4624 3 1.000000e+00 1.0000000
## 4625 3 1.000000e+00 1.0000000
## 4626 1 1.000000e+00 1.0000000
## 4627 26 1.000000e+00 1.0000000
## 4628 22 1.000000e+00 1.0000000
## 4629 12 1.000000e+00 1.0000000
## 4630 1 1.000000e+00 1.0000000
## 4631 4 1.000000e+00 1.0000000
## 4632 8 1.000000e+00 1.0000000
## 4633 13 1.000000e+00 1.0000000
## 4634 6 1.000000e+00 1.0000000
## 4635 49 1.000000e+00 1.0000000
## 4636 25 1.000000e+00 1.0000000
## 4637 13 1.000000e+00 1.0000000
## 4638 3 1.000000e+00 1.0000000
## 4639 2 1.000000e+00 1.0000000
## 4640 1 1.000000e+00 1.0000000
## 4641 9 1.000000e+00 1.0000000
## 4642 32 1.000000e+00 1.0000000
## 4643 25 1.000000e+00 1.0000000
## 4644 14 1.000000e+00 1.0000000
## 4645 17 1.000000e+00 1.0000000
## 4646 3 1.000000e+00 1.0000000
## 4647 1 1.000000e+00 1.0000000
## 4648 2 1.000000e+00 1.0000000
## 4649 1 1.000000e+00 1.0000000
## 4650 1 1.000000e+00 1.0000000
## 4651 1 1.000000e+00 1.0000000
## 4652 34 1.000000e+00 1.0000000
## 4653 15 1.000000e+00 1.0000000
## 4654 5 1.000000e+00 1.0000000
## 4655 9 1.000000e+00 1.0000000
## 4656 4 1.000000e+00 1.0000000
## 4657 4 1.000000e+00 1.0000000
## 4658 2 1.000000e+00 1.0000000
## 4659 1 1.000000e+00 1.0000000
## 4660 13 1.000000e+00 1.0000000
## 4661 12 1.000000e+00 1.0000000
## 4662 3 1.000000e+00 1.0000000
## 4663 9 1.000000e+00 1.0000000
## 4664 2 1.000000e+00 1.0000000
## 4665 4 1.000000e+00 1.0000000
## 4666 3 1.000000e+00 1.0000000
## 4667 21 1.000000e+00 1.0000000
## 4668 2 1.000000e+00 1.0000000
## 4669 9 1.000000e+00 1.0000000
## 4670 3 1.000000e+00 1.0000000
## 4671 93 1.000000e+00 1.0000000
## 4672 14 1.000000e+00 1.0000000
## 4673 11 1.000000e+00 1.0000000
## 4674 2 1.000000e+00 1.0000000
## 4675 1 1.000000e+00 1.0000000
## 4676 4 1.000000e+00 1.0000000
## 4677 4 1.000000e+00 1.0000000
## 4678 4 1.000000e+00 1.0000000
## 4679 1 1.000000e+00 1.0000000
## 4680 1 1.000000e+00 1.0000000
## 4681 15 1.000000e+00 1.0000000
## 4682 4 1.000000e+00 1.0000000
## 4683 21 1.000000e+00 1.0000000
## 4684 28 1.000000e+00 1.0000000
## 4685 46 1.000000e+00 1.0000000
## 4686 39 1.000000e+00 1.0000000
## 4687 18 1.000000e+00 1.0000000
## 4688 7 1.000000e+00 1.0000000
## 4689 15 1.000000e+00 1.0000000
## 4690 3 1.000000e+00 1.0000000
## 4691 5 1.000000e+00 1.0000000
## 4692 17 1.000000e+00 1.0000000
## 4693 1 1.000000e+00 1.0000000
## 4694 9 1.000000e+00 1.0000000
## 4695 4 1.000000e+00 1.0000000
## 4696 2 1.000000e+00 1.0000000
## 4697 13 1.000000e+00 1.0000000
## 4698 9 1.000000e+00 1.0000000
## 4699 24 1.000000e+00 1.0000000
## 4700 11 1.000000e+00 1.0000000
## 4701 17 1.000000e+00 1.0000000
## 4702 13 1.000000e+00 1.0000000
## 4703 1 1.000000e+00 1.0000000
## 4704 3 1.000000e+00 1.0000000
## 4705 7 1.000000e+00 1.0000000
## 4706 8 1.000000e+00 1.0000000
## 4707 2 1.000000e+00 1.0000000
## 4708 3 1.000000e+00 1.0000000
## 4709 1 1.000000e+00 1.0000000
## 4710 8 1.000000e+00 1.0000000
## 4711 3 1.000000e+00 1.0000000
## 4712 1 1.000000e+00 1.0000000
## 4713 1 1.000000e+00 1.0000000
## 4714 1 1.000000e+00 1.0000000
## 4715 4 1.000000e+00 1.0000000
## 4716 3 1.000000e+00 1.0000000
## 4717 4 1.000000e+00 1.0000000
## 4718 4 1.000000e+00 1.0000000
## 4719 2 1.000000e+00 1.0000000
## 4720 2 1.000000e+00 1.0000000
## 4721 3 1.000000e+00 1.0000000
## 4722 2 1.000000e+00 1.0000000
## 4723 1 1.000000e+00 1.0000000
## 4724 3 1.000000e+00 1.0000000
## 4725 22 1.000000e+00 1.0000000
## 4726 24 1.000000e+00 1.0000000
## 4727 3 1.000000e+00 1.0000000
## 4728 5 1.000000e+00 1.0000000
## 4729 4 1.000000e+00 1.0000000
## 4730 33 1.000000e+00 1.0000000
## 4731 53 1.000000e+00 1.0000000
## 4732 1 1.000000e+00 1.0000000
## 4733 3 1.000000e+00 1.0000000
## 4734 3 1.000000e+00 1.0000000
## 4735 2 1.000000e+00 1.0000000
## 4736 1 1.000000e+00 1.0000000
## 4737 1 1.000000e+00 1.0000000
## 4738 3 1.000000e+00 1.0000000
## 4739 12 1.000000e+00 1.0000000
## 4740 3 1.000000e+00 1.0000000
## 4741 61 1.000000e+00 1.0000000
## 4742 3 1.000000e+00 1.0000000
## 4743 31 1.000000e+00 1.0000000
## 4744 27 1.000000e+00 1.0000000
## 4745 9 1.000000e+00 1.0000000
## 4746 2 1.000000e+00 1.0000000
## 4747 1 1.000000e+00 1.0000000
## 4748 2 1.000000e+00 1.0000000
## 4749 2 1.000000e+00 1.0000000
## 4750 4 1.000000e+00 1.0000000
## 4751 17 1.000000e+00 1.0000000
## 4752 3 1.000000e+00 1.0000000
## 4753 9 1.000000e+00 1.0000000
## 4754 2 1.000000e+00 1.0000000
## 4755 3 1.000000e+00 1.0000000
## 4756 5 1.000000e+00 1.0000000
## 4757 11 1.000000e+00 1.0000000
## 4758 5 1.000000e+00 1.0000000
## 4759 24 1.000000e+00 1.0000000
## 4760 4 1.000000e+00 1.0000000
## 4761 8 1.000000e+00 1.0000000
## 4762 4 1.000000e+00 1.0000000
## 4763 5 1.000000e+00 1.0000000
## 4764 3 1.000000e+00 1.0000000
## 4765 1 1.000000e+00 1.0000000
## 4766 21 1.000000e+00 1.0000000
## 4767 2 1.000000e+00 1.0000000
## 4768 3 1.000000e+00 1.0000000
## 4769 1 1.000000e+00 1.0000000
## 4770 2 1.000000e+00 1.0000000
## 4771 3 1.000000e+00 1.0000000
## 4772 1 1.000000e+00 1.0000000
## 4773 3 1.000000e+00 1.0000000
## 4774 2 1.000000e+00 1.0000000
## 4775 18 1.000000e+00 1.0000000
## 4776 3 1.000000e+00 1.0000000
## 4777 1 1.000000e+00 1.0000000
## 4778 11 1.000000e+00 1.0000000
## 4779 1 1.000000e+00 1.0000000
## 4780 1 1.000000e+00 1.0000000
## 4781 1 1.000000e+00 1.0000000
## 4782 2 1.000000e+00 1.0000000
## 4783 31 1.000000e+00 1.0000000
## 4784 3 1.000000e+00 1.0000000
## 4785 1 1.000000e+00 1.0000000
## 4786 5 1.000000e+00 1.0000000
## 4787 4 1.000000e+00 1.0000000
## 4788 18 1.000000e+00 1.0000000
## 4789 3 1.000000e+00 1.0000000
## 4790 4 1.000000e+00 1.0000000
## 4791 2 1.000000e+00 1.0000000
## 4792 1 1.000000e+00 1.0000000
## 4793 1 1.000000e+00 1.0000000
## 4794 1 1.000000e+00 1.0000000
## 4795 2 1.000000e+00 1.0000000
## 4796 11 1.000000e+00 1.0000000
## 4797 1 1.000000e+00 1.0000000
## 4798 1 1.000000e+00 1.0000000
## 4799 22 1.000000e+00 1.0000000
## 4800 8 1.000000e+00 1.0000000
## 4801 2 1.000000e+00 1.0000000
## 4802 3 1.000000e+00 1.0000000
## 4803 1 1.000000e+00 1.0000000
## 4804 8 1.000000e+00 1.0000000
## 4805 1 1.000000e+00 1.0000000
## 4806 9 1.000000e+00 1.0000000
## 4807 5 1.000000e+00 1.0000000
## 4808 1 1.000000e+00 1.0000000
## 4809 1 1.000000e+00 1.0000000
## 4810 4 1.000000e+00 1.0000000
## 4811 1 1.000000e+00 1.0000000
## 4812 3 1.000000e+00 1.0000000
## 4813 2 1.000000e+00 1.0000000
## 4814 11 1.000000e+00 1.0000000
## 4815 2 1.000000e+00 1.0000000
## 4816 1 1.000000e+00 1.0000000
## 4817 4 1.000000e+00 1.0000000
## 4818 2 1.000000e+00 1.0000000
## 4819 2 1.000000e+00 1.0000000
## 4820 2 1.000000e+00 1.0000000
## 4821 14 1.000000e+00 1.0000000
## 4822 69 1.000000e+00 1.0000000
## 4823 2 1.000000e+00 1.0000000
## 4824 14 1.000000e+00 1.0000000
## 4825 3 1.000000e+00 1.0000000
## 4826 2 1.000000e+00 1.0000000
## 4827 1 1.000000e+00 1.0000000
## 4828 1 1.000000e+00 1.0000000
## 4829 2 1.000000e+00 1.0000000
## 4830 2 1.000000e+00 1.0000000
## 4831 12 1.000000e+00 1.0000000
## 4832 41 1.000000e+00 1.0000000
## 4833 3 1.000000e+00 1.0000000
## 4834 3 1.000000e+00 1.0000000
## 4835 1 1.000000e+00 1.0000000
## 4836 17 1.000000e+00 1.0000000
## 4837 7 1.000000e+00 1.0000000
## 4838 9 1.000000e+00 1.0000000
## 4839 5 1.000000e+00 1.0000000
## 4840 3 1.000000e+00 1.0000000
## 4841 6 1.000000e+00 1.0000000
## 4842 4 1.000000e+00 1.0000000
## 4843 4 1.000000e+00 1.0000000
## 4844 2 1.000000e+00 1.0000000
## 4845 2 1.000000e+00 1.0000000
## 4846 2 1.000000e+00 1.0000000
## 4847 9 1.000000e+00 1.0000000
## 4848 2 1.000000e+00 1.0000000
## 4849 7 1.000000e+00 1.0000000
## 4850 1 1.000000e+00 1.0000000
## 4851 2 1.000000e+00 1.0000000
## 4852 1 1.000000e+00 1.0000000
## 4853 9 1.000000e+00 1.0000000
## 4854 2 1.000000e+00 1.0000000
## 4855 3 1.000000e+00 1.0000000
## 4856 56 1.000000e+00 1.0000000
## 4857 10 1.000000e+00 1.0000000
## 4858 38 1.000000e+00 1.0000000
## 4859 1 1.000000e+00 1.0000000
## 4860 17 1.000000e+00 1.0000000
## 4861 2 1.000000e+00 1.0000000
## 4862 9 1.000000e+00 1.0000000
## 4863 1 1.000000e+00 1.0000000
## 4864 2 1.000000e+00 1.0000000
## 4865 2 1.000000e+00 1.0000000
## 4866 11 1.000000e+00 1.0000000
## 4867 7 1.000000e+00 1.0000000
## 4868 6 1.000000e+00 1.0000000
## 4869 1 1.000000e+00 1.0000000
## 4870 3 1.000000e+00 1.0000000
## 4871 11 1.000000e+00 1.0000000
## 4872 6 1.000000e+00 1.0000000
## 4873 4 1.000000e+00 1.0000000
## 4874 35 1.000000e+00 1.0000000
## 4875 108 1.000000e+00 1.0000000
## 4876 15 1.000000e+00 1.0000000
## 4877 89 1.000000e+00 1.0000000
## 4878 24 1.000000e+00 1.0000000
## 4879 8 1.000000e+00 1.0000000
## 4880 14 1.000000e+00 1.0000000
## 4881 33 1.000000e+00 1.0000000
## 4882 43 1.000000e+00 1.0000000
## 4883 33 1.000000e+00 1.0000000
## 4884 17 1.000000e+00 1.0000000
## 4885 32 1.000000e+00 1.0000000
## 4886 9 1.000000e+00 1.0000000
## 4887 20 1.000000e+00 1.0000000
## 4888 24 1.000000e+00 1.0000000
## 4889 1 1.000000e+00 1.0000000
## 4890 9 1.000000e+00 1.0000000
## 4891 2 1.000000e+00 1.0000000
## 4892 1 1.000000e+00 1.0000000
## 4893 1 1.000000e+00 1.0000000
## 4894 5 1.000000e+00 1.0000000
## 4895 2 1.000000e+00 1.0000000
## 4896 1 1.000000e+00 1.0000000
## 4897 1 1.000000e+00 1.0000000
## 4898 5 1.000000e+00 1.0000000
## 4899 2 1.000000e+00 1.0000000
## 4900 35 1.000000e+00 1.0000000
## 4901 37 1.000000e+00 1.0000000
## 4902 6 1.000000e+00 1.0000000
## 4903 4 1.000000e+00 1.0000000
## 4904 45 1.000000e+00 1.0000000
## 4905 6 1.000000e+00 1.0000000
## 4906 5 1.000000e+00 1.0000000
## 4907 2 1.000000e+00 1.0000000
## 4908 2 1.000000e+00 1.0000000
## 4909 2 1.000000e+00 1.0000000
## 4910 4 1.000000e+00 1.0000000
## 4911 1 1.000000e+00 1.0000000
## 4912 44 1.000000e+00 1.0000000
## 4913 3 1.000000e+00 1.0000000
## 4914 1 1.000000e+00 1.0000000
## 4915 1 1.000000e+00 1.0000000
## 4916 39 1.000000e+00 1.0000000
## 4917 36 1.000000e+00 1.0000000
## 4918 7 1.000000e+00 1.0000000
## 4919 44 1.000000e+00 1.0000000
## 4920 12 1.000000e+00 1.0000000
## 4921 9 1.000000e+00 1.0000000
## 4922 2 1.000000e+00 1.0000000
## 4923 1 1.000000e+00 1.0000000
## 4924 1 1.000000e+00 1.0000000
## 4925 9 1.000000e+00 1.0000000
## 4926 2 1.000000e+00 1.0000000
## 4927 7 1.000000e+00 1.0000000
## 4928 12 1.000000e+00 1.0000000
## 4929 6 1.000000e+00 1.0000000
## 4930 3 1.000000e+00 1.0000000
## 4931 1 1.000000e+00 1.0000000
## 4932 2 1.000000e+00 1.0000000
## 4933 3 1.000000e+00 1.0000000
## 4934 1 1.000000e+00 1.0000000
## 4935 2 1.000000e+00 1.0000000
## 4936 2 1.000000e+00 1.0000000
## 4937 1 1.000000e+00 1.0000000
## 4938 1 1.000000e+00 1.0000000
## 4939 9 1.000000e+00 1.0000000
## 4940 3 1.000000e+00 1.0000000
## 4941 6 1.000000e+00 1.0000000
## 4942 44 1.000000e+00 1.0000000
## 4943 10 1.000000e+00 1.0000000
## 4944 23 1.000000e+00 1.0000000
## 4945 48 1.000000e+00 1.0000000
## 4946 10 1.000000e+00 1.0000000
## 4947 34 1.000000e+00 1.0000000
## 4948 1 1.000000e+00 1.0000000
## 4949 18 1.000000e+00 1.0000000
## 4950 12 1.000000e+00 1.0000000
## 4951 3 1.000000e+00 1.0000000
## 4952 4 1.000000e+00 1.0000000
## 4953 15 1.000000e+00 1.0000000
## 4954 10 1.000000e+00 1.0000000
## 4955 6 1.000000e+00 1.0000000
## 4956 4 1.000000e+00 1.0000000
## 4957 2 1.000000e+00 1.0000000
## 4958 7 1.000000e+00 1.0000000
## 4959 10 1.000000e+00 1.0000000
## 4960 1 1.000000e+00 1.0000000
## 4961 5 1.000000e+00 1.0000000
## 4962 3 1.000000e+00 1.0000000
## 4963 1 1.000000e+00 1.0000000
## 4964 5 1.000000e+00 1.0000000
## 4965 1 1.000000e+00 1.0000000
## 4966 1 1.000000e+00 1.0000000
## 4967 2 1.000000e+00 1.0000000
## 4968 44 1.000000e+00 1.0000000
## 4969 2 1.000000e+00 1.0000000
## 4970 3 1.000000e+00 1.0000000
## 4971 7 1.000000e+00 1.0000000
## 4972 6 1.000000e+00 1.0000000
## 4973 1 1.000000e+00 1.0000000
## 4974 6 1.000000e+00 1.0000000
## 4975 2 1.000000e+00 1.0000000
## 4976 1 1.000000e+00 1.0000000
## 4977 1 1.000000e+00 1.0000000
## 4978 23 1.000000e+00 1.0000000
## 4979 21 1.000000e+00 1.0000000
## 4980 12 1.000000e+00 1.0000000
## 4981 34 1.000000e+00 1.0000000
## 4982 12 1.000000e+00 1.0000000
## 4983 3 1.000000e+00 1.0000000
## 4984 5 1.000000e+00 1.0000000
## 4985 5 1.000000e+00 1.0000000
## 4986 3 1.000000e+00 1.0000000
## 4987 5 1.000000e+00 1.0000000
## 4988 4 1.000000e+00 1.0000000
## 4989 6 1.000000e+00 1.0000000
## 4990 1 1.000000e+00 1.0000000
## 4991 1 1.000000e+00 1.0000000
## 4992 2 1.000000e+00 1.0000000
## 4993 2 1.000000e+00 1.0000000
## 4994 1 1.000000e+00 1.0000000
## 4995 1 1.000000e+00 1.0000000
## 4996 1 1.000000e+00 1.0000000
## 4997 9 1.000000e+00 1.0000000
## 4998 6 1.000000e+00 1.0000000
## 4999 1 1.000000e+00 1.0000000
## 5000 1 1.000000e+00 1.0000000
## 5001 1 1.000000e+00 1.0000000
## 5002 25 1.000000e+00 1.0000000
## 5003 9 1.000000e+00 1.0000000
## 5004 5 1.000000e+00 1.0000000
## 5005 11 1.000000e+00 1.0000000
## 5006 16 1.000000e+00 1.0000000
## 5007 6 1.000000e+00 1.0000000
## 5008 3 1.000000e+00 1.0000000
## 5009 4 1.000000e+00 1.0000000
## 5010 2 1.000000e+00 1.0000000
## 5011 3 1.000000e+00 1.0000000
## 5012 1 1.000000e+00 1.0000000
## 5013 1 1.000000e+00 1.0000000
## 5014 2 1.000000e+00 1.0000000
## 5015 11 1.000000e+00 1.0000000
## 5016 6 1.000000e+00 1.0000000
## 5017 6 1.000000e+00 1.0000000
## 5018 10 1.000000e+00 1.0000000
## 5019 12 1.000000e+00 1.0000000
## 5020 1 1.000000e+00 1.0000000
## 5021 5 1.000000e+00 1.0000000
## 5022 13 1.000000e+00 1.0000000
## 5023 7 1.000000e+00 1.0000000
## 5024 3 1.000000e+00 1.0000000
## 5025 2 1.000000e+00 1.0000000
## 5026 2 1.000000e+00 1.0000000
## 5027 38 1.000000e+00 1.0000000
## 5028 12 1.000000e+00 1.0000000
## 5029 3 1.000000e+00 1.0000000
## 5030 28 1.000000e+00 1.0000000
## 5031 11 1.000000e+00 1.0000000
## 5032 72 1.000000e+00 1.0000000
## 5033 1 1.000000e+00 1.0000000
## 5034 10 1.000000e+00 1.0000000
## 5035 2 1.000000e+00 1.0000000
## 5036 14 1.000000e+00 1.0000000
## 5037 19 1.000000e+00 1.0000000
## 5038 2 1.000000e+00 1.0000000
## 5039 4 1.000000e+00 1.0000000
## 5040 2 1.000000e+00 1.0000000
## 5041 3 1.000000e+00 1.0000000
## 5042 16 1.000000e+00 1.0000000
## 5043 8 1.000000e+00 1.0000000
## 5044 1 1.000000e+00 1.0000000
## 5045 53 1.000000e+00 1.0000000
## 5046 1 1.000000e+00 1.0000000
## 5047 4 1.000000e+00 1.0000000
## 5048 2 1.000000e+00 1.0000000
## 5049 1 1.000000e+00 1.0000000
## 5050 2 1.000000e+00 1.0000000
## 5051 1 1.000000e+00 1.0000000
## 5052 1 1.000000e+00 1.0000000
## 5053 4 1.000000e+00 1.0000000
## 5054 7 1.000000e+00 1.0000000
## 5055 4 1.000000e+00 1.0000000
## 5056 1 1.000000e+00 1.0000000
## 5057 1 1.000000e+00 1.0000000
## 5058 17 1.000000e+00 1.0000000
## 5059 4 1.000000e+00 1.0000000
## 5060 3 1.000000e+00 1.0000000
## 5061 6 1.000000e+00 1.0000000
## 5062 3 1.000000e+00 1.0000000
## 5063 5 1.000000e+00 1.0000000
## 5064 2 1.000000e+00 1.0000000
## 5065 1 1.000000e+00 1.0000000
## 5066 5 1.000000e+00 1.0000000
## 5067 5 1.000000e+00 1.0000000
## 5068 4 1.000000e+00 1.0000000
## 5069 19 1.000000e+00 1.0000000
## 5070 7 1.000000e+00 1.0000000
## 5071 1 1.000000e+00 1.0000000
## 5072 7 1.000000e+00 1.0000000
## 5073 1 1.000000e+00 1.0000000
## 5074 13 1.000000e+00 1.0000000
## 5075 2 1.000000e+00 1.0000000
## 5076 1 1.000000e+00 1.0000000
## 5077 2 1.000000e+00 1.0000000
## 5078 3 1.000000e+00 1.0000000
## 5079 1 1.000000e+00 1.0000000
## 5080 8 1.000000e+00 1.0000000
## 5081 8 1.000000e+00 1.0000000
## 5082 3 1.000000e+00 1.0000000
## 5083 2 1.000000e+00 1.0000000
## 5084 9 1.000000e+00 1.0000000
## 5085 1 1.000000e+00 1.0000000
## 5086 3 1.000000e+00 1.0000000
## 5087 14 1.000000e+00 1.0000000
## 5088 1 1.000000e+00 1.0000000
## 5089 11 1.000000e+00 1.0000000
## 5090 7 1.000000e+00 1.0000000
## 5091 3 1.000000e+00 1.0000000
## 5092 1 1.000000e+00 1.0000000
## 5093 7 1.000000e+00 1.0000000
## 5094 1 1.000000e+00 1.0000000
## 5095 2 1.000000e+00 1.0000000
## 5096 2 1.000000e+00 1.0000000
## 5097 7 1.000000e+00 1.0000000
## 5098 12 1.000000e+00 1.0000000
## 5099 30 1.000000e+00 1.0000000
## 5100 3 1.000000e+00 1.0000000
## 5101 1 1.000000e+00 1.0000000
## 5102 26 1.000000e+00 1.0000000
## 5103 4 1.000000e+00 1.0000000
## 5104 2 1.000000e+00 1.0000000
## 5105 6 1.000000e+00 1.0000000
## 5106 1 1.000000e+00 1.0000000
## 5107 4 1.000000e+00 1.0000000
## 5108 2 1.000000e+00 1.0000000
## 5109 2 1.000000e+00 1.0000000
## 5110 1 1.000000e+00 1.0000000
## 5111 2 1.000000e+00 1.0000000
## 5112 4 1.000000e+00 1.0000000
## 5113 13 1.000000e+00 1.0000000
## 5114 23 1.000000e+00 1.0000000
## 5115 26 1.000000e+00 1.0000000
## 5116 19 1.000000e+00 1.0000000
## 5117 6 1.000000e+00 1.0000000
## 5118 1 1.000000e+00 1.0000000
## 5119 3 1.000000e+00 1.0000000
## 5120 2 1.000000e+00 1.0000000
## 5121 1 1.000000e+00 1.0000000
## 5122 4 1.000000e+00 1.0000000
## 5123 1 1.000000e+00 1.0000000
## 5124 2 1.000000e+00 1.0000000
## 5125 9 1.000000e+00 1.0000000
## 5126 16 1.000000e+00 1.0000000
## 5127 5 1.000000e+00 1.0000000
## 5128 14 1.000000e+00 1.0000000
## 5129 10 1.000000e+00 1.0000000
## 5130 3 1.000000e+00 1.0000000
## 5131 4 1.000000e+00 1.0000000
## 5132 11 1.000000e+00 1.0000000
## 5133 4 1.000000e+00 1.0000000
## 5134 1 1.000000e+00 1.0000000
## 5135 4 1.000000e+00 1.0000000
## 5136 2 1.000000e+00 1.0000000
## 5137 2 1.000000e+00 1.0000000
## 5138 2 1.000000e+00 1.0000000
## 5139 1 1.000000e+00 1.0000000
## 5140 2 1.000000e+00 1.0000000
## 5141 9 1.000000e+00 1.0000000
## 5142 1 1.000000e+00 1.0000000
## 5143 3 1.000000e+00 1.0000000
## 5144 2 1.000000e+00 1.0000000
## 5145 1 1.000000e+00 1.0000000
## 5146 1 1.000000e+00 1.0000000
## 5147 3 1.000000e+00 1.0000000
## 5148 21 1.000000e+00 1.0000000
## 5149 12 1.000000e+00 1.0000000
## 5150 12 1.000000e+00 1.0000000
## 5151 18 1.000000e+00 1.0000000
## 5152 8 1.000000e+00 1.0000000
## 5153 3 1.000000e+00 1.0000000
## 5154 27 1.000000e+00 1.0000000
## 5155 13 1.000000e+00 1.0000000
## 5156 8 1.000000e+00 1.0000000
## 5157 2 1.000000e+00 1.0000000
## 5158 5 1.000000e+00 1.0000000
## 5159 17 1.000000e+00 1.0000000
## 5160 4 1.000000e+00 1.0000000
## 5161 11 1.000000e+00 1.0000000
## 5162 12 1.000000e+00 1.0000000
## 5163 4 1.000000e+00 1.0000000
## 5164 4 1.000000e+00 1.0000000
## 5165 1 1.000000e+00 1.0000000
## 5166 22 1.000000e+00 1.0000000
## 5167 2 1.000000e+00 1.0000000
## 5168 21 1.000000e+00 1.0000000
## 5169 4 1.000000e+00 1.0000000
## 5170 1 1.000000e+00 1.0000000
## 5171 1 1.000000e+00 1.0000000
## 5172 3 1.000000e+00 1.0000000
## 5173 1 1.000000e+00 1.0000000
## 5174 5 1.000000e+00 1.0000000
## 5175 2 1.000000e+00 1.0000000
## 5176 1 1.000000e+00 1.0000000
## 5177 2 1.000000e+00 1.0000000
## 5178 1 1.000000e+00 1.0000000
## 5179 1 1.000000e+00 1.0000000
## 5180 1 1.000000e+00 1.0000000
## 5181 3 1.000000e+00 1.0000000
## 5182 1 1.000000e+00 1.0000000
## 5183 11 1.000000e+00 1.0000000
## 5184 1 1.000000e+00 1.0000000
## 5185 1 1.000000e+00 1.0000000
## 5186 6 1.000000e+00 1.0000000
## 5187 1 1.000000e+00 1.0000000
## 5188 42 1.000000e+00 1.0000000
## 5189 2 1.000000e+00 1.0000000
## 5190 14 1.000000e+00 1.0000000
## 5191 3 1.000000e+00 1.0000000
## 5192 3 1.000000e+00 1.0000000
## 5193 1 1.000000e+00 1.0000000
## 5194 2 1.000000e+00 1.0000000
## 5195 1 1.000000e+00 1.0000000
## 5196 1 1.000000e+00 1.0000000
## 5197 2 1.000000e+00 1.0000000
## 5198 2 1.000000e+00 1.0000000
## 5199 9 1.000000e+00 1.0000000
## 5200 3 1.000000e+00 1.0000000
## 5201 2 1.000000e+00 1.0000000
## 5202 4 1.000000e+00 1.0000000
## 5203 13 1.000000e+00 1.0000000
## 5204 1 1.000000e+00 1.0000000
## 5205 1 1.000000e+00 1.0000000
## 5206 1 1.000000e+00 1.0000000
## 5207 7 1.000000e+00 1.0000000
## 5208 9 1.000000e+00 1.0000000
## 5209 2 1.000000e+00 1.0000000
## 5210 8 1.000000e+00 1.0000000
## 5211 5 1.000000e+00 1.0000000
## 5212 37 1.000000e+00 1.0000000
## 5213 3 1.000000e+00 1.0000000
## 5214 22 1.000000e+00 1.0000000
## 5215 2 1.000000e+00 1.0000000
## 5216 5 1.000000e+00 1.0000000
## 5217 3 1.000000e+00 1.0000000
## 5218 7 1.000000e+00 1.0000000
## 5219 65 1.000000e+00 1.0000000
## 5220 48 1.000000e+00 1.0000000
## 5221 10 1.000000e+00 1.0000000
## 5222 4 1.000000e+00 1.0000000
## 5223 19 1.000000e+00 1.0000000
## 5224 2 1.000000e+00 1.0000000
## 5225 32 1.000000e+00 1.0000000
## 5226 1 1.000000e+00 1.0000000
## 5227 11 1.000000e+00 1.0000000
## 5228 7 1.000000e+00 1.0000000
## 5229 18 1.000000e+00 1.0000000
## 5230 33 1.000000e+00 1.0000000
## 5231 27 1.000000e+00 1.0000000
## 5232 34 1.000000e+00 1.0000000
## 5233 33 1.000000e+00 1.0000000
## 5234 30 1.000000e+00 1.0000000
## 5235 31 1.000000e+00 1.0000000
## 5236 33 1.000000e+00 1.0000000
## 5237 23 1.000000e+00 1.0000000
## 5238 4 1.000000e+00 1.0000000
## 5239 8 1.000000e+00 1.0000000
## 5240 1 1.000000e+00 1.0000000
## 5241 15 1.000000e+00 1.0000000
## 5242 2 1.000000e+00 1.0000000
## 5243 5 1.000000e+00 1.0000000
## 5244 2 1.000000e+00 1.0000000
## 5245 3 1.000000e+00 1.0000000
## 5246 2 1.000000e+00 1.0000000
## 5247 4 1.000000e+00 1.0000000
## 5248 4 1.000000e+00 1.0000000
## 5249 1 1.000000e+00 1.0000000
## 5250 2 1.000000e+00 1.0000000
## 5251 2 1.000000e+00 1.0000000
## 5252 2 1.000000e+00 1.0000000
## 5253 2 1.000000e+00 1.0000000
## 5254 2 1.000000e+00 1.0000000
## 5255 1 1.000000e+00 1.0000000
## 5256 2 1.000000e+00 1.0000000
## 5257 4 1.000000e+00 1.0000000
## 5258 3 1.000000e+00 1.0000000
## 5259 2 1.000000e+00 1.0000000
## 5260 3 1.000000e+00 1.0000000
## 5261 3 1.000000e+00 1.0000000
## 5262 8 1.000000e+00 1.0000000
## 5263 3 1.000000e+00 1.0000000
## 5264 1 1.000000e+00 1.0000000
## 5265 19 1.000000e+00 1.0000000
## 5266 15 1.000000e+00 1.0000000
## 5267 7 1.000000e+00 1.0000000
## 5268 2 1.000000e+00 1.0000000
## 5269 2 1.000000e+00 1.0000000
## 5270 2 1.000000e+00 1.0000000
## 5271 5 1.000000e+00 1.0000000
## 5272 4 1.000000e+00 1.0000000
## 5273 33 1.000000e+00 1.0000000
## 5274 32 1.000000e+00 1.0000000
## 5275 1 1.000000e+00 1.0000000
## 5276 27 1.000000e+00 1.0000000
## 5277 5 1.000000e+00 1.0000000
## 5278 18 1.000000e+00 1.0000000
## 5279 7 1.000000e+00 1.0000000
## 5280 8 1.000000e+00 1.0000000
## 5281 5 1.000000e+00 1.0000000
## 5282 2 1.000000e+00 1.0000000
## 5283 2 1.000000e+00 1.0000000
## 5284 3 1.000000e+00 1.0000000
## 5285 3 1.000000e+00 1.0000000
## 5286 2 1.000000e+00 1.0000000
## 5287 5 1.000000e+00 1.0000000
## 5288 3 1.000000e+00 1.0000000
## 5289 3 1.000000e+00 1.0000000
## 5290 17 1.000000e+00 1.0000000
## 5291 6 1.000000e+00 1.0000000
## 5292 6 1.000000e+00 1.0000000
## 5293 10 1.000000e+00 1.0000000
## 5294 8 1.000000e+00 1.0000000
## 5295 5 1.000000e+00 1.0000000
## 5296 2 1.000000e+00 1.0000000
## 5297 7 1.000000e+00 1.0000000
## 5298 5 1.000000e+00 1.0000000
## 5299 13 1.000000e+00 1.0000000
## 5300 12 1.000000e+00 1.0000000
## 5301 3 1.000000e+00 1.0000000
## 5302 1 1.000000e+00 1.0000000
## 5303 11 1.000000e+00 1.0000000
## 5304 10 1.000000e+00 1.0000000
## 5305 6 1.000000e+00 1.0000000
## 5306 4 1.000000e+00 1.0000000
## 5307 11 1.000000e+00 1.0000000
## 5308 6 1.000000e+00 1.0000000
## 5309 3 1.000000e+00 1.0000000
## 5310 12 1.000000e+00 1.0000000
## 5311 10 1.000000e+00 1.0000000
## 5312 9 1.000000e+00 1.0000000
## 5313 5 1.000000e+00 1.0000000
## 5314 9 1.000000e+00 1.0000000
## 5315 4 1.000000e+00 1.0000000
## 5316 53 1.000000e+00 1.0000000
## 5317 17 1.000000e+00 1.0000000
## 5318 7 1.000000e+00 1.0000000
## 5319 3 1.000000e+00 1.0000000
## 5320 1 1.000000e+00 1.0000000
## 5321 14 1.000000e+00 1.0000000
## 5322 2 1.000000e+00 1.0000000
## 5323 43 1.000000e+00 1.0000000
## 5324 1 1.000000e+00 1.0000000
## 5325 17 1.000000e+00 1.0000000
## 5326 2 1.000000e+00 1.0000000
## 5327 11 1.000000e+00 1.0000000
## 5328 9 1.000000e+00 1.0000000
## 5329 1 1.000000e+00 1.0000000
## 5330 1 1.000000e+00 1.0000000
## 5331 17 1.000000e+00 1.0000000
## 5332 13 1.000000e+00 1.0000000
## 5333 2 1.000000e+00 1.0000000
## 5334 6 1.000000e+00 1.0000000
## 5335 11 1.000000e+00 1.0000000
## 5336 2 1.000000e+00 1.0000000
## 5337 23 1.000000e+00 1.0000000
## 5338 8 1.000000e+00 1.0000000
## 5339 3 1.000000e+00 1.0000000
## 5340 6 1.000000e+00 1.0000000
## 5341 20 1.000000e+00 1.0000000
## 5342 31 1.000000e+00 1.0000000
## 5343 2 1.000000e+00 1.0000000
## 5344 5 1.000000e+00 1.0000000
## 5345 57 1.000000e+00 1.0000000
## 5346 89 1.000000e+00 1.0000000
## 5347 88 1.000000e+00 1.0000000
## 5348 72 1.000000e+00 1.0000000
## 5349 4 1.000000e+00 1.0000000
## 5350 14 1.000000e+00 1.0000000
## 5351 2 1.000000e+00 1.0000000
## 5352 4 1.000000e+00 1.0000000
## 5353 40 1.000000e+00 1.0000000
## 5354 9 1.000000e+00 1.0000000
## 5355 34 1.000000e+00 1.0000000
## 5356 7 1.000000e+00 1.0000000
## 5357 30 1.000000e+00 1.0000000
## 5358 4 1.000000e+00 1.0000000
## 5359 1 1.000000e+00 1.0000000
## 5360 11 1.000000e+00 1.0000000
## 5361 4 1.000000e+00 1.0000000
## 5362 1 1.000000e+00 1.0000000
## 5363 3 1.000000e+00 1.0000000
## 5364 2 1.000000e+00 1.0000000
## 5365 1 1.000000e+00 1.0000000
## 5366 10 1.000000e+00 1.0000000
## 5367 16 1.000000e+00 1.0000000
## 5368 5 1.000000e+00 1.0000000
## 5369 1 1.000000e+00 1.0000000
## 5370 2 1.000000e+00 1.0000000
## 5371 8 1.000000e+00 1.0000000
## 5372 5 1.000000e+00 1.0000000
## 5373 1 1.000000e+00 1.0000000
## 5374 13 1.000000e+00 1.0000000
## 5375 5 1.000000e+00 1.0000000
## 5376 6 1.000000e+00 1.0000000
## 5377 6 1.000000e+00 1.0000000
## 5378 30 1.000000e+00 1.0000000
## 5379 29 1.000000e+00 1.0000000
## 5380 2 1.000000e+00 1.0000000
## 5381 16 1.000000e+00 1.0000000
## 5382 4 1.000000e+00 1.0000000
## 5383 11 1.000000e+00 1.0000000
## 5384 13 1.000000e+00 1.0000000
## 5385 10 1.000000e+00 1.0000000
## 5386 6 1.000000e+00 1.0000000
## 5387 22 1.000000e+00 1.0000000
## 5388 12 1.000000e+00 1.0000000
## 5389 4 1.000000e+00 1.0000000
## 5390 2 1.000000e+00 1.0000000
## 5391 1 1.000000e+00 1.0000000
## 5392 4 1.000000e+00 1.0000000
## 5393 7 1.000000e+00 1.0000000
## 5394 1 1.000000e+00 1.0000000
## 5395 3 1.000000e+00 1.0000000
## 5396 2 1.000000e+00 1.0000000
## 5397 17 1.000000e+00 1.0000000
## 5398 16 1.000000e+00 1.0000000
## 5399 1 1.000000e+00 1.0000000
## 5400 14 1.000000e+00 1.0000000
## 5401 10 1.000000e+00 1.0000000
## 5402 41 1.000000e+00 1.0000000
## 5403 1 1.000000e+00 1.0000000
## 5404 11 1.000000e+00 1.0000000
## 5405 7 1.000000e+00 1.0000000
## 5406 4 1.000000e+00 1.0000000
## 5407 33 1.000000e+00 1.0000000
## 5408 8 1.000000e+00 1.0000000
## 5409 6 1.000000e+00 1.0000000
## 5410 2 1.000000e+00 1.0000000
## 5411 1 1.000000e+00 1.0000000
## 5412 2 1.000000e+00 1.0000000
## 5413 2 1.000000e+00 1.0000000
## 5414 2 1.000000e+00 1.0000000
## 5415 1 1.000000e+00 1.0000000
## 5416 3 1.000000e+00 1.0000000
## 5417 13 1.000000e+00 1.0000000
## 5418 20 1.000000e+00 1.0000000
## 5419 5 1.000000e+00 1.0000000
## 5420 18 1.000000e+00 1.0000000
## 5421 10 1.000000e+00 1.0000000
## 5422 71 1.000000e+00 1.0000000
## 5423 7 1.000000e+00 1.0000000
## 5424 1 1.000000e+00 1.0000000
## 5425 24 1.000000e+00 1.0000000
## 5426 22 1.000000e+00 1.0000000
## 5427 7 1.000000e+00 1.0000000
## 5428 4 1.000000e+00 1.0000000
## 5429 20 1.000000e+00 1.0000000
## 5430 7 1.000000e+00 1.0000000
## 5431 2 1.000000e+00 1.0000000
## 5432 4 1.000000e+00 1.0000000
## 5433 1 1.000000e+00 1.0000000
## 5434 5 1.000000e+00 1.0000000
## 5435 41 1.000000e+00 1.0000000
## 5436 14 1.000000e+00 1.0000000
## 5437 11 1.000000e+00 1.0000000
## 5438 17 1.000000e+00 1.0000000
## 5439 5 1.000000e+00 1.0000000
## 5440 7 1.000000e+00 1.0000000
## 5441 24 1.000000e+00 1.0000000
## 5442 9 1.000000e+00 1.0000000
## 5443 3 1.000000e+00 1.0000000
## 5444 3 1.000000e+00 1.0000000
## 5445 49 1.000000e+00 1.0000000
## 5446 59 1.000000e+00 1.0000000
## 5447 1 1.000000e+00 1.0000000
## 5448 41 1.000000e+00 1.0000000
## 5449 13 1.000000e+00 1.0000000
## 5450 57 1.000000e+00 1.0000000
## 5451 8 1.000000e+00 1.0000000
## 5452 8 1.000000e+00 1.0000000
## 5453 3 1.000000e+00 1.0000000
## 5454 8 1.000000e+00 1.0000000
## 5455 4 1.000000e+00 1.0000000
## 5456 8 1.000000e+00 1.0000000
## 5457 6 1.000000e+00 1.0000000
## 5458 18 1.000000e+00 1.0000000
## 5459 1 1.000000e+00 1.0000000
## 5460 10 1.000000e+00 1.0000000
## 5461 19 1.000000e+00 1.0000000
## 5462 7 1.000000e+00 1.0000000
## 5463 4 1.000000e+00 1.0000000
## 5464 18 1.000000e+00 1.0000000
## 5465 1 1.000000e+00 1.0000000
## 5466 5 1.000000e+00 1.0000000
## 5467 8 1.000000e+00 1.0000000
## 5468 3 1.000000e+00 1.0000000
## 5469 2 1.000000e+00 1.0000000
## 5470 4 1.000000e+00 1.0000000
## 5471 21 1.000000e+00 1.0000000
## 5472 15 1.000000e+00 1.0000000
## 5473 1 1.000000e+00 1.0000000
## 5474 2 1.000000e+00 1.0000000
## 5475 1 1.000000e+00 1.0000000
## 5476 15 1.000000e+00 1.0000000
## 5477 3 1.000000e+00 1.0000000
## 5478 10 1.000000e+00 1.0000000
## 5479 4 1.000000e+00 1.0000000
## 5480 4 1.000000e+00 1.0000000
## 5481 19 1.000000e+00 1.0000000
## 5482 18 1.000000e+00 1.0000000
## 5483 6 1.000000e+00 1.0000000
## 5484 21 1.000000e+00 1.0000000
## 5485 47 1.000000e+00 1.0000000
## 5486 11 1.000000e+00 1.0000000
## 5487 46 1.000000e+00 1.0000000
## 5488 22 1.000000e+00 1.0000000
## 5489 28 1.000000e+00 1.0000000
## 5490 7 1.000000e+00 1.0000000
## 5491 2 1.000000e+00 1.0000000
## 5492 50 1.000000e+00 1.0000000
## 5493 4 1.000000e+00 1.0000000
## 5494 13 1.000000e+00 1.0000000
## 5495 8 1.000000e+00 1.0000000
## 5496 1 1.000000e+00 1.0000000
## 5497 14 1.000000e+00 1.0000000
## 5498 3 1.000000e+00 1.0000000
## 5499 6 1.000000e+00 1.0000000
## 5500 8 1.000000e+00 1.0000000
## 5501 6 1.000000e+00 1.0000000
## 5502 10 1.000000e+00 1.0000000
## 5503 32 1.000000e+00 1.0000000
## 5504 10 1.000000e+00 1.0000000
## 5505 9 1.000000e+00 1.0000000
## 5506 5 1.000000e+00 1.0000000
## 5507 4 1.000000e+00 1.0000000
## 5508 2 1.000000e+00 1.0000000
## 5509 107 1.000000e+00 1.0000000
## 5510 24 1.000000e+00 1.0000000
## 5511 29 1.000000e+00 1.0000000
## 5512 2 1.000000e+00 1.0000000
## 5513 6 1.000000e+00 1.0000000
## 5514 2 1.000000e+00 1.0000000
## 5515 7 1.000000e+00 1.0000000
## 5516 37 1.000000e+00 1.0000000
## 5517 16 1.000000e+00 1.0000000
## 5518 24 1.000000e+00 1.0000000
## 5519 44 1.000000e+00 1.0000000
## 5520 14 1.000000e+00 1.0000000
## 5521 8 1.000000e+00 1.0000000
## 5522 101 1.000000e+00 1.0000000
## 5523 7 1.000000e+00 1.0000000
## 5524 1 1.000000e+00 1.0000000
## 5525 4 1.000000e+00 1.0000000
## 5526 3 1.000000e+00 1.0000000
## 5527 2 1.000000e+00 1.0000000
## 5528 73 1.000000e+00 1.0000000
## 5529 18 1.000000e+00 1.0000000
## 5530 12 1.000000e+00 1.0000000
## 5531 81 1.000000e+00 1.0000000
## 5532 7 1.000000e+00 1.0000000
## 5533 36 1.000000e+00 1.0000000
## 5534 4 1.000000e+00 1.0000000
## 5535 47 1.000000e+00 1.0000000
## 5536 9 1.000000e+00 1.0000000
## 5537 4 1.000000e+00 1.0000000
## 5538 19 1.000000e+00 1.0000000
## 5539 29 1.000000e+00 1.0000000
## 5540 27 1.000000e+00 1.0000000
## 5541 1 1.000000e+00 1.0000000
## 5542 11 1.000000e+00 1.0000000
## 5543 20 1.000000e+00 1.0000000
## 5544 3 1.000000e+00 1.0000000
## 5545 1 1.000000e+00 1.0000000
## 5546 4 1.000000e+00 1.0000000
## 5547 13 1.000000e+00 1.0000000
## 5548 1 1.000000e+00 1.0000000
## 5549 19 1.000000e+00 1.0000000
## 5550 8 1.000000e+00 1.0000000
## 5551 15 1.000000e+00 1.0000000
## 5552 5 1.000000e+00 1.0000000
## 5553 1 1.000000e+00 1.0000000
## 5554 18 1.000000e+00 1.0000000
## 5555 3 1.000000e+00 1.0000000
## 5556 6 1.000000e+00 1.0000000
## 5557 5 1.000000e+00 1.0000000
## 5558 1 1.000000e+00 1.0000000
## 5559 5 1.000000e+00 1.0000000
## 5560 1 1.000000e+00 1.0000000
## 5561 1 1.000000e+00 1.0000000
## 5562 1 1.000000e+00 1.0000000
## 5563 2 1.000000e+00 1.0000000
## 5564 1 1.000000e+00 1.0000000
## 5565 30 1.000000e+00 1.0000000
## 5566 5 1.000000e+00 1.0000000
## 5567 3 1.000000e+00 1.0000000
## 5568 20 1.000000e+00 1.0000000
## 5569 77 1.000000e+00 1.0000000
## 5570 4 1.000000e+00 1.0000000
## 5571 10 1.000000e+00 1.0000000
## 5572 7 1.000000e+00 1.0000000
## 5573 3 1.000000e+00 1.0000000
## 5574 2 1.000000e+00 1.0000000
## 5575 11 1.000000e+00 1.0000000
## 5576 1 1.000000e+00 1.0000000
## 5577 2 1.000000e+00 1.0000000
## 5578 1 1.000000e+00 1.0000000
## 5579 3 1.000000e+00 1.0000000
## 5580 7 1.000000e+00 1.0000000
## 5581 7 1.000000e+00 1.0000000
## 5582 2 1.000000e+00 1.0000000
## 5583 2 1.000000e+00 1.0000000
## 5584 2 1.000000e+00 1.0000000
## 5585 1 1.000000e+00 1.0000000
## 5586 3 1.000000e+00 1.0000000
## 5587 1 1.000000e+00 1.0000000
## 5588 23 1.000000e+00 1.0000000
## 5589 3 1.000000e+00 1.0000000
## 5590 17 1.000000e+00 1.0000000
## 5591 66 1.000000e+00 1.0000000
## 5592 1 1.000000e+00 1.0000000
## 5593 45 1.000000e+00 1.0000000
## 5594 42 1.000000e+00 1.0000000
## 5595 18 1.000000e+00 1.0000000
## 5596 5 1.000000e+00 1.0000000
## 5597 19 1.000000e+00 1.0000000
## 5598 9 1.000000e+00 1.0000000
## 5599 21 1.000000e+00 1.0000000
## 5600 34 1.000000e+00 1.0000000
## 5601 3 1.000000e+00 1.0000000
## 5602 16 1.000000e+00 1.0000000
## 5603 4 1.000000e+00 1.0000000
## 5604 23 1.000000e+00 1.0000000
## 5605 1 1.000000e+00 1.0000000
## 5606 13 1.000000e+00 1.0000000
## 5607 27 1.000000e+00 1.0000000
## 5608 1 1.000000e+00 1.0000000
## 5609 17 1.000000e+00 1.0000000
## 5610 14 1.000000e+00 1.0000000
## 5611 32 1.000000e+00 1.0000000
## 5612 1 1.000000e+00 1.0000000
## 5613 2 1.000000e+00 1.0000000
## 5614 1 1.000000e+00 1.0000000
## 5615 1 1.000000e+00 1.0000000
## 5616 5 1.000000e+00 1.0000000
## 5617 3 1.000000e+00 1.0000000
## 5618 4 1.000000e+00 1.0000000
## 5619 9 1.000000e+00 1.0000000
## 5620 12 1.000000e+00 1.0000000
## 5621 27 1.000000e+00 1.0000000
## 5622 28 1.000000e+00 1.0000000
## 5623 25 1.000000e+00 1.0000000
## 5624 15 1.000000e+00 1.0000000
## 5625 7 1.000000e+00 1.0000000
## 5626 8 1.000000e+00 1.0000000
## 5627 3 1.000000e+00 1.0000000
## 5628 9 1.000000e+00 1.0000000
## 5629 16 1.000000e+00 1.0000000
## 5630 4 1.000000e+00 1.0000000
## 5631 2 1.000000e+00 1.0000000
## 5632 3 1.000000e+00 1.0000000
## 5633 11 1.000000e+00 1.0000000
## 5634 8 1.000000e+00 1.0000000
## 5635 38 1.000000e+00 1.0000000
## 5636 9 1.000000e+00 1.0000000
## 5637 2 1.000000e+00 1.0000000
## 5638 15 1.000000e+00 1.0000000
## 5639 48 1.000000e+00 1.0000000
## 5640 84 1.000000e+00 1.0000000
## 5641 5 1.000000e+00 1.0000000
## 5642 4 1.000000e+00 1.0000000
## 5643 1 1.000000e+00 1.0000000
## 5644 15 1.000000e+00 1.0000000
## 5645 4 1.000000e+00 1.0000000
## 5646 4 1.000000e+00 1.0000000
## 5647 2 1.000000e+00 1.0000000
## 5648 5 1.000000e+00 1.0000000
## 5649 1 1.000000e+00 1.0000000
## 5650 33 1.000000e+00 1.0000000
## 5651 5 1.000000e+00 1.0000000
## 5652 2 1.000000e+00 1.0000000
## 5653 5 1.000000e+00 1.0000000
## 5654 17 1.000000e+00 1.0000000
## 5655 6 1.000000e+00 1.0000000
## 5656 1 1.000000e+00 1.0000000
## 5657 19 1.000000e+00 1.0000000
## 5658 13 1.000000e+00 1.0000000
## 5659 28 1.000000e+00 1.0000000
## 5660 20 1.000000e+00 1.0000000
## 5661 24 1.000000e+00 1.0000000
## 5662 21 1.000000e+00 1.0000000
## 5663 1 1.000000e+00 1.0000000
## 5664 2 1.000000e+00 1.0000000
## 5665 2 1.000000e+00 1.0000000
## 5666 2 1.000000e+00 1.0000000
## 5667 1 1.000000e+00 1.0000000
## 5668 10 1.000000e+00 1.0000000
## 5669 12 1.000000e+00 1.0000000
## 5670 2 1.000000e+00 1.0000000
## 5671 7 1.000000e+00 1.0000000
## 5672 11 1.000000e+00 1.0000000
## 5673 9 1.000000e+00 1.0000000
## 5674 6 1.000000e+00 1.0000000
## 5675 7 1.000000e+00 1.0000000
## 5676 3 1.000000e+00 1.0000000
## 5677 12 1.000000e+00 1.0000000
## 5678 53 1.000000e+00 1.0000000
## 5679 6 1.000000e+00 1.0000000
## 5680 11 1.000000e+00 1.0000000
## 5681 3 1.000000e+00 1.0000000
## 5682 29 1.000000e+00 1.0000000
## 5683 6 1.000000e+00 1.0000000
## 5684 8 1.000000e+00 1.0000000
## 5685 2 1.000000e+00 1.0000000
## 5686 11 1.000000e+00 1.0000000
## 5687 37 1.000000e+00 1.0000000
## 5688 61 1.000000e+00 1.0000000
## 5689 8 1.000000e+00 1.0000000
## 5690 5 1.000000e+00 1.0000000
## 5691 4 1.000000e+00 1.0000000
## 5692 3 1.000000e+00 1.0000000
## 5693 4 1.000000e+00 1.0000000
## 5694 4 1.000000e+00 1.0000000
## 5695 2 1.000000e+00 1.0000000
## 5696 6 1.000000e+00 1.0000000
## 5697 4 1.000000e+00 1.0000000
## 5698 6 1.000000e+00 1.0000000
## 5699 16 1.000000e+00 1.0000000
## 5700 6 1.000000e+00 1.0000000
## 5701 7 1.000000e+00 1.0000000
## 5702 52 1.000000e+00 1.0000000
## 5703 6 1.000000e+00 1.0000000
## 5704 2 1.000000e+00 1.0000000
## 5705 17 1.000000e+00 1.0000000
## 5706 9 1.000000e+00 1.0000000
## 5707 2 1.000000e+00 1.0000000
## 5708 5 1.000000e+00 1.0000000
## 5709 18 1.000000e+00 1.0000000
## 5710 7 1.000000e+00 1.0000000
## 5711 12 1.000000e+00 1.0000000
## 5712 2 1.000000e+00 1.0000000
## 5713 1 1.000000e+00 1.0000000
## 5714 1 1.000000e+00 1.0000000
## 5715 3 1.000000e+00 1.0000000
## 5716 1 1.000000e+00 1.0000000
## 5717 5 1.000000e+00 1.0000000
## 5718 1 1.000000e+00 1.0000000
## 5719 8 1.000000e+00 1.0000000
## 5720 20 1.000000e+00 1.0000000
## 5721 7 1.000000e+00 1.0000000
## 5722 5 1.000000e+00 1.0000000
## 5723 2 1.000000e+00 1.0000000
## 5724 2 1.000000e+00 1.0000000
## 5725 30 1.000000e+00 1.0000000
## 5726 33 1.000000e+00 1.0000000
## 5727 13 1.000000e+00 1.0000000
## 5728 19 1.000000e+00 1.0000000
## 5729 10 1.000000e+00 1.0000000
## 5730 4 1.000000e+00 1.0000000
## 5731 25 1.000000e+00 1.0000000
## 5732 20 1.000000e+00 1.0000000
## 5733 7 1.000000e+00 1.0000000
## 5734 63 1.000000e+00 1.0000000
## 5735 23 1.000000e+00 1.0000000
## 5736 13 1.000000e+00 1.0000000
## 5737 2 1.000000e+00 1.0000000
## 5738 29 1.000000e+00 1.0000000
## 5739 10 1.000000e+00 1.0000000
## 5740 3 1.000000e+00 1.0000000
## 5741 1 1.000000e+00 1.0000000
## 5742 1 1.000000e+00 1.0000000
## 5743 15 1.000000e+00 1.0000000
## 5744 2 1.000000e+00 1.0000000
## 5745 3 1.000000e+00 1.0000000
## 5746 8 1.000000e+00 1.0000000
## 5747 14 1.000000e+00 1.0000000
## 5748 3 1.000000e+00 1.0000000
## 5749 13 1.000000e+00 1.0000000
## 5750 2 1.000000e+00 1.0000000
## 5751 1 1.000000e+00 1.0000000
## 5752 1 1.000000e+00 1.0000000
## 5753 7 1.000000e+00 1.0000000
## 5754 5 1.000000e+00 1.0000000
## 5755 3 1.000000e+00 1.0000000
## 5756 4 1.000000e+00 1.0000000
## 5757 3 1.000000e+00 1.0000000
## 5758 2 1.000000e+00 1.0000000
## 5759 36 1.000000e+00 1.0000000
## 5760 1 1.000000e+00 1.0000000
## 5761 5 1.000000e+00 1.0000000
## 5762 2 1.000000e+00 1.0000000
## 5763 53 1.000000e+00 1.0000000
## 5764 3 1.000000e+00 1.0000000
## 5765 10 1.000000e+00 1.0000000
## 5766 2 1.000000e+00 1.0000000
## 5767 7 1.000000e+00 1.0000000
## 5768 12 1.000000e+00 1.0000000
## 5769 2 1.000000e+00 1.0000000
## 5770 1 1.000000e+00 1.0000000
## 5771 22 1.000000e+00 1.0000000
## 5772 24 1.000000e+00 1.0000000
## 5773 13 1.000000e+00 1.0000000
## 5774 21 1.000000e+00 1.0000000
## 5775 1 1.000000e+00 1.0000000
## 5776 1 1.000000e+00 1.0000000
## 5777 3 1.000000e+00 1.0000000
## 5778 6 1.000000e+00 1.0000000
## 5779 8 1.000000e+00 1.0000000
## 5780 1 1.000000e+00 1.0000000
## 5781 4 1.000000e+00 1.0000000
## 5782 2 1.000000e+00 1.0000000
## 5783 4 1.000000e+00 1.0000000
## 5784 1 1.000000e+00 1.0000000
## 5785 4 1.000000e+00 1.0000000
## 5786 7 1.000000e+00 1.0000000
## 5787 15 1.000000e+00 1.0000000
## 5788 1 1.000000e+00 1.0000000
## 5789 7 1.000000e+00 1.0000000
## 5790 3 1.000000e+00 1.0000000
## 5791 2 1.000000e+00 1.0000000
## 5792 6 1.000000e+00 1.0000000
## 5793 12 1.000000e+00 1.0000000
## 5794 3 1.000000e+00 1.0000000
## 5795 1 1.000000e+00 1.0000000
## 5796 15 1.000000e+00 1.0000000
## 5797 1 1.000000e+00 1.0000000
## 5798 9 1.000000e+00 1.0000000
## 5799 1 1.000000e+00 1.0000000
## 5800 39 1.000000e+00 1.0000000
## 5801 6 1.000000e+00 1.0000000
## 5802 13 1.000000e+00 1.0000000
## 5803 1 1.000000e+00 1.0000000
## 5804 4 1.000000e+00 1.0000000
## 5805 5 1.000000e+00 1.0000000
## 5806 1 1.000000e+00 1.0000000
## 5807 1 1.000000e+00 1.0000000
## 5808 34 1.000000e+00 1.0000000
## 5809 5 1.000000e+00 1.0000000
## 5810 5 1.000000e+00 1.0000000
## 5811 16 1.000000e+00 1.0000000
## 5812 5 1.000000e+00 1.0000000
## 5813 1 1.000000e+00 1.0000000
## 5814 4 1.000000e+00 1.0000000
## 5815 1 1.000000e+00 1.0000000
## 5816 1 1.000000e+00 1.0000000
## 5817 15 1.000000e+00 1.0000000
## 5818 1 1.000000e+00 1.0000000
## 5819 1 1.000000e+00 1.0000000
## 5820 3 1.000000e+00 1.0000000
## 5821 2 1.000000e+00 1.0000000
## 5822 3 1.000000e+00 1.0000000
## 5823 1 1.000000e+00 1.0000000
## 5824 6 1.000000e+00 1.0000000
## 5825 1 1.000000e+00 1.0000000
## 5826 5 1.000000e+00 1.0000000
## 5827 6 1.000000e+00 1.0000000
## 5828 17 1.000000e+00 1.0000000
## 5829 13 1.000000e+00 1.0000000
## 5830 23 1.000000e+00 1.0000000
## 5831 1 1.000000e+00 1.0000000
## 5832 2 1.000000e+00 1.0000000
## 5833 2 1.000000e+00 1.0000000
## 5834 6 1.000000e+00 1.0000000
## 5835 3 1.000000e+00 1.0000000
## 5836 7 1.000000e+00 1.0000000
## 5837 19 1.000000e+00 1.0000000
## 5838 9 1.000000e+00 1.0000000
## 5839 3 1.000000e+00 1.0000000
## 5840 3 1.000000e+00 1.0000000
## 5841 2 1.000000e+00 1.0000000
## 5842 3 1.000000e+00 1.0000000
## 5843 7 1.000000e+00 1.0000000
## 5844 29 1.000000e+00 1.0000000
## 5845 12 1.000000e+00 1.0000000
## 5846 9 1.000000e+00 1.0000000
## 5847 13 1.000000e+00 1.0000000
## 5848 11 1.000000e+00 1.0000000
## 5849 23 1.000000e+00 1.0000000
## 5850 17 1.000000e+00 1.0000000
## 5851 36 1.000000e+00 1.0000000
## 5852 38 1.000000e+00 1.0000000
## 5853 1 1.000000e+00 1.0000000
## 5854 1 1.000000e+00 1.0000000
## 5855 3 1.000000e+00 1.0000000
## 5856 4 1.000000e+00 1.0000000
## 5857 1 1.000000e+00 1.0000000
## 5858 13 1.000000e+00 1.0000000
## 5859 6 1.000000e+00 1.0000000
## 5860 2 1.000000e+00 1.0000000
## 5861 4 1.000000e+00 1.0000000
## 5862 7 1.000000e+00 1.0000000
## 5863 3 1.000000e+00 1.0000000
## 5864 93 1.000000e+00 1.0000000
## 5865 17 1.000000e+00 1.0000000
## 5866 52 1.000000e+00 1.0000000
## 5867 19 1.000000e+00 1.0000000
## 5868 8 1.000000e+00 1.0000000
## 5869 6 1.000000e+00 1.0000000
## 5870 32 1.000000e+00 1.0000000
## 5871 18 1.000000e+00 1.0000000
## 5872 45 1.000000e+00 1.0000000
## 5873 19 1.000000e+00 1.0000000
## 5874 15 1.000000e+00 1.0000000
## 5875 13 1.000000e+00 1.0000000
## 5876 6 1.000000e+00 1.0000000
## 5877 5 1.000000e+00 1.0000000
## 5878 3 1.000000e+00 1.0000000
## 5879 33 1.000000e+00 1.0000000
## 5880 27 1.000000e+00 1.0000000
## 5881 9 1.000000e+00 1.0000000
## 5882 1 1.000000e+00 1.0000000
## 5883 18 1.000000e+00 1.0000000
## 5884 4 1.000000e+00 1.0000000
## 5885 3 1.000000e+00 1.0000000
## 5886 75 1.000000e+00 1.0000000
## 5887 43 1.000000e+00 1.0000000
## 5888 9 1.000000e+00 1.0000000
## 5889 5 1.000000e+00 1.0000000
## 5890 2 1.000000e+00 1.0000000
## 5891 2 1.000000e+00 1.0000000
## 5892 1 1.000000e+00 1.0000000
## 5893 18 1.000000e+00 1.0000000
## 5894 3 1.000000e+00 1.0000000
## 5895 11 1.000000e+00 1.0000000
## 5896 1 1.000000e+00 1.0000000
## 5897 9 1.000000e+00 1.0000000
## 5898 3 1.000000e+00 1.0000000
## 5899 6 1.000000e+00 1.0000000
## 5900 5 1.000000e+00 1.0000000
## 5901 16 1.000000e+00 1.0000000
## 5902 2 1.000000e+00 1.0000000
## 5903 12 1.000000e+00 1.0000000
## 5904 2 1.000000e+00 1.0000000
## 5905 2 1.000000e+00 1.0000000
## 5906 31 1.000000e+00 1.0000000
## 5907 6 1.000000e+00 1.0000000
## 5908 5 1.000000e+00 1.0000000
## 5909 50 1.000000e+00 1.0000000
## 5910 18 1.000000e+00 1.0000000
## 5911 30 1.000000e+00 1.0000000
## 5912 21 1.000000e+00 1.0000000
## 5913 28 1.000000e+00 1.0000000
## 5914 10 1.000000e+00 1.0000000
## 5915 18 1.000000e+00 1.0000000
## 5916 6 1.000000e+00 1.0000000
## 5917 9 1.000000e+00 1.0000000
## 5918 3 1.000000e+00 1.0000000
## 5919 6 1.000000e+00 1.0000000
## 5920 8 1.000000e+00 1.0000000
## 5921 4 1.000000e+00 1.0000000
## 5922 2 1.000000e+00 1.0000000
## 5923 3 1.000000e+00 1.0000000
## 5924 1 1.000000e+00 1.0000000
## 5925 8 1.000000e+00 1.0000000
## 5926 15 1.000000e+00 1.0000000
## 5927 4 1.000000e+00 1.0000000
## 5928 79 1.000000e+00 1.0000000
## 5929 44 1.000000e+00 1.0000000
## 5930 26 1.000000e+00 1.0000000
## 5931 1 1.000000e+00 1.0000000
## 5932 4 1.000000e+00 1.0000000
## 5933 2 1.000000e+00 1.0000000
## 5934 2 1.000000e+00 1.0000000
## 5935 7 1.000000e+00 1.0000000
## 5936 4 1.000000e+00 1.0000000
## 5937 1 1.000000e+00 1.0000000
## 5938 3 1.000000e+00 1.0000000
## 5939 2 1.000000e+00 1.0000000
## 5940 4 1.000000e+00 1.0000000
## 5941 24 1.000000e+00 1.0000000
## 5942 10 1.000000e+00 1.0000000
## 5943 7 1.000000e+00 1.0000000
## 5944 29 1.000000e+00 1.0000000
## 5945 16 1.000000e+00 1.0000000
## 5946 13 1.000000e+00 1.0000000
## 5947 4 1.000000e+00 1.0000000
## 5948 4 1.000000e+00 1.0000000
## 5949 1 1.000000e+00 1.0000000
## 5950 3 1.000000e+00 1.0000000
## 5951 2 1.000000e+00 1.0000000
## 5952 1 1.000000e+00 1.0000000
## 5953 6 1.000000e+00 1.0000000
## 5954 22 1.000000e+00 1.0000000
## 5955 15 1.000000e+00 1.0000000
## 5956 6 1.000000e+00 1.0000000
## 5957 10 1.000000e+00 1.0000000
## 5958 12 1.000000e+00 1.0000000
## 5959 8 1.000000e+00 1.0000000
## 5960 13 1.000000e+00 1.0000000
## 5961 3 1.000000e+00 1.0000000
## 5962 1 1.000000e+00 1.0000000
## 5963 1 1.000000e+00 1.0000000
## 5964 6 1.000000e+00 1.0000000
## 5965 6 1.000000e+00 1.0000000
## 5966 1 1.000000e+00 1.0000000
## 5967 3 1.000000e+00 1.0000000
## 5968 1 1.000000e+00 1.0000000
## 5969 42 1.000000e+00 1.0000000
## 5970 30 1.000000e+00 1.0000000
## 5971 15 1.000000e+00 1.0000000
## 5972 20 1.000000e+00 1.0000000
## 5973 5 1.000000e+00 1.0000000
## 5974 1 1.000000e+00 1.0000000
## 5975 2 1.000000e+00 1.0000000
## 5976 1 1.000000e+00 1.0000000
## 5977 5 1.000000e+00 1.0000000
## 5978 1 1.000000e+00 1.0000000
## 5979 11 1.000000e+00 1.0000000
## 5980 10 1.000000e+00 1.0000000
## 5981 7 1.000000e+00 1.0000000
## 5982 10 1.000000e+00 1.0000000
## 5983 16 1.000000e+00 1.0000000
## 5984 55 1.000000e+00 1.0000000
## 5985 32 1.000000e+00 1.0000000
## 5986 16 1.000000e+00 1.0000000
## 5987 26 1.000000e+00 1.0000000
## 5988 9 1.000000e+00 1.0000000
## 5989 3 1.000000e+00 1.0000000
## 5990 28 1.000000e+00 1.0000000
## 5991 9 1.000000e+00 1.0000000
## 5992 13 1.000000e+00 1.0000000
## 5993 6 1.000000e+00 1.0000000
## 5994 5 1.000000e+00 1.0000000
## 5995 2 1.000000e+00 1.0000000
## 5996 4 1.000000e+00 1.0000000
## 5997 2 1.000000e+00 1.0000000
## 5998 1 1.000000e+00 1.0000000
## 5999 48 1.000000e+00 1.0000000
## 6000 33 1.000000e+00 1.0000000
## 6001 16 1.000000e+00 1.0000000
## 6002 11 1.000000e+00 1.0000000
## 6003 2 1.000000e+00 1.0000000
## 6004 11 1.000000e+00 1.0000000
## 6005 6 1.000000e+00 1.0000000
## 6006 11 1.000000e+00 1.0000000
## 6007 9 1.000000e+00 1.0000000
## 6008 20 1.000000e+00 1.0000000
## 6009 14 1.000000e+00 1.0000000
## 6010 2 1.000000e+00 1.0000000
## 6011 2 1.000000e+00 1.0000000
## 6012 1 1.000000e+00 1.0000000
## 6013 26 1.000000e+00 1.0000000
## 6014 18 1.000000e+00 1.0000000
## 6015 42 1.000000e+00 1.0000000
## 6016 22 1.000000e+00 1.0000000
## 6017 13 1.000000e+00 1.0000000
## 6018 7 1.000000e+00 1.0000000
## 6019 6 1.000000e+00 1.0000000
## 6020 17 1.000000e+00 1.0000000
## 6021 12 1.000000e+00 1.0000000
## 6022 7 1.000000e+00 1.0000000
## 6023 5 1.000000e+00 1.0000000
## 6024 14 1.000000e+00 1.0000000
## 6025 12 1.000000e+00 1.0000000
## 6026 4 1.000000e+00 1.0000000
## 6027 8 1.000000e+00 1.0000000
## 6028 3 1.000000e+00 1.0000000
## 6029 1 1.000000e+00 1.0000000
## 6030 5 1.000000e+00 1.0000000
## 6031 2 1.000000e+00 1.0000000
## 6032 3 1.000000e+00 1.0000000
## 6033 1 1.000000e+00 1.0000000
## 6034 34 1.000000e+00 1.0000000
## 6035 3 1.000000e+00 1.0000000
## 6036 4 1.000000e+00 1.0000000
## 6037 8 1.000000e+00 1.0000000
## 6038 8 1.000000e+00 1.0000000
## 6039 15 1.000000e+00 1.0000000
## 6040 1 1.000000e+00 1.0000000
## 6041 28 1.000000e+00 1.0000000
## 6042 1 1.000000e+00 1.0000000
## 6043 1 1.000000e+00 1.0000000
## 6044 2 1.000000e+00 1.0000000
## 6045 12 1.000000e+00 1.0000000
## 6046 5 1.000000e+00 1.0000000
## 6047 27 1.000000e+00 1.0000000
## 6048 6 1.000000e+00 1.0000000
## 6049 2 1.000000e+00 1.0000000
## 6050 4 1.000000e+00 1.0000000
## 6051 11 1.000000e+00 1.0000000
## 6052 5 1.000000e+00 1.0000000
## 6053 2 1.000000e+00 1.0000000
## 6054 49 1.000000e+00 1.0000000
## 6055 5 1.000000e+00 1.0000000
## 6056 5 1.000000e+00 1.0000000
## 6057 3 1.000000e+00 1.0000000
## 6058 3 1.000000e+00 1.0000000
## 6059 2 1.000000e+00 1.0000000
## 6060 17 1.000000e+00 1.0000000
## 6061 8 1.000000e+00 1.0000000
## 6062 5 1.000000e+00 1.0000000
## 6063 1 1.000000e+00 1.0000000
## 6064 10 1.000000e+00 1.0000000
## 6065 5 1.000000e+00 1.0000000
## 6066 5 1.000000e+00 1.0000000
## 6067 2 1.000000e+00 1.0000000
## 6068 5 1.000000e+00 1.0000000
## 6069 24 1.000000e+00 1.0000000
## 6070 4 1.000000e+00 1.0000000
## 6071 1 1.000000e+00 1.0000000
## 6072 27 1.000000e+00 1.0000000
## 6073 3 1.000000e+00 1.0000000
## 6074 10 1.000000e+00 1.0000000
## 6075 1 1.000000e+00 1.0000000
## 6076 5 1.000000e+00 1.0000000
## 6077 3 1.000000e+00 1.0000000
## 6078 4 1.000000e+00 1.0000000
## 6079 2 1.000000e+00 1.0000000
## 6080 3 1.000000e+00 1.0000000
## 6081 2 1.000000e+00 1.0000000
## 6082 9 1.000000e+00 1.0000000
## 6083 4 1.000000e+00 1.0000000
## 6084 3 1.000000e+00 1.0000000
## 6085 29 1.000000e+00 1.0000000
## 6086 15 1.000000e+00 1.0000000
## 6087 9 1.000000e+00 1.0000000
## 6088 5 1.000000e+00 1.0000000
## 6089 3 1.000000e+00 1.0000000
## 6090 6 1.000000e+00 1.0000000
## 6091 1 1.000000e+00 1.0000000
## 6092 4 1.000000e+00 1.0000000
## 6093 3 1.000000e+00 1.0000000
## 6094 2 1.000000e+00 1.0000000
## 6095 5 1.000000e+00 1.0000000
## 6096 17 1.000000e+00 1.0000000
## 6097 6 1.000000e+00 1.0000000
## 6098 3 1.000000e+00 1.0000000
## 6099 1 1.000000e+00 1.0000000
## 6100 96 1.000000e+00 1.0000000
## 6101 12 1.000000e+00 1.0000000
## 6102 65 1.000000e+00 1.0000000
## 6103 37 1.000000e+00 1.0000000
## 6104 3 1.000000e+00 1.0000000
## 6105 3 1.000000e+00 1.0000000
## 6106 2 1.000000e+00 1.0000000
## 6107 3 1.000000e+00 1.0000000
## 6108 3 1.000000e+00 1.0000000
## 6109 5 1.000000e+00 1.0000000
## 6110 3 1.000000e+00 1.0000000
## 6111 2 1.000000e+00 1.0000000
## 6112 8 1.000000e+00 1.0000000
## 6113 13 1.000000e+00 1.0000000
## 6114 1 1.000000e+00 1.0000000
## 6115 3 1.000000e+00 1.0000000
## 6116 2 1.000000e+00 1.0000000
## 6117 1 1.000000e+00 1.0000000
## 6118 3 1.000000e+00 1.0000000
## 6119 1 1.000000e+00 1.0000000
## 6120 2 1.000000e+00 1.0000000
## 6121 20 1.000000e+00 1.0000000
## 6122 5 1.000000e+00 1.0000000
## 6123 11 1.000000e+00 1.0000000
## 6124 4 1.000000e+00 1.0000000
## 6125 2 1.000000e+00 1.0000000
## 6126 9 1.000000e+00 1.0000000
## 6127 7 1.000000e+00 1.0000000
## 6128 4 1.000000e+00 1.0000000
## 6129 1 1.000000e+00 1.0000000
## 6130 22 1.000000e+00 1.0000000
## 6131 1 1.000000e+00 1.0000000
## 6132 4 1.000000e+00 1.0000000
## 6133 13 1.000000e+00 1.0000000
## 6134 8 1.000000e+00 1.0000000
## 6135 18 1.000000e+00 1.0000000
## 6136 1 1.000000e+00 1.0000000
## 6137 60 1.000000e+00 1.0000000
## 6138 7 1.000000e+00 1.0000000
## 6139 4 1.000000e+00 1.0000000
## 6140 4 1.000000e+00 1.0000000
## 6141 13 1.000000e+00 1.0000000
## 6142 6 1.000000e+00 1.0000000
## 6143 7 1.000000e+00 1.0000000
## 6144 4 1.000000e+00 1.0000000
## 6145 2 1.000000e+00 1.0000000
## 6146 2 1.000000e+00 1.0000000
## 6147 1 1.000000e+00 1.0000000
## 6148 10 1.000000e+00 1.0000000
## 6149 1 1.000000e+00 1.0000000
## 6150 2 1.000000e+00 1.0000000
## 6151 20 1.000000e+00 1.0000000
## 6152 1 1.000000e+00 1.0000000
## 6153 14 1.000000e+00 1.0000000
## 6154 15 1.000000e+00 1.0000000
## 6155 11 1.000000e+00 1.0000000
## 6156 1 1.000000e+00 1.0000000
## 6157 1 1.000000e+00 1.0000000
## 6158 8 1.000000e+00 1.0000000
## 6159 11 1.000000e+00 1.0000000
## 6160 2 1.000000e+00 1.0000000
## 6161 15 1.000000e+00 1.0000000
## 6162 1 1.000000e+00 1.0000000
## 6163 4 1.000000e+00 1.0000000
## 6164 7 1.000000e+00 1.0000000
## 6165 2 1.000000e+00 1.0000000
## 6166 26 1.000000e+00 1.0000000
## 6167 11 1.000000e+00 1.0000000
## 6168 9 1.000000e+00 1.0000000
## 6169 10 1.000000e+00 1.0000000
## 6170 1 1.000000e+00 1.0000000
## 6171 14 1.000000e+00 1.0000000
## 6172 1 1.000000e+00 1.0000000
## 6173 11 1.000000e+00 1.0000000
## 6174 56 1.000000e+00 1.0000000
## 6175 32 1.000000e+00 1.0000000
## 6176 20 1.000000e+00 1.0000000
## 6177 3 1.000000e+00 1.0000000
## 6178 5 1.000000e+00 1.0000000
## 6179 5 1.000000e+00 1.0000000
## 6180 20 1.000000e+00 1.0000000
## 6181 5 1.000000e+00 1.0000000
## 6182 15 1.000000e+00 1.0000000
## 6183 6 1.000000e+00 1.0000000
## 6184 2 1.000000e+00 1.0000000
## 6185 3 1.000000e+00 1.0000000
## 6186 1 1.000000e+00 1.0000000
## 6187 1 1.000000e+00 1.0000000
## 6188 11 1.000000e+00 1.0000000
## 6189 1 1.000000e+00 1.0000000
## 6190 23 1.000000e+00 1.0000000
## 6191 9 1.000000e+00 1.0000000
## 6192 44 1.000000e+00 1.0000000
## 6193 4 1.000000e+00 1.0000000
## 6194 1 1.000000e+00 1.0000000
## 6195 1 1.000000e+00 1.0000000
## 6196 2 1.000000e+00 1.0000000
## 6197 35 1.000000e+00 1.0000000
## 6198 4 1.000000e+00 1.0000000
## 6199 1 1.000000e+00 1.0000000
## 6200 1 1.000000e+00 1.0000000
## 6201 6 1.000000e+00 1.0000000
## 6202 1 1.000000e+00 1.0000000
## 6203 1 1.000000e+00 1.0000000
## 6204 12 1.000000e+00 1.0000000
## 6205 3 1.000000e+00 1.0000000
## 6206 4 1.000000e+00 1.0000000
## 6207 10 1.000000e+00 1.0000000
## 6208 2 1.000000e+00 1.0000000
## 6209 5 1.000000e+00 1.0000000
## 6210 1 1.000000e+00 1.0000000
## 6211 3 1.000000e+00 1.0000000
## 6212 11 1.000000e+00 1.0000000
## 6213 9 1.000000e+00 1.0000000
## 6214 1 1.000000e+00 1.0000000
## 6215 2 1.000000e+00 1.0000000
## 6216 1 1.000000e+00 1.0000000
## 6217 1 1.000000e+00 1.0000000
## 6218 1 1.000000e+00 1.0000000
## 6219 1 1.000000e+00 1.0000000
## 6220 4 1.000000e+00 1.0000000
## 6221 20 1.000000e+00 1.0000000
## 6222 5 1.000000e+00 1.0000000
## 6223 4 1.000000e+00 1.0000000
## 6224 7 1.000000e+00 1.0000000
## 6225 8 1.000000e+00 1.0000000
## 6226 4 1.000000e+00 1.0000000
## 6227 8 1.000000e+00 1.0000000
## 6228 19 1.000000e+00 1.0000000
## 6229 3 1.000000e+00 1.0000000
## 6230 1 1.000000e+00 1.0000000
## 6231 9 1.000000e+00 1.0000000
## 6232 10 1.000000e+00 1.0000000
## 6233 1 1.000000e+00 1.0000000
## 6234 3 1.000000e+00 1.0000000
## 6235 1 1.000000e+00 1.0000000
## 6236 8 1.000000e+00 1.0000000
## 6237 6 1.000000e+00 1.0000000
## 6238 4 1.000000e+00 1.0000000
## 6239 4 1.000000e+00 1.0000000
## 6240 2 1.000000e+00 1.0000000
## 6241 9 1.000000e+00 1.0000000
## 6242 4 1.000000e+00 1.0000000
## 6243 3 1.000000e+00 1.0000000
## 6244 20 1.000000e+00 1.0000000
## 6245 6 1.000000e+00 1.0000000
## 6246 1 1.000000e+00 1.0000000
## 6247 2 1.000000e+00 1.0000000
## 6248 15 1.000000e+00 1.0000000
## 6249 9 1.000000e+00 1.0000000
## 6250 11 1.000000e+00 1.0000000
## 6251 14 1.000000e+00 1.0000000
## 6252 2 1.000000e+00 1.0000000
## 6253 8 1.000000e+00 1.0000000
## 6254 4 1.000000e+00 1.0000000
## 6255 1 1.000000e+00 1.0000000
## 6256 1 1.000000e+00 1.0000000
## 6257 5 1.000000e+00 1.0000000
## 6258 8 1.000000e+00 1.0000000
## 6259 9 1.000000e+00 1.0000000
## 6260 1 1.000000e+00 1.0000000
## 6261 8 1.000000e+00 1.0000000
## 6262 3 1.000000e+00 1.0000000
## 6263 29 1.000000e+00 1.0000000
## 6264 1 1.000000e+00 1.0000000
## 6265 2 1.000000e+00 1.0000000
## 6266 1 1.000000e+00 1.0000000
## 6267 1 1.000000e+00 1.0000000
## 6268 6 1.000000e+00 1.0000000
## 6269 7 1.000000e+00 1.0000000
## 6270 2 1.000000e+00 1.0000000
## 6271 1 1.000000e+00 1.0000000
## 6272 8 1.000000e+00 1.0000000
## 6273 6 1.000000e+00 1.0000000
## 6274 7 1.000000e+00 1.0000000
## 6275 3 1.000000e+00 1.0000000
## 6276 29 1.000000e+00 1.0000000
## 6277 1 1.000000e+00 1.0000000
## 6278 2 1.000000e+00 1.0000000
## 6279 13 1.000000e+00 1.0000000
## 6280 1 1.000000e+00 1.0000000
## 6281 1 1.000000e+00 1.0000000
## 6282 12 1.000000e+00 1.0000000
## 6283 1 1.000000e+00 1.0000000
## 6284 19 1.000000e+00 1.0000000
## 6285 13 1.000000e+00 1.0000000
## 6286 1 1.000000e+00 1.0000000
## 6287 14 1.000000e+00 1.0000000
## 6288 17 1.000000e+00 1.0000000
## 6289 1 1.000000e+00 1.0000000
## 6290 6 1.000000e+00 1.0000000
## 6291 4 1.000000e+00 1.0000000
## 6292 8 1.000000e+00 1.0000000
## 6293 9 1.000000e+00 1.0000000
## 6294 3 1.000000e+00 1.0000000
## 6295 6 1.000000e+00 1.0000000
## 6296 9 1.000000e+00 1.0000000
## 6297 6 1.000000e+00 1.0000000
## 6298 2 1.000000e+00 1.0000000
## 6299 1 1.000000e+00 1.0000000
## 6300 1 1.000000e+00 1.0000000
## 6301 3 1.000000e+00 1.0000000
## 6302 1 1.000000e+00 1.0000000
## 6303 8 1.000000e+00 1.0000000
## 6304 1 1.000000e+00 1.0000000
## 6305 2 1.000000e+00 1.0000000
## 6306 9 1.000000e+00 1.0000000
## 6307 1 1.000000e+00 1.0000000
## 6308 7 1.000000e+00 1.0000000
## 6309 5 1.000000e+00 1.0000000
## 6310 121 1.000000e+00 1.0000000
## 6311 32 1.000000e+00 1.0000000
## 6312 4 1.000000e+00 1.0000000
## 6313 1 1.000000e+00 1.0000000
## 6314 17 1.000000e+00 1.0000000
## 6315 7 1.000000e+00 1.0000000
## 6316 2 1.000000e+00 1.0000000
## 6317 4 1.000000e+00 1.0000000
## 6318 2 1.000000e+00 1.0000000
## 6319 8 1.000000e+00 1.0000000
## 6320 2 1.000000e+00 1.0000000
## 6321 1 1.000000e+00 1.0000000
## 6322 2 1.000000e+00 1.0000000
## 6323 4 1.000000e+00 1.0000000
## 6324 10 1.000000e+00 1.0000000
## 6325 1 1.000000e+00 1.0000000
## 6326 21 1.000000e+00 1.0000000
## 6327 26 1.000000e+00 1.0000000
## 6328 2 1.000000e+00 1.0000000
## 6329 3 1.000000e+00 1.0000000
## 6330 3 1.000000e+00 1.0000000
## 6331 5 1.000000e+00 1.0000000
## 6332 3 1.000000e+00 1.0000000
## 6333 2 1.000000e+00 1.0000000
## 6334 2 1.000000e+00 1.0000000
## 6335 10 1.000000e+00 1.0000000
## 6336 4 1.000000e+00 1.0000000
## 6337 15 1.000000e+00 1.0000000
## 6338 3 1.000000e+00 1.0000000
## 6339 9 1.000000e+00 1.0000000
## 6340 3 1.000000e+00 1.0000000
## 6341 28 1.000000e+00 1.0000000
## 6342 6 1.000000e+00 1.0000000
## 6343 21 1.000000e+00 1.0000000
## 6344 8 1.000000e+00 1.0000000
## 6345 2 1.000000e+00 1.0000000
## 6346 8 1.000000e+00 1.0000000
## 6347 14 1.000000e+00 1.0000000
## 6348 2 1.000000e+00 1.0000000
## 6349 2 1.000000e+00 1.0000000
## 6350 9 1.000000e+00 1.0000000
## 6351 12 1.000000e+00 1.0000000
## 6352 1 1.000000e+00 1.0000000
## 6353 2 1.000000e+00 1.0000000
## 6354 33 1.000000e+00 1.0000000
## 6355 33 1.000000e+00 1.0000000
## 6356 8 1.000000e+00 1.0000000
## 6357 2 1.000000e+00 1.0000000
## 6358 11 1.000000e+00 1.0000000
## 6359 6 1.000000e+00 1.0000000
## 6360 2 1.000000e+00 1.0000000
## 6361 2 1.000000e+00 1.0000000
## 6362 1 1.000000e+00 1.0000000
## 6363 2 1.000000e+00 1.0000000
## 6364 1 1.000000e+00 1.0000000
## 6365 1 1.000000e+00 1.0000000
## 6366 1 1.000000e+00 1.0000000
## 6367 1 1.000000e+00 1.0000000
## 6368 27 1.000000e+00 1.0000000
## 6369 9 1.000000e+00 1.0000000
## 6370 12 1.000000e+00 1.0000000
## 6371 1 1.000000e+00 1.0000000
## 6372 1 1.000000e+00 1.0000000
## 6373 1 1.000000e+00 1.0000000
## 6374 3 1.000000e+00 1.0000000
## 6375 4 1.000000e+00 1.0000000
## 6376 10 1.000000e+00 1.0000000
## 6377 1 1.000000e+00 1.0000000
## 6378 76 1.000000e+00 1.0000000
## 6379 1 1.000000e+00 1.0000000
## 6380 6 1.000000e+00 1.0000000
## 6381 3 1.000000e+00 1.0000000
## 6382 59 1.000000e+00 1.0000000
## 6383 2 1.000000e+00 1.0000000
## 6384 1 1.000000e+00 1.0000000
## 6385 1 1.000000e+00 1.0000000
## 6386 1 1.000000e+00 1.0000000
## 6387 1 1.000000e+00 1.0000000
## 6388 3 1.000000e+00 1.0000000
## 6389 4 1.000000e+00 1.0000000
## 6390 30 1.000000e+00 1.0000000
## 6391 3 1.000000e+00 1.0000000
## 6392 12 1.000000e+00 1.0000000
## 6393 16 1.000000e+00 1.0000000
## 6394 6 1.000000e+00 1.0000000
## 6395 1 1.000000e+00 1.0000000
## 6396 2 1.000000e+00 1.0000000
## 6397 2 1.000000e+00 1.0000000
## 6398 1 1.000000e+00 1.0000000
## 6399 4 1.000000e+00 1.0000000
## 6400 27 1.000000e+00 1.0000000
## 6401 2 1.000000e+00 1.0000000
## 6402 3 1.000000e+00 1.0000000
## 6403 5 1.000000e+00 1.0000000
## 6404 1 1.000000e+00 1.0000000
## 6405 1 1.000000e+00 1.0000000
## 6406 5 1.000000e+00 1.0000000
## 6407 5 1.000000e+00 1.0000000
## 6408 1 1.000000e+00 1.0000000
## 6409 1 1.000000e+00 1.0000000
## 6410 4 1.000000e+00 1.0000000
## 6411 1 1.000000e+00 1.0000000
## 6412 4 1.000000e+00 1.0000000
## 6413 16 1.000000e+00 1.0000000
## 6414 1 1.000000e+00 1.0000000
## 6415 4 1.000000e+00 1.0000000
## 6416 1 1.000000e+00 1.0000000
## 6417 2 1.000000e+00 1.0000000
## 6418 79 1.000000e+00 1.0000000
## 6419 3 1.000000e+00 1.0000000
## 6420 1 1.000000e+00 1.0000000
## 6421 1 1.000000e+00 1.0000000
## 6422 1 1.000000e+00 1.0000000
## 6423 2 1.000000e+00 1.0000000
## 6424 9 1.000000e+00 1.0000000
## 6425 36 1.000000e+00 1.0000000
## 6426 4 1.000000e+00 1.0000000
## 6427 3 1.000000e+00 1.0000000
## 6428 24 1.000000e+00 1.0000000
## 6429 1 1.000000e+00 1.0000000
## 6430 2 1.000000e+00 1.0000000
## 6431 1 1.000000e+00 1.0000000
## 6432 9 1.000000e+00 1.0000000
## 6433 7 1.000000e+00 1.0000000
## 6434 36 1.000000e+00 1.0000000
## 6435 2 1.000000e+00 1.0000000
## 6436 2 1.000000e+00 1.0000000
## 6437 6 1.000000e+00 1.0000000
## 6438 1 1.000000e+00 1.0000000
## 6439 2 1.000000e+00 1.0000000
## 6440 3 1.000000e+00 1.0000000
## 6441 1 1.000000e+00 1.0000000
## 6442 1 1.000000e+00 1.0000000
## 6443 30 1.000000e+00 1.0000000
## 6444 2 1.000000e+00 1.0000000
## 6445 1 1.000000e+00 1.0000000
## 6446 1 1.000000e+00 1.0000000
## 6447 16 1.000000e+00 1.0000000
## 6448 53 1.000000e+00 1.0000000
## 6449 7 1.000000e+00 1.0000000
## 6450 30 1.000000e+00 1.0000000
## 6451 59 1.000000e+00 1.0000000
## 6452 5 1.000000e+00 1.0000000
## 6453 72 1.000000e+00 1.0000000
## 6454 6 1.000000e+00 1.0000000
## 6455 1 1.000000e+00 1.0000000
## 6456 2 1.000000e+00 1.0000000
## 6457 1 1.000000e+00 1.0000000
## 6458 3 1.000000e+00 1.0000000
## 6459 2 1.000000e+00 1.0000000
## 6460 4 1.000000e+00 1.0000000
## 6461 2 1.000000e+00 1.0000000
## 6462 2 1.000000e+00 1.0000000
## 6463 2 1.000000e+00 1.0000000
## 6464 3 1.000000e+00 1.0000000
## 6465 1 1.000000e+00 1.0000000
## 6466 2 1.000000e+00 1.0000000
## 6467 1 1.000000e+00 1.0000000
## 6468 6 1.000000e+00 1.0000000
## 6469 9 1.000000e+00 1.0000000
## 6470 1 1.000000e+00 1.0000000
## 6471 5 1.000000e+00 1.0000000
## 6472 1 1.000000e+00 1.0000000
## 6473 7 1.000000e+00 1.0000000
## 6474 19 1.000000e+00 1.0000000
## 6475 11 1.000000e+00 1.0000000
## 6476 16 1.000000e+00 1.0000000
## 6477 21 1.000000e+00 1.0000000
## 6478 13 1.000000e+00 1.0000000
## 6479 8 1.000000e+00 1.0000000
## 6480 1 1.000000e+00 1.0000000
## 6481 76 1.000000e+00 1.0000000
## 6482 21 1.000000e+00 1.0000000
## 6483 5 1.000000e+00 1.0000000
## 6484 1 1.000000e+00 1.0000000
## 6485 7 1.000000e+00 1.0000000
## 6486 1 1.000000e+00 1.0000000
## 6487 2 1.000000e+00 1.0000000
## 6488 2 1.000000e+00 1.0000000
## 6489 2 1.000000e+00 1.0000000
## 6490 1 1.000000e+00 1.0000000
## 6491 17 1.000000e+00 1.0000000
## 6492 25 1.000000e+00 1.0000000
## 6493 7 1.000000e+00 1.0000000
## 6494 2 1.000000e+00 1.0000000
## 6495 3 1.000000e+00 1.0000000
## 6496 5 1.000000e+00 1.0000000
## 6497 4 1.000000e+00 1.0000000
## 6498 4 1.000000e+00 1.0000000
## 6499 2 1.000000e+00 1.0000000
## 6500 1 1.000000e+00 1.0000000
## 6501 4 1.000000e+00 1.0000000
## 6502 2 1.000000e+00 1.0000000
## 6503 5 1.000000e+00 1.0000000
## 6504 1 1.000000e+00 1.0000000
## 6505 2 1.000000e+00 1.0000000
## 6506 1 1.000000e+00 1.0000000
## 6507 6 1.000000e+00 1.0000000
## 6508 12 1.000000e+00 1.0000000
## 6509 3 1.000000e+00 1.0000000
## 6510 2 1.000000e+00 1.0000000
## 6511 1 1.000000e+00 1.0000000
## 6512 1 1.000000e+00 1.0000000
## 6513 2 1.000000e+00 1.0000000
## 6514 2 1.000000e+00 1.0000000
## 6515 4 1.000000e+00 1.0000000
## 6516 4 1.000000e+00 1.0000000
## 6517 6 1.000000e+00 1.0000000
## 6518 22 1.000000e+00 1.0000000
## 6519 1 1.000000e+00 1.0000000
## 6520 5 1.000000e+00 1.0000000
## 6521 13 1.000000e+00 1.0000000
## 6522 1 1.000000e+00 1.0000000
## 6523 5 1.000000e+00 1.0000000
## 6524 1 1.000000e+00 1.0000000
## 6525 7 1.000000e+00 1.0000000
## 6526 1 1.000000e+00 1.0000000
## 6527 1 1.000000e+00 1.0000000
## 6528 31 1.000000e+00 1.0000000
## 6529 9 1.000000e+00 1.0000000
## 6530 80 1.000000e+00 1.0000000
## 6531 35 1.000000e+00 1.0000000
## 6532 5 1.000000e+00 1.0000000
## 6533 1 1.000000e+00 1.0000000
## 6534 3 1.000000e+00 1.0000000
## 6535 6 1.000000e+00 1.0000000
## 6536 3 1.000000e+00 1.0000000
## 6537 28 1.000000e+00 1.0000000
## 6538 2 1.000000e+00 1.0000000
## 6539 2 1.000000e+00 1.0000000
## 6540 2 1.000000e+00 1.0000000
## 6541 3 1.000000e+00 1.0000000
## 6542 2 1.000000e+00 1.0000000
## 6543 10 1.000000e+00 1.0000000
## 6544 7 1.000000e+00 1.0000000
## 6545 9 1.000000e+00 1.0000000
## 6546 28 1.000000e+00 1.0000000
## 6547 4 1.000000e+00 1.0000000
## 6548 7 1.000000e+00 1.0000000
## 6549 28 1.000000e+00 1.0000000
## 6550 10 1.000000e+00 1.0000000
## 6551 37 1.000000e+00 1.0000000
## 6552 10 1.000000e+00 1.0000000
## 6553 3 1.000000e+00 1.0000000
## 6554 1 1.000000e+00 1.0000000
## 6555 1 1.000000e+00 1.0000000
## 6556 1 1.000000e+00 1.0000000
## 6557 98 1.000000e+00 1.0000000
## 6558 24 1.000000e+00 1.0000000
## 6559 1 1.000000e+00 1.0000000
## 6560 22 1.000000e+00 1.0000000
## 6561 17 1.000000e+00 1.0000000
## 6562 52 1.000000e+00 1.0000000
## 6563 21 1.000000e+00 1.0000000
## 6564 44 1.000000e+00 1.0000000
## 6565 13 1.000000e+00 1.0000000
## 6566 11 1.000000e+00 1.0000000
## 6567 32 1.000000e+00 1.0000000
## 6568 5 1.000000e+00 1.0000000
## 6569 3 1.000000e+00 1.0000000
## 6570 2 1.000000e+00 1.0000000
## 6571 14 1.000000e+00 1.0000000
## 6572 1 1.000000e+00 1.0000000
## 6573 3 1.000000e+00 1.0000000
## 6574 18 1.000000e+00 1.0000000
## 6575 7 1.000000e+00 1.0000000
## 6576 77 1.000000e+00 1.0000000
## 6577 2 1.000000e+00 1.0000000
## 6578 1 1.000000e+00 1.0000000
## 6579 21 1.000000e+00 1.0000000
## 6580 49 1.000000e+00 1.0000000
## 6581 6 1.000000e+00 1.0000000
## 6582 10 1.000000e+00 1.0000000
## 6583 93 1.000000e+00 1.0000000
## 6584 2 1.000000e+00 1.0000000
## 6585 2 1.000000e+00 1.0000000
## 6586 3 1.000000e+00 1.0000000
## 6587 12 1.000000e+00 1.0000000
## 6588 4 1.000000e+00 1.0000000
## 6589 4 1.000000e+00 1.0000000
## 6590 3 1.000000e+00 1.0000000
## 6591 12 1.000000e+00 1.0000000
## 6592 9 1.000000e+00 1.0000000
## 6593 5 1.000000e+00 1.0000000
## 6594 3 1.000000e+00 1.0000000
## 6595 1 1.000000e+00 1.0000000
## 6596 2 1.000000e+00 1.0000000
## 6597 2 1.000000e+00 1.0000000
## 6598 3 1.000000e+00 1.0000000
## 6599 1 1.000000e+00 1.0000000
## 6600 40 1.000000e+00 1.0000000
## 6601 6 1.000000e+00 1.0000000
## 6602 3 1.000000e+00 1.0000000
## 6603 36 1.000000e+00 1.0000000
## 6604 1 1.000000e+00 1.0000000
## 6605 2 1.000000e+00 1.0000000
## 6606 1 1.000000e+00 1.0000000
## 6607 2 1.000000e+00 1.0000000
## 6608 28 1.000000e+00 1.0000000
## 6609 9 1.000000e+00 1.0000000
## 6610 10 1.000000e+00 1.0000000
## 6611 10 1.000000e+00 1.0000000
## 6612 8 1.000000e+00 1.0000000
## 6613 4 1.000000e+00 1.0000000
## 6614 1 1.000000e+00 1.0000000
## 6615 2 1.000000e+00 1.0000000
## 6616 6 1.000000e+00 1.0000000
## 6617 2 1.000000e+00 1.0000000
## 6618 5 1.000000e+00 1.0000000
## 6619 1 1.000000e+00 1.0000000
## 6620 2 1.000000e+00 1.0000000
## 6621 6 1.000000e+00 1.0000000
## 6622 1 1.000000e+00 1.0000000
## 6623 5 1.000000e+00 1.0000000
## 6624 1 1.000000e+00 1.0000000
## 6625 1 1.000000e+00 1.0000000
## 6626 3 1.000000e+00 1.0000000
## 6627 23 1.000000e+00 1.0000000
## 6628 11 1.000000e+00 1.0000000
## 6629 1 1.000000e+00 1.0000000
## 6630 8 1.000000e+00 1.0000000
## 6631 1 1.000000e+00 1.0000000
## 6632 1 1.000000e+00 1.0000000
## 6633 2 1.000000e+00 1.0000000
## 6634 1 1.000000e+00 1.0000000
## 6635 2 1.000000e+00 1.0000000
## 6636 13 1.000000e+00 1.0000000
## 6637 2 1.000000e+00 1.0000000
## 6638 45 1.000000e+00 1.0000000
## 6639 29 1.000000e+00 1.0000000
## 6640 19 1.000000e+00 1.0000000
## 6641 3 1.000000e+00 1.0000000
## 6642 9 1.000000e+00 1.0000000
## 6643 1 1.000000e+00 1.0000000
## 6644 6 1.000000e+00 1.0000000
## 6645 2 1.000000e+00 1.0000000
## 6646 1 1.000000e+00 1.0000000
## 6647 2 1.000000e+00 1.0000000
## 6648 3 1.000000e+00 1.0000000
## 6649 1 1.000000e+00 1.0000000
## 6650 1 1.000000e+00 1.0000000
## 6651 15 1.000000e+00 1.0000000
## 6652 1 1.000000e+00 1.0000000
## 6653 1 1.000000e+00 1.0000000
## 6654 4 1.000000e+00 1.0000000
## 6655 1 1.000000e+00 1.0000000
## 6656 4 1.000000e+00 1.0000000
## 6657 1 1.000000e+00 1.0000000
## 6658 4 1.000000e+00 1.0000000
## 6659 1 1.000000e+00 1.0000000
## 6660 2 1.000000e+00 1.0000000
## 6661 3 1.000000e+00 1.0000000
## 6662 3 1.000000e+00 1.0000000
## 6663 5 1.000000e+00 1.0000000
## 6664 16 1.000000e+00 1.0000000
## 6665 2 1.000000e+00 1.0000000
## 6666 1 1.000000e+00 1.0000000
## 6667 15 1.000000e+00 1.0000000
## 6668 43 1.000000e+00 1.0000000
## 6669 7 1.000000e+00 1.0000000
## 6670 4 1.000000e+00 1.0000000
## 6671 7 1.000000e+00 1.0000000
## 6672 30 1.000000e+00 1.0000000
## 6673 8 1.000000e+00 1.0000000
## 6674 23 1.000000e+00 1.0000000
## 6675 2 1.000000e+00 1.0000000
## 6676 1 1.000000e+00 1.0000000
## 6677 6 1.000000e+00 1.0000000
## 6678 5 1.000000e+00 1.0000000
## 6679 2 1.000000e+00 1.0000000
## 6680 3 1.000000e+00 1.0000000
## 6681 13 1.000000e+00 1.0000000
## 6682 1 1.000000e+00 1.0000000
## 6683 4 1.000000e+00 1.0000000
## 6684 2 1.000000e+00 1.0000000
## 6685 8 1.000000e+00 1.0000000
## 6686 1 1.000000e+00 1.0000000
## 6687 2 1.000000e+00 1.0000000
## 6688 2 1.000000e+00 1.0000000
## 6689 27 1.000000e+00 1.0000000
## 6690 3 1.000000e+00 1.0000000
## 6691 2 1.000000e+00 1.0000000
## 6692 2 1.000000e+00 1.0000000
## 6693 5 1.000000e+00 1.0000000
## 6694 22 1.000000e+00 1.0000000
## 6695 4 1.000000e+00 1.0000000
## 6696 1 1.000000e+00 1.0000000
## 6697 10 1.000000e+00 1.0000000
## 6698 9 1.000000e+00 1.0000000
## 6699 6 1.000000e+00 1.0000000
## 6700 1 1.000000e+00 1.0000000
## 6701 24 1.000000e+00 1.0000000
## 6702 8 1.000000e+00 1.0000000
## 6703 1 1.000000e+00 1.0000000
## 6704 10 1.000000e+00 1.0000000
## 6705 50 1.000000e+00 1.0000000
## 6706 1 1.000000e+00 1.0000000
## 6707 2 1.000000e+00 1.0000000
## 6708 29 1.000000e+00 1.0000000
## 6709 58 1.000000e+00 1.0000000
## 6710 12 1.000000e+00 1.0000000
## 6711 7 1.000000e+00 1.0000000
## 6712 10 1.000000e+00 1.0000000
## 6713 2 1.000000e+00 1.0000000
## 6714 6 1.000000e+00 1.0000000
## 6715 21 1.000000e+00 1.0000000
## 6716 2 1.000000e+00 1.0000000
## 6717 3 1.000000e+00 1.0000000
## 6718 6 1.000000e+00 1.0000000
## 6719 17 1.000000e+00 1.0000000
## 6720 1 1.000000e+00 1.0000000
## 6721 4 1.000000e+00 1.0000000
## 6722 3 1.000000e+00 1.0000000
## 6723 4 1.000000e+00 1.0000000
## 6724 4 1.000000e+00 1.0000000
## 6725 1 1.000000e+00 1.0000000
## 6726 1 1.000000e+00 1.0000000
## 6727 1 1.000000e+00 1.0000000
## 6728 6 1.000000e+00 1.0000000
## 6729 10 1.000000e+00 1.0000000
## 6730 1 1.000000e+00 1.0000000
## 6731 6 1.000000e+00 1.0000000
## 6732 4 1.000000e+00 1.0000000
## 6733 2 1.000000e+00 1.0000000
## 6734 5 1.000000e+00 1.0000000
## 6735 4 1.000000e+00 1.0000000
## 6736 1 1.000000e+00 1.0000000
## 6737 6 1.000000e+00 1.0000000
## 6738 5 1.000000e+00 1.0000000
## 6739 3 1.000000e+00 1.0000000
## 6740 2 1.000000e+00 1.0000000
## 6741 1 1.000000e+00 1.0000000
## 6742 13 1.000000e+00 1.0000000
## 6743 6 1.000000e+00 1.0000000
## 6744 43 1.000000e+00 1.0000000
## 6745 14 1.000000e+00 1.0000000
## 6746 2 1.000000e+00 1.0000000
## 6747 3 1.000000e+00 1.0000000
## 6748 1 1.000000e+00 1.0000000
## 6749 2 1.000000e+00 1.0000000
## 6750 1 1.000000e+00 1.0000000
## 6751 1 1.000000e+00 1.0000000
## 6752 3 1.000000e+00 1.0000000
## 6753 4 1.000000e+00 1.0000000
## 6754 1 1.000000e+00 1.0000000
## 6755 1 1.000000e+00 1.0000000
## 6756 6 1.000000e+00 1.0000000
## 6757 6 1.000000e+00 1.0000000
## 6758 55 1.000000e+00 1.0000000
## 6759 102 1.000000e+00 1.0000000
## 6760 26 1.000000e+00 1.0000000
## 6761 5 1.000000e+00 1.0000000
## 6762 2 1.000000e+00 1.0000000
## 6763 79 1.000000e+00 1.0000000
## 6764 6 1.000000e+00 1.0000000
## 6765 5 1.000000e+00 1.0000000
## 6766 7 1.000000e+00 1.0000000
## 6767 3 1.000000e+00 1.0000000
## 6768 3 1.000000e+00 1.0000000
## 6769 2 1.000000e+00 1.0000000
## 6770 5 1.000000e+00 1.0000000
## 6771 15 1.000000e+00 1.0000000
## 6772 11 1.000000e+00 1.0000000
## 6773 4 1.000000e+00 1.0000000
## 6774 1 1.000000e+00 1.0000000
## 6775 26 1.000000e+00 1.0000000
## 6776 8 1.000000e+00 1.0000000
## 6777 4 1.000000e+00 1.0000000
## 6778 5 1.000000e+00 1.0000000
## 6779 2 1.000000e+00 1.0000000
## 6780 38 1.000000e+00 1.0000000
## 6781 45 1.000000e+00 1.0000000
## 6782 2 1.000000e+00 1.0000000
## 6783 66 1.000000e+00 1.0000000
## 6784 21 1.000000e+00 1.0000000
## 6785 4 1.000000e+00 1.0000000
## 6786 5 1.000000e+00 1.0000000
## 6787 96 1.000000e+00 1.0000000
## 6788 3 1.000000e+00 1.0000000
## 6789 2 1.000000e+00 1.0000000
## 6790 40 1.000000e+00 1.0000000
## 6791 3 1.000000e+00 1.0000000
## 6792 1 1.000000e+00 1.0000000
## 6793 8 1.000000e+00 1.0000000
## 6794 7 1.000000e+00 1.0000000
## 6795 2 1.000000e+00 1.0000000
## 6796 3 1.000000e+00 1.0000000
## 6797 4 1.000000e+00 1.0000000
## 6798 2 1.000000e+00 1.0000000
## 6799 14 1.000000e+00 1.0000000
## 6800 6 1.000000e+00 1.0000000
## 6801 3 1.000000e+00 1.0000000
## 6802 5 1.000000e+00 1.0000000
## 6803 7 1.000000e+00 1.0000000
## 6804 30 1.000000e+00 1.0000000
## 6805 5 1.000000e+00 1.0000000
## 6806 1 1.000000e+00 1.0000000
## 6807 15 1.000000e+00 1.0000000
## 6808 10 1.000000e+00 1.0000000
## 6809 7 1.000000e+00 1.0000000
## 6810 53 1.000000e+00 1.0000000
## 6811 1 1.000000e+00 1.0000000
## 6812 5 1.000000e+00 1.0000000
## 6813 4 1.000000e+00 1.0000000
## 6814 18 1.000000e+00 1.0000000
## 6815 13 1.000000e+00 1.0000000
## 6816 5 1.000000e+00 1.0000000
## 6817 22 1.000000e+00 1.0000000
## 6818 2 1.000000e+00 1.0000000
## 6819 2 1.000000e+00 1.0000000
## 6820 7 1.000000e+00 1.0000000
## 6821 1 1.000000e+00 1.0000000
## 6822 1 1.000000e+00 1.0000000
## 6823 15 1.000000e+00 1.0000000
## 6824 10 1.000000e+00 1.0000000
## 6825 1 1.000000e+00 1.0000000
## 6826 12 1.000000e+00 1.0000000
## 6827 35 1.000000e+00 1.0000000
## 6828 17 1.000000e+00 1.0000000
## 6829 2 1.000000e+00 1.0000000
## 6830 25 1.000000e+00 1.0000000
## 6831 24 1.000000e+00 1.0000000
## 6832 3 1.000000e+00 1.0000000
## 6833 18 1.000000e+00 1.0000000
## 6834 3 1.000000e+00 1.0000000
## 6835 65 1.000000e+00 1.0000000
## 6836 11 1.000000e+00 1.0000000
## 6837 3 1.000000e+00 1.0000000
## 6838 4 1.000000e+00 1.0000000
## 6839 6 1.000000e+00 1.0000000
## 6840 9 1.000000e+00 1.0000000
## 6841 4 1.000000e+00 1.0000000
## 6842 2 1.000000e+00 1.0000000
## 6843 1 1.000000e+00 1.0000000
## 6844 3 1.000000e+00 1.0000000
## 6845 2 1.000000e+00 1.0000000
## 6846 19 1.000000e+00 1.0000000
## 6847 4 1.000000e+00 1.0000000
## 6848 50 1.000000e+00 1.0000000
## 6849 46 1.000000e+00 1.0000000
## 6850 48 1.000000e+00 1.0000000
## 6851 44 1.000000e+00 1.0000000
## 6852 4 1.000000e+00 1.0000000
## 6853 2 1.000000e+00 1.0000000
## 6854 2 1.000000e+00 1.0000000
## 6855 28 1.000000e+00 1.0000000
## 6856 21 1.000000e+00 1.0000000
## 6857 22 1.000000e+00 1.0000000
## 6858 19 1.000000e+00 1.0000000
## 6859 13 1.000000e+00 1.0000000
## 6860 73 1.000000e+00 1.0000000
## 6861 1 1.000000e+00 1.0000000
## 6862 41 1.000000e+00 1.0000000
## 6863 16 1.000000e+00 1.0000000
## 6864 15 1.000000e+00 1.0000000
## 6865 8 1.000000e+00 1.0000000
## 6866 8 1.000000e+00 1.0000000
## 6867 36 1.000000e+00 1.0000000
## 6868 3 1.000000e+00 1.0000000
## 6869 2 1.000000e+00 1.0000000
## 6870 24 1.000000e+00 1.0000000
## 6871 3 1.000000e+00 1.0000000
## 6872 59 1.000000e+00 1.0000000
## 6873 16 1.000000e+00 1.0000000
## 6874 40 1.000000e+00 1.0000000
## 6875 4 1.000000e+00 1.0000000
## 6876 7 1.000000e+00 1.0000000
## 6877 8 1.000000e+00 1.0000000
## 6878 26 1.000000e+00 1.0000000
## 6879 7 1.000000e+00 1.0000000
## 6880 15 1.000000e+00 1.0000000
## 6881 4 1.000000e+00 1.0000000
## 6882 7 1.000000e+00 1.0000000
## 6883 3 1.000000e+00 1.0000000
## 6884 16 1.000000e+00 1.0000000
## 6885 2 1.000000e+00 1.0000000
## 6886 16 1.000000e+00 1.0000000
## 6887 1 1.000000e+00 1.0000000
## 6888 71 1.000000e+00 1.0000000
## 6889 8 1.000000e+00 1.0000000
## 6890 38 1.000000e+00 1.0000000
## 6891 2 1.000000e+00 1.0000000
## 6892 14 1.000000e+00 1.0000000
## 6893 1 1.000000e+00 1.0000000
## 6894 1 1.000000e+00 1.0000000
## 6895 9 1.000000e+00 1.0000000
## 6896 17 1.000000e+00 1.0000000
## 6897 33 1.000000e+00 1.0000000
## 6898 7 1.000000e+00 1.0000000
## 6899 131 1.000000e+00 1.0000000
## 6900 81 1.000000e+00 1.0000000
## 6901 1 1.000000e+00 1.0000000
## 6902 60 1.000000e+00 1.0000000
## 6903 27 1.000000e+00 1.0000000
## 6904 25 1.000000e+00 1.0000000
## 6905 38 1.000000e+00 1.0000000
## 6906 19 1.000000e+00 1.0000000
## 6907 10 1.000000e+00 1.0000000
## 6908 22 1.000000e+00 1.0000000
## 6909 3 1.000000e+00 1.0000000
## 6910 8 1.000000e+00 1.0000000
## 6911 4 1.000000e+00 1.0000000
## 6912 11 1.000000e+00 1.0000000
## 6913 8 1.000000e+00 1.0000000
## 6914 1 1.000000e+00 1.0000000
## 6915 5 1.000000e+00 1.0000000
## 6916 2 1.000000e+00 1.0000000
## 6917 80 1.000000e+00 1.0000000
## 6918 72 1.000000e+00 1.0000000
## 6919 1 1.000000e+00 1.0000000
## 6920 2 1.000000e+00 1.0000000
## 6921 12 1.000000e+00 1.0000000
## 6922 2 1.000000e+00 1.0000000
## 6923 3 1.000000e+00 1.0000000
## 6924 1 1.000000e+00 1.0000000
## 6925 34 1.000000e+00 1.0000000
## 6926 13 1.000000e+00 1.0000000
## 6927 2 1.000000e+00 1.0000000
## 6928 11 1.000000e+00 1.0000000
## 6929 19 1.000000e+00 1.0000000
## 6930 2 1.000000e+00 1.0000000
## 6931 4 1.000000e+00 1.0000000
## 6932 5 1.000000e+00 1.0000000
## 6933 8 1.000000e+00 1.0000000
## 6934 63 1.000000e+00 1.0000000
## 6935 15 1.000000e+00 1.0000000
## 6936 42 1.000000e+00 1.0000000
## 6937 26 1.000000e+00 1.0000000
## 6938 6 1.000000e+00 1.0000000
## 6939 2 1.000000e+00 1.0000000
## 6940 4 1.000000e+00 1.0000000
## 6941 4 1.000000e+00 1.0000000
## 6942 9 1.000000e+00 1.0000000
## 6943 1 1.000000e+00 1.0000000
## 6944 2 1.000000e+00 1.0000000
## 6945 1 1.000000e+00 1.0000000
## 6946 2 1.000000e+00 1.0000000
## 6947 2 1.000000e+00 1.0000000
## 6948 1 1.000000e+00 1.0000000
## 6949 18 1.000000e+00 1.0000000
## 6950 22 1.000000e+00 1.0000000
## 6951 5 1.000000e+00 1.0000000
## 6952 4 1.000000e+00 1.0000000
## 6953 2 1.000000e+00 1.0000000
## 6954 1 1.000000e+00 1.0000000
## 6955 1 1.000000e+00 1.0000000
## 6956 16 1.000000e+00 1.0000000
## 6957 21 1.000000e+00 1.0000000
## 6958 11 1.000000e+00 1.0000000
## 6959 1 1.000000e+00 1.0000000
## 6960 4 1.000000e+00 1.0000000
## 6961 3 1.000000e+00 1.0000000
## 6962 2 1.000000e+00 1.0000000
## 6963 8 1.000000e+00 1.0000000
## 6964 7 1.000000e+00 1.0000000
## 6965 54 1.000000e+00 1.0000000
## 6966 3 1.000000e+00 1.0000000
## 6967 12 1.000000e+00 1.0000000
## 6968 3 1.000000e+00 1.0000000
## 6969 2 1.000000e+00 1.0000000
## 6970 7 1.000000e+00 1.0000000
## 6971 13 1.000000e+00 1.0000000
## 6972 16 1.000000e+00 1.0000000
## 6973 24 1.000000e+00 1.0000000
## 6974 8 1.000000e+00 1.0000000
## 6975 12 1.000000e+00 1.0000000
## 6976 1 1.000000e+00 1.0000000
## 6977 10 1.000000e+00 1.0000000
## 6978 8 1.000000e+00 1.0000000
## 6979 1 1.000000e+00 1.0000000
## 6980 7 1.000000e+00 1.0000000
## 6981 2 1.000000e+00 1.0000000
## 6982 31 1.000000e+00 1.0000000
## 6983 13 1.000000e+00 1.0000000
## 6984 8 1.000000e+00 1.0000000
## 6985 7 1.000000e+00 1.0000000
## 6986 4 1.000000e+00 1.0000000
## 6987 4 1.000000e+00 1.0000000
## 6988 9 1.000000e+00 1.0000000
## 6989 1 1.000000e+00 1.0000000
## 6990 21 1.000000e+00 1.0000000
## 6991 9 1.000000e+00 1.0000000
## 6992 8 1.000000e+00 1.0000000
## 6993 2 1.000000e+00 1.0000000
## 6994 1 1.000000e+00 1.0000000
## 6995 26 1.000000e+00 1.0000000
## 6996 2 1.000000e+00 1.0000000
## 6997 6 1.000000e+00 1.0000000
## 6998 2 1.000000e+00 1.0000000
## 6999 2 1.000000e+00 1.0000000
## 7000 16 1.000000e+00 1.0000000
## 7001 5 1.000000e+00 1.0000000
## 7002 9 1.000000e+00 1.0000000
## 7003 17 1.000000e+00 1.0000000
## 7004 6 1.000000e+00 1.0000000
## 7005 1 1.000000e+00 1.0000000
## 7006 18 1.000000e+00 1.0000000
## 7007 13 1.000000e+00 1.0000000
## 7008 7 1.000000e+00 1.0000000
## 7009 9 1.000000e+00 1.0000000
## 7010 6 1.000000e+00 1.0000000
## 7011 7 1.000000e+00 1.0000000
## 7012 4 1.000000e+00 1.0000000
## 7013 10 1.000000e+00 1.0000000
## 7014 2 1.000000e+00 1.0000000
## 7015 8 1.000000e+00 1.0000000
## 7016 1 1.000000e+00 1.0000000
## 7017 15 1.000000e+00 1.0000000
## 7018 5 1.000000e+00 1.0000000
## 7019 1 1.000000e+00 1.0000000
## 7020 4 1.000000e+00 1.0000000
## 7021 4 1.000000e+00 1.0000000
## 7022 6 1.000000e+00 1.0000000
## 7023 3 1.000000e+00 1.0000000
## 7024 1 1.000000e+00 1.0000000
## 7025 1 1.000000e+00 1.0000000
## 7026 4 1.000000e+00 1.0000000
## 7027 1 1.000000e+00 1.0000000
## 7028 1 1.000000e+00 1.0000000
## 7029 2 1.000000e+00 1.0000000
## 7030 3 1.000000e+00 1.0000000
## 7031 9 1.000000e+00 1.0000000
## 7032 1 1.000000e+00 1.0000000
## 7033 7 1.000000e+00 1.0000000
## 7034 3 1.000000e+00 1.0000000
## 7035 32 1.000000e+00 1.0000000
## 7036 6 1.000000e+00 1.0000000
## 7037 13 1.000000e+00 1.0000000
## 7038 5 1.000000e+00 1.0000000
## 7039 2 1.000000e+00 1.0000000
## 7040 1 1.000000e+00 1.0000000
## 7041 4 1.000000e+00 1.0000000
## 7042 4 1.000000e+00 1.0000000
## 7043 3 1.000000e+00 1.0000000
## 7044 11 1.000000e+00 1.0000000
## 7045 7 1.000000e+00 1.0000000
## 7046 7 1.000000e+00 1.0000000
## 7047 4 1.000000e+00 1.0000000
## 7048 7 1.000000e+00 1.0000000
## 7049 18 1.000000e+00 1.0000000
## 7050 3 1.000000e+00 1.0000000
## 7051 2 1.000000e+00 1.0000000
## 7052 1 1.000000e+00 1.0000000
## 7053 18 1.000000e+00 1.0000000
## 7054 3 1.000000e+00 1.0000000
## 7055 16 1.000000e+00 1.0000000
## 7056 11 1.000000e+00 1.0000000
## 7057 28 1.000000e+00 1.0000000
## 7058 3 1.000000e+00 1.0000000
## 7059 7 1.000000e+00 1.0000000
## 7060 10 1.000000e+00 1.0000000
## 7061 11 1.000000e+00 1.0000000
## 7062 45 1.000000e+00 1.0000000
## 7063 19 1.000000e+00 1.0000000
## 7064 18 1.000000e+00 1.0000000
## 7065 3 1.000000e+00 1.0000000
## 7066 6 1.000000e+00 1.0000000
## 7067 4 1.000000e+00 1.0000000
## 7068 2 1.000000e+00 1.0000000
## 7069 10 1.000000e+00 1.0000000
## 7070 17 1.000000e+00 1.0000000
## 7071 1 1.000000e+00 1.0000000
## 7072 6 1.000000e+00 1.0000000
## 7073 11 1.000000e+00 1.0000000
## 7074 25 1.000000e+00 1.0000000
## 7075 56 1.000000e+00 1.0000000
## 7076 43 1.000000e+00 1.0000000
## 7077 12 1.000000e+00 1.0000000
## 7078 20 1.000000e+00 1.0000000
## 7079 7 1.000000e+00 1.0000000
## 7080 3 1.000000e+00 1.0000000
## 7081 24 1.000000e+00 1.0000000
## 7082 22 1.000000e+00 1.0000000
## 7083 21 1.000000e+00 1.0000000
## 7084 73 1.000000e+00 1.0000000
## 7085 65 1.000000e+00 1.0000000
## 7086 6 1.000000e+00 1.0000000
## 7087 2 1.000000e+00 1.0000000
## 7088 4 1.000000e+00 1.0000000
## 7089 3 1.000000e+00 1.0000000
## 7090 2 1.000000e+00 1.0000000
## 7091 9 1.000000e+00 1.0000000
## 7092 5 1.000000e+00 1.0000000
## 7093 4 1.000000e+00 1.0000000
## 7094 25 1.000000e+00 1.0000000
## 7095 4 1.000000e+00 1.0000000
## 7096 1 1.000000e+00 1.0000000
## 7097 4 1.000000e+00 1.0000000
## 7098 1 1.000000e+00 1.0000000
## 7099 24 1.000000e+00 1.0000000
## 7100 10 1.000000e+00 1.0000000
## 7101 7 1.000000e+00 1.0000000
## 7102 1 1.000000e+00 1.0000000
## 7103 2 1.000000e+00 1.0000000
## 7104 8 1.000000e+00 1.0000000
## 7105 2 1.000000e+00 1.0000000
## 7106 3 1.000000e+00 1.0000000
## 7107 1 1.000000e+00 1.0000000
## 7108 47 1.000000e+00 1.0000000
## 7109 2 1.000000e+00 1.0000000
## 7110 4 1.000000e+00 1.0000000
## 7111 3 1.000000e+00 1.0000000
## 7112 10 1.000000e+00 1.0000000
## 7113 3 1.000000e+00 1.0000000
## 7114 7 1.000000e+00 1.0000000
## 7115 11 1.000000e+00 1.0000000
## 7116 7 1.000000e+00 1.0000000
## 7117 16 1.000000e+00 1.0000000
## 7118 4 1.000000e+00 1.0000000
## 7119 1 1.000000e+00 1.0000000
## 7120 2 1.000000e+00 1.0000000
## 7121 6 1.000000e+00 1.0000000
## 7122 16 1.000000e+00 1.0000000
## 7123 16 1.000000e+00 1.0000000
## 7124 10 1.000000e+00 1.0000000
## 7125 19 1.000000e+00 1.0000000
## 7126 13 1.000000e+00 1.0000000
## 7127 7 1.000000e+00 1.0000000
## 7128 13 1.000000e+00 1.0000000
## 7129 5 1.000000e+00 1.0000000
## 7130 1 1.000000e+00 1.0000000
## 7131 9 1.000000e+00 1.0000000
## 7132 6 1.000000e+00 1.0000000
## 7133 1 1.000000e+00 1.0000000
## 7134 1 1.000000e+00 1.0000000
## 7135 9 1.000000e+00 1.0000000
## 7136 2 1.000000e+00 1.0000000
## 7137 7 1.000000e+00 1.0000000
## 7138 2 1.000000e+00 1.0000000
## 7139 3 1.000000e+00 1.0000000
## 7140 16 1.000000e+00 1.0000000
## 7141 4 1.000000e+00 1.0000000
## 7142 2 1.000000e+00 1.0000000
## 7143 1 1.000000e+00 1.0000000
## 7144 3 1.000000e+00 1.0000000
## 7145 8 1.000000e+00 1.0000000
## 7146 1 1.000000e+00 1.0000000
## 7147 7 1.000000e+00 1.0000000
## 7148 1 1.000000e+00 1.0000000
## 7149 10 1.000000e+00 1.0000000
## 7150 7 1.000000e+00 1.0000000
## 7151 5 1.000000e+00 1.0000000
## 7152 16 1.000000e+00 1.0000000
## 7153 7 1.000000e+00 1.0000000
## 7154 23 1.000000e+00 1.0000000
## 7155 8 1.000000e+00 1.0000000
## 7156 3 1.000000e+00 1.0000000
## 7157 1 1.000000e+00 1.0000000
## 7158 6 1.000000e+00 1.0000000
## 7159 12 1.000000e+00 1.0000000
## 7160 30 1.000000e+00 1.0000000
## 7161 6 1.000000e+00 1.0000000
## 7162 12 1.000000e+00 1.0000000
## 7163 2 1.000000e+00 1.0000000
## 7164 2 1.000000e+00 1.0000000
## 7165 1 1.000000e+00 1.0000000
## 7166 6 1.000000e+00 1.0000000
## 7167 7 1.000000e+00 1.0000000
## 7168 37 1.000000e+00 1.0000000
## 7169 17 1.000000e+00 1.0000000
## 7170 51 1.000000e+00 1.0000000
## 7171 1 1.000000e+00 1.0000000
## 7172 14 1.000000e+00 1.0000000
## 7173 6 1.000000e+00 1.0000000
## 7174 32 1.000000e+00 1.0000000
## 7175 1 1.000000e+00 1.0000000
## 7176 13 1.000000e+00 1.0000000
## 7177 30 1.000000e+00 1.0000000
## 7178 5 1.000000e+00 1.0000000
## 7179 2 1.000000e+00 1.0000000
## 7180 5 1.000000e+00 1.0000000
## 7181 2 1.000000e+00 1.0000000
## 7182 3 1.000000e+00 1.0000000
## 7183 1 1.000000e+00 1.0000000
## 7184 1 1.000000e+00 1.0000000
## 7185 4 1.000000e+00 1.0000000
## 7186 7 1.000000e+00 1.0000000
## 7187 1 1.000000e+00 1.0000000
## 7188 1 1.000000e+00 1.0000000
## 7189 6 1.000000e+00 1.0000000
## 7190 15 1.000000e+00 1.0000000
## 7191 2 1.000000e+00 1.0000000
## 7192 11 1.000000e+00 1.0000000
## 7193 5 1.000000e+00 1.0000000
## 7194 10 1.000000e+00 1.0000000
## 7195 5 1.000000e+00 1.0000000
## 7196 2 1.000000e+00 1.0000000
## 7197 2 1.000000e+00 1.0000000
## 7198 4 1.000000e+00 1.0000000
## 7199 1 1.000000e+00 1.0000000
## 7200 26 1.000000e+00 1.0000000
## 7201 6 1.000000e+00 1.0000000
## 7202 16 1.000000e+00 1.0000000
## 7203 9 1.000000e+00 1.0000000
## 7204 7 1.000000e+00 1.0000000
## 7205 12 1.000000e+00 1.0000000
## 7206 7 1.000000e+00 1.0000000
## 7207 4 1.000000e+00 1.0000000
## 7208 3 1.000000e+00 1.0000000
## 7209 3 1.000000e+00 1.0000000
## 7210 2 1.000000e+00 1.0000000
## 7211 10 1.000000e+00 1.0000000
## 7212 5 1.000000e+00 1.0000000
## 7213 1 1.000000e+00 1.0000000
## 7214 4 1.000000e+00 1.0000000
## 7215 7 1.000000e+00 1.0000000
## 7216 5 1.000000e+00 1.0000000
## 7217 2 1.000000e+00 1.0000000
## 7218 23 1.000000e+00 1.0000000
## 7219 38 1.000000e+00 1.0000000
## 7220 33 1.000000e+00 1.0000000
## 7221 1 1.000000e+00 1.0000000
## 7222 51 1.000000e+00 1.0000000
## 7223 17 1.000000e+00 1.0000000
## 7224 31 1.000000e+00 1.0000000
## 7225 2 1.000000e+00 1.0000000
## 7226 1 1.000000e+00 1.0000000
## 7227 1 1.000000e+00 1.0000000
## 7228 2 1.000000e+00 1.0000000
## 7229 10 1.000000e+00 1.0000000
## 7230 8 1.000000e+00 1.0000000
## 7231 3 1.000000e+00 1.0000000
## 7232 4 1.000000e+00 1.0000000
## 7233 2 1.000000e+00 1.0000000
## 7234 1 1.000000e+00 1.0000000
## 7235 6 1.000000e+00 1.0000000
## 7236 2 1.000000e+00 1.0000000
## 7237 2 1.000000e+00 1.0000000
## 7238 3 1.000000e+00 1.0000000
## 7239 1 1.000000e+00 1.0000000
## 7240 1 1.000000e+00 1.0000000
## 7241 8 1.000000e+00 1.0000000
## 7242 18 1.000000e+00 1.0000000
## 7243 3 1.000000e+00 1.0000000
## 7244 14 1.000000e+00 1.0000000
## 7245 7 1.000000e+00 1.0000000
## 7246 4 1.000000e+00 1.0000000
## 7247 7 1.000000e+00 1.0000000
## 7248 2 1.000000e+00 1.0000000
## 7249 6 1.000000e+00 1.0000000
## 7250 5 1.000000e+00 1.0000000
## 7251 8 1.000000e+00 1.0000000
## 7252 7 1.000000e+00 1.0000000
## 7253 4 1.000000e+00 1.0000000
## 7254 2 1.000000e+00 1.0000000
## 7255 1 1.000000e+00 1.0000000
## 7256 1 1.000000e+00 1.0000000
## 7257 1 1.000000e+00 1.0000000
## 7258 19 1.000000e+00 1.0000000
## 7259 38 1.000000e+00 1.0000000
## 7260 11 1.000000e+00 1.0000000
## 7261 17 1.000000e+00 1.0000000
## 7262 7 1.000000e+00 1.0000000
## 7263 3 1.000000e+00 1.0000000
## 7264 2 1.000000e+00 1.0000000
## 7265 6 1.000000e+00 1.0000000
## 7266 1 1.000000e+00 1.0000000
## 7267 14 1.000000e+00 1.0000000
## 7268 1 1.000000e+00 1.0000000
## 7269 27 1.000000e+00 1.0000000
## 7270 25 1.000000e+00 1.0000000
## 7271 3 1.000000e+00 1.0000000
## 7272 49 1.000000e+00 1.0000000
## 7273 3 1.000000e+00 1.0000000
## 7274 46 1.000000e+00 1.0000000
## 7275 1 1.000000e+00 1.0000000
## 7276 23 1.000000e+00 1.0000000
## 7277 2 1.000000e+00 1.0000000
## 7278 8 1.000000e+00 1.0000000
## 7279 6 1.000000e+00 1.0000000
## 7280 8 1.000000e+00 1.0000000
## 7281 5 1.000000e+00 1.0000000
## 7282 4 1.000000e+00 1.0000000
## 7283 10 1.000000e+00 1.0000000
## 7284 3 1.000000e+00 1.0000000
## 7285 2 1.000000e+00 1.0000000
## 7286 13 1.000000e+00 1.0000000
## 7287 3 1.000000e+00 1.0000000
## 7288 8 1.000000e+00 1.0000000
## 7289 5 1.000000e+00 1.0000000
## 7290 26 1.000000e+00 1.0000000
## 7291 23 1.000000e+00 1.0000000
## 7292 2 1.000000e+00 1.0000000
## 7293 21 1.000000e+00 1.0000000
## 7294 32 1.000000e+00 1.0000000
## 7295 14 1.000000e+00 1.0000000
## 7296 14 1.000000e+00 1.0000000
## 7297 4 1.000000e+00 1.0000000
## 7298 5 1.000000e+00 1.0000000
## 7299 20 1.000000e+00 1.0000000
## 7300 3 1.000000e+00 1.0000000
## 7301 13 1.000000e+00 1.0000000
## 7302 1 1.000000e+00 1.0000000
## 7303 14 1.000000e+00 1.0000000
## 7304 9 1.000000e+00 1.0000000
## 7305 9 1.000000e+00 1.0000000
## 7306 5 1.000000e+00 1.0000000
## 7307 17 1.000000e+00 1.0000000
## 7308 18 1.000000e+00 1.0000000
## 7309 12 1.000000e+00 1.0000000
## 7310 30 1.000000e+00 1.0000000
## 7311 7 1.000000e+00 1.0000000
## 7312 6 1.000000e+00 1.0000000
## 7313 1 1.000000e+00 1.0000000
## 7314 5 1.000000e+00 1.0000000
## 7315 5 1.000000e+00 1.0000000
## 7316 1 1.000000e+00 1.0000000
## 7317 11 1.000000e+00 1.0000000
## 7318 5 1.000000e+00 1.0000000
## 7319 13 1.000000e+00 1.0000000
## 7320 2 1.000000e+00 1.0000000
## 7321 6 1.000000e+00 1.0000000
## 7322 3 1.000000e+00 1.0000000
## 7323 3 1.000000e+00 1.0000000
## 7324 1 1.000000e+00 1.0000000
## 7325 2 1.000000e+00 1.0000000
## 7326 7 1.000000e+00 1.0000000
## 7327 1 1.000000e+00 1.0000000
## 7328 1 1.000000e+00 1.0000000
## 7329 3 1.000000e+00 1.0000000
## 7330 11 1.000000e+00 1.0000000
## 7331 2 1.000000e+00 1.0000000
## 7332 1 1.000000e+00 1.0000000
## 7333 1 1.000000e+00 1.0000000
## 7334 24 1.000000e+00 1.0000000
## 7335 1 1.000000e+00 1.0000000
## 7336 32 1.000000e+00 1.0000000
## 7337 2 1.000000e+00 1.0000000
## 7338 1 1.000000e+00 1.0000000
## 7339 1 1.000000e+00 1.0000000
## 7340 1 1.000000e+00 1.0000000
## 7341 3 1.000000e+00 1.0000000
## 7342 1 1.000000e+00 1.0000000
## 7343 1 1.000000e+00 1.0000000
## 7344 9 1.000000e+00 1.0000000
## 7345 3 1.000000e+00 1.0000000
## 7346 1 1.000000e+00 1.0000000
## 7347 2 1.000000e+00 1.0000000
## 7348 2 1.000000e+00 1.0000000
## 7349 3 1.000000e+00 1.0000000
## 7350 1 1.000000e+00 1.0000000
## 7351 22 1.000000e+00 1.0000000
## 7352 15 1.000000e+00 1.0000000
## 7353 15 1.000000e+00 1.0000000
## 7354 1 1.000000e+00 1.0000000
## 7355 65 1.000000e+00 1.0000000
## 7356 22 1.000000e+00 1.0000000
## 7357 3 1.000000e+00 1.0000000
## 7358 5 1.000000e+00 1.0000000
## 7359 2 1.000000e+00 1.0000000
## 7360 5 1.000000e+00 1.0000000
## 7361 43 1.000000e+00 1.0000000
## 7362 2 1.000000e+00 1.0000000
## 7363 2 1.000000e+00 1.0000000
## 7364 4 1.000000e+00 1.0000000
## 7365 5 1.000000e+00 1.0000000
## 7366 4 1.000000e+00 1.0000000
## 7367 2 1.000000e+00 1.0000000
## 7368 4 1.000000e+00 1.0000000
## 7369 3 1.000000e+00 1.0000000
## 7370 13 1.000000e+00 1.0000000
## 7371 1 1.000000e+00 1.0000000
## 7372 3 1.000000e+00 1.0000000
## 7373 8 1.000000e+00 1.0000000
## 7374 10 1.000000e+00 1.0000000
## 7375 2 1.000000e+00 1.0000000
## 7376 5 1.000000e+00 1.0000000
## 7377 1 1.000000e+00 1.0000000
## 7378 17 1.000000e+00 1.0000000
## 7379 17 1.000000e+00 1.0000000
## 7380 4 1.000000e+00 1.0000000
## 7381 8 1.000000e+00 1.0000000
## 7382 1 1.000000e+00 1.0000000
## 7383 4 1.000000e+00 1.0000000
## 7384 4 1.000000e+00 1.0000000
## 7385 7 1.000000e+00 1.0000000
## 7386 3 1.000000e+00 1.0000000
## 7387 4 1.000000e+00 1.0000000
## 7388 3 1.000000e+00 1.0000000
## 7389 9 1.000000e+00 1.0000000
## 7390 36 1.000000e+00 1.0000000
## 7391 3 1.000000e+00 1.0000000
## 7392 12 1.000000e+00 1.0000000
## 7393 3 1.000000e+00 1.0000000
## 7394 13 1.000000e+00 1.0000000
## 7395 2 1.000000e+00 1.0000000
## 7396 10 1.000000e+00 1.0000000
## 7397 3 1.000000e+00 1.0000000
## 7398 12 1.000000e+00 1.0000000
## 7399 23 1.000000e+00 1.0000000
## 7400 1 1.000000e+00 1.0000000
## 7401 4 1.000000e+00 1.0000000
## 7402 19 1.000000e+00 1.0000000
## 7403 28 1.000000e+00 1.0000000
## 7404 53 1.000000e+00 1.0000000
## 7405 25 1.000000e+00 1.0000000
## 7406 14 1.000000e+00 1.0000000
## 7407 6 1.000000e+00 1.0000000
## 7408 20 1.000000e+00 1.0000000
## 7409 9 1.000000e+00 1.0000000
## 7410 12 1.000000e+00 1.0000000
## 7411 1 1.000000e+00 1.0000000
## 7412 35 1.000000e+00 1.0000000
## 7413 4 1.000000e+00 1.0000000
## 7414 2 1.000000e+00 1.0000000
## 7415 8 1.000000e+00 1.0000000
## 7416 7 1.000000e+00 1.0000000
## 7417 1 1.000000e+00 1.0000000
## 7418 5 1.000000e+00 1.0000000
## 7419 9 1.000000e+00 1.0000000
## 7420 4 1.000000e+00 1.0000000
## 7421 5 1.000000e+00 1.0000000
## 7422 11 1.000000e+00 1.0000000
## 7423 9 1.000000e+00 1.0000000
## 7424 3 1.000000e+00 1.0000000
## 7425 7 1.000000e+00 1.0000000
## 7426 17 1.000000e+00 1.0000000
## 7427 18 1.000000e+00 1.0000000
## 7428 8 1.000000e+00 1.0000000
## 7429 10 1.000000e+00 1.0000000
## 7430 1 1.000000e+00 1.0000000
## 7431 1 1.000000e+00 1.0000000
## 7432 4 1.000000e+00 1.0000000
## 7433 3 1.000000e+00 1.0000000
## 7434 1 1.000000e+00 1.0000000
## 7435 2 1.000000e+00 1.0000000
## 7436 1 1.000000e+00 1.0000000
## 7437 16 1.000000e+00 1.0000000
## 7438 7 1.000000e+00 1.0000000
## 7439 3 1.000000e+00 1.0000000
## 7440 2 1.000000e+00 1.0000000
## 7441 1 1.000000e+00 1.0000000
## 7442 8 1.000000e+00 1.0000000
## 7443 3 1.000000e+00 1.0000000
## 7444 5 1.000000e+00 1.0000000
## 7445 5 1.000000e+00 1.0000000
## 7446 17 1.000000e+00 1.0000000
## 7447 5 1.000000e+00 1.0000000
## 7448 2 1.000000e+00 1.0000000
## 7449 2 1.000000e+00 1.0000000
## 7450 10 1.000000e+00 1.0000000
## 7451 2 1.000000e+00 1.0000000
## 7452 5 1.000000e+00 1.0000000
## 7453 1 1.000000e+00 1.0000000
## 7454 1 1.000000e+00 1.0000000
## 7455 3 1.000000e+00 1.0000000
## 7456 3 1.000000e+00 1.0000000
## 7457 2 1.000000e+00 1.0000000
## 7458 1 1.000000e+00 1.0000000
## 7459 1 1.000000e+00 1.0000000
## 7460 15 1.000000e+00 1.0000000
## 7461 12 1.000000e+00 1.0000000
## 7462 9 1.000000e+00 1.0000000
## 7463 19 1.000000e+00 1.0000000
## 7464 5 1.000000e+00 1.0000000
## 7465 12 1.000000e+00 1.0000000
## 7466 2 1.000000e+00 1.0000000
## 7467 1 1.000000e+00 1.0000000
## 7468 2 1.000000e+00 1.0000000
## 7469 3 1.000000e+00 1.0000000
## 7470 1 1.000000e+00 1.0000000
## 7471 8 1.000000e+00 1.0000000
## 7472 28 1.000000e+00 1.0000000
## 7473 13 1.000000e+00 1.0000000
## 7474 9 1.000000e+00 1.0000000
## 7475 7 1.000000e+00 1.0000000
## 7476 1 1.000000e+00 1.0000000
## 7477 13 1.000000e+00 1.0000000
## 7478 17 1.000000e+00 1.0000000
## 7479 10 1.000000e+00 1.0000000
## 7480 13 1.000000e+00 1.0000000
## 7481 41 1.000000e+00 1.0000000
## 7482 8 1.000000e+00 1.0000000
## 7483 25 1.000000e+00 1.0000000
## 7484 9 1.000000e+00 1.0000000
## 7485 19 1.000000e+00 1.0000000
## 7486 15 1.000000e+00 1.0000000
## 7487 5 1.000000e+00 1.0000000
## 7488 8 1.000000e+00 1.0000000
## 7489 24 1.000000e+00 1.0000000
## 7490 2 1.000000e+00 1.0000000
## 7491 16 1.000000e+00 1.0000000
## 7492 9 1.000000e+00 1.0000000
## 7493 34 1.000000e+00 1.0000000
## 7494 3 1.000000e+00 1.0000000
## 7495 2 1.000000e+00 1.0000000
## 7496 3 1.000000e+00 1.0000000
## 7497 10 1.000000e+00 1.0000000
## 7498 3 1.000000e+00 1.0000000
## 7499 3 1.000000e+00 1.0000000
## 7500 77 1.000000e+00 1.0000000
## 7501 1 1.000000e+00 1.0000000
## 7502 4 1.000000e+00 1.0000000
## 7503 3 1.000000e+00 1.0000000
## 7504 2 1.000000e+00 1.0000000
## 7505 38 1.000000e+00 1.0000000
## 7506 6 1.000000e+00 1.0000000
## 7507 9 1.000000e+00 1.0000000
## 7508 1 1.000000e+00 1.0000000
## 7509 1 1.000000e+00 1.0000000
## 7510 4 1.000000e+00 1.0000000
## 7511 3 1.000000e+00 1.0000000
## 7512 1 1.000000e+00 1.0000000
## 7513 8 1.000000e+00 1.0000000
## 7514 3 1.000000e+00 1.0000000
## 7515 1 1.000000e+00 1.0000000
## 7516 9 1.000000e+00 1.0000000
## 7517 3 1.000000e+00 1.0000000
## 7518 1 1.000000e+00 1.0000000
## 7519 9 1.000000e+00 1.0000000
## 7520 5 1.000000e+00 1.0000000
## 7521 18 1.000000e+00 1.0000000
## 7522 1 1.000000e+00 1.0000000
## 7523 14 1.000000e+00 1.0000000
## 7524 7 1.000000e+00 1.0000000
## 7525 7 1.000000e+00 1.0000000
## 7526 3 1.000000e+00 1.0000000
## 7527 2 1.000000e+00 1.0000000
## 7528 2 1.000000e+00 1.0000000
## 7529 5 1.000000e+00 1.0000000
## 7530 1 1.000000e+00 1.0000000
## 7531 3 1.000000e+00 1.0000000
## 7532 4 1.000000e+00 1.0000000
## 7533 15 1.000000e+00 1.0000000
## 7534 24 1.000000e+00 1.0000000
## 7535 1 1.000000e+00 1.0000000
## 7536 31 1.000000e+00 1.0000000
## 7537 24 1.000000e+00 1.0000000
## 7538 2 1.000000e+00 1.0000000
## 7539 29 1.000000e+00 1.0000000
## 7540 4 1.000000e+00 1.0000000
## 7541 1 1.000000e+00 1.0000000
## 7542 1 1.000000e+00 1.0000000
## 7543 16 1.000000e+00 1.0000000
## 7544 4 1.000000e+00 1.0000000
## 7545 2 1.000000e+00 1.0000000
## 7546 3 1.000000e+00 1.0000000
## 7547 9 1.000000e+00 1.0000000
## 7548 6 1.000000e+00 1.0000000
## 7549 1 1.000000e+00 1.0000000
## 7550 11 1.000000e+00 1.0000000
## 7551 1 1.000000e+00 1.0000000
## 7552 12 1.000000e+00 1.0000000
## 7553 2 1.000000e+00 1.0000000
## 7554 2 1.000000e+00 1.0000000
## 7555 1 1.000000e+00 1.0000000
## 7556 9 1.000000e+00 1.0000000
## 7557 7 1.000000e+00 1.0000000
## 7558 14 1.000000e+00 1.0000000
## 7559 4 1.000000e+00 1.0000000
## 7560 4 1.000000e+00 1.0000000
## 7561 19 1.000000e+00 1.0000000
## 7562 26 1.000000e+00 1.0000000
## 7563 1 1.000000e+00 1.0000000
## 7564 2 1.000000e+00 1.0000000
## 7565 2 1.000000e+00 1.0000000
## 7566 1 1.000000e+00 1.0000000
## 7567 1 1.000000e+00 1.0000000
## 7568 3 1.000000e+00 1.0000000
## 7569 2 1.000000e+00 1.0000000
## 7570 17 1.000000e+00 1.0000000
## 7571 58 1.000000e+00 1.0000000
## 7572 4 1.000000e+00 1.0000000
## 7573 12 1.000000e+00 1.0000000
## 7574 8 1.000000e+00 1.0000000
## 7575 8 1.000000e+00 1.0000000
## 7576 1 1.000000e+00 1.0000000
## 7577 3 1.000000e+00 1.0000000
## 7578 14 1.000000e+00 1.0000000
## 7579 32 1.000000e+00 1.0000000
## 7580 29 1.000000e+00 1.0000000
## 7581 1 1.000000e+00 1.0000000
## 7582 40 1.000000e+00 1.0000000
## 7583 37 1.000000e+00 1.0000000
## 7584 20 1.000000e+00 1.0000000
## 7585 3 1.000000e+00 1.0000000
## 7586 51 1.000000e+00 1.0000000
## 7587 1 1.000000e+00 1.0000000
## 7588 1 1.000000e+00 1.0000000
## 7589 8 1.000000e+00 1.0000000
## 7590 26 1.000000e+00 1.0000000
## 7591 1 1.000000e+00 1.0000000
## 7592 12 1.000000e+00 1.0000000
## 7593 10 1.000000e+00 1.0000000
## 7594 2 1.000000e+00 1.0000000
## 7595 20 1.000000e+00 1.0000000
## 7596 15 1.000000e+00 1.0000000
## 7597 121 1.000000e+00 1.0000000
## 7598 2 1.000000e+00 1.0000000
## 7599 2 1.000000e+00 1.0000000
## 7600 2 1.000000e+00 1.0000000
## 7601 10 1.000000e+00 1.0000000
## 7602 11 1.000000e+00 1.0000000
## 7603 8 1.000000e+00 1.0000000
## 7604 2 1.000000e+00 1.0000000
## 7605 18 1.000000e+00 1.0000000
## 7606 2 1.000000e+00 1.0000000
## 7607 2 1.000000e+00 1.0000000
## 7608 7 1.000000e+00 1.0000000
## 7609 8 1.000000e+00 1.0000000
## 7610 12 1.000000e+00 1.0000000
## 7611 3 1.000000e+00 1.0000000
## 7612 7 1.000000e+00 1.0000000
## 7613 2 1.000000e+00 1.0000000
## 7614 3 1.000000e+00 1.0000000
## 7615 7 1.000000e+00 1.0000000
## 7616 1 1.000000e+00 1.0000000
## 7617 12 1.000000e+00 1.0000000
## 7618 7 1.000000e+00 1.0000000
## 7619 2 1.000000e+00 1.0000000
## 7620 2 1.000000e+00 1.0000000
## 7621 1 1.000000e+00 1.0000000
## 7622 3 1.000000e+00 1.0000000
## 7623 24 1.000000e+00 1.0000000
## 7624 11 1.000000e+00 1.0000000
## 7625 11 1.000000e+00 1.0000000
## 7626 25 1.000000e+00 1.0000000
## 7627 3 1.000000e+00 1.0000000
## 7628 5 1.000000e+00 1.0000000
## 7629 6 1.000000e+00 1.0000000
## 7630 18 1.000000e+00 1.0000000
## 7631 3 1.000000e+00 1.0000000
## 7632 1 1.000000e+00 1.0000000
## 7633 23 1.000000e+00 1.0000000
## 7634 10 1.000000e+00 1.0000000
## 7635 15 1.000000e+00 1.0000000
## 7636 8 1.000000e+00 1.0000000
## 7637 5 1.000000e+00 1.0000000
## 7638 2 1.000000e+00 1.0000000
## 7639 1 1.000000e+00 1.0000000
## 7640 3 1.000000e+00 1.0000000
## 7641 1 1.000000e+00 1.0000000
## 7642 7 1.000000e+00 1.0000000
## 7643 3 1.000000e+00 1.0000000
## 7644 2 1.000000e+00 1.0000000
## 7645 1 1.000000e+00 1.0000000
## 7646 4 1.000000e+00 1.0000000
## 7647 1 1.000000e+00 1.0000000
## 7648 7 1.000000e+00 1.0000000
## 7649 1 1.000000e+00 1.0000000
## 7650 5 1.000000e+00 1.0000000
## 7651 22 1.000000e+00 1.0000000
## 7652 5 1.000000e+00 1.0000000
## 7653 4 1.000000e+00 1.0000000
## 7654 17 1.000000e+00 1.0000000
## 7655 4 1.000000e+00 1.0000000
## 7656 7 1.000000e+00 1.0000000
## 7657 2 1.000000e+00 1.0000000
## 7658 9 1.000000e+00 1.0000000
## 7659 1 1.000000e+00 1.0000000
## 7660 2 1.000000e+00 1.0000000
## 7661 1 1.000000e+00 1.0000000
## 7662 3 1.000000e+00 1.0000000
## 7663 3 1.000000e+00 1.0000000
## 7664 23 1.000000e+00 1.0000000
## 7665 8 1.000000e+00 1.0000000
## 7666 14 1.000000e+00 1.0000000
## 7667 4 1.000000e+00 1.0000000
## 7668 1 1.000000e+00 1.0000000
## 7669 2 1.000000e+00 1.0000000
## 7670 1 1.000000e+00 1.0000000
## 7671 1 1.000000e+00 1.0000000
## 7672 2 1.000000e+00 1.0000000
## 7673 4 1.000000e+00 1.0000000
## 7674 3 1.000000e+00 1.0000000
## 7675 20 1.000000e+00 1.0000000
## 7676 2 1.000000e+00 1.0000000
## 7677 29 1.000000e+00 1.0000000
## 7678 21 1.000000e+00 1.0000000
## 7679 15 1.000000e+00 1.0000000
## 7680 23 1.000000e+00 1.0000000
## 7681 2 1.000000e+00 1.0000000
## 7682 1 1.000000e+00 1.0000000
## 7683 1 1.000000e+00 1.0000000
## 7684 1 1.000000e+00 1.0000000
## 7685 2 1.000000e+00 1.0000000
## 7686 2 1.000000e+00 1.0000000
## 7687 7 1.000000e+00 1.0000000
## 7688 4 1.000000e+00 1.0000000
## 7689 5 1.000000e+00 1.0000000
## 7690 1 1.000000e+00 1.0000000
## 7691 4 1.000000e+00 1.0000000
## 7692 2 1.000000e+00 1.0000000
## [ reached 'max' / getOption("max.print") -- omitted 5467 rows ]
##
## $`GO Cellular Component`
## ID
## 1 GO:0044428
## 2 GO:0031981
## 3 GO:0071013
## 4 GO:0043231
## 5 GO:0070013
## 6 GO:0005622
## 7 GO:0070937
## 8 GO:0005654
## 9 GO:0005681
## 10 GO:0000307
## 11 GO:0048188
## 12 GO:0031305
## 13 GO:0030529
## 14 GO:1990904
## 15 GO:0044424
## 16 GO:0044451
## 17 GO:0044446
## 18 GO:0012507
## 19 GO:0000793
## 20 GO:0044422
## 21 GO:0061617
## 22 GO:0071986
## 23 GO:0016605
## 24 GO:0016604
## 25 GO:0043229
## 26 GO:0000228
## 27 GO:0005634
## 28 GO:0031965
## 29 GO:0005694
## 30 GO:0005730
## 31 GO:0005671
## 32 GO:0000794
## 33 GO:0034708
## 34 GO:0098800
## 35 GO:0043234
## 36 GO:0010494
## 37 GO:0005666
## 38 GO:0005683
## 39 GO:0005726
## 40 GO:0035371
## 41 GO:0098577
## 42 GO:1990498
## 43 GO:0044454
## 44 GO:0016607
## 45 GO:0000803
## 46 GO:0030426
## 47 GO:0030427
## 48 GO:0030532
## 49 GO:0035097
## 50 GO:0044427
## 51 GO:0099023
## 52 GO:0000145
## 53 GO:0005662
## 54 GO:0030137
## 55 GO:0030894
## 56 GO:0031595
## 57 GO:0043293
## 58 GO:0043596
## 59 GO:0043601
## 60 GO:0044666
## 61 GO:0070435
## 62 GO:0071204
## 63 GO:0043227
## 64 GO:0005770
## 65 GO:0000776
## 66 GO:0044445
## 67 GO:0005758
## 68 GO:0031970
## 69 GO:0043240
## 70 GO:0005635
## 71 GO:0044455
## 72 GO:0032991
## 73 GO:0000790
## 74 GO:0005689
## 75 GO:0005747
## 76 GO:0070724
## 77 GO:1990712
## 78 GO:1990752
## 79 GO:0030134
## 80 GO:1904724
## 81 GO:1990234
## 82 GO:0000123
## 83 GO:0031248
## 84 GO:0097386
## 85 GO:1902494
## 86 GO:0031902
## 87 GO:0035770
## 88 GO:0036464
## 89 GO:0098573
## 90 GO:0098687
## 91 GO:0000785
## 92 GO:0001939
## 93 GO:0032592
## 94 GO:0005840
## 95 GO:0005778
## 96 GO:0022627
## 97 GO:0071011
## 98 GO:0000974
## 99 GO:0016589
## 100 GO:0030127
## 101 GO:0031010
## 102 GO:0036128
## 103 GO:0042788
## 104 GO:0046540
## 105 GO:0071339
## 106 GO:0097165
## 107 GO:0097526
## 108 GO:0000775
## 109 GO:0098798
## 110 GO:0031967
## 111 GO:0098796
## 112 GO:0005791
## 113 GO:0022626
## 114 GO:0005697
## 115 GO:0045120
## 116 GO:1902562
## 117 GO:1990023
## 118 GO:0000428
## 119 GO:0030880
## 120 GO:0055029
## 121 GO:0000777
## 122 GO:0000779
## 123 GO:0032993
## 124 GO:1902911
## 125 GO:0005739
## 126 GO:0000805
## 127 GO:0001740
## 128 GO:0005643
## 129 GO:0015030
## 130 GO:0031597
## 131 GO:0032040
## 132 GO:0043196
## 133 GO:0044439
## 134 GO:0042470
## 135 GO:0061695
## 136 GO:0005623
## 137 GO:0044464
## 138 GO:0000788
## 139 GO:1902554
## 140 GO:0000124
## 141 GO:0008023
## 142 GO:0031080
## 143 GO:0031462
## 144 GO:0042645
## 145 GO:0097525
## 146 GO:1990622
## 147 GO:1990769
## 148 GO:0001669
## 149 GO:0000139
## 150 GO:0043226
## 151 GO:0044306
## 152 GO:0000784
## 153 GO:0001401
## 154 GO:0002199
## 155 GO:0005685
## 156 GO:0005686
## 157 GO:0005687
## 158 GO:0005744
## 159 GO:0005785
## 160 GO:0005786
## 161 GO:0005832
## 162 GO:0005847
## 163 GO:0005849
## 164 GO:0030008
## 165 GO:0030126
## 166 GO:0030663
## 167 GO:0031680
## 168 GO:0034271
## 169 GO:0034272
## 170 GO:0034715
## 171 GO:0035032
## 172 GO:0035061
## 173 GO:0035861
## 174 GO:0048500
## 175 GO:0070762
## 176 GO:0071001
## 177 GO:0097413
## 178 GO:0097449
## 179 GO:0097452
## 180 GO:0098536
## 181 GO:1990130
## 182 GO:0044431
## 183 GO:0031461
## 184 GO:0034399
## 185 GO:0031519
## 186 GO:0035068
## 187 GO:0070578
## 188 GO:0070618
## 189 GO:1902555
## 190 GO:0019866
## 191 GO:0000781
## 192 GO:0016592
## 193 GO:0035580
## 194 GO:0035578
## 195 GO:0044429
## 196 GO:0030864
## 197 GO:0000151
## 198 GO:0000242
## 199 GO:0005657
## 200 GO:0030914
## 201 GO:0043657
## 202 GO:0070461
## 203 GO:0070847
## 204 GO:0042581
## 205 GO:0005746
## 206 GO:0070469
## 207 GO:0098803
## 208 GO:0044448
## 209 GO:0005777
## 210 GO:0035253
## 211 GO:0016363
## 212 GO:0030863
## 213 GO:0043679
## 214 GO:0005794
## 215 GO:0098797
## 216 GO:0043209
## 217 GO:0010008
## 218 GO:0005743
## 219 GO:0042582
## 220 GO:0070603
## 221 GO:0005759
## 222 GO:0005637
## 223 GO:1905368
## 224 GO:1990204
## 225 GO:0090575
## 226 GO:0005813
## 227 GO:0005881
## 228 GO:0015935
## 229 GO:0033116
## 230 GO:0035145
## 231 GO:0035579
## 232 GO:0044798
## 233 GO:0017119
## 234 GO:0031465
## 235 GO:0031941
## 236 GO:0035748
## 237 GO:0043203
## 238 GO:0045179
## 239 GO:0000164
## 240 GO:0000220
## 241 GO:0000407
## 242 GO:0005682
## 243 GO:0005779
## 244 GO:0016593
## 245 GO:0016602
## 246 GO:0032593
## 247 GO:0033179
## 248 GO:0034709
## 249 GO:0034719
## 250 GO:0045239
## 251 GO:0070765
## 252 GO:0071014
## 253 GO:1990429
## 254 GO:1990907
## 255 GO:0044391
## 256 GO:0044440
## 257 GO:0005814
## 258 GO:0030684
## 259 GO:0005815
## 260 GO:0031463
## 261 GO:0000502
## 262 GO:0019005
## 263 GO:0031464
## 264 GO:1905369
## 265 GO:0031301
## 266 GO:0030120
## 267 GO:0051233
## 268 GO:0014704
## 269 GO:0005798
## 270 GO:0022625
## 271 GO:0030176
## 272 GO:0031227
## 273 GO:0044322
## 274 GO:0072562
## 275 GO:0031300
## 276 GO:0016591
## 277 GO:0030117
## 278 GO:0030670
## 279 GO:0034774
## 280 GO:0044450
## 281 GO:0030018
## 282 GO:0031674
## 283 GO:0000346
## 284 GO:0000444
## 285 GO:0000812
## 286 GO:0000940
## 287 GO:0005749
## 288 GO:0008250
## 289 GO:0008328
## 290 GO:0017101
## 291 GO:0030904
## 292 GO:0031264
## 293 GO:0031265
## 294 GO:0032281
## 295 GO:0033177
## 296 GO:0034098
## 297 GO:0000932
## 298 GO:0005795
## 299 GO:0015934
## 300 GO:0098799
## 301 GO:0005740
## 302 GO:0005667
## 303 GO:0001725
## 304 GO:0005776
## 305 GO:0005844
## 306 GO:0016514
## 307 GO:0030286
## 308 GO:0032432
## 309 GO:0036057
## 310 GO:0043198
## 311 GO:0071203
## 312 GO:0071564
## 313 GO:0071565
## 314 GO:0090544
## 315 GO:0097228
## 316 GO:0097346
## 317 GO:1904813
## 318 GO:0005923
## 319 GO:0070160
## 320 GO:0070821
## 321 GO:0016234
## 322 GO:0043232
## 323 GO:0030496
## 324 GO:0098791
## 325 GO:0005924
## 326 GO:0005925
## 327 GO:0030055
## 328 GO:0012505
## 329 GO:0030027
## 330 GO:0002079
## 331 GO:0002080
## 332 GO:0016469
## 333 GO:0030867
## 334 GO:0044216
## 335 GO:0005876
## 336 GO:0008287
## 337 GO:0016235
## 338 GO:0080008
## 339 GO:0005783
## 340 GO:0000786
## 341 GO:0005793
## 342 GO:0044815
## 343 GO:0031983
## 344 GO:0060205
## 345 GO:0000322
## 346 GO:0005641
## 347 GO:0005753
## 348 GO:0005968
## 349 GO:0033276
## 350 GO:0035102
## 351 GO:0045259
## 352 GO:0070971
## 353 GO:0072559
## 354 GO:0043296
## 355 GO:0043204
## 356 GO:0005765
## 357 GO:0031090
## 358 GO:0044297
## 359 GO:0032580
## 360 GO:0044304
## 361 GO:0099738
## 362 GO:0030315
## 363 GO:0098802
## 364 GO:0005802
## 365 GO:0030662
## 366 GO:0001917
## 367 GO:0005762
## 368 GO:0005788
## 369 GO:0005775
## 370 GO:0030135
## 371 GO:0030122
## 372 GO:0030128
## 373 GO:0030132
## 374 GO:0036053
## 375 GO:0042383
## 376 GO:0031984
## 377 GO:0030016
## 378 GO:0030017
## 379 GO:0043292
## 380 GO:0044449
## 381 GO:0044437
## 382 GO:0005938
## 383 GO:0045171
## 384 GO:0005796
## 385 GO:0005875
## 386 GO:0031306
## 387 GO:0031901
## 388 GO:0005742
## 389 GO:0005871
## 390 GO:0030687
## 391 GO:0044444
## 392 GO:0015629
## 393 GO:0098793
## 394 GO:0002102
## 395 GO:0005921
## 396 GO:0005922
## 397 GO:0008290
## 398 GO:0016442
## 399 GO:0016471
## 400 GO:0030660
## 401 GO:0031011
## 402 GO:0031332
## 403 GO:0032039
## 404 GO:0033176
## 405 GO:0034506
## 406 GO:0035859
## 407 GO:0061700
## 408 GO:0065010
## 409 GO:0005912
## 410 GO:0005737
## 411 GO:0005829
## 412 GO:0030057
## 413 GO:0030119
## 414 GO:0030131
## 415 GO:0046930
## 416 GO:0031985
## 417 GO:0060170
## 418 GO:0070161
## 419 GO:0031966
## 420 GO:0070820
## 421 GO:0005774
## 422 GO:0044291
## 423 GO:0031252
## 424 GO:0001750
## 425 GO:0031307
## 426 GO:0000015
## 427 GO:0002116
## 428 GO:0005669
## 429 GO:0014731
## 430 GO:0030877
## 431 GO:0031258
## 432 GO:0031526
## 433 GO:0031932
## 434 GO:0035577
## 435 GO:0038201
## 436 GO:0042105
## 437 GO:0061702
## 438 GO:0097470
## 439 GO:1904115
## 440 GO:0000159
## 441 GO:0001533
## 442 GO:0031093
## 443 GO:0030141
## 444 GO:0042622
## 445 GO:0030666
## 446 GO:0097223
## 447 GO:0009925
## 448 GO:0030173
## 449 GO:0031228
## 450 GO:0045121
## 451 GO:0098857
## 452 GO:0005789
## 453 GO:0042175
## 454 GO:0030669
## 455 GO:0045334
## 456 GO:0097733
## 457 GO:0031225
## 458 GO:0005913
## 459 GO:0036126
## 460 GO:0000792
## 461 GO:0005639
## 462 GO:0005903
## 463 GO:0031588
## 464 GO:0032391
## 465 GO:0033270
## 466 GO:0044453
## 467 GO:0048786
## 468 GO:1902937
## 469 GO:0030658
## 470 GO:0030667
## 471 GO:0045178
## 472 GO:0043025
## 473 GO:0005761
## 474 GO:0044232
## 475 GO:0044233
## 476 GO:0045335
## 477 GO:0031514
## 478 GO:0005768
## 479 GO:0016324
## 480 GO:0072686
## 481 GO:0005741
## 482 GO:0019867
## 483 GO:0031968
## 484 GO:0000152
## 485 GO:0005801
## 486 GO:0016328
## 487 GO:0031209
## 488 GO:0035976
## 489 GO:0046658
## 490 GO:0055038
## 491 GO:0099568
## 492 GO:0005834
## 493 GO:0005942
## 494 GO:0031091
## 495 GO:0005884
## 496 GO:0031672
## 497 GO:0005764
## 498 GO:0098588
## 499 GO:0048471
## 500 GO:0016323
## 501 GO:0098589
## 502 GO:0044456
## 503 GO:0033267
## 504 GO:0001650
## 505 GO:0005719
## 506 GO:0005750
## 507 GO:0035869
## 508 GO:0042101
## 509 GO:0042629
## 510 GO:0070069
## 511 GO:0005901
## 512 GO:0044853
## 513 GO:0097730
## 514 GO:0005891
## 515 GO:0030125
## 516 GO:0034704
## 517 GO:0090533
## 518 GO:0098533
## 519 GO:1904949
## 520 GO:0044432
## 521 GO:0044463
## 522 GO:0045211
## 523 GO:0005773
## 524 GO:0030118
## 525 GO:0042641
## 526 GO:0017053
## 527 GO:0000791
## 528 GO:0031143
## 529 GO:0097546
## 530 GO:0097708
## 531 GO:0036477
## 532 GO:0043202
## 533 GO:0031430
## 534 GO:0030139
## 535 GO:0005905
## 536 GO:0031410
## 537 GO:0005929
## 538 GO:0045177
## 539 GO:0001772
## 540 GO:0030175
## 541 GO:0031594
## 542 GO:0044452
## 543 GO:0043235
## 544 GO:0099503
## 545 GO:0097060
## 546 GO:0034707
## 547 GO:0043194
## 548 GO:0097038
## 549 GO:0044441
## 550 GO:0005769
## 551 GO:0005890
## 552 GO:0005930
## 553 GO:0031201
## 554 GO:0097014
## 555 GO:0098862
## 556 GO:0009897
## 557 GO:0070062
## 558 GO:0043230
## 559 GO:1903561
## 560 GO:0005604
## 561 GO:0045111
## 562 GO:0099080
## 563 GO:0099081
## 564 GO:0099512
## 565 GO:0045202
## 566 GO:0044433
## 567 GO:0014069
## 568 GO:0030133
## 569 GO:0032279
## 570 GO:0098984
## 571 GO:0099572
## 572 GO:0030424
## 573 GO:0031253
## 574 GO:0005882
## 575 GO:0036064
## 576 GO:0055037
## 577 GO:0005874
## 578 GO:0032838
## 579 GO:0005615
## 580 GO:0097458
## 581 GO:0031256
## 582 GO:0043005
## 583 GO:0005819
## 584 GO:0032588
## 585 GO:0043197
## 586 GO:0044309
## 587 GO:0001726
## 588 GO:0000922
## 589 GO:0030136
## 590 GO:0098805
## 591 GO:0101003
## 592 GO:0005911
## 593 GO:0098794
## 594 GO:0032587
## 595 GO:0030659
## 596 GO:0012506
## 597 GO:0044421
## 598 GO:0030054
## 599 GO:0031982
## 600 GO:0034702
## 601 GO:0044420
## 602 GO:0030665
## 603 GO:0005576
## 604 GO:1990351
## 605 GO:0015630
## 606 GO:0005578
## 607 GO:0034703
## 608 GO:0099513
## 609 GO:0030425
## 610 GO:0044430
## 611 GO:0009986
## 612 GO:1902495
## 613 GO:0042995
## 614 GO:0008076
## 615 GO:0034705
## 616 GO:0031012
## 617 GO:0098858
## 618 GO:0098590
## 619 GO:0031234
## 620 GO:0005856
## 621 GO:0019897
## 622 GO:0019898
## 623 GO:0005887
## 624 GO:0031226
## 625 GO:0009898
## 626 GO:0098562
## 627 GO:0098552
## 628 GO:0016021
## 629 GO:0031224
## 630 GO:0016020
## 631 GO:0044459
## 632 GO:0044425
## 633 GO:0005886
## 634 GO:0071944
## 635 GO:0000109
## 636 GO:0000110
## 637 GO:0000111
## 638 GO:0000118
## 639 GO:0000120
## 640 GO:0000125
## 641 GO:0000126
## 642 GO:0000127
## 643 GO:0000137
## 644 GO:0000138
## 645 GO:0000153
## 646 GO:0000172
## 647 GO:0000176
## 648 GO:0000177
## 649 GO:0000178
## 650 GO:0000214
## 651 GO:0000221
## 652 GO:0000229
## 653 GO:0000235
## 654 GO:0000243
## 655 GO:0000262
## 656 GO:0000274
## 657 GO:0000275
## 658 GO:0000276
## 659 GO:0000306
## 660 GO:0000308
## 661 GO:0000333
## 662 GO:0000408
## 663 GO:0000421
## 664 GO:0000438
## 665 GO:0000439
## 666 GO:0000445
## 667 GO:0000506
## 668 GO:0000778
## 669 GO:0000780
## 670 GO:0000783
## 671 GO:0000789
## 672 GO:0000795
## 673 GO:0000796
## 674 GO:0000797
## 675 GO:0000798
## 676 GO:0000799
## 677 GO:0000800
## 678 GO:0000801
## 679 GO:0000802
## 680 GO:0000806
## 681 GO:0000811
## 682 GO:0000813
## 683 GO:0000814
## 684 GO:0000815
## 685 GO:0000818
## 686 GO:0000835
## 687 GO:0000836
## 688 GO:0000839
## 689 GO:0000923
## 690 GO:0000930
## 691 GO:0000938
## 692 GO:0000939
## 693 GO:0000941
## 694 GO:0000942
## 695 GO:0001405
## 696 GO:0001518
## 697 GO:0001520
## 698 GO:0001527
## 699 GO:0001534
## 700 GO:0001536
## 701 GO:0001651
## 702 GO:0001652
## 703 GO:0001673
## 704 GO:0001674
## 705 GO:0001739
## 706 GO:0001741
## 707 GO:0001891
## 708 GO:0001931
## 709 GO:0001940
## 710 GO:0002081
## 711 GO:0002133
## 712 GO:0002139
## 713 GO:0002141
## 714 GO:0002142
## 715 GO:0002169
## 716 GO:0002177
## 717 GO:0002178
## 718 GO:0002189
## 719 GO:0002193
## 720 GO:0002944
## 721 GO:0002945
## 722 GO:0002947
## 723 GO:0005577
## 724 GO:0005579
## 725 GO:0005581
## 726 GO:0005582
## 727 GO:0005583
## 728 GO:0005584
## 729 GO:0005585
## 730 GO:0005586
## 731 GO:0005587
## 732 GO:0005588
## 733 GO:0005589
## 734 GO:0005590
## 735 GO:0005591
## 736 GO:0005592
## 737 GO:0005593
## 738 GO:0005594
## 739 GO:0005595
## 740 GO:0005596
## 741 GO:0005597
## 742 GO:0005600
## 743 GO:0005602
## 744 GO:0005605
## 745 GO:0005606
## 746 GO:0005607
## 747 GO:0005608
## 748 GO:0005610
## 749 GO:0005614
## 750 GO:0005618
## 751 GO:0005638
## 752 GO:0005640
## 753 GO:0005642
## 754 GO:0005652
## 755 GO:0005655
## 756 GO:0005656
## 757 GO:0005658
## 758 GO:0005663
## 759 GO:0005664
## 760 GO:0005665
## 761 GO:0005668
## 762 GO:0005672
## 763 GO:0005673
## 764 GO:0005674
## 765 GO:0005675
## 766 GO:0005677
## 767 GO:0005680
## 768 GO:0005684
## 769 GO:0005688
## 770 GO:0005690
## 771 GO:0005691
## 772 GO:0005712
## 773 GO:0005713
## 774 GO:0005715
## 775 GO:0005720
## 776 GO:0005721
## 777 GO:0005724
## 778 GO:0005731
## 779 GO:0005732
## 780 GO:0005736
## 781 GO:0005745
## 782 GO:0005751
## 783 GO:0005754
## 784 GO:0005757
## 785 GO:0005760
## 786 GO:0005763
## 787 GO:0005767
## 788 GO:0005771
## 789 GO:0005782
## 790 GO:0005784
## 791 GO:0005787
## 792 GO:0005790
## 793 GO:0005797
## 794 GO:0005811
## 795 GO:0005826
## 796 GO:0005827
## 797 GO:0005828
## 798 GO:0005833
## 799 GO:0005838
## 800 GO:0005839
## 801 GO:0005845
## 802 GO:0005846
## 803 GO:0005850
## 804 GO:0005851
## 805 GO:0005852
## 806 GO:0005853
## 807 GO:0005854
## 808 GO:0005858
## 809 GO:0005859
## 810 GO:0005861
## 811 GO:0005862
## 812 GO:0005863
## 813 GO:0005865
## 814 GO:0005868
## 815 GO:0005869
## 816 GO:0005873
## 817 GO:0005879
## 818 GO:0005883
## 819 GO:0005885
## 820 GO:0005889
## 821 GO:0005892
## 822 GO:0005895
## 823 GO:0005896
## 824 GO:0005898
## 825 GO:0005899
## 826 GO:0005900
## 827 GO:0005902
## 828 GO:0005914
## 829 GO:0005915
## 830 GO:0005916
## 831 GO:0005927
## 832 GO:0005940
## 833 GO:0005943
## 834 GO:0005944
## 835 GO:0005945
## 836 GO:0005947
## 837 GO:0005952
## 838 GO:0005953
## 839 GO:0005954
## 840 GO:0005955
## 841 GO:0005956
## 842 GO:0005958
## 843 GO:0005960
## 844 GO:0005964
## 845 GO:0005965
## 846 GO:0005967
## 847 GO:0005969
## 848 GO:0005971
## 849 GO:0008021
## 850 GO:0008024
## 851 GO:0008043
## 852 GO:0008074
## 853 GO:0008091
## 854 GO:0008180
## 855 GO:0008274
## 856 GO:0008275
## 857 GO:0008278
## 858 GO:0008282
## 859 GO:0008305
## 860 GO:0008352
## 861 GO:0008385
## 862 GO:0008537
## 863 GO:0008540
## 864 GO:0008541
## 865 GO:0008622
## 866 GO:0008623
## 867 GO:0009328
## 868 GO:0009330
## 869 GO:0009331
## 870 GO:0009346
## 871 GO:0009353
## 872 GO:0009360
## 873 GO:0009368
## 874 GO:0009841
## 875 GO:0010009
## 876 GO:0010369
## 877 GO:0010370
## 878 GO:0012510
## 879 GO:0014701
## 880 GO:0014705
## 881 GO:0014801
## 882 GO:0014802
## 883 GO:0014804
## 884 GO:0016010
## 885 GO:0016011
## 886 GO:0016012
## 887 GO:0016013
## 888 GO:0016028
## 889 GO:0016035
## 890 GO:0016222
## 891 GO:0016272
## 892 GO:0016281
## 893 GO:0016282
## 894 GO:0016327
## 895 GO:0016342
## 896 GO:0016459
## 897 GO:0016460
## 898 GO:0016461
## 899 GO:0016507
## 900 GO:0016528
## 901 GO:0016529
## 902 GO:0016533
## 903 GO:0016580
## 904 GO:0016581
## 905 GO:0016586
## 906 GO:0016590
## 907 GO:0016600
## 908 GO:0016935
## 909 GO:0016938
## 910 GO:0016939
## 911 GO:0016942
## 912 GO:0017059
## 913 GO:0017071
## 914 GO:0017090
## 915 GO:0017102
## 916 GO:0017109
## 917 GO:0017133
## 918 GO:0017146
## 919 GO:0017177
## 920 GO:0018444
## 921 GO:0019008
## 922 GO:0019028
## 923 GO:0019031
## 924 GO:0019034
## 925 GO:0019035
## 926 GO:0019185
## 927 GO:0019773
## 928 GO:0019774
## 929 GO:0019814
## 930 GO:0019815
## 931 GO:0019907
## 932 GO:0019908
## 933 GO:0020003
## 934 GO:0020005
## 935 GO:0020018
## 936 GO:0022624
## 937 GO:0030014
## 938 GO:0030015
## 939 GO:0030056
## 940 GO:0030061
## 941 GO:0030062
## 942 GO:0030121
## 943 GO:0030123
## 944 GO:0030124
## 945 GO:0030130
## 946 GO:0030140
## 947 GO:0030285
## 948 GO:0030289
## 949 GO:0030312
## 950 GO:0030314
## 951 GO:0030478
## 952 GO:0030485
## 953 GO:0030526
## 954 GO:0030672
## 955 GO:0030673
## 956 GO:0030677
## 957 GO:0030678
## 958 GO:0030681
## 959 GO:0030686
## 960 GO:0030688
## 961 GO:0030689
## 962 GO:0030690
## 963 GO:0030691
## 964 GO:0030692
## 965 GO:0030849
## 966 GO:0030868
## 967 GO:0030870
## 968 GO:0030891
## 969 GO:0030892
## 970 GO:0030893
## 971 GO:0030895
## 972 GO:0030896
## 973 GO:0030897
## 974 GO:0030905
## 975 GO:0030906
## 976 GO:0030915
## 977 GO:0030934
## 978 GO:0030956
## 979 GO:0030981
## 980 GO:0030990
## 981 GO:0030991
## 982 GO:0030992
## 983 GO:0031021
## 984 GO:0031045
## 985 GO:0031074
## 986 GO:0031082
## 987 GO:0031083
## 988 GO:0031084
## 989 GO:0031085
## 990 GO:0031088
## 991 GO:0031089
## 992 GO:0031092
## 993 GO:0031094
## 994 GO:0031095
## 995 GO:0031105
## 996 GO:0031166
## 997 GO:0031205
## 998 GO:0031213
## 999 GO:0031232
## 1000 GO:0031233
## 1001 GO:0031235
## 1002 GO:0031251
## 1003 GO:0031259
## 1004 GO:0031260
## 1005 GO:0031261
## 1006 GO:0031262
## 1007 GO:0031298
## 1008 GO:0031302
## 1009 GO:0031309
## 1010 GO:0031312
## 1011 GO:0031313
## 1012 GO:0031314
## 1013 GO:0031315
## 1014 GO:0031362
## 1015 GO:0031371
## 1016 GO:0031372
## 1017 GO:0031379
## 1018 GO:0031380
## 1019 GO:0031389
## 1020 GO:0031390
## 1021 GO:0031414
## 1022 GO:0031415
## 1023 GO:0031416
## 1024 GO:0031417
## 1025 GO:0031428
## 1026 GO:0031429
## 1027 GO:0031436
## 1028 GO:0031466
## 1029 GO:0031467
## 1030 GO:0031475
## 1031 GO:0031477
## 1032 GO:0031501
## 1033 GO:0031510
## 1034 GO:0031515
## 1035 GO:0031523
## 1036 GO:0031527
## 1037 GO:0031528
## 1038 GO:0031533
## 1039 GO:0031592
## 1040 GO:0031616
## 1041 GO:0031618
## 1042 GO:0031673
## 1043 GO:0031838
## 1044 GO:0031904
## 1045 GO:0031905
## 1046 GO:0031906
## 1047 GO:0031931
## 1048 GO:0031933
## 1049 GO:0032002
## 1050 GO:0032009
## 1051 GO:0032010
## 1052 GO:0032021
## 1053 GO:0032044
## 1054 GO:0032045
## 1055 GO:0032059
## 1056 GO:0032116
## 1057 GO:0032127
## 1058 GO:0032133
## 1059 GO:0032144
## 1060 GO:0032154
## 1061 GO:0032155
## 1062 GO:0032156
## 1063 GO:0032173
## 1064 GO:0032280
## 1065 GO:0032299
## 1066 GO:0032300
## 1067 GO:0032301
## 1068 GO:0032302
## 1069 GO:0032311
## 1070 GO:0032389
## 1071 GO:0032419
## 1072 GO:0032420
## 1073 GO:0032421
## 1074 GO:0032426
## 1075 GO:0032433
## 1076 GO:0032437
## 1077 GO:0032444
## 1078 GO:0032449
## 1079 GO:0032473
## 1080 GO:0032541
## 1081 GO:0032545
## 1082 GO:0032584
## 1083 GO:0032585
## 1084 GO:0032589
## 1085 GO:0032590
## 1086 GO:0032591
## 1087 GO:0032777
## 1088 GO:0032783
## 1089 GO:0032797
## 1090 GO:0032798
## 1091 GO:0032806
## 1092 GO:0032807
## 1093 GO:0032809
## 1094 GO:0032839
## 1095 GO:0032937
## 1096 GO:0032982
## 1097 GO:0032983
## 1098 GO:0032994
## 1099 GO:0032996
## 1100 GO:0032998
## 1101 GO:0033010
## 1102 GO:0033011
## 1103 GO:0033017
## 1104 GO:0033018
## 1105 GO:0033061
## 1106 GO:0033063
## 1107 GO:0033065
## 1108 GO:0033093
## 1109 GO:0033106
## 1110 GO:0033150
## 1111 GO:0033162
## 1112 GO:0033165
## 1113 GO:0033167
## 1114 GO:0033178
## 1115 GO:0033180
## 1116 GO:0033185
## 1117 GO:0033186
## 1118 GO:0033193
## 1119 GO:0033256
## 1120 GO:0033257
## 1121 GO:0033263
## 1122 GO:0033268
## 1123 GO:0033269
## 1124 GO:0033290
## 1125 GO:0033291
## 1126 GO:0033391
## 1127 GO:0033503
## 1128 GO:0033553
## 1129 GO:0033557
## 1130 GO:0033565
## 1131 GO:0033588
## 1132 GO:0033593
## 1133 GO:0033596
## 1134 GO:0033597
## 1135 GO:0033643
## 1136 GO:0033646
## 1137 GO:0033648
## 1138 GO:0033655
## 1139 GO:0033768
## 1140 GO:0034045
## 1141 GO:0034066
## 1142 GO:0034245
## 1143 GO:0034274
## 1144 GO:0034358
## 1145 GO:0034359
## 1146 GO:0034360
## 1147 GO:0034361
## 1148 GO:0034362
## 1149 GO:0034363
## 1150 GO:0034364
## 1151 GO:0034365
## 1152 GO:0034366
## 1153 GO:0034388
## 1154 GO:0034423
## 1155 GO:0034448
## 1156 GO:0034451
## 1157 GO:0034455
## 1158 GO:0034456
## 1159 GO:0034457
## 1160 GO:0034464
## 1161 GO:0034466
## 1162 GO:0034515
## 1163 GO:0034518
## 1164 GO:0034657
## 1165 GO:0034663
## 1166 GO:0034665
## 1167 GO:0034666
## 1168 GO:0034667
## 1169 GO:0034668
## 1170 GO:0034669
## 1171 GO:0034673
## 1172 GO:0034676
## 1173 GO:0034677
## 1174 GO:0034678
## 1175 GO:0034679
## 1176 GO:0034680
## 1177 GO:0034681
## 1178 GO:0034683
## 1179 GO:0034684
## 1180 GO:0034685
## 1181 GO:0034686
## 1182 GO:0034687
## 1183 GO:0034688
## 1184 GO:0034693
## 1185 GO:0034706
## 1186 GO:0034718
## 1187 GO:0034750
## 1188 GO:0034751
## 1189 GO:0034752
## 1190 GO:0034753
## 1191 GO:0034777
## 1192 GO:0034991
## 1193 GO:0034993
## 1194 GO:0034998
## 1195 GO:0035003
## 1196 GO:0035098
## 1197 GO:0035101
## 1198 GO:0035189
## 1199 GO:0035267
## 1200 GO:0035327
## 1201 GO:0035339
## 1202 GO:0035354
## 1203 GO:0035355
## 1204 GO:0035363
## 1205 GO:0035370
## 1206 GO:0035517
## 1207 GO:0035525
## 1208 GO:0035631
## 1209 GO:0035686
## 1210 GO:0035692
## 1211 GO:0035693
## 1212 GO:0035749
## 1213 GO:0035805
## 1214 GO:0035838
## 1215 GO:0035841
## 1216 GO:0035867
## 1217 GO:0035985
## 1218 GO:0036019
## 1219 GO:0036020
## 1220 GO:0036021
## 1221 GO:0036024
## 1222 GO:0036025
## 1223 GO:0036026
## 1224 GO:0036027
## 1225 GO:0036028
## 1226 GO:0036029
## 1227 GO:0036030
## 1228 GO:0036038
## 1229 GO:0036117
## 1230 GO:0036156
## 1231 GO:0036157
## 1232 GO:0036195
## 1233 GO:0036266
## 1234 GO:0036284
## 1235 GO:0036379
## 1236 GO:0036396
## 1237 GO:0036398
## 1238 GO:0036449
## 1239 GO:0036452
## 1240 GO:0036457
## 1241 GO:0036488
## 1242 GO:0036501
## 1243 GO:0036502
## 1244 GO:0036513
## 1245 GO:0038037
## 1246 GO:0038038
## 1247 GO:0038039
## 1248 GO:0042022
## 1249 GO:0042272
## 1250 GO:0042382
## 1251 GO:0042405
## 1252 GO:0042406
## 1253 GO:0042555
## 1254 GO:0042564
## 1255 GO:0042565
## 1256 GO:0042567
## 1257 GO:0042568
## 1258 GO:0042571
## 1259 GO:0042575
## 1260 GO:0042583
## 1261 GO:0042584
## 1262 GO:0042585
## 1263 GO:0042587
## 1264 GO:0042588
## 1265 GO:0042589
## 1266 GO:0042599
## 1267 GO:0042611
## 1268 GO:0042612
## 1269 GO:0042613
## 1270 GO:0042627
## 1271 GO:0042643
## 1272 GO:0042719
## 1273 GO:0042720
## 1274 GO:0042721
## 1275 GO:0042734
## 1276 GO:0042765
## 1277 GO:0042824
## 1278 GO:0042825
## 1279 GO:0042827
## 1280 GO:0043020
## 1281 GO:0043033
## 1282 GO:0043034
## 1283 GO:0043073
## 1284 GO:0043083
## 1285 GO:0043159
## 1286 GO:0043160
## 1287 GO:0043186
## 1288 GO:0043190
## 1289 GO:0043195
## 1290 GO:0043218
## 1291 GO:0043219
## 1292 GO:0043220
## 1293 GO:0043224
## 1294 GO:0043256
## 1295 GO:0043257
## 1296 GO:0043259
## 1297 GO:0043260
## 1298 GO:0043265
## 1299 GO:0043291
## 1300 GO:0043509
## 1301 GO:0043512
## 1302 GO:0043513
## 1303 GO:0043514
## 1304 GO:0043527
## 1305 GO:0043540
## 1306 GO:0043541
## 1307 GO:0043564
## 1308 GO:0043614
## 1309 GO:0043625
## 1310 GO:0043626
## 1311 GO:0044094
## 1312 GO:0044194
## 1313 GO:0044207
## 1314 GO:0044214
## 1315 GO:0044218
## 1316 GO:0044220
## 1317 GO:0044224
## 1318 GO:0044228
## 1319 GO:0044231
## 1320 GO:0044284
## 1321 GO:0044292
## 1322 GO:0044294
## 1323 GO:0044295
## 1324 GO:0044299
## 1325 GO:0044300
## 1326 GO:0044301
## 1327 GO:0044302
## 1328 GO:0044305
## 1329 GO:0044307
## 1330 GO:0044308
## 1331 GO:0044316
## 1332 GO:0044317
## 1333 GO:0044326
## 1334 GO:0044327
## 1335 GO:0044354
## 1336 GO:0044393
## 1337 GO:0044423
## 1338 GO:0044447
## 1339 GO:0044530
## 1340 GO:0044599
## 1341 GO:0044609
## 1342 GO:0044611
## 1343 GO:0044613
## 1344 GO:0044614
## 1345 GO:0044615
## 1346 GO:0044753
## 1347 GO:0044754
## 1348 GO:0045025
## 1349 GO:0045092
## 1350 GO:0045095
## 1351 GO:0045098
## 1352 GO:0045160
## 1353 GO:0045180
## 1354 GO:0045240
## 1355 GO:0045244
## 1356 GO:0045252
## 1357 GO:0045254
## 1358 GO:0045261
## 1359 GO:0045263
## 1360 GO:0045277
## 1361 GO:0045298
## 1362 GO:0045323
## 1363 GO:0046581
## 1364 GO:0046611
## 1365 GO:0046691
## 1366 GO:0046696
## 1367 GO:0048179
## 1368 GO:0048237
## 1369 GO:0048269
## 1370 GO:0048476
## 1371 GO:0048787
## 1372 GO:0048788
## 1373 GO:0051286
## 1374 GO:0052718
## 1375 GO:0055028
## 1376 GO:0055087
## 1377 GO:0055120
## 1378 GO:0060053
## 1379 GO:0060076
## 1380 GO:0060077
## 1381 GO:0060091
## 1382 GO:0060171
## 1383 GO:0060187
## 1384 GO:0060198
## 1385 GO:0060201
## 1386 GO:0060203
## 1387 GO:0060342
## 1388 GO:0060473
## 1389 GO:0060987
## 1390 GO:0061202
## 1391 GO:0061474
## 1392 GO:0061574
## 1393 GO:0061618
## 1394 GO:0061673
## 1395 GO:0061689
## 1396 GO:0070022
## 1397 GO:0070032
## 1398 GO:0070033
## 1399 GO:0070044
## 1400 GO:0070083
## 1401 GO:0070110
## 1402 GO:0070176
## 1403 GO:0070187
## 1404 GO:0070195
## 1405 GO:0070274
## 1406 GO:0070369
## 1407 GO:0070381
## 1408 GO:0070382
## 1409 GO:0070390
## 1410 GO:0070418
## 1411 GO:0070419
## 1412 GO:0070436
## 1413 GO:0070442
## 1414 GO:0070449
## 1415 GO:0070522
## 1416 GO:0070531
## 1417 GO:0070545
## 1418 GO:0070552
## 1419 GO:0070554
## 1420 GO:0070557
## 1421 GO:0070652
## 1422 GO:0070685
## 1423 GO:0070695
## 1424 GO:0070701
## 1425 GO:0070702
## 1426 GO:0070703
## 1427 GO:0070722
## 1428 GO:0070743
## 1429 GO:0070761
## 1430 GO:0070772
## 1431 GO:0070776
## 1432 GO:0070822
## 1433 GO:0070826
## 1434 GO:0070852
## 1435 GO:0070860
## 1436 GO:0070876
## 1437 GO:0070877
## 1438 GO:0070931
## 1439 GO:0070938
## 1440 GO:0070939
## 1441 GO:0070985
## 1442 GO:0070992
## 1443 GO:0070993
## 1444 GO:0071004
## 1445 GO:0071006
## 1446 GO:0071007
## 1447 GO:0071008
## 1448 GO:0071010
## 1449 GO:0071012
## 1450 GO:0071020
## 1451 GO:0071021
## 1452 GO:0071062
## 1453 GO:0071065
## 1454 GO:0071133
## 1455 GO:0071141
## 1456 GO:0071144
## 1457 GO:0071146
## 1458 GO:0071148
## 1459 GO:0071149
## 1460 GO:0071159
## 1461 GO:0071437
## 1462 GO:0071438
## 1463 GO:0071439
## 1464 GO:0071458
## 1465 GO:0071540
## 1466 GO:0071541
## 1467 GO:0071546
## 1468 GO:0071547
## 1469 GO:0071556
## 1470 GO:0071561
## 1471 GO:0071575
## 1472 GO:0071595
## 1473 GO:0071598
## 1474 GO:0071664
## 1475 GO:0071665
## 1476 GO:0071682
## 1477 GO:0071748
## 1478 GO:0071752
## 1479 GO:0071756
## 1480 GO:0071782
## 1481 GO:0071797
## 1482 GO:0071817
## 1483 GO:0071818
## 1484 GO:0071819
## 1485 GO:0071821
## 1486 GO:0071914
## 1487 GO:0071920
## 1488 GO:0071942
## 1489 GO:0071953
## 1490 GO:0072357
## 1491 GO:0072487
## 1492 GO:0072492
## 1493 GO:0072517
## 1494 GO:0072534
## 1495 GO:0072536
## 1496 GO:0072546
## 1497 GO:0072557
## 1498 GO:0072558
## 1499 GO:0072563
## 1500 GO:0072589
## 1501 GO:0072669
## 1502 GO:0072687
## 1503 GO:0075341
## 1504 GO:0089701
## 1505 GO:0089717
## 1506 GO:0090498
## 1507 GO:0090534
## 1508 GO:0090537
## 1509 GO:0090543
## 1510 GO:0090568
## 1511 GO:0090571
## 1512 GO:0090576
## 1513 GO:0090619
## 1514 GO:0090651
## 1515 GO:0090658
## 1516 GO:0090661
## 1517 GO:0090723
## 1518 GO:0090724
## 1519 GO:0090725
## 1520 GO:0097013
## 1521 GO:0097025
## 1522 GO:0097057
## 1523 GO:0097058
## 1524 GO:0097059
## 1525 GO:0097123
## 1526 GO:0097124
## 1527 GO:0097125
## 1528 GO:0097129
## 1529 GO:0097132
## 1530 GO:0097134
## 1531 GO:0097135
## 1532 GO:0097136
## 1533 GO:0097144
## 1534 GO:0097145
## 1535 GO:0097149
## 1536 GO:0097169
## 1537 GO:0097179
## 1538 GO:0097181
## 1539 GO:0097182
## 1540 GO:0097183
## 1541 GO:0097196
## 1542 GO:0097197
## 1543 GO:0097208
## 1544 GO:0097209
## 1545 GO:0097224
## 1546 GO:0097225
## 1547 GO:0097226
## 1548 GO:0097227
## 1549 GO:0097229
## 1550 GO:0097233
## 1551 GO:0097255
## 1552 GO:0097342
## 1553 GO:0097344
## 1554 GO:0097356
## 1555 GO:0097361
## 1556 GO:0097362
## 1557 GO:0097381
## 1558 GO:0097409
## 1559 GO:0097414
## 1560 GO:0097418
## 1561 GO:0097422
## 1562 GO:0097427
## 1563 GO:0097431
## 1564 GO:0097433
## 1565 GO:0097440
## 1566 GO:0097441
## 1567 GO:0097442
## 1568 GO:0097443
## 1569 GO:0097444
## 1570 GO:0097447
## 1571 GO:0097450
## 1572 GO:0097451
## 1573 GO:0097453
## 1574 GO:0097454
## 1575 GO:0097462
## 1576 GO:0097486
## 1577 GO:0097487
## 1578 GO:0097489
## 1579 GO:0097504
## 1580 GO:0097505
## 1581 GO:0097512
## 1582 GO:0097513
## 1583 GO:0097524
## 1584 GO:0097539
## 1585 GO:0097541
## 1586 GO:0097542
## 1587 GO:0097543
## 1588 GO:0097545
## 1589 GO:0097550
## 1590 GO:0097575
## 1591 GO:0097598
## 1592 GO:0097629
## 1593 GO:0097631
## 1594 GO:0097632
## 1595 GO:0097635
## 1596 GO:0097637
## 1597 GO:0097649
## 1598 GO:0097651
## 1599 GO:0097679
## 1600 GO:0098547
## 1601 GO:0098554
## 1602 GO:0098556
## 1603 GO:0098559
## 1604 GO:0098560
## 1605 GO:0098563
## 1606 GO:0098574
## 1607 GO:0098575
## 1608 GO:0098576
## 1609 GO:0098592
## 1610 GO:0098594
## 1611 GO:0098595
## 1612 GO:0098636
## 1613 GO:0098642
## 1614 GO:0098644
## 1615 GO:0098651
## 1616 GO:0098745
## 1617 GO:0098826
## 1618 GO:0098827
## 1619 GO:0098830
## 1620 GO:0098835
## 1621 GO:0098837
## 1622 GO:0098839
## 1623 GO:0098843
## 1624 GO:0098844
## 1625 GO:0098845
## 1626 GO:0098850
## 1627 GO:0098855
## 1628 GO:0098871
## 1629 GO:0098875
## 1630 GO:0098888
## 1631 GO:0098890
## 1632 GO:0098982
## 1633 GO:0098983
## 1634 GO:0098985
## 1635 GO:0098992
## 1636 GO:0098993
## 1637 GO:0098999
## 1638 GO:0099053
## 1639 GO:0099055
## 1640 GO:0099056
## 1641 GO:0099061
## 1642 GO:0099073
## 1643 GO:0099078
## 1644 GO:0099400
## 1645 GO:0099617
## 1646 GO:0099634
## 1647 GO:1901588
## 1648 GO:1902560
## 1649 GO:1902636
## 1650 GO:1902710
## 1651 GO:1902711
## 1652 GO:1902737
## 1653 GO:1902773
## 1654 GO:1902912
## 1655 GO:1903349
## 1656 GO:1903440
## 1657 GO:1903767
## 1658 GO:1904602
## 1659 GO:1905103
## 1660 GO:1905286
## 1661 GO:1905370
## 1662 GO:1905720
## 1663 GO:1990005
## 1664 GO:1990008
## 1665 GO:1990026
## 1666 GO:1990030
## 1667 GO:1990031
## 1668 GO:1990032
## 1669 GO:1990037
## 1670 GO:1990038
## 1671 GO:1990047
## 1672 GO:1990071
## 1673 GO:1990072
## 1674 GO:1990075
## 1675 GO:1990111
## 1676 GO:1990124
## 1677 GO:1990131
## 1678 GO:1990246
## 1679 GO:1990298
## 1680 GO:1990316
## 1681 GO:1990332
## 1682 GO:1990356
## 1683 GO:1990357
## 1684 GO:1990391
## 1685 GO:1990393
## 1686 GO:1990423
## 1687 GO:1990425
## 1688 GO:1990435
## 1689 GO:1990452
## 1690 GO:1990454
## 1691 GO:1990462
## 1692 GO:1990512
## 1693 GO:1990565
## 1694 GO:1990572
## 1695 GO:1990578
## 1696 GO:1990584
## 1697 GO:1990589
## 1698 GO:1990590
## 1699 GO:1990597
## 1700 GO:1990604
## 1701 GO:1990617
## 1702 GO:1990630
## 1703 GO:1990635
## 1704 GO:1990666
## 1705 GO:1990667
## 1706 GO:1990682
## 1707 GO:1990696
## 1708 GO:1990707
## 1709 GO:1990716
## 1710 GO:1990718
## 1711 GO:1990723
## 1712 GO:1990726
## 1713 GO:1990730
## 1714 GO:1990742
## 1715 GO:1990745
## 1716 GO:1990761
## 1717 GO:1990796
## 1718 GO:1990812
## 1719 GO:1990843
## 1720 GO:1990844
## 1721 GO:1990851
## 1722 GO:1990876
## 1723 GO:1990879
## 1724 GO:1990909
## 1725 GO:1990913
## 1726 GO:1990917
## 1727 GO:1990923
## 1728 GO:1990971
## name
## 1 nuclear part
## 2 nuclear lumen
## 3 catalytic step 2 spliceosome
## 4 intracellular membrane-bounded organelle
## 5 intracellular organelle lumen
## 6 intracellular
## 7 CRD-mediated mRNA stability complex
## 8 nucleoplasm
## 9 spliceosomal complex
## 10 cyclin-dependent protein kinase holoenzyme complex
## 11 Set1C/COMPASS complex
## 12 integral component of mitochondrial inner membrane
## 13 intracellular ribonucleoprotein complex
## 14 ribonucleoprotein complex
## 15 intracellular part
## 16 nucleoplasm part
## 17 intracellular organelle part
## 18 ER to Golgi transport vesicle membrane
## 19 condensed chromosome
## 20 organelle part
## 21 MICOS complex
## 22 Ragulator complex
## 23 PML body
## 24 nuclear body
## 25 intracellular organelle
## 26 nuclear chromosome
## 27 nucleus
## 28 nuclear membrane
## 29 chromosome
## 30 nucleolus
## 31 Ada2/Gcn5/Ada3 transcription activator complex
## 32 condensed nuclear chromosome
## 33 methyltransferase complex
## 34 inner mitochondrial membrane protein complex
## 35 protein complex
## 36 cytoplasmic stress granule
## 37 DNA-directed RNA polymerase III complex
## 38 U7 snRNP
## 39 perichromatin fibrils
## 40 microtubule plus-end
## 41 inactive sex chromosome
## 42 mitotic spindle microtubule
## 43 nuclear chromosome part
## 44 nuclear speck
## 45 sex chromosome
## 46 growth cone
## 47 site of polarized growth
## 48 small nuclear ribonucleoprotein complex
## 49 histone methyltransferase complex
## 50 chromosomal part
## 51 tethering complex
## 52 exocyst
## 53 DNA replication factor A complex
## 54 COPI-coated vesicle
## 55 replisome
## 56 nuclear proteasome complex
## 57 apoptosome
## 58 nuclear replication fork
## 59 nuclear replisome
## 60 MLL3/4 complex
## 61 Shc-EGFR complex
## 62 histone pre-mRNA 3'end processing complex
## 63 membrane-bounded organelle
## 64 late endosome
## 65 kinetochore
## 66 cytosolic part
## 67 mitochondrial intermembrane space
## 68 organelle envelope lumen
## 69 Fanconi anaemia nuclear complex
## 70 nuclear envelope
## 71 mitochondrial membrane part
## 72 macromolecular complex
## 73 nuclear chromatin
## 74 U12-type spliceosomal complex
## 75 mitochondrial respiratory chain complex I
## 76 BMP receptor complex
## 77 HFE-transferrin receptor complex
## 78 microtubule end
## 79 ER to Golgi transport vesicle
## 80 tertiary granule lumen
## 81 transferase complex
## 82 histone acetyltransferase complex
## 83 protein acetyltransferase complex
## 84 glial cell projection
## 85 catalytic complex
## 86 late endosome membrane
## 87 ribonucleoprotein granule
## 88 cytoplasmic ribonucleoprotein granule
## 89 intrinsic component of mitochondrial membrane
## 90 chromosomal region
## 91 chromatin
## 92 female pronucleus
## 93 integral component of mitochondrial membrane
## 94 ribosome
## 95 peroxisomal membrane
## 96 cytosolic small ribosomal subunit
## 97 precatalytic spliceosome
## 98 Prp19 complex
## 99 NURF complex
## 100 COPII vesicle coat
## 101 ISWI-type complex
## 102 CatSper complex
## 103 polysomal ribosome
## 104 U4/U6 x U5 tri-snRNP complex
## 105 MLL1 complex
## 106 nuclear stress granule
## 107 spliceosomal tri-snRNP complex
## 108 chromosome, centromeric region
## 109 mitochondrial protein complex
## 110 organelle envelope
## 111 membrane protein complex
## 112 rough endoplasmic reticulum
## 113 cytosolic ribosome
## 114 telomerase holoenzyme complex
## 115 pronucleus
## 116 H4 histone acetyltransferase complex
## 117 mitotic spindle midzone
## 118 DNA-directed RNA polymerase complex
## 119 RNA polymerase complex
## 120 nuclear DNA-directed RNA polymerase complex
## 121 condensed chromosome kinetochore
## 122 condensed chromosome, centromeric region
## 123 protein-DNA complex
## 124 protein kinase complex
## 125 mitochondrion
## 126 X chromosome
## 127 Barr body
## 128 nuclear pore
## 129 Cajal body
## 130 cytosolic proteasome complex
## 131 small-subunit processome
## 132 varicosity
## 133 peroxisomal part
## 134 melanosome
## 135 transferase complex, transferring phosphorus-containing groups
## 136 cell
## 137 cell part
## 138 nuclear nucleosome
## 139 serine/threonine protein kinase complex
## 140 SAGA complex
## 141 transcription elongation factor complex
## 142 nuclear pore outer ring
## 143 Cul2-RING ubiquitin ligase complex
## 144 mitochondrial nucleoid
## 145 spliceosomal snRNP complex
## 146 CHOP-ATF3 complex
## 147 proximal neuron projection
## 148 acrosomal vesicle
## 149 Golgi membrane
## 150 organelle
## 151 neuron projection terminus
## 152 nuclear chromosome, telomeric region
## 153 mitochondrial sorting and assembly machinery complex
## 154 zona pellucida receptor complex
## 155 U1 snRNP
## 156 U2 snRNP
## 157 U4 snRNP
## 158 mitochondrial inner membrane presequence translocase complex
## 159 signal recognition particle receptor complex
## 160 signal recognition particle, endoplasmic reticulum targeting
## 161 chaperonin-containing T-complex
## 162 mRNA cleavage and polyadenylation specificity factor complex
## 163 mRNA cleavage factor complex
## 164 TRAPP complex
## 165 COPI vesicle coat
## 166 COPI-coated vesicle membrane
## 167 G-protein beta/gamma-subunit complex
## 168 phosphatidylinositol 3-kinase complex, class III, type I
## 169 phosphatidylinositol 3-kinase complex, class III, type II
## 170 pICln-Sm protein complex
## 171 phosphatidylinositol 3-kinase complex, class III
## 172 interchromatin granule
## 173 site of double-strand break
## 174 signal recognition particle
## 175 nuclear pore transmembrane ring
## 176 U4/U6 snRNP
## 177 Lewy body
## 178 astrocyte projection
## 179 GAIT complex
## 180 deuterosome
## 181 Iml1 complex
## 182 Golgi apparatus part
## 183 cullin-RING ubiquitin ligase complex
## 184 nuclear periphery
## 185 PcG protein complex
## 186 micro-ribonucleoprotein complex
## 187 RISC-loading complex
## 188 Grb2-Sos complex
## 189 endoribonuclease complex
## 190 organelle inner membrane
## 191 chromosome, telomeric region
## 192 mediator complex
## 193 specific granule lumen
## 194 azurophil granule lumen
## 195 mitochondrial part
## 196 cortical actin cytoskeleton
## 197 ubiquitin ligase complex
## 198 pericentriolar material
## 199 replication fork
## 200 STAGA complex
## 201 host cell
## 202 SAGA-type complex
## 203 core mediator complex
## 204 specific granule
## 205 mitochondrial respiratory chain
## 206 respiratory chain
## 207 respiratory chain complex
## 208 cell cortex part
## 209 peroxisome
## 210 ciliary rootlet
## 211 nuclear matrix
## 212 cortical cytoskeleton
## 213 axon terminus
## 214 Golgi apparatus
## 215 plasma membrane protein complex
## 216 myelin sheath
## 217 endosome membrane
## 218 mitochondrial inner membrane
## 219 azurophil granule
## 220 SWI/SNF superfamily-type complex
## 221 mitochondrial matrix
## 222 nuclear inner membrane
## 223 peptidase complex
## 224 oxidoreductase complex
## 225 RNA polymerase II transcription factor complex
## 226 centrosome
## 227 cytoplasmic microtubule
## 228 small ribosomal subunit
## 229 endoplasmic reticulum-Golgi intermediate compartment membrane
## 230 exon-exon junction complex
## 231 specific granule membrane
## 232 nuclear transcription factor complex
## 233 Golgi transport complex
## 234 Cul4B-RING E3 ubiquitin ligase complex
## 235 filamentous actin
## 236 myelin sheath abaxonal region
## 237 axon hillock
## 238 apical cortex
## 239 protein phosphatase type 1 complex
## 240 vacuolar proton-transporting V-type ATPase, V0 domain
## 241 pre-autophagosomal structure
## 242 U5 snRNP
## 243 integral component of peroxisomal membrane
## 244 Cdc73/Paf1 complex
## 245 CCAAT-binding factor complex
## 246 insulin-responsive compartment
## 247 proton-transporting V-type ATPase, V0 domain
## 248 methylosome
## 249 SMN-Sm protein complex
## 250 tricarboxylic acid cycle enzyme complex
## 251 gamma-secretase complex
## 252 post-mRNA release spliceosomal complex
## 253 peroxisomal importomer complex
## 254 beta-catenin-TCF complex
## 255 ribosomal subunit
## 256 endosomal part
## 257 centriole
## 258 preribosome
## 259 microtubule organizing center
## 260 Cul3-RING ubiquitin ligase complex
## 261 proteasome complex
## 262 SCF ubiquitin ligase complex
## 263 Cul4A-RING E3 ubiquitin ligase complex
## 264 endopeptidase complex
## 265 integral component of organelle membrane
## 266 vesicle coat
## 267 spindle midzone
## 268 intercalated disc
## 269 Golgi-associated vesicle
## 270 cytosolic large ribosomal subunit
## 271 integral component of endoplasmic reticulum membrane
## 272 intrinsic component of endoplasmic reticulum membrane
## 273 endoplasmic reticulum quality control compartment
## 274 blood microparticle
## 275 intrinsic component of organelle membrane
## 276 DNA-directed RNA polymerase II, holoenzyme
## 277 membrane coat
## 278 phagocytic vesicle membrane
## 279 secretory granule lumen
## 280 microtubule organizing center part
## 281 Z disc
## 282 I band
## 283 transcription export complex
## 284 MIS12/MIND type complex
## 285 Swr1 complex
## 286 condensed chromosome outer kinetochore
## 287 mitochondrial respiratory chain complex II, succinate dehydrogenase complex (ubiquinone)
## 288 oligosaccharyltransferase complex
## 289 ionotropic glutamate receptor complex
## 290 aminoacyl-tRNA synthetase multienzyme complex
## 291 retromer complex
## 292 death-inducing signaling complex
## 293 CD95 death-inducing signaling complex
## 294 AMPA glutamate receptor complex
## 295 proton-transporting two-sector ATPase complex, proton-transporting domain
## 296 VCP-NPL4-UFD1 AAA ATPase complex
## 297 P-body
## 298 Golgi stack
## 299 large ribosomal subunit
## 300 outer mitochondrial membrane protein complex
## 301 mitochondrial envelope
## 302 transcription factor complex
## 303 stress fiber
## 304 autophagosome
## 305 polysome
## 306 SWI/SNF complex
## 307 dynein complex
## 308 actin filament bundle
## 309 slit diaphragm
## 310 dendritic shaft
## 311 WASH complex
## 312 npBAF complex
## 313 nBAF complex
## 314 BAF-type complex
## 315 sperm principal piece
## 316 INO80-type complex
## 317 ficolin-1-rich granule lumen
## 318 bicellular tight junction
## 319 occluding junction
## 320 tertiary granule membrane
## 321 inclusion body
## 322 intracellular non-membrane-bounded organelle
## 323 midbody
## 324 Golgi subcompartment
## 325 cell-substrate adherens junction
## 326 focal adhesion
## 327 cell-substrate junction
## 328 endomembrane system
## 329 lamellipodium
## 330 inner acrosomal membrane
## 331 acrosomal membrane
## 332 proton-transporting two-sector ATPase complex
## 333 rough endoplasmic reticulum membrane
## 334 other organism cell
## 335 spindle microtubule
## 336 protein serine/threonine phosphatase complex
## 337 aggresome
## 338 Cul4-RING E3 ubiquitin ligase complex
## 339 endoplasmic reticulum
## 340 nucleosome
## 341 endoplasmic reticulum-Golgi intermediate compartment
## 342 DNA packaging complex
## 343 vesicle lumen
## 344 cytoplasmic vesicle lumen
## 345 storage vacuole
## 346 nuclear envelope lumen
## 347 mitochondrial proton-transporting ATP synthase complex
## 348 Rab-protein geranylgeranyltransferase complex
## 349 transcription factor TFTC complex
## 350 PRC1 complex
## 351 proton-transporting ATP synthase complex
## 352 endoplasmic reticulum exit site
## 353 NLRP3 inflammasome complex
## 354 apical junction complex
## 355 perikaryon
## 356 lysosomal membrane
## 357 organelle membrane
## 358 cell body
## 359 Golgi cisterna membrane
## 360 main axon
## 361 cell cortex region
## 362 T-tubule
## 363 plasma membrane receptor complex
## 364 trans-Golgi network
## 365 coated vesicle membrane
## 366 photoreceptor inner segment
## 367 mitochondrial large ribosomal subunit
## 368 endoplasmic reticulum lumen
## 369 vacuolar lumen
## 370 coated vesicle
## 371 AP-2 adaptor complex
## 372 clathrin coat of endocytic vesicle
## 373 clathrin coat of coated pit
## 374 glomerular endothelium fenestra
## 375 sarcolemma
## 376 organelle subcompartment
## 377 myofibril
## 378 sarcomere
## 379 contractile fiber
## 380 contractile fiber part
## 381 vacuolar part
## 382 cell cortex
## 383 intercellular bridge
## 384 Golgi lumen
## 385 microtubule associated complex
## 386 intrinsic component of mitochondrial outer membrane
## 387 early endosome membrane
## 388 mitochondrial outer membrane translocase complex
## 389 kinesin complex
## 390 preribosome, large subunit precursor
## 391 cytoplasmic part
## 392 actin cytoskeleton
## 393 presynapse
## 394 podosome
## 395 gap junction
## 396 connexin complex
## 397 F-actin capping protein complex
## 398 RISC complex
## 399 vacuolar proton-transporting V-type ATPase complex
## 400 Golgi-associated vesicle membrane
## 401 Ino80 complex
## 402 RNAi effector complex
## 403 integrator complex
## 404 proton-transporting V-type ATPase complex
## 405 chromosome, centromeric core domain
## 406 Seh1-associated complex
## 407 GATOR2 complex
## 408 extracellular membrane-bounded organelle
## 409 adherens junction
## 410 cytoplasm
## 411 cytosol
## 412 desmosome
## 413 AP-type membrane coat adaptor complex
## 414 clathrin adaptor complex
## 415 pore complex
## 416 Golgi cisterna
## 417 ciliary membrane
## 418 anchoring junction
## 419 mitochondrial membrane
## 420 tertiary granule
## 421 vacuolar membrane
## 422 cell-cell contact zone
## 423 cell leading edge
## 424 photoreceptor outer segment
## 425 integral component of mitochondrial outer membrane
## 426 phosphopyruvate hydratase complex
## 427 semaphorin receptor complex
## 428 transcription factor TFIID complex
## 429 spectrin-associated cytoskeleton
## 430 beta-catenin destruction complex
## 431 lamellipodium membrane
## 432 brush border membrane
## 433 TORC2 complex
## 434 azurophil granule membrane
## 435 TOR complex
## 436 alpha-beta T cell receptor complex
## 437 inflammasome complex
## 438 ribbon synapse
## 439 axon cytoplasm
## 440 protein phosphatase type 2A complex
## 441 cornified envelope
## 442 platelet alpha granule lumen
## 443 secretory granule
## 444 photoreceptor outer segment membrane
## 445 endocytic vesicle membrane
## 446 sperm part
## 447 basal plasma membrane
## 448 integral component of Golgi membrane
## 449 intrinsic component of Golgi membrane
## 450 membrane raft
## 451 membrane microdomain
## 452 endoplasmic reticulum membrane
## 453 nuclear outer membrane-endoplasmic reticulum membrane network
## 454 clathrin-coated endocytic vesicle membrane
## 455 clathrin-coated endocytic vesicle
## 456 photoreceptor cell cilium
## 457 anchored component of membrane
## 458 cell-cell adherens junction
## 459 sperm flagellum
## 460 heterochromatin
## 461 integral component of nuclear inner membrane
## 462 brush border
## 463 nucleotide-activated protein kinase complex
## 464 photoreceptor connecting cilium
## 465 paranode region of axon
## 466 nuclear membrane part
## 467 presynaptic active zone
## 468 inward rectifier potassium channel complex
## 469 transport vesicle membrane
## 470 secretory granule membrane
## 471 basal part of cell
## 472 neuronal cell body
## 473 mitochondrial ribosome
## 474 organelle membrane contact site
## 475 ER-mitochondrion membrane contact site
## 476 phagocytic vesicle
## 477 motile cilium
## 478 endosome
## 479 apical plasma membrane
## 480 mitotic spindle
## 481 mitochondrial outer membrane
## 482 outer membrane
## 483 organelle outer membrane
## 484 nuclear ubiquitin ligase complex
## 485 cis-Golgi network
## 486 lateral plasma membrane
## 487 SCAR complex
## 488 transcription factor AP-1 complex
## 489 anchored component of plasma membrane
## 490 recycling endosome membrane
## 491 cytoplasmic region
## 492 heterotrimeric G-protein complex
## 493 phosphatidylinositol 3-kinase complex
## 494 platelet alpha granule
## 495 actin filament
## 496 A band
## 497 lysosome
## 498 bounding membrane of organelle
## 499 perinuclear region of cytoplasm
## 500 basolateral plasma membrane
## 501 membrane region
## 502 synapse part
## 503 axon part
## 504 fibrillar center
## 505 nuclear euchromatin
## 506 mitochondrial respiratory chain complex III
## 507 ciliary transition zone
## 508 T cell receptor complex
## 509 mast cell granule
## 510 cytochrome complex
## 511 caveola
## 512 plasma membrane raft
## 513 non-motile cilium
## 514 voltage-gated calcium channel complex
## 515 clathrin vesicle coat
## 516 calcium channel complex
## 517 cation-transporting ATPase complex
## 518 ATPase dependent transmembrane transport complex
## 519 ATPase complex
## 520 endoplasmic reticulum part
## 521 cell projection part
## 522 postsynaptic membrane
## 523 vacuole
## 524 clathrin coat
## 525 actomyosin
## 526 transcriptional repressor complex
## 527 euchromatin
## 528 pseudopodium
## 529 ciliary base
## 530 intracellular vesicle
## 531 somatodendritic compartment
## 532 lysosomal lumen
## 533 M band
## 534 endocytic vesicle
## 535 clathrin-coated pit
## 536 cytoplasmic vesicle
## 537 cilium
## 538 apical part of cell
## 539 immunological synapse
## 540 filopodium
## 541 neuromuscular junction
## 542 nucleolar part
## 543 receptor complex
## 544 secretory vesicle
## 545 synaptic membrane
## 546 chloride channel complex
## 547 axon initial segment
## 548 perinuclear endoplasmic reticulum
## 549 ciliary part
## 550 early endosome
## 551 sodium:potassium-exchanging ATPase complex
## 552 axoneme
## 553 SNARE complex
## 554 ciliary plasm
## 555 cluster of actin-based cell projections
## 556 external side of plasma membrane
## 557 extracellular exosome
## 558 extracellular organelle
## 559 extracellular vesicle
## 560 basement membrane
## 561 intermediate filament cytoskeleton
## 562 supramolecular complex
## 563 supramolecular polymer
## 564 supramolecular fiber
## 565 synapse
## 566 cytoplasmic vesicle part
## 567 postsynaptic density
## 568 transport vesicle
## 569 asymmetric synapse
## 570 neuron to neuron synapse
## 571 postsynaptic specialization
## 572 axon
## 573 cell projection membrane
## 574 intermediate filament
## 575 ciliary basal body
## 576 recycling endosome
## 577 microtubule
## 578 cell projection cytoplasm
## 579 extracellular space
## 580 neuron part
## 581 leading edge membrane
## 582 neuron projection
## 583 spindle
## 584 trans-Golgi network membrane
## 585 dendritic spine
## 586 neuron spine
## 587 ruffle
## 588 spindle pole
## 589 clathrin-coated vesicle
## 590 whole membrane
## 591 ficolin-1-rich granule membrane
## 592 cell-cell junction
## 593 postsynapse
## 594 ruffle membrane
## 595 cytoplasmic vesicle membrane
## 596 vesicle membrane
## 597 extracellular region part
## 598 cell junction
## 599 vesicle
## 600 ion channel complex
## 601 extracellular matrix component
## 602 clathrin-coated vesicle membrane
## 603 extracellular region
## 604 transporter complex
## 605 microtubule cytoskeleton
## 606 proteinaceous extracellular matrix
## 607 cation channel complex
## 608 polymeric cytoskeletal fiber
## 609 dendrite
## 610 cytoskeletal part
## 611 cell surface
## 612 transmembrane transporter complex
## 613 cell projection
## 614 voltage-gated potassium channel complex
## 615 potassium channel complex
## 616 extracellular matrix
## 617 actin-based cell projection
## 618 plasma membrane region
## 619 extrinsic component of cytoplasmic side of plasma membrane
## 620 cytoskeleton
## 621 extrinsic component of plasma membrane
## 622 extrinsic component of membrane
## 623 integral component of plasma membrane
## 624 intrinsic component of plasma membrane
## 625 cytoplasmic side of plasma membrane
## 626 cytoplasmic side of membrane
## 627 side of membrane
## 628 integral component of membrane
## 629 intrinsic component of membrane
## 630 membrane
## 631 plasma membrane part
## 632 membrane part
## 633 plasma membrane
## 634 cell periphery
## 635 nucleotide-excision repair complex
## 636 nucleotide-excision repair factor 1 complex
## 637 nucleotide-excision repair factor 2 complex
## 638 histone deacetylase complex
## 639 RNA polymerase I transcription factor complex
## 640 PCAF complex
## 641 transcription factor TFIIIB complex
## 642 transcription factor TFIIIC complex
## 643 Golgi cis cisterna
## 644 Golgi trans cisterna
## 645 cytoplasmic ubiquitin ligase complex
## 646 ribonuclease MRP complex
## 647 nuclear exosome (RNase complex)
## 648 cytoplasmic exosome (RNase complex)
## 649 exosome (RNase complex)
## 650 tRNA-intron endonuclease complex
## 651 vacuolar proton-transporting V-type ATPase, V1 domain
## 652 cytoplasmic chromosome
## 653 astral microtubule
## 654 commitment complex
## 655 mitochondrial chromosome
## 656 mitochondrial proton-transporting ATP synthase, stator stalk
## 657 mitochondrial proton-transporting ATP synthase complex, catalytic core F(1)
## 658 mitochondrial proton-transporting ATP synthase complex, coupling factor F(o)
## 659 extrinsic component of vacuolar membrane
## 660 cytoplasmic cyclin-dependent protein kinase holoenzyme complex
## 661 telomerase catalytic core complex
## 662 EKC/KEOPS complex
## 663 autophagosome membrane
## 664 core TFIIH complex portion of holo TFIIH complex
## 665 core TFIIH complex
## 666 THO complex part of transcription export complex
## 667 glycosylphosphatidylinositol-N-acetylglucosaminyltransferase (GPI-GnT) complex
## 668 condensed nuclear chromosome kinetochore
## 669 condensed nuclear chromosome, centromeric region
## 670 nuclear telomere cap complex
## 671 cytoplasmic chromatin
## 672 synaptonemal complex
## 673 condensin complex
## 674 condensin core heterodimer
## 675 nuclear cohesin complex
## 676 nuclear condensin complex
## 677 lateral element
## 678 central element
## 679 transverse filament
## 680 Y chromosome
## 681 GINS complex
## 682 ESCRT I complex
## 683 ESCRT II complex
## 684 ESCRT III complex
## 685 nuclear MIS12/MIND complex
## 686 ER ubiquitin ligase complex
## 687 Hrd1p ubiquitin ligase complex
## 688 Hrd1p ubiquitin ligase ERAD-L complex
## 689 equatorial microtubule organizing center
## 690 gamma-tubulin complex
## 691 GARP complex
## 692 condensed chromosome inner kinetochore
## 693 condensed nuclear chromosome inner kinetochore
## 694 condensed nuclear chromosome outer kinetochore
## 695 presequence translocase-associated import motor
## 696 voltage-gated sodium channel complex
## 697 outer dense fiber
## 698 microfibril
## 699 radial spoke
## 700 radial spoke stalk
## 701 dense fibrillar component
## 702 granular component
## 703 male germ cell nucleus
## 704 female germ cell nucleus
## 705 sex chromatin
## 706 XY body
## 707 phagocytic cup
## 708 uropod
## 709 male pronucleus
## 710 outer acrosomal membrane
## 711 polycystin complex
## 712 stereocilia coupling link
## 713 stereocilia ankle link
## 714 stereocilia ankle link complex
## 715 3-methylcrotonyl-CoA carboxylase complex, mitochondrial
## 716 manchette
## 717 palmitoyltransferase complex
## 718 ribose phosphate diphosphokinase complex
## 719 MAML1-RBP-Jkappa- ICN1 complex
## 720 cyclin K-CDK12 complex
## 721 cyclin K-CDK13 complex
## 722 tumor necrosis factor receptor superfamily complex
## 723 fibrinogen complex
## 724 membrane attack complex
## 725 collagen trimer
## 726 collagen type XV trimer
## 727 fibrillar collagen trimer
## 728 collagen type I trimer
## 729 collagen type II trimer
## 730 collagen type III trimer
## 731 collagen type IV trimer
## 732 collagen type V trimer
## 733 collagen type VI trimer
## 734 collagen type VII trimer
## 735 collagen type VIII trimer
## 736 collagen type XI trimer
## 737 FACIT collagen trimer
## 738 collagen type IX trimer
## 739 collagen type XII trimer
## 740 collagen type XIV trimer
## 741 collagen type XVI trimer
## 742 collagen type XIII trimer
## 743 complement component C1 complex
## 744 basal lamina
## 745 laminin-1 complex
## 746 laminin-2 complex
## 747 laminin-3 complex
## 748 laminin-5 complex
## 749 interstitial matrix
## 750 cell wall
## 751 lamin filament
## 752 nuclear outer membrane
## 753 annulate lamellae
## 754 nuclear lamina
## 755 nucleolar ribonuclease P complex
## 756 nuclear pre-replicative complex
## 757 alpha DNA polymerase:primase complex
## 758 DNA replication factor C complex
## 759 nuclear origin of replication recognition complex
## 760 DNA-directed RNA polymerase II, core complex
## 761 RNA polymerase transcription factor SL1 complex
## 762 transcription factor TFIIA complex
## 763 transcription factor TFIIE complex
## 764 transcription factor TFIIF complex
## 765 holo TFIIH complex
## 766 chromatin silencing complex
## 767 anaphase-promoting complex
## 768 U2-type spliceosomal complex
## 769 U6 snRNP
## 770 U4atac snRNP
## 771 U6atac snRNP
## 772 chiasma
## 773 recombination nodule
## 774 late recombination nodule
## 775 nuclear heterochromatin
## 776 pericentric heterochromatin
## 777 nuclear telomeric heterochromatin
## 778 nucleolus organizer region
## 779 small nucleolar ribonucleoprotein complex
## 780 DNA-directed RNA polymerase I complex
## 781 m-AAA complex
## 782 mitochondrial respiratory chain complex IV
## 783 mitochondrial proton-transporting ATP synthase, catalytic core
## 784 mitochondrial permeability transition pore complex
## 785 gamma DNA polymerase complex
## 786 mitochondrial small ribosomal subunit
## 787 secondary lysosome
## 788 multivesicular body
## 789 peroxisomal matrix
## 790 Sec61 translocon complex
## 791 signal peptidase complex
## 792 smooth endoplasmic reticulum
## 793 Golgi medial cisterna
## 794 lipid particle
## 795 actomyosin contractile ring
## 796 polar microtubule
## 797 kinetochore microtubule
## 798 hemoglobin complex
## 799 proteasome regulatory particle
## 800 proteasome core complex
## 801 mRNA cap binding complex
## 802 nuclear cap binding complex
## 803 eukaryotic translation initiation factor 2 complex
## 804 eukaryotic translation initiation factor 2B complex
## 805 eukaryotic translation initiation factor 3 complex
## 806 eukaryotic translation elongation factor 1 complex
## 807 nascent polypeptide-associated complex
## 808 axonemal dynein complex
## 809 muscle myosin complex
## 810 troponin complex
## 811 muscle thin filament tropomyosin
## 812 striated muscle myosin thick filament
## 813 striated muscle thin filament
## 814 cytoplasmic dynein complex
## 815 dynactin complex
## 816 plus-end kinesin complex
## 817 axonemal microtubule
## 818 neurofilament
## 819 Arp2/3 protein complex
## 820 hydrogen:potassium-exchanging ATPase complex
## 821 acetylcholine-gated channel complex
## 822 interleukin-5 receptor complex
## 823 interleukin-6 receptor complex
## 824 interleukin-13 receptor complex
## 825 insulin receptor complex
## 826 oncostatin-M receptor complex
## 827 microvillus
## 828 spot adherens junction
## 829 zonula adherens
## 830 fascia adherens
## 831 muscle tendon junction
## 832 septin ring
## 833 phosphatidylinositol 3-kinase complex, class IA
## 834 phosphatidylinositol 3-kinase complex, class IB
## 835 6-phosphofructokinase complex
## 836 mitochondrial alpha-ketoglutarate dehydrogenase complex
## 837 cAMP-dependent protein kinase complex
## 838 CAAX-protein geranylgeranyltransferase complex
## 839 calcium- and calmodulin-dependent protein kinase complex
## 840 calcineurin complex
## 841 protein kinase CK2 complex
## 842 DNA-dependent protein kinase-DNA ligase 4 complex
## 843 glycine cleavage complex
## 844 phosphorylase kinase complex
## 845 protein farnesyltransferase complex
## 846 mitochondrial pyruvate dehydrogenase complex
## 847 serine-pyruvate aminotransferase complex
## 848 ribonucleoside-diphosphate reductase complex
## 849 synaptic vesicle
## 850 cyclin/CDK positive transcription elongation factor complex
## 851 intracellular ferritin complex
## 852 guanylate cyclase complex, soluble
## 853 spectrin
## 854 COP9 signalosome
## 855 gamma-tubulin ring complex
## 856 gamma-tubulin small complex
## 857 cohesin complex
## 858 ATP-sensitive potassium channel complex
## 859 integrin complex
## 860 katanin complex
## 861 IkappaB kinase complex
## 862 proteasome activator complex
## 863 proteasome regulatory particle, base subcomplex
## 864 proteasome regulatory particle, lid subcomplex
## 865 epsilon DNA polymerase complex
## 866 CHRAC
## 867 phenylalanine-tRNA ligase complex
## 868 DNA topoisomerase complex (ATP-hydrolyzing)
## 869 glycerol-3-phosphate dehydrogenase complex
## 870 citrate lyase complex
## 871 mitochondrial oxoglutarate dehydrogenase complex
## 872 DNA polymerase III complex
## 873 endopeptidase Clp complex
## 874 mitochondrial endopeptidase Clp complex
## 875 cytoplasmic side of endosome membrane
## 876 chromocenter
## 877 perinucleolar chromocenter
## 878 trans-Golgi network transport vesicle membrane
## 879 junctional sarcoplasmic reticulum membrane
## 880 C zone
## 881 longitudinal sarcoplasmic reticulum
## 882 terminal cisterna
## 883 terminal cisterna lumen
## 884 dystrophin-associated glycoprotein complex
## 885 dystroglycan complex
## 886 sarcoglycan complex
## 887 syntrophin complex
## 888 rhabdomere
## 889 zeta DNA polymerase complex
## 890 procollagen-proline 4-dioxygenase complex
## 891 prefoldin complex
## 892 eukaryotic translation initiation factor 4F complex
## 893 eukaryotic 43S preinitiation complex
## 894 apicolateral plasma membrane
## 895 catenin complex
## 896 myosin complex
## 897 myosin II complex
## 898 unconventional myosin complex
## 899 mitochondrial fatty acid beta-oxidation multienzyme complex
## 900 sarcoplasm
## 901 sarcoplasmic reticulum
## 902 cyclin-dependent protein kinase 5 holoenzyme complex
## 903 Sin3 complex
## 904 NuRD complex
## 905 RSC complex
## 906 ACF complex
## 907 flotillin complex
## 908 glycine-gated chloride channel complex
## 909 kinesin I complex
## 910 kinesin II complex
## 911 insulin-like growth factor binding protein complex
## 912 serine C-palmitoyltransferase complex
## 913 intracellular cyclic nucleotide activated cation channel complex
## 914 meprin A complex
## 915 methionyl glutamyl tRNA synthetase complex
## 916 glutamate-cysteine ligase complex
## 917 mitochondrial electron transfer flavoprotein complex
## 918 NMDA selective glutamate receptor complex
## 919 glucosidase II complex
## 920 translation release factor complex
## 921 molybdopterin synthase complex
## 922 viral capsid
## 923 viral envelope
## 924 viral replication complex
## 925 viral integration complex
## 926 snRNA-activating protein complex
## 927 proteasome core complex, alpha-subunit complex
## 928 proteasome core complex, beta-subunit complex
## 929 immunoglobulin complex
## 930 B cell receptor complex
## 931 cyclin-dependent protein kinase activating kinase holoenzyme complex
## 932 nuclear cyclin-dependent protein kinase holoenzyme complex
## 933 symbiont-containing vacuole
## 934 symbiont-containing vacuole membrane
## 935 ciliary pocket membrane
## 936 proteasome accessory complex
## 937 CCR4-NOT complex
## 938 CCR4-NOT core complex
## 939 hemidesmosome
## 940 mitochondrial crista
## 941 mitochondrial tricarboxylic acid cycle enzyme complex
## 942 AP-1 adaptor complex
## 943 AP-3 adaptor complex
## 944 AP-4 adaptor complex
## 945 clathrin coat of trans-Golgi network vesicle
## 946 trans-Golgi network transport vesicle
## 947 integral component of synaptic vesicle membrane
## 948 protein phosphatase 4 complex
## 949 external encapsulating structure
## 950 junctional membrane complex
## 951 actin cap
## 952 smooth muscle contractile fiber
## 953 granulocyte macrophage colony-stimulating factor receptor complex
## 954 synaptic vesicle membrane
## 955 axolemma
## 956 ribonuclease P complex
## 957 mitochondrial ribonuclease P complex
## 958 multimeric ribonuclease P complex
## 959 90S preribosome
## 960 preribosome, small subunit precursor
## 961 Noc complex
## 962 Noc1p-Noc2p complex
## 963 Noc2p-Noc3p complex
## 964 Noc4p-Nop14p complex
## 965 autosome
## 966 smooth endoplasmic reticulum membrane
## 967 Mre11 complex
## 968 VCB complex
## 969 mitotic cohesin complex
## 970 meiotic cohesin complex
## 971 apolipoprotein B mRNA editing enzyme complex
## 972 checkpoint clamp complex
## 973 HOPS complex
## 974 retromer, tubulation complex
## 975 retromer, cargo-selective complex
## 976 Smc5-Smc6 complex
## 977 anchoring collagen complex
## 978 glutamyl-tRNA(Gln) amidotransferase complex
## 979 cortical microtubule cytoskeleton
## 980 intraciliary transport particle
## 981 intraciliary transport particle A
## 982 intraciliary transport particle B
## 983 interphase microtubule organizing center
## 984 dense core granule
## 985 nucleocytoplasmic shuttling complex
## 986 BLOC complex
## 987 BLOC-1 complex
## 988 BLOC-2 complex
## 989 BLOC-3 complex
## 990 platelet dense granule membrane
## 991 platelet dense granule lumen
## 992 platelet alpha granule membrane
## 993 platelet dense tubular network
## 994 platelet dense tubular network membrane
## 995 septin complex
## 996 integral component of vacuolar membrane
## 997 endoplasmic reticulum Sec complex
## 998 RSF complex
## 999 extrinsic component of external side of plasma membrane
## 1000 intrinsic component of external side of plasma membrane
## 1001 intrinsic component of the cytoplasmic side of the plasma membrane
## 1002 PAN complex
## 1003 uropod membrane
## 1004 pseudopodium membrane
## 1005 DNA replication preinitiation complex
## 1006 Ndc80 complex
## 1007 replication fork protection complex
## 1008 intrinsic component of endosome membrane
## 1009 integral component of nuclear outer membrane
## 1010 extrinsic component of organelle membrane
## 1011 extrinsic component of endosome membrane
## 1012 extrinsic component of mitochondrial inner membrane
## 1013 extrinsic component of mitochondrial outer membrane
## 1014 anchored component of external side of plasma membrane
## 1015 ubiquitin conjugating enzyme complex
## 1016 UBC13-MMS2 complex
## 1017 RNA-directed RNA polymerase complex
## 1018 nuclear RNA-directed RNA polymerase complex
## 1019 Rad17 RFC-like complex
## 1020 Ctf18 RFC-like complex
## 1021 N-terminal protein acetyltransferase complex
## 1022 NatA complex
## 1023 NatB complex
## 1024 NatC complex
## 1025 box C/D snoRNP complex
## 1026 box H/ACA snoRNP complex
## 1027 BRCA1-BARD1 complex
## 1028 Cul5-RING ubiquitin ligase complex
## 1029 Cul7-RING ubiquitin ligase complex
## 1030 myosin V complex
## 1031 myosin VII complex
## 1032 mannosyltransferase complex
## 1033 SUMO activating enzyme complex
## 1034 tRNA (m1A) methyltransferase complex
## 1035 Myb complex
## 1036 filopodium membrane
## 1037 microvillus membrane
## 1038 mRNA cap methyltransferase complex
## 1039 centrosomal corona
## 1040 spindle pole centrosome
## 1041 nuclear pericentric heterochromatin
## 1042 H zone
## 1043 haptoglobin-hemoglobin complex
## 1044 endosome lumen
## 1045 early endosome lumen
## 1046 late endosome lumen
## 1047 TORC1 complex
## 1048 telomeric heterochromatin
## 1049 interleukin-28 receptor complex
## 1050 early phagosome
## 1051 phagolysosome
## 1052 NELF complex
## 1053 DSIF complex
## 1054 guanyl-nucleotide exchange factor complex
## 1055 bleb
## 1056 SMC loading complex
## 1057 dense core granule membrane
## 1058 chromosome passenger complex
## 1059 4-aminobutyrate transaminase complex
## 1060 cleavage furrow
## 1061 cell division site part
## 1062 septin cytoskeleton
## 1063 septin collar
## 1064 symmetric synapse
## 1065 ribonuclease H2 complex
## 1066 mismatch repair complex
## 1067 MutSalpha complex
## 1068 MutSbeta complex
## 1069 angiogenin-PRI complex
## 1070 MutLalpha complex
## 1071 extrinsic component of lysosome membrane
## 1072 stereocilium
## 1073 stereocilium bundle
## 1074 stereocilium tip
## 1075 filopodium tip
## 1076 cuticular plate
## 1077 activin responsive factor complex
## 1078 CBM complex
## 1079 cytoplasmic side of mitochondrial outer membrane
## 1080 cortical endoplasmic reticulum
## 1081 CURI complex
## 1082 growth cone membrane
## 1083 multivesicular body membrane
## 1084 neuron projection membrane
## 1085 dendrite membrane
## 1086 dendritic spine membrane
## 1087 Piccolo NuA4 histone acetyltransferase complex
## 1088 ELL-EAF complex
## 1089 SMN complex
## 1090 Swi5-Sfr1 complex
## 1091 carboxy-terminal domain protein kinase complex
## 1092 DNA ligase IV complex
## 1093 neuronal cell body membrane
## 1094 dendrite cytoplasm
## 1095 SREBP-SCAP-Insig complex
## 1096 myosin filament
## 1097 kainate selective glutamate receptor complex
## 1098 protein-lipid complex
## 1099 Bcl3-Bcl10 complex
## 1100 Fc-epsilon receptor I complex
## 1101 paranodal junction
## 1102 perinuclear theca
## 1103 sarcoplasmic reticulum membrane
## 1104 sarcoplasmic reticulum lumen
## 1105 DNA recombinase mediator complex
## 1106 Rad51B-Rad51C-Rad51D-XRCC2 complex
## 1107 Rad51C-XRCC3 complex
## 1108 Weibel-Palade body
## 1109 cis-Golgi network membrane
## 1110 cytoskeletal calyx
## 1111 melanosome membrane
## 1112 interphotoreceptor matrix
## 1113 ARC complex
## 1114 proton-transporting two-sector ATPase complex, catalytic domain
## 1115 proton-transporting V-type ATPase, V1 domain
## 1116 dolichol-phosphate-mannose synthase complex
## 1117 CAF-1 complex
## 1118 Lsd1/2 complex
## 1119 I-kappaB/NF-kappaB complex
## 1120 Bcl3/NF-kappaB2 complex
## 1121 CORVET complex
## 1122 node of Ranvier
## 1123 internode region of axon
## 1124 eukaryotic 48S preinitiation complex
## 1125 eukaryotic 80S initiation complex
## 1126 chromatoid body
## 1127 HULC complex
## 1128 rDNA heterochromatin
## 1129 Slx1-Slx4 complex
## 1130 ESCRT-0 complex
## 1131 Elongator holoenzyme complex
## 1132 BRCA2-MAGE-D1 complex
## 1133 TSC1-TSC2 complex
## 1134 mitotic checkpoint complex
## 1135 host cell part
## 1136 host intracellular part
## 1137 host intracellular membrane-bounded organelle
## 1138 host cell cytoplasm part
## 1139 SUMO-targeted ubiquitin ligase complex
## 1140 pre-autophagosomal structure membrane
## 1141 RIC1-RGP1 guanyl-nucleotide exchange factor complex
## 1142 mitochondrial DNA-directed RNA polymerase complex
## 1143 Atg12-Atg5-Atg16 complex
## 1144 plasma lipoprotein particle
## 1145 mature chylomicron
## 1146 chylomicron remnant
## 1147 very-low-density lipoprotein particle
## 1148 low-density lipoprotein particle
## 1149 intermediate-density lipoprotein particle
## 1150 high-density lipoprotein particle
## 1151 discoidal high-density lipoprotein particle
## 1152 spherical high-density lipoprotein particle
## 1153 Pwp2p-containing subcomplex of 90S preribosome
## 1154 autophagosome lumen
## 1155 EGO complex
## 1156 centriolar satellite
## 1157 t-UTP complex
## 1158 UTP-C complex
## 1159 Mpp10 complex
## 1160 BBSome
## 1161 chromaffin granule lumen
## 1162 proteasome storage granule
## 1163 RNA cap binding complex
## 1164 GID complex
## 1165 endoplasmic reticulum chaperone complex
## 1166 integrin alpha1-beta1 complex
## 1167 integrin alpha2-beta1 complex
## 1168 integrin alpha3-beta1 complex
## 1169 integrin alpha4-beta1 complex
## 1170 integrin alpha4-beta7 complex
## 1171 inhibin-betaglycan-ActRII complex
## 1172 integrin alpha6-beta4 complex
## 1173 integrin alpha7-beta1 complex
## 1174 integrin alpha8-beta1 complex
## 1175 integrin alpha9-beta1 complex
## 1176 integrin alpha10-beta1 complex
## 1177 integrin alpha11-beta1 complex
## 1178 integrin alphav-beta3 complex
## 1179 integrin alphav-beta5 complex
## 1180 integrin alphav-beta6 complex
## 1181 integrin alphav-beta8 complex
## 1182 integrin alphaL-beta2 complex
## 1183 integrin alphaM-beta2 complex
## 1184 U11/U12 snRNP
## 1185 sodium channel complex
## 1186 SMN-Gemin2 complex
## 1187 Scrib-APC-beta-catenin complex
## 1188 aryl hydrocarbon receptor complex
## 1189 cytosolic aryl hydrocarbon receptor complex
## 1190 nuclear aryl hydrocarbon receptor complex
## 1191 recycling endosome lumen
## 1192 nuclear meiotic cohesin complex
## 1193 LINC complex
## 1194 oligosaccharyltransferase I complex
## 1195 subapical complex
## 1196 ESC/E(Z) complex
## 1197 FACT complex
## 1198 Rb-E2F complex
## 1199 NuA4 histone acetyltransferase complex
## 1200 transcriptionally active chromatin
## 1201 SPOTS complex
## 1202 Toll-like receptor 1-Toll-like receptor 2 protein complex
## 1203 Toll-like receptor 2-Toll-like receptor 6 protein complex
## 1204 histone locus body
## 1205 UBC13-UEV1A complex
## 1206 PR-DUB complex
## 1207 NF-kappaB p50/p65 complex
## 1208 CD40 receptor complex
## 1209 sperm fibrous sheath
## 1210 macrophage migration inhibitory factor receptor complex
## 1211 NOS2-CD74 complex
## 1212 myelin sheath adaxonal region
## 1213 egg coat
## 1214 growing cell tip
## 1215 new growing cell tip
## 1216 alphav-beta3 integrin-IGF-1-IGF1R complex
## 1217 senescence-associated heterochromatin focus
## 1218 endolysosome
## 1219 endolysosome membrane
## 1220 endolysosome lumen
## 1221 protein C inhibitor-TMPRSS7 complex
## 1222 protein C inhibitor-TMPRSS11E complex
## 1223 protein C inhibitor-PLAT complex
## 1224 protein C inhibitor-PLAU complex
## 1225 protein C inhibitor-thrombin complex
## 1226 protein C inhibitor-KLK3 complex
## 1227 protein C inhibitor-plasma kallikrein complex
## 1228 MKS complex
## 1229 hyaluranon cable
## 1230 inner dynein arm
## 1231 outer dynein arm
## 1232 muscle cell projection membrane
## 1233 Cdc48p-Npl4p-Vms1p AAA ATPase complex
## 1234 tubulobulbar complex
## 1235 myofilament
## 1236 MIS complex
## 1237 TCR signalosome
## 1238 microtubule minus-end
## 1239 ESCRT complex
## 1240 keratohyalin granule
## 1241 CHOP-C/EBP complex
## 1242 UFD1-NPL4 complex
## 1243 Derlin-1-VIMP complex
## 1244 Derlin-1 retrotranslocation complex
## 1245 G-protein coupled receptor dimeric complex
## 1246 G-protein coupled receptor homodimeric complex
## 1247 G-protein coupled receptor heterodimeric complex
## 1248 interleukin-12 receptor complex
## 1249 nuclear RNA export factor complex
## 1250 paraspeckles
## 1251 nuclear inclusion body
## 1252 extrinsic component of endoplasmic reticulum membrane
## 1253 MCM complex
## 1254 NLS-dependent protein nuclear import complex
## 1255 RNA nuclear export complex
## 1256 insulin-like growth factor ternary complex
## 1257 insulin-like growth factor binary complex
## 1258 immunoglobulin complex, circulating
## 1259 DNA polymerase complex
## 1260 chromaffin granule
## 1261 chromaffin granule membrane
## 1262 germinal vesicle
## 1263 glycogen granule
## 1264 zymogen granule
## 1265 zymogen granule membrane
## 1266 lamellar body
## 1267 MHC protein complex
## 1268 MHC class I protein complex
## 1269 MHC class II protein complex
## 1270 chylomicron
## 1271 actomyosin, actin portion
## 1272 mitochondrial intermembrane space protein transporter complex
## 1273 mitochondrial inner membrane peptidase complex
## 1274 mitochondrial inner membrane protein insertion complex
## 1275 presynaptic membrane
## 1276 GPI-anchor transamidase complex
## 1277 MHC class I peptide loading complex
## 1278 TAP complex
## 1279 platelet dense granule
## 1280 NADPH oxidase complex
## 1281 isoamylase complex
## 1282 costamere
## 1283 germ cell nucleus
## 1284 synaptic cleft
## 1285 acrosomal matrix
## 1286 acrosomal lumen
## 1287 P granule
## 1288 ATP-binding cassette (ABC) transporter complex
## 1289 terminal bouton
## 1290 compact myelin
## 1291 lateral loop
## 1292 Schmidt-Lanterman incisure
## 1293 nuclear SCF ubiquitin ligase complex
## 1294 laminin complex
## 1295 laminin-8 complex
## 1296 laminin-10 complex
## 1297 laminin-11 complex
## 1298 ectoplasm
## 1299 RAVE complex
## 1300 activin A complex
## 1301 inhibin A complex
## 1302 inhibin B complex
## 1303 interleukin-12 complex
## 1304 tRNA methyltransferase complex
## 1305 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase complex
## 1306 UDP-N-acetylglucosamine transferase complex
## 1307 Ku70:Ku80 complex
## 1308 multi-eIF complex
## 1309 delta DNA polymerase complex
## 1310 PCNA complex
## 1311 host cell nuclear part
## 1312 cytolytic granule
## 1313 translation initiation ternary complex
## 1314 spanning component of plasma membrane
## 1315 other organism cell membrane
## 1316 host cell perinuclear region of cytoplasm
## 1317 juxtaparanode region of axon
## 1318 host cell surface
## 1319 host cell presynaptic membrane
## 1320 mitochondrial crista junction
## 1321 dendrite terminus
## 1322 dendritic growth cone
## 1323 axonal growth cone
## 1324 C-fiber
## 1325 cerebellar mossy fiber
## 1326 climbing fiber
## 1327 dentate gyrus mossy fiber
## 1328 calyx of Held
## 1329 dendritic branch
## 1330 axonal spine
## 1331 cone cell pedicle
## 1332 rod spherule
## 1333 dendritic spine neck
## 1334 dendritic spine head
## 1335 macropinosome
## 1336 microspike
## 1337 virion part
## 1338 axoneme part
## 1339 supraspliceosomal complex
## 1340 AP-5 adaptor complex
## 1341 DBIRD complex
## 1342 nuclear pore inner ring
## 1343 nuclear pore central transport channel
## 1344 nuclear pore cytoplasmic filaments
## 1345 nuclear pore nuclear basket
## 1346 amphisome
## 1347 autolysosome
## 1348 mitochondrial degradosome
## 1349 interleukin-18 receptor complex
## 1350 keratin filament
## 1351 type III intermediate filament
## 1352 myosin I complex
## 1353 basal cortex
## 1354 dihydrolipoyl dehydrogenase complex
## 1355 succinate-CoA ligase complex (GDP-forming)
## 1356 oxoglutarate dehydrogenase complex
## 1357 pyruvate dehydrogenase complex
## 1358 proton-transporting ATP synthase complex, catalytic core F(1)
## 1359 proton-transporting ATP synthase complex, coupling factor F(o)
## 1360 respiratory chain complex IV
## 1361 tubulin complex
## 1362 interleukin-1 receptor complex
## 1363 intercellular canaliculus
## 1364 lysosomal proton-transporting V-type ATPase complex
## 1365 intracellular canaliculus
## 1366 lipopolysaccharide receptor complex
## 1367 activin receptor complex
## 1368 rough endoplasmic reticulum lumen
## 1369 methionine adenosyltransferase complex
## 1370 Holliday junction resolvase complex
## 1371 presynaptic active zone membrane
## 1372 cytoskeleton of presynaptic active zone
## 1373 cell tip
## 1374 tRNA-specific adenosine-34 deaminase complex
## 1375 cortical microtubule
## 1376 Ski complex
## 1377 striated muscle dense body
## 1378 neurofilament cytoskeleton
## 1379 excitatory synapse
## 1380 inhibitory synapse
## 1381 kinocilium
## 1382 stereocilium membrane
## 1383 cell pole
## 1384 clathrin-sculpted vesicle
## 1385 clathrin-sculpted acetylcholine transport vesicle membrane
## 1386 clathrin-sculpted glutamate transport vesicle membrane
## 1387 photoreceptor inner segment membrane
## 1388 cortical granule
## 1389 lipid tube
## 1390 clathrin-sculpted gamma-aminobutyric acid transport vesicle membrane
## 1391 phagolysosome membrane
## 1392 ASAP complex
## 1393 sublamina densa
## 1394 mitotic spindle astral microtubule
## 1395 tricellular tight junction
## 1396 transforming growth factor beta receptor complex
## 1397 synaptobrevin 2-SNAP-25-syntaxin-1a-complexin I complex
## 1398 synaptobrevin 2-SNAP-25-syntaxin-1a-complexin II complex
## 1399 synaptobrevin 2-SNAP-25-syntaxin-1a complex
## 1400 clathrin-sculpted monoamine transport vesicle membrane
## 1401 ciliary neurotrophic factor receptor complex
## 1402 DRM complex
## 1403 telosome
## 1404 growth hormone receptor complex
## 1405 RES complex
## 1406 beta-catenin-TCF7L2 complex
## 1407 endosome to plasma membrane transport vesicle
## 1408 exocytic vesicle
## 1409 transcription export complex 2
## 1410 DNA-dependent protein kinase complex
## 1411 nonhomologous end joining complex
## 1412 Grb2-EGFR complex
## 1413 integrin alphaIIb-beta3 complex
## 1414 elongin complex
## 1415 ERCC4-ERCC1 complex
## 1416 BRCA1-A complex
## 1417 PeBoW complex
## 1418 BRISC complex
## 1419 synaptobrevin 2-SNAP-25-syntaxin-3-complexin complex
## 1420 PCNA-p21 complex
## 1421 HAUS complex
## 1422 macropinocytic cup
## 1423 FHF complex
## 1424 mucus layer
## 1425 inner mucus layer
## 1426 outer mucus layer
## 1427 Tle3-Aes complex
## 1428 interleukin-23 complex
## 1429 pre-snoRNP complex
## 1430 PAS complex
## 1431 MOZ/MORF histone acetyltransferase complex
## 1432 Sin3-type complex
## 1433 paraferritin complex
## 1434 cell body fiber
## 1435 RNA polymerase I core factor complex
## 1436 SOSS complex
## 1437 microprocessor complex
## 1438 Golgi-associated vesicle lumen
## 1439 contractile ring
## 1440 Dsl1/NZR complex
## 1441 TFIIK complex
## 1442 translation initiation complex
## 1443 translation preinitiation complex
## 1444 U2-type prespliceosome
## 1445 U2-type catalytic step 1 spliceosome
## 1446 U2-type catalytic step 2 spliceosome
## 1447 U2-type post-mRNA release spliceosomal complex
## 1448 prespliceosome
## 1449 catalytic step 1 spliceosome
## 1450 post-spliceosomal complex
## 1451 U2-type post-spliceosomal complex
## 1452 alphav-beta3 integrin-vitronectin complex
## 1453 alpha9-beta1 integrin-vascular cell adhesion molecule-1 complex
## 1454 alpha9-beta1 integrin-ADAM8 complex
## 1455 SMAD protein complex
## 1456 SMAD2-SMAD3 protein complex
## 1457 SMAD3-SMAD4 protein complex
## 1458 TEAD-1-YAP complex
## 1459 TEAD-2-YAP complex
## 1460 NF-kappaB complex
## 1461 invadopodium
## 1462 invadopodium membrane
## 1463 clathrin complex
## 1464 integral component of cytoplasmic side of endoplasmic reticulum membrane
## 1465 eukaryotic translation initiation factor 3 complex, eIF3e
## 1466 eukaryotic translation initiation factor 3 complex, eIF3m
## 1467 pi-body
## 1468 piP-body
## 1469 integral component of lumenal side of endoplasmic reticulum membrane
## 1470 nucleus-vacuole junction
## 1471 integral component of external side of plasma membrane
## 1472 Nem1-Spo7 phosphatase complex
## 1473 neuronal ribonucleoprotein granule
## 1474 catenin-TCF7L2 complex
## 1475 gamma-catenin-TCF7L2 complex
## 1476 endocytic vesicle lumen
## 1477 monomeric IgA immunoglobulin complex
## 1478 secretory dimeric IgA immunoglobulin complex
## 1479 pentameric IgM immunoglobulin complex
## 1480 endoplasmic reticulum tubular network
## 1481 LUBAC complex
## 1482 MMXD complex
## 1483 BAT3 complex
## 1484 DUBm complex
## 1485 FANCM-MHF complex
## 1486 prominosome
## 1487 cleavage body
## 1488 XPC complex
## 1489 elastic fiber
## 1490 PTW/PP1 phosphatase complex
## 1491 MSL complex
## 1492 host cell mitochondrial intermembrane space
## 1493 host cell viral assembly compartment
## 1494 perineuronal net
## 1495 interleukin-23 receptor complex
## 1496 ER membrane protein complex
## 1497 IPAF inflammasome complex
## 1498 NLRP1 inflammasome complex
## 1499 endothelial microparticle
## 1500 box H/ACA scaRNP complex
## 1501 tRNA-splicing ligase complex
## 1502 meiotic spindle
## 1503 host cell PML body
## 1504 U2AF
## 1505 spanning component of membrane
## 1506 extrinsic component of Golgi membrane
## 1507 calcium ion-transporting ATPase complex
## 1508 CERF complex
## 1509 Flemming body
## 1510 nuclear transcriptional repressor complex
## 1511 RNA polymerase II transcription repressor complex
## 1512 RNA polymerase III transcription factor complex
## 1513 meiotic spindle pole
## 1514 apical cytoplasm
## 1515 cone matrix sheath
## 1516 box H/ACA telomerase RNP complex
## 1517 growth cone part
## 1518 central region of growth cone
## 1519 peripheral region of growth cone
## 1520 phagocytic vesicle lumen
## 1521 MPP7-DLG1-LIN7 complex
## 1522 TRAF2-GSTP1 complex
## 1523 CRLF-CLCF1 complex
## 1524 CNTFR-CLCF1 complex
## 1525 cyclin A1-CDK2 complex
## 1526 cyclin A2-CDK2 complex
## 1527 cyclin B1-CDK1 complex
## 1528 cyclin D2-CDK4 complex
## 1529 cyclin D2-CDK6 complex
## 1530 cyclin E1-CDK2 complex
## 1531 cyclin E2-CDK2 complex
## 1532 Bcl-2 family protein complex
## 1533 BAX complex
## 1534 BAK complex
## 1535 centralspindlin complex
## 1536 AIM2 inflammasome complex
## 1537 protease inhibitor complex
## 1538 protein C inhibitor-coagulation factor V complex
## 1539 protein C inhibitor-coagulation factor Xa complex
## 1540 protein C inhibitor-coagulation factor XI complex
## 1541 Shu complex
## 1542 tetraspanin-enriched microdomain
## 1543 alveolar lamellar body
## 1544 epidermal lamellar body
## 1545 sperm connecting piece
## 1546 sperm midpiece
## 1547 sperm mitochondrial sheath
## 1548 sperm annulus
## 1549 sperm end piece
## 1550 alveolar lamellar body membrane
## 1551 R2TP complex
## 1552 ripoptosome
## 1553 Rix1 complex
## 1554 perinucleolar compartment
## 1555 CIA complex
## 1556 MCM8-MCM9 complex
## 1557 photoreceptor disc membrane
## 1558 glial cytoplasmic inclusion
## 1559 classical Lewy body
## 1560 neurofibrillary tangle
## 1561 tubular endosome
## 1562 microtubule bundle
## 1563 mitotic spindle pole
## 1564 dense body
## 1565 apical dendrite
## 1566 basilar dendrite
## 1567 CA3 pyramidal cell dendrite
## 1568 sorting endosome
## 1569 spine apparatus
## 1570 dendritic tree
## 1571 astrocyte end-foot
## 1572 glial limiting end-foot
## 1573 mesaxon
## 1574 Schwann cell microvillus
## 1575 Lewy neurite
## 1576 multivesicular body lumen
## 1577 multivesicular body, internal vesicle
## 1578 multivesicular body, internal vesicle lumen
## 1579 Gemini of coiled bodies
## 1580 Rad6-Rad18 complex
## 1581 cardiac myofibril
## 1582 myosin II filament
## 1583 sperm plasma membrane
## 1584 ciliary transition fiber
## 1585 axonemal basal plate
## 1586 ciliary tip
## 1587 ciliary inversin compartment
## 1588 axonemal outer doublet
## 1589 transcriptional preinitiation complex
## 1590 lateral cell cortex
## 1591 sperm cytoplasmic droplet
## 1592 extrinsic component of omegasome membrane
## 1593 integral component of omegasome membrane
## 1594 extrinsic component of pre-autophagosomal structure membrane
## 1595 extrinsic component of autophagosome membrane
## 1596 integral component of autophagosome membrane
## 1597 A axonemal microtubule
## 1598 phosphatidylinositol 3-kinase complex, class I
## 1599 other organism cytoplasm
## 1600 lumenal side of Golgi membrane
## 1601 cytoplasmic side of endoplasmic reticulum membrane
## 1602 cytoplasmic side of rough endoplasmic reticulum membrane
## 1603 cytoplasmic side of early endosome membrane
## 1604 cytoplasmic side of late endosome membrane
## 1605 intrinsic component of synaptic vesicle membrane
## 1606 cytoplasmic side of lysosomal membrane
## 1607 lumenal side of lysosomal membrane
## 1608 lumenal side of membrane
## 1609 cytoplasmic side of apical plasma membrane
## 1610 mucin granule
## 1611 perivitelline space
## 1612 protein complex involved in cell adhesion
## 1613 network-forming collagen trimer
## 1614 complex of collagen trimers
## 1615 basement membrane collagen trimer
## 1616 Dcp1-Dcp2 complex
## 1617 endoplasmic reticulum tubular network membrane
## 1618 endoplasmic reticulum subcompartment
## 1619 presynaptic endosome
## 1620 presynaptic endocytic zone membrane
## 1621 postsynaptic recycling endosome
## 1622 postsynaptic density membrane
## 1623 postsynaptic endocytic zone
## 1624 postsynaptic endocytic zone membrane
## 1625 postsynaptic endosome
## 1626 extrinsic component of synaptic vesicle membrane
## 1627 HCN channel complex
## 1628 postsynaptic actin cytoskeleton
## 1629 epididymosome
## 1630 extrinsic component of presynaptic membrane
## 1631 extrinsic component of postsynaptic membrane
## 1632 GABA-ergic synapse
## 1633 symmetric, GABA-ergic, inhibitory synapse
## 1634 asymmetric, glutamatergic, excitatory synapse
## 1635 neuronal dense core vesicle
## 1636 anchored component of synaptic vesicle membrane
## 1637 extrinsic component of postsynaptic endosome membrane
## 1638 activating signal cointegrator 1 complex
## 1639 integral component of postsynaptic membrane
## 1640 integral component of presynaptic membrane
## 1641 integral component of postsynaptic density membrane
## 1642 mitochondrion-derived vesicle
## 1643 BORC complex
## 1644 caveola neck
## 1645 matrix side of mitochondrial inner membrane
## 1646 postsynaptic specialization membrane
## 1647 dendritic microtubule
## 1648 GMP reductase complex
## 1649 kinociliary basal body
## 1650 GABA receptor complex
## 1651 GABA-A receptor complex
## 1652 dendritic filopodium
## 1653 GTPase activator complex
## 1654 pyruvate kinase complex
## 1655 omegasome membrane
## 1656 amylin receptor complex
## 1657 sweet taste receptor complex
## 1658 serotonin-activated cation-selective channel complex
## 1659 integral component of lysosomal membrane
## 1660 serine-type peptidase complex
## 1661 serine-type endopeptidase complex
## 1662 cytoplasmic microtubule bundle
## 1663 granular vesicle
## 1664 neurosecretory vesicle
## 1665 hippocampal mossy fiber expansion
## 1666 pericellular basket
## 1667 pinceau fiber
## 1668 parallel fiber
## 1669 Lewy body core
## 1670 Lewy body corona
## 1671 spindle matrix
## 1672 TRAPPII protein complex
## 1673 TRAPPIII protein complex
## 1674 periciliary membrane compartment
## 1675 spermatoproteasome complex
## 1676 messenger ribonucleoprotein complex
## 1677 Gtr1-Gtr2 GTPase complex
## 1678 uniplex complex
## 1679 bub1-bub3 complex
## 1680 ATG1/ULK1 kinase complex
## 1681 Ire1 complex
## 1682 sumoylated E2 ligase complex
## 1683 terminal web
## 1684 DNA repair complex
## 1685 3M complex
## 1686 RZZ complex
## 1687 ryanodine receptor complex
## 1688 upper tip-link density
## 1689 Parkin-FBXW7-Cul1 ubiquitin ligase complex
## 1690 L-type voltage-gated calcium channel complex
## 1691 omegasome
## 1692 Cry-Per complex
## 1693 HSP90-CDC37 chaperone complex
## 1694 TERT-RMRP complex
## 1695 perinuclear endoplasmic reticulum membrane
## 1696 cardiac Troponin complex
## 1697 ATF4-CREB1 transcription factor complex
## 1698 ATF1-ATF4 transcription factor complex
## 1699 AIP1-IRE1 complex
## 1700 IRE1-TRAF2-ASK1 complex
## 1701 CHOP-ATF4 complex
## 1702 IRE1-RACK1-PP2A complex
## 1703 proximal dendrite
## 1704 PCSK9-LDLR complex
## 1705 PCSK9-AnxA2 complex
## 1706 CSF1-CSF1R complex
## 1707 USH2 complex
## 1708 nuclear subtelomeric heterochromatin
## 1709 axonemal central apparatus
## 1710 axonemal central pair projection
## 1711 cytoplasmic periphery of the nuclear pore complex
## 1712 Lsm1-7-Pat1 complex
## 1713 VCP-NSFL1C complex
## 1714 microvesicle
## 1715 EARP complex
## 1716 growth cone lamellipodium
## 1717 photoreceptor cell terminal bouton
## 1718 growth cone filopodium
## 1719 subsarcolemmal mitochondrion
## 1720 interfibrillar mitochondrion
## 1721 Wnt-Frizzled-LRP5/6 complex
## 1722 cytoplasmic side of nuclear pore
## 1723 CST complex
## 1724 Wnt signalosome
## 1725 sperm head plasma membrane
## 1726 ooplasm
## 1727 PET complex
## 1728 EMILIN complex
## Hyper_Total_Regions Hyper_Expected Hyper_Foreground_Region_Hits
## 1 964 209.4544000 247
## 2 892 193.8105000 230
## 3 22 4.7800790 13
## 4 1787 388.2728000 416
## 5 1082 235.0930000 267
## 6 2118 460.1913000 475
## 7 10 2.1727630 7
## 8 822 178.6011000 207
## 9 49 10.6465400 20
## 10 4 0.8691053 4
## 11 4 0.8691053 4
## 12 6 1.3036580 5
## 13 184 39.9788500 56
## 14 184 39.9788500 56
## 15 2103 456.9321000 471
## 16 274 59.5337200 78
## 17 1627 353.5086000 377
## 18 5 1.0863820 4
## 19 38 8.2565010 15
## 20 1644 357.2023000 378
## 21 3 0.6518290 3
## 22 3 0.6518290 3
## 23 16 3.4764210 8
## 24 213 46.2798600 60
## 25 1954 424.5580000 440
## 26 126 27.3768200 38
## 27 1337 290.4985000 312
## 28 80 17.3821100 26
## 29 232 50.4081100 64
## 30 152 33.0260000 44
## 31 6 1.3036580 4
## 32 18 3.9109740 8
## 33 9 1.9554870 5
## 34 25 5.4319080 10
## 35 634 137.7532000 155
## 36 22 4.7800790 9
## 37 4 0.8691053 3
## 38 4 0.8691053 3
## 39 4 0.8691053 3
## 40 4 0.8691053 3
## 41 4 0.8691053 3
## 42 4 0.8691053 3
## 43 105 22.8140100 31
## 44 134 29.1150300 38
## 45 13 2.8245920 6
## 46 23 4.9973560 9
## 47 23 4.9973560 9
## 48 7 1.5209340 4
## 49 7 1.5209340 4
## 50 202 43.8898200 54
## 51 10 2.1727630 5
## 52 2 0.4345527 2
## 53 2 0.4345527 2
## 54 2 0.4345527 2
## 55 2 0.4345527 2
## 56 2 0.4345527 2
## 57 2 0.4345527 2
## 58 2 0.4345527 2
## 59 2 0.4345527 2
## 60 2 0.4345527 2
## 61 2 0.4345527 2
## 62 2 0.4345527 2
## 63 1965 426.9480000 438
## 64 35 7.6046720 12
## 65 39 8.4737770 13
## 66 39 8.4737770 13
## 67 28 6.0837370 10
## 68 32 6.9528430 11
## 69 11 2.3900400 5
## 70 111 24.1176700 31
## 71 55 11.9502000 17
## 72 995 216.1900000 231
## 73 91 19.7721500 26
## 74 5 1.0863820 3
## 75 5 1.0863820 3
## 76 5 1.0863820 3
## 77 5 1.0863820 3
## 78 5 1.0863820 3
## 79 8 1.7382110 4
## 80 8 1.7382110 4
## 81 146 31.7223400 39
## 82 15 3.2591450 6
## 83 15 3.2591450 6
## 84 15 3.2591450 6
## 85 279 60.6201000 70
## 86 26 5.6491850 9
## 87 61 13.2538600 18
## 88 61 13.2538600 18
## 89 34 7.3873950 11
## 90 82 17.8166600 23
## 91 132 28.6804800 35
## 92 9 1.9554870 4
## 93 31 6.7355660 10
## 94 39 8.4737770 12
## 95 6 1.3036580 3
## 96 6 1.3036580 3
## 97 6 1.3036580 3
## 98 3 0.6518290 2
## 99 3 0.6518290 2
## 100 3 0.6518290 2
## 101 3 0.6518290 2
## 102 3 0.6518290 2
## 103 3 0.6518290 2
## 104 3 0.6518290 2
## 105 3 0.6518290 2
## 106 3 0.6518290 2
## 107 3 0.6518290 2
## 108 55 11.9502000 16
## 109 47 10.2119900 14
## 110 246 53.4499800 61
## 111 160 34.7642100 41
## 112 24 5.2146320 8
## 113 13 2.8245920 5
## 114 10 2.1727630 4
## 115 10 2.1727630 4
## 116 10 2.1727630 4
## 117 10 2.1727630 4
## 118 25 5.4319080 8
## 119 25 5.4319080 8
## 120 25 5.4319080 8
## 121 29 6.3010140 9
## 122 29 6.3010140 9
## 123 33 7.1701190 10
## 124 14 3.0418690 5
## 125 318 69.0938700 76
## 126 7 1.5209340 3
## 127 7 1.5209340 3
## 128 7 1.5209340 3
## 129 7 1.5209340 3
## 130 7 1.5209340 3
## 131 7 1.5209340 3
## 132 7 1.5209340 3
## 133 7 1.5209340 3
## 134 26 5.6491850 8
## 135 55 11.9502000 15
## 136 2193 476.4870000 480
## 137 2193 476.4870000 480
## 138 11 2.3900400 4
## 139 11 2.3900400 4
## 140 4 0.8691053 2
## 141 4 0.8691053 2
## 142 4 0.8691053 2
## 143 4 0.8691053 2
## 144 4 0.8691053 2
## 145 4 0.8691053 2
## 146 4 0.8691053 2
## 147 4 0.8691053 2
## 148 15 3.2591450 5
## 149 172 37.3715300 42
## 150 2033 441.7228000 447
## 151 31 6.7355660 9
## 152 23 4.9973560 7
## 153 1 0.2172763 1
## 154 1 0.2172763 1
## 155 1 0.2172763 1
## 156 1 0.2172763 1
## 157 1 0.2172763 1
## 158 1 0.2172763 1
## 159 1 0.2172763 1
## 160 1 0.2172763 1
## 161 1 0.2172763 1
## 162 1 0.2172763 1
## 163 1 0.2172763 1
## 164 1 0.2172763 1
## 165 1 0.2172763 1
## 166 1 0.2172763 1
## 167 1 0.2172763 1
## 168 1 0.2172763 1
## 169 1 0.2172763 1
## 170 1 0.2172763 1
## 171 1 0.2172763 1
## 172 1 0.2172763 1
## 173 1 0.2172763 1
## 174 1 0.2172763 1
## 175 1 0.2172763 1
## 176 1 0.2172763 1
## 177 1 0.2172763 1
## 178 1 0.2172763 1
## 179 1 0.2172763 1
## 180 1 0.2172763 1
## 181 1 0.2172763 1
## 182 217 47.1489600 52
## 183 44 9.5601590 12
## 184 44 9.5601590 12
## 185 8 1.7382110 3
## 186 8 1.7382110 3
## 187 8 1.7382110 3
## 188 8 1.7382110 3
## 189 8 1.7382110 3
## 190 96 20.8585300 24
## 191 24 5.2146320 7
## 192 12 2.6073160 4
## 193 12 2.6073160 4
## 194 16 3.4764210 5
## 195 189 41.0652300 45
## 196 25 5.4319080 7
## 197 68 14.7747900 17
## 198 5 1.0863820 2
## 199 5 1.0863820 2
## 200 5 1.0863820 2
## 201 5 1.0863820 2
## 202 5 1.0863820 2
## 203 5 1.0863820 2
## 204 38 8.2565010 10
## 205 17 3.6936980 5
## 206 17 3.6936980 5
## 207 17 3.6936980 5
## 208 51 11.0810900 13
## 209 13 2.8245920 4
## 210 13 2.8245920 4
## 211 34 7.3873950 9
## 212 30 6.5182900 8
## 213 30 6.5182900 8
## 214 365 79.3058600 83
## 215 65 14.1229600 16
## 216 52 11.2983700 13
## 217 74 16.0784500 18
## 218 83 18.0339400 20
## 219 22 4.7800790 6
## 220 22 4.7800790 6
## 221 79 17.1648300 19
## 222 18 3.9109740 5
## 223 18 3.9109740 5
## 224 18 3.9109740 5
## 225 44 9.5601590 11
## 226 142 30.8532400 33
## 227 10 2.1727630 3
## 228 10 2.1727630 3
## 229 10 2.1727630 3
## 230 10 2.1727630 3
## 231 23 4.9973560 6
## 232 45 9.7774350 11
## 233 6 1.3036580 2
## 234 6 1.3036580 2
## 235 6 1.3036580 2
## 236 6 1.3036580 2
## 237 6 1.3036580 2
## 238 6 1.3036580 2
## 239 2 0.4345527 1
## 240 2 0.4345527 1
## 241 2 0.4345527 1
## 242 2 0.4345527 1
## 243 2 0.4345527 1
## 244 2 0.4345527 1
## 245 2 0.4345527 1
## 246 2 0.4345527 1
## 247 2 0.4345527 1
## 248 2 0.4345527 1
## 249 2 0.4345527 1
## 250 2 0.4345527 1
## 251 2 0.4345527 1
## 252 2 0.4345527 1
## 253 2 0.4345527 1
## 254 2 0.4345527 1
## 255 32 6.9528430 8
## 256 77 16.7302800 18
## 257 28 6.0837370 7
## 258 28 6.0837370 7
## 259 177 38.4579100 40
## 260 15 3.2591450 4
## 261 11 2.3900400 3
## 262 11 2.3900400 3
## 263 11 2.3900400 3
## 264 11 2.3900400 3
## 265 74 16.0784500 17
## 266 20 4.3455270 5
## 267 20 4.3455270 5
## 268 25 5.4319080 6
## 269 7 1.5209340 2
## 270 7 1.5209340 2
## 271 7 1.5209340 2
## 272 7 1.5209340 2
## 273 7 1.5209340 2
## 274 16 3.4764210 4
## 275 80 17.3821100 18
## 276 21 4.5628030 5
## 277 21 4.5628030 5
## 278 12 2.6073160 3
## 279 49 10.6465400 11
## 280 40 8.6910530 9
## 281 54 11.7329200 12
## 282 54 11.7329200 12
## 283 3 0.6518290 1
## 284 3 0.6518290 1
## 285 3 0.6518290 1
## 286 3 0.6518290 1
## 287 3 0.6518290 1
## 288 3 0.6518290 1
## 289 3 0.6518290 1
## 290 3 0.6518290 1
## 291 3 0.6518290 1
## 292 3 0.6518290 1
## 293 3 0.6518290 1
## 294 3 0.6518290 1
## 295 3 0.6518290 1
## 296 3 0.6518290 1
## 297 31 6.7355660 7
## 298 31 6.7355660 7
## 299 22 4.7800790 5
## 300 22 4.7800790 5
## 301 143 31.0705200 31
## 302 92 19.9894200 20
## 303 8 1.7382110 2
## 304 8 1.7382110 2
## 305 8 1.7382110 2
## 306 8 1.7382110 2
## 307 8 1.7382110 2
## 308 8 1.7382110 2
## 309 8 1.7382110 2
## 310 8 1.7382110 2
## 311 8 1.7382110 2
## 312 8 1.7382110 2
## 313 8 1.7382110 2
## 314 8 1.7382110 2
## 315 8 1.7382110 2
## 316 8 1.7382110 2
## 317 8 1.7382110 2
## 318 27 5.8664610 6
## 319 27 5.8664610 6
## 320 13 2.8245920 3
## 321 18 3.9109740 4
## 322 802 174.2556000 173
## 323 61 13.2538600 13
## 324 61 13.2538600 13
## 325 94 20.4239800 20
## 326 94 20.4239800 20
## 327 94 20.4239800 20
## 328 847 184.0331000 182
## 329 43 9.3428820 9
## 330 9 1.9554870 2
## 331 9 1.9554870 2
## 332 9 1.9554870 2
## 333 9 1.9554870 2
## 334 9 1.9554870 2
## 335 14 3.0418690 3
## 336 14 3.0418690 3
## 337 14 3.0418690 3
## 338 14 3.0418690 3
## 339 339 73.6566800 72
## 340 19 4.1282500 4
## 341 19 4.1282500 4
## 342 19 4.1282500 4
## 343 53 11.5156500 11
## 344 53 11.5156500 11
## 345 4 0.8691053 1
## 346 4 0.8691053 1
## 347 4 0.8691053 1
## 348 4 0.8691053 1
## 349 4 0.8691053 1
## 350 4 0.8691053 1
## 351 4 0.8691053 1
## 352 4 0.8691053 1
## 353 4 0.8691053 1
## 354 29 6.3010140 6
## 355 39 8.4737770 8
## 356 78 16.9475500 16
## 357 598 129.9312000 127
## 358 126 27.3768200 26
## 359 25 5.4319080 5
## 360 25 5.4319080 5
## 361 20 4.3455270 4
## 362 30 6.5182900 6
## 363 30 6.5182900 6
## 364 35 7.6046720 7
## 365 35 7.6046720 7
## 366 15 3.2591450 3
## 367 15 3.2591450 3
## 368 45 9.7774350 9
## 369 50 10.8638200 10
## 370 50 10.8638200 10
## 371 10 2.1727630 2
## 372 10 2.1727630 2
## 373 10 2.1727630 2
## 374 10 2.1727630 2
## 375 55 11.9502000 11
## 376 65 14.1229600 13
## 377 70 15.2093400 14
## 378 70 15.2093400 14
## 379 70 15.2093400 14
## 380 70 15.2093400 14
## 381 123 26.7249900 25
## 382 75 16.2957200 15
## 383 36 7.8219480 7
## 384 31 6.7355660 6
## 385 31 6.7355660 6
## 386 26 5.6491850 5
## 387 26 5.6491850 5
## 388 21 4.5628030 4
## 389 21 4.5628030 4
## 390 21 4.5628030 4
## 391 1557 338.2993000 334
## 392 124 26.9422700 25
## 393 66 14.3402400 13
## 394 5 1.0863820 1
## 395 5 1.0863820 1
## 396 5 1.0863820 1
## 397 5 1.0863820 1
## 398 5 1.0863820 1
## 399 5 1.0863820 1
## 400 5 1.0863820 1
## 401 5 1.0863820 1
## 402 5 1.0863820 1
## 403 5 1.0863820 1
## 404 5 1.0863820 1
## 405 5 1.0863820 1
## 406 5 1.0863820 1
## 407 5 1.0863820 1
## 408 5 1.0863820 1
## 409 115 24.9867800 23
## 410 1818 395.0084000 391
## 411 922 200.3288000 195
## 412 11 2.3900400 2
## 413 11 2.3900400 2
## 414 11 2.3900400 2
## 415 11 2.3900400 2
## 416 27 5.8664610 5
## 417 27 5.8664610 5
## 418 126 27.3768200 25
## 419 131 28.4632000 26
## 420 48 10.4292600 9
## 421 88 19.1203200 17
## 422 33 7.1701190 6
## 423 84 18.2512100 16
## 424 23 4.9973560 4
## 425 23 4.9973560 4
## 426 6 1.3036580 1
## 427 6 1.3036580 1
## 428 6 1.3036580 1
## 429 6 1.3036580 1
## 430 6 1.3036580 1
## 431 6 1.3036580 1
## 432 6 1.3036580 1
## 433 6 1.3036580 1
## 434 6 1.3036580 1
## 435 6 1.3036580 1
## 436 6 1.3036580 1
## 437 6 1.3036580 1
## 438 6 1.3036580 1
## 439 6 1.3036580 1
## 440 12 2.6073160 2
## 441 12 2.6073160 2
## 442 12 2.6073160 2
## 443 148 32.1569000 29
## 444 18 3.9109740 3
## 445 29 6.3010140 5
## 446 29 6.3010140 5
## 447 24 5.2146320 4
## 448 24 5.2146320 4
## 449 24 5.2146320 4
## 450 101 21.9449100 19
## 451 101 21.9449100 19
## 452 204 44.3243700 40
## 453 204 44.3243700 40
## 454 13 2.8245920 2
## 455 13 2.8245920 2
## 456 30 6.5182900 5
## 457 46 9.9947110 8
## 458 19 4.1282500 3
## 459 19 4.1282500 3
## 460 7 1.5209340 1
## 461 7 1.5209340 1
## 462 7 1.5209340 1
## 463 7 1.5209340 1
## 464 7 1.5209340 1
## 465 7 1.5209340 1
## 466 7 1.5209340 1
## 467 7 1.5209340 1
## 468 7 1.5209340 1
## 469 25 5.4319080 4
## 470 73 15.8611700 13
## 471 31 6.7355660 5
## 472 104 22.5967400 19
## 473 20 4.3455270 3
## 474 20 4.3455270 3
## 475 20 4.3455270 3
## 476 20 4.3455270 3
## 477 26 5.6491850 4
## 478 165 35.8505900 31
## 479 95 20.6412500 17
## 480 32 6.9528430 5
## 481 43 9.3428820 7
## 482 43 9.3428820 7
## 483 43 9.3428820 7
## 484 8 1.7382110 1
## 485 8 1.7382110 1
## 486 8 1.7382110 1
## 487 8 1.7382110 1
## 488 8 1.7382110 1
## 489 8 1.7382110 1
## 490 8 1.7382110 1
## 491 91 19.7721500 16
## 492 15 3.2591450 2
## 493 15 3.2591450 2
## 494 15 3.2591450 2
## 495 27 5.8664610 4
## 496 27 5.8664610 4
## 497 162 35.1987700 30
## 498 429 93.2115500 85
## 499 182 39.5442900 34
## 500 87 18.9030400 15
## 501 128 27.8113700 23
## 502 123 26.7249900 22
## 503 45 9.7774350 7
## 504 9 1.9554870 1
## 505 9 1.9554870 1
## 506 9 1.9554870 1
## 507 9 1.9554870 1
## 508 9 1.9554870 1
## 509 9 1.9554870 1
## 510 9 1.9554870 1
## 511 34 7.3873950 5
## 512 34 7.3873950 5
## 513 34 7.3873950 5
## 514 16 3.4764210 2
## 515 16 3.4764210 2
## 516 16 3.4764210 2
## 517 16 3.4764210 2
## 518 16 3.4764210 2
## 519 16 3.4764210 2
## 520 259 56.2745700 49
## 521 216 46.9316900 40
## 522 23 4.9973560 3
## 523 177 38.4579100 32
## 524 17 3.6936980 2
## 525 17 3.6936980 2
## 526 47 10.2119900 7
## 527 10 2.1727630 1
## 528 10 2.1727630 1
## 529 10 2.1727630 1
## 530 395 85.8241500 76
## 531 143 31.0705200 25
## 532 36 7.8219480 5
## 533 24 5.2146320 3
## 534 42 9.1256060 6
## 535 18 3.9109740 2
## 536 393 85.3896000 75
## 537 119 25.8558800 20
## 538 114 24.7695000 19
## 539 11 2.3900400 1
## 540 11 2.3900400 1
## 541 11 2.3900400 1
## 542 11 2.3900400 1
## 543 72 15.6439000 11
## 544 168 36.5024200 29
## 545 26 5.6491850 3
## 546 12 2.6073160 1
## 547 12 2.6073160 1
## 548 12 2.6073160 1
## 549 96 20.8585300 15
## 550 69 14.9920700 10
## 551 13 2.8245920 1
## 552 13 2.8245920 1
## 553 13 2.8245920 1
## 554 13 2.8245920 1
## 555 13 2.8245920 1
## 556 53 11.5156500 7
## 557 617 134.0595000 119
## 558 618 134.2768000 119
## 559 618 134.2768000 119
## 560 14 3.0418690 1
## 561 22 4.7800790 2
## 562 201 43.6725400 34
## 563 201 43.6725400 34
## 564 201 43.6725400 34
## 565 165 35.8505900 27
## 566 253 54.9709100 44
## 567 55 11.9502000 7
## 568 55 11.9502000 7
## 569 55 11.9502000 7
## 570 55 11.9502000 7
## 571 55 11.9502000 7
## 572 96 20.8585300 14
## 573 56 12.1674700 7
## 574 15 3.2591450 1
## 575 24 5.2146320 2
## 576 24 5.2146320 2
## 577 104 22.5967400 15
## 578 16 3.4764210 1
## 579 223 48.4526200 37
## 580 280 60.8373700 48
## 581 25 5.4319080 2
## 582 209 45.4107500 34
## 583 95 20.6412500 13
## 584 17 3.6936980 1
## 585 17 3.6936980 1
## 586 17 3.6936980 1
## 587 33 7.1701190 3
## 588 40 8.6910530 4
## 589 40 8.6910530 4
## 590 348 75.6121600 61
## 591 26 5.6491850 2
## 592 141 30.6359600 21
## 593 73 15.8611700 9
## 594 18 3.9109740 1
## 595 148 32.1569000 22
## 596 149 32.3741700 22
## 597 778 169.0410000 148
## 598 323 70.1802600 55
## 599 812 176.4284000 155
## 600 63 13.6884100 7
## 601 20 4.3455270 1
## 602 29 6.3010140 2
## 603 856 185.9885000 163
## 604 90 19.5548700 11
## 605 298 64.7483500 49
## 606 60 13.0365800 6
## 607 39 8.4737770 3
## 608 145 31.5050700 20
## 609 99 21.5103600 12
## 610 360 78.2194800 60
## 611 203 44.1071000 30
## 612 88 19.1203200 10
## 613 383 83.2168400 64
## 614 25 5.4319080 1
## 615 25 5.4319080 1
## 616 134 29.1150300 17
## 617 26 5.6491850 1
## 618 200 43.4552700 28
## 619 37 8.0392240 2
## 620 470 102.1199000 78
## 621 39 8.4737770 2
## 622 63 13.6884100 4
## 623 307 66.7038300 44
## 624 320 69.5284300 44
## 625 71 15.4266200 4
## 626 71 15.4266200 4
## 627 119 25.8558800 10
## 628 912 198.1560000 159
## 629 920 199.8942000 160
## 630 1417 307.8806000 265
## 631 539 117.1119000 80
## 632 1106 240.3076000 195
## 633 856 185.9885000 131
## 634 869 188.8131000 131
## 635 0 0.0000000 0
## 636 0 0.0000000 0
## 637 0 0.0000000 0
## 638 16 3.4764210 0
## 639 1 0.2172763 0
## 640 0 0.0000000 0
## 641 0 0.0000000 0
## 642 0 0.0000000 0
## 643 2 0.4345527 0
## 644 1 0.2172763 0
## 645 2 0.4345527 0
## 646 0 0.0000000 0
## 647 1 0.2172763 0
## 648 0 0.0000000 0
## 649 1 0.2172763 0
## 650 0 0.0000000 0
## 651 0 0.0000000 0
## 652 0 0.0000000 0
## 653 2 0.4345527 0
## 654 1 0.2172763 0
## 655 0 0.0000000 0
## 656 0 0.0000000 0
## 657 0 0.0000000 0
## 658 1 0.2172763 0
## 659 0 0.0000000 0
## 660 0 0.0000000 0
## 661 0 0.0000000 0
## 662 0 0.0000000 0
## 663 3 0.6518290 0
## 664 0 0.0000000 0
## 665 0 0.0000000 0
## 666 0 0.0000000 0
## 667 2 0.4345527 0
## 668 0 0.0000000 0
## 669 0 0.0000000 0
## 670 0 0.0000000 0
## 671 0 0.0000000 0
## 672 1 0.2172763 0
## 673 0 0.0000000 0
## 674 0 0.0000000 0
## 675 0 0.0000000 0
## 676 0 0.0000000 0
## 677 0 0.0000000 0
## 678 0 0.0000000 0
## 679 0 0.0000000 0
## 680 0 0.0000000 0
## 681 0 0.0000000 0
## 682 0 0.0000000 0
## 683 0 0.0000000 0
## 684 0 0.0000000 0
## 685 0 0.0000000 0
## 686 0 0.0000000 0
## 687 0 0.0000000 0
## 688 0 0.0000000 0
## 689 0 0.0000000 0
## 690 4 0.8691053 0
## 691 0 0.0000000 0
## 692 0 0.0000000 0
## 693 0 0.0000000 0
## 694 0 0.0000000 0
## 695 0 0.0000000 0
## 696 0 0.0000000 0
## 697 0 0.0000000 0
## 698 1 0.2172763 0
## 699 0 0.0000000 0
## 700 0 0.0000000 0
## 701 0 0.0000000 0
## 702 0 0.0000000 0
## 703 0 0.0000000 0
## 704 1 0.2172763 0
## 705 1 0.2172763 0
## 706 1 0.2172763 0
## 707 5 1.0863820 0
## 708 0 0.0000000 0
## 709 0 0.0000000 0
## 710 0 0.0000000 0
## 711 0 0.0000000 0
## 712 0 0.0000000 0
## 713 0 0.0000000 0
## 714 0 0.0000000 0
## 715 0 0.0000000 0
## 716 1 0.2172763 0
## 717 0 0.0000000 0
## 718 0 0.0000000 0
## 719 0 0.0000000 0
## 720 0 0.0000000 0
## 721 0 0.0000000 0
## 722 0 0.0000000 0
## 723 0 0.0000000 0
## 724 1 0.2172763 0
## 725 4 0.8691053 0
## 726 0 0.0000000 0
## 727 1 0.2172763 0
## 728 0 0.0000000 0
## 729 0 0.0000000 0
## 730 0 0.0000000 0
## 731 0 0.0000000 0
## 732 0 0.0000000 0
## 733 0 0.0000000 0
## 734 0 0.0000000 0
## 735 0 0.0000000 0
## 736 1 0.2172763 0
## 737 2 0.4345527 0
## 738 0 0.0000000 0
## 739 0 0.0000000 0
## 740 0 0.0000000 0
## 741 2 0.4345527 0
## 742 0 0.0000000 0
## 743 1 0.2172763 0
## 744 5 1.0863820 0
## 745 0 0.0000000 0
## 746 1 0.2172763 0
## 747 0 0.0000000 0
## 748 0 0.0000000 0
## 749 2 0.4345527 0
## 750 0 0.0000000 0
## 751 5 1.0863820 0
## 752 0 0.0000000 0
## 753 0 0.0000000 0
## 754 5 1.0863820 0
## 755 0 0.0000000 0
## 756 0 0.0000000 0
## 757 0 0.0000000 0
## 758 0 0.0000000 0
## 759 2 0.4345527 0
## 760 0 0.0000000 0
## 761 0 0.0000000 0
## 762 0 0.0000000 0
## 763 0 0.0000000 0
## 764 0 0.0000000 0
## 765 0 0.0000000 0
## 766 0 0.0000000 0
## 767 4 0.8691053 0
## 768 1 0.2172763 0
## 769 0 0.0000000 0
## 770 0 0.0000000 0
## 771 0 0.0000000 0
## 772 0 0.0000000 0
## 773 0 0.0000000 0
## 774 0 0.0000000 0
## 775 1 0.2172763 0
## 776 2 0.4345527 0
## 777 0 0.0000000 0
## 778 0 0.0000000 0
## 779 1 0.2172763 0
## 780 0 0.0000000 0
## 781 0 0.0000000 0
## 782 0 0.0000000 0
## 783 0 0.0000000 0
## 784 0 0.0000000 0
## 785 0 0.0000000 0
## 786 4 0.8691053 0
## 787 0 0.0000000 0
## 788 1 0.2172763 0
## 789 2 0.4345527 0
## 790 0 0.0000000 0
## 791 0 0.0000000 0
## 792 0 0.0000000 0
## 793 2 0.4345527 0
## 794 2 0.4345527 0
## 795 0 0.0000000 0
## 796 3 0.6518290 0
## 797 0 0.0000000 0
## 798 0 0.0000000 0
## 799 1 0.2172763 0
## 800 3 0.6518290 0
## 801 0 0.0000000 0
## 802 0 0.0000000 0
## 803 0 0.0000000 0
## 804 1 0.2172763 0
## 805 3 0.6518290 0
## 806 0 0.0000000 0
## 807 0 0.0000000 0
## 808 1 0.2172763 0
## 809 2 0.4345527 0
## 810 0 0.0000000 0
## 811 1 0.2172763 0
## 812 0 0.0000000 0
## 813 5 1.0863820 0
## 814 1 0.2172763 0
## 815 0 0.0000000 0
## 816 0 0.0000000 0
## 817 0 0.0000000 0
## 818 2 0.4345527 0
## 819 0 0.0000000 0
## 820 0 0.0000000 0
## 821 0 0.0000000 0
## 822 0 0.0000000 0
## 823 3 0.6518290 0
## 824 0 0.0000000 0
## 825 0 0.0000000 0
## 826 0 0.0000000 0
## 827 13 2.8245920 0
## 828 0 0.0000000 0
## 829 0 0.0000000 0
## 830 0 0.0000000 0
## 831 0 0.0000000 0
## 832 0 0.0000000 0
## 833 0 0.0000000 0
## 834 0 0.0000000 0
## 835 0 0.0000000 0
## 836 1 0.2172763 0
## 837 3 0.6518290 0
## 838 0 0.0000000 0
## 839 0 0.0000000 0
## 840 0 0.0000000 0
## 841 0 0.0000000 0
## 842 0 0.0000000 0
## 843 0 0.0000000 0
## 844 0 0.0000000 0
## 845 0 0.0000000 0
## 846 0 0.0000000 0
## 847 0 0.0000000 0
## 848 0 0.0000000 0
## 849 26 5.6491850 0
## 850 0 0.0000000 0
## 851 0 0.0000000 0
## 852 0 0.0000000 0
## 853 0 0.0000000 0
## 854 4 0.8691053 0
## 855 0 0.0000000 0
## 856 0 0.0000000 0
## 857 0 0.0000000 0
## 858 0 0.0000000 0
## 859 0 0.0000000 0
## 860 0 0.0000000 0
## 861 0 0.0000000 0
## 862 0 0.0000000 0
## 863 1 0.2172763 0
## 864 0 0.0000000 0
## 865 0 0.0000000 0
## 866 0 0.0000000 0
## 867 0 0.0000000 0
## 868 0 0.0000000 0
## 869 0 0.0000000 0
## 870 0 0.0000000 0
## 871 0 0.0000000 0
## 872 0 0.0000000 0
## 873 0 0.0000000 0
## 874 0 0.0000000 0
## 875 0 0.0000000 0
## 876 5 1.0863820 0
## 877 0 0.0000000 0
## 878 2 0.4345527 0
## 879 0 0.0000000 0
## 880 0 0.0000000 0
## 881 0 0.0000000 0
## 882 0 0.0000000 0
## 883 0 0.0000000 0
## 884 0 0.0000000 0
## 885 0 0.0000000 0
## 886 0 0.0000000 0
## 887 0 0.0000000 0
## 888 0 0.0000000 0
## 889 3 0.6518290 0
## 890 0 0.0000000 0
## 891 2 0.4345527 0
## 892 3 0.6518290 0
## 893 0 0.0000000 0
## 894 0 0.0000000 0
## 895 0 0.0000000 0
## 896 3 0.6518290 0
## 897 2 0.4345527 0
## 898 0 0.0000000 0
## 899 0 0.0000000 0
## 900 5 1.0863820 0
## 901 5 1.0863820 0
## 902 0 0.0000000 0
## 903 3 0.6518290 0
## 904 4 0.8691053 0
## 905 0 0.0000000 0
## 906 0 0.0000000 0
## 907 0 0.0000000 0
## 908 0 0.0000000 0
## 909 0 0.0000000 0
## 910 1 0.2172763 0
## 911 0 0.0000000 0
## 912 0 0.0000000 0
## 913 0 0.0000000 0
## 914 0 0.0000000 0
## 915 2 0.4345527 0
## 916 1 0.2172763 0
## 917 0 0.0000000 0
## 918 0 0.0000000 0
## 919 0 0.0000000 0
## 920 0 0.0000000 0
## 921 0 0.0000000 0
## 922 0 0.0000000 0
## 923 0 0.0000000 0
## 924 0 0.0000000 0
## 925 0 0.0000000 0
## 926 0 0.0000000 0
## 927 1 0.2172763 0
## 928 2 0.4345527 0
## 929 0 0.0000000 0
## 930 0 0.0000000 0
## 931 0 0.0000000 0
## 932 0 0.0000000 0
## 933 1 0.2172763 0
## 934 0 0.0000000 0
## 935 0 0.0000000 0
## 936 1 0.2172763 0
## 937 0 0.0000000 0
## 938 0 0.0000000 0
## 939 0 0.0000000 0
## 940 0 0.0000000 0
## 941 1 0.2172763 0
## 942 2 0.4345527 0
## 943 0 0.0000000 0
## 944 1 0.2172763 0
## 945 2 0.4345527 0
## 946 3 0.6518290 0
## 947 5 1.0863820 0
## 948 0 0.0000000 0
## 949 0 0.0000000 0
## 950 0 0.0000000 0
## 951 0 0.0000000 0
## 952 0 0.0000000 0
## 953 0 0.0000000 0
## 954 18 3.9109740 0
## 955 0 0.0000000 0
## 956 0 0.0000000 0
## 957 0 0.0000000 0
## 958 0 0.0000000 0
## 959 8 1.7382110 0
## 960 0 0.0000000 0
## 961 4 0.8691053 0
## 962 4 0.8691053 0
## 963 4 0.8691053 0
## 964 0 0.0000000 0
## 965 1 0.2172763 0
## 966 0 0.0000000 0
## 967 0 0.0000000 0
## 968 2 0.4345527 0
## 969 0 0.0000000 0
## 970 0 0.0000000 0
## 971 0 0.0000000 0
## 972 0 0.0000000 0
## 973 1 0.2172763 0
## 974 0 0.0000000 0
## 975 0 0.0000000 0
## 976 0 0.0000000 0
## 977 0 0.0000000 0
## 978 0 0.0000000 0
## 979 0 0.0000000 0
## 980 2 0.4345527 0
## 981 0 0.0000000 0
## 982 1 0.2172763 0
## 983 0 0.0000000 0
## 984 0 0.0000000 0
## 985 0 0.0000000 0
## 986 4 0.8691053 0
## 987 4 0.8691053 0
## 988 0 0.0000000 0
## 989 0 0.0000000 0
## 990 0 0.0000000 0
## 991 0 0.0000000 0
## 992 0 0.0000000 0
## 993 0 0.0000000 0
## 994 0 0.0000000 0
## 995 0 0.0000000 0
## 996 1 0.2172763 0
## 997 0 0.0000000 0
## 998 0 0.0000000 0
## 999 1 0.2172763 0
## 1000 3 0.6518290 0
## 1001 4 0.8691053 0
## 1002 0 0.0000000 0
## 1003 0 0.0000000 0
## 1004 0 0.0000000 0
## 1005 0 0.0000000 0
## 1006 1 0.2172763 0
## 1007 0 0.0000000 0
## 1008 3 0.6518290 0
## 1009 0 0.0000000 0
## 1010 2 0.4345527 0
## 1011 0 0.0000000 0
## 1012 0 0.0000000 0
## 1013 0 0.0000000 0
## 1014 0 0.0000000 0
## 1015 0 0.0000000 0
## 1016 0 0.0000000 0
## 1017 0 0.0000000 0
## 1018 0 0.0000000 0
## 1019 0 0.0000000 0
## 1020 0 0.0000000 0
## 1021 0 0.0000000 0
## 1022 0 0.0000000 0
## 1023 0 0.0000000 0
## 1024 0 0.0000000 0
## 1025 0 0.0000000 0
## 1026 0 0.0000000 0
## 1027 0 0.0000000 0
## 1028 0 0.0000000 0
## 1029 0 0.0000000 0
## 1030 0 0.0000000 0
## 1031 0 0.0000000 0
## 1032 9 1.9554870 0
## 1033 0 0.0000000 0
## 1034 0 0.0000000 0
## 1035 0 0.0000000 0
## 1036 0 0.0000000 0
## 1037 1 0.2172763 0
## 1038 0 0.0000000 0
## 1039 0 0.0000000 0
## 1040 0 0.0000000 0
## 1041 0 0.0000000 0
## 1042 0 0.0000000 0
## 1043 0 0.0000000 0
## 1044 1 0.2172763 0
## 1045 0 0.0000000 0
## 1046 0 0.0000000 0
## 1047 1 0.2172763 0
## 1048 0 0.0000000 0
## 1049 0 0.0000000 0
## 1050 2 0.4345527 0
## 1051 0 0.0000000 0
## 1052 0 0.0000000 0
## 1053 0 0.0000000 0
## 1054 1 0.2172763 0
## 1055 1 0.2172763 0
## 1056 0 0.0000000 0
## 1057 0 0.0000000 0
## 1058 2 0.4345527 0
## 1059 0 0.0000000 0
## 1060 10 2.1727630 0
## 1061 10 2.1727630 0
## 1062 0 0.0000000 0
## 1063 0 0.0000000 0
## 1064 0 0.0000000 0
## 1065 0 0.0000000 0
## 1066 0 0.0000000 0
## 1067 0 0.0000000 0
## 1068 0 0.0000000 0
## 1069 0 0.0000000 0
## 1070 0 0.0000000 0
## 1071 0 0.0000000 0
## 1072 2 0.4345527 0
## 1073 6 1.3036580 0
## 1074 0 0.0000000 0
## 1075 0 0.0000000 0
## 1076 1 0.2172763 0
## 1077 0 0.0000000 0
## 1078 3 0.6518290 0
## 1079 0 0.0000000 0
## 1080 4 0.8691053 0
## 1081 0 0.0000000 0
## 1082 0 0.0000000 0
## 1083 1 0.2172763 0
## 1084 2 0.4345527 0
## 1085 2 0.4345527 0
## 1086 0 0.0000000 0
## 1087 0 0.0000000 0
## 1088 0 0.0000000 0
## 1089 1 0.2172763 0
## 1090 0 0.0000000 0
## 1091 0 0.0000000 0
## 1092 0 0.0000000 0
## 1093 5 1.0863820 0
## 1094 10 2.1727630 0
## 1095 0 0.0000000 0
## 1096 0 0.0000000 0
## 1097 0 0.0000000 0
## 1098 0 0.0000000 0
## 1099 0 0.0000000 0
## 1100 0 0.0000000 0
## 1101 5 1.0863820 0
## 1102 0 0.0000000 0
## 1103 2 0.4345527 0
## 1104 0 0.0000000 0
## 1105 0 0.0000000 0
## 1106 0 0.0000000 0
## 1107 0 0.0000000 0
## 1108 3 0.6518290 0
## 1109 0 0.0000000 0
## 1110 0 0.0000000 0
## 1111 0 0.0000000 0
## 1112 0 0.0000000 0
## 1113 0 0.0000000 0
## 1114 0 0.0000000 0
## 1115 0 0.0000000 0
## 1116 1 0.2172763 0
## 1117 1 0.2172763 0
## 1118 2 0.4345527 0
## 1119 0 0.0000000 0
## 1120 0 0.0000000 0
## 1121 0 0.0000000 0
## 1122 4 0.8691053 0
## 1123 0 0.0000000 0
## 1124 0 0.0000000 0
## 1125 0 0.0000000 0
## 1126 1 0.2172763 0
## 1127 0 0.0000000 0
## 1128 0 0.0000000 0
## 1129 0 0.0000000 0
## 1130 0 0.0000000 0
## 1131 0 0.0000000 0
## 1132 0 0.0000000 0
## 1133 0 0.0000000 0
## 1134 0 0.0000000 0
## 1135 1 0.2172763 0
## 1136 1 0.2172763 0
## 1137 0 0.0000000 0
## 1138 1 0.2172763 0
## 1139 0 0.0000000 0
## 1140 0 0.0000000 0
## 1141 0 0.0000000 0
## 1142 0 0.0000000 0
## 1143 0 0.0000000 0
## 1144 0 0.0000000 0
## 1145 0 0.0000000 0
## 1146 0 0.0000000 0
## 1147 0 0.0000000 0
## 1148 0 0.0000000 0
## 1149 0 0.0000000 0
## 1150 0 0.0000000 0
## 1151 0 0.0000000 0
## 1152 0 0.0000000 0
## 1153 1 0.2172763 0
## 1154 0 0.0000000 0
## 1155 2 0.4345527 0
## 1156 8 1.7382110 0
## 1157 3 0.6518290 0
## 1158 0 0.0000000 0
## 1159 0 0.0000000 0
## 1160 0 0.0000000 0
## 1161 0 0.0000000 0
## 1162 0 0.0000000 0
## 1163 0 0.0000000 0
## 1164 0 0.0000000 0
## 1165 0 0.0000000 0
## 1166 0 0.0000000 0
## 1167 0 0.0000000 0
## 1168 0 0.0000000 0
## 1169 0 0.0000000 0
## 1170 0 0.0000000 0
## 1171 9 1.9554870 0
## 1172 0 0.0000000 0
## 1173 0 0.0000000 0
## 1174 0 0.0000000 0
## 1175 0 0.0000000 0
## 1176 0 0.0000000 0
## 1177 0 0.0000000 0
## 1178 0 0.0000000 0
## 1179 0 0.0000000 0
## 1180 0 0.0000000 0
## 1181 0 0.0000000 0
## 1182 0 0.0000000 0
## 1183 0 0.0000000 0
## 1184 0 0.0000000 0
## 1185 0 0.0000000 0
## 1186 0 0.0000000 0
## 1187 0 0.0000000 0
## 1188 0 0.0000000 0
## 1189 0 0.0000000 0
## 1190 0 0.0000000 0
## 1191 0 0.0000000 0
## 1192 0 0.0000000 0
## 1193 0 0.0000000 0
## 1194 0 0.0000000 0
## 1195 0 0.0000000 0
## 1196 2 0.4345527 0
## 1197 0 0.0000000 0
## 1198 0 0.0000000 0
## 1199 4 0.8691053 0
## 1200 1 0.2172763 0
## 1201 0 0.0000000 0
## 1202 0 0.0000000 0
## 1203 0 0.0000000 0
## 1204 0 0.0000000 0
## 1205 0 0.0000000 0
## 1206 0 0.0000000 0
## 1207 0 0.0000000 0
## 1208 1 0.2172763 0
## 1209 1 0.2172763 0
## 1210 0 0.0000000 0
## 1211 0 0.0000000 0
## 1212 0 0.0000000 0
## 1213 0 0.0000000 0
## 1214 0 0.0000000 0
## 1215 0 0.0000000 0
## 1216 0 0.0000000 0
## 1217 0 0.0000000 0
## 1218 1 0.2172763 0
## 1219 1 0.2172763 0
## 1220 0 0.0000000 0
## 1221 0 0.0000000 0
## 1222 0 0.0000000 0
## 1223 0 0.0000000 0
## 1224 0 0.0000000 0
## 1225 0 0.0000000 0
## 1226 0 0.0000000 0
## 1227 0 0.0000000 0
## 1228 0 0.0000000 0
## 1229 0 0.0000000 0
## 1230 0 0.0000000 0
## 1231 0 0.0000000 0
## 1232 3 0.6518290 0
## 1233 0 0.0000000 0
## 1234 0 0.0000000 0
## 1235 5 1.0863820 0
## 1236 0 0.0000000 0
## 1237 0 0.0000000 0
## 1238 1 0.2172763 0
## 1239 0 0.0000000 0
## 1240 0 0.0000000 0
## 1241 0 0.0000000 0
## 1242 0 0.0000000 0
## 1243 0 0.0000000 0
## 1244 0 0.0000000 0
## 1245 0 0.0000000 0
## 1246 0 0.0000000 0
## 1247 0 0.0000000 0
## 1248 0 0.0000000 0
## 1249 0 0.0000000 0
## 1250 3 0.6518290 0
## 1251 1 0.2172763 0
## 1252 2 0.4345527 0
## 1253 0 0.0000000 0
## 1254 0 0.0000000 0
## 1255 0 0.0000000 0
## 1256 0 0.0000000 0
## 1257 0 0.0000000 0
## 1258 0 0.0000000 0
## 1259 3 0.6518290 0
## 1260 4 0.8691053 0
## 1261 4 0.8691053 0
## 1262 0 0.0000000 0
## 1263 0 0.0000000 0
## 1264 2 0.4345527 0
## 1265 1 0.2172763 0
## 1266 0 0.0000000 0
## 1267 2 0.4345527 0
## 1268 2 0.4345527 0
## 1269 0 0.0000000 0
## 1270 0 0.0000000 0
## 1271 0 0.0000000 0
## 1272 0 0.0000000 0
## 1273 0 0.0000000 0
## 1274 0 0.0000000 0
## 1275 4 0.8691053 0
## 1276 1 0.2172763 0
## 1277 0 0.0000000 0
## 1278 0 0.0000000 0
## 1279 0 0.0000000 0
## 1280 0 0.0000000 0
## 1281 2 0.4345527 0
## 1282 0 0.0000000 0
## 1283 1 0.2172763 0
## 1284 0 0.0000000 0
## 1285 0 0.0000000 0
## 1286 0 0.0000000 0
## 1287 4 0.8691053 0
## 1288 0 0.0000000 0
## 1289 10 2.1727630 0
## 1290 1 0.2172763 0
## 1291 0 0.0000000 0
## 1292 1 0.2172763 0
## 1293 0 0.0000000 0
## 1294 1 0.2172763 0
## 1295 0 0.0000000 0
## 1296 0 0.0000000 0
## 1297 0 0.0000000 0
## 1298 0 0.0000000 0
## 1299 0 0.0000000 0
## 1300 0 0.0000000 0
## 1301 0 0.0000000 0
## 1302 0 0.0000000 0
## 1303 0 0.0000000 0
## 1304 0 0.0000000 0
## 1305 0 0.0000000 0
## 1306 0 0.0000000 0
## 1307 0 0.0000000 0
## 1308 0 0.0000000 0
## 1309 0 0.0000000 0
## 1310 0 0.0000000 0
## 1311 0 0.0000000 0
## 1312 4 0.8691053 0
## 1313 0 0.0000000 0
## 1314 8 1.7382110 0
## 1315 0 0.0000000 0
## 1316 0 0.0000000 0
## 1317 4 0.8691053 0
## 1318 0 0.0000000 0
## 1319 0 0.0000000 0
## 1320 0 0.0000000 0
## 1321 0 0.0000000 0
## 1322 0 0.0000000 0
## 1323 0 0.0000000 0
## 1324 0 0.0000000 0
## 1325 0 0.0000000 0
## 1326 0 0.0000000 0
## 1327 0 0.0000000 0
## 1328 0 0.0000000 0
## 1329 0 0.0000000 0
## 1330 0 0.0000000 0
## 1331 2 0.4345527 0
## 1332 0 0.0000000 0
## 1333 0 0.0000000 0
## 1334 2 0.4345527 0
## 1335 0 0.0000000 0
## 1336 0 0.0000000 0
## 1337 0 0.0000000 0
## 1338 3 0.6518290 0
## 1339 1 0.2172763 0
## 1340 0 0.0000000 0
## 1341 5 1.0863820 0
## 1342 0 0.0000000 0
## 1343 0 0.0000000 0
## 1344 0 0.0000000 0
## 1345 1 0.2172763 0
## 1346 0 0.0000000 0
## 1347 0 0.0000000 0
## 1348 0 0.0000000 0
## 1349 0 0.0000000 0
## 1350 0 0.0000000 0
## 1351 0 0.0000000 0
## 1352 0 0.0000000 0
## 1353 0 0.0000000 0
## 1354 1 0.2172763 0
## 1355 0 0.0000000 0
## 1356 0 0.0000000 0
## 1357 0 0.0000000 0
## 1358 0 0.0000000 0
## 1359 1 0.2172763 0
## 1360 0 0.0000000 0
## 1361 0 0.0000000 0
## 1362 0 0.0000000 0
## 1363 0 0.0000000 0
## 1364 0 0.0000000 0
## 1365 0 0.0000000 0
## 1366 3 0.6518290 0
## 1367 0 0.0000000 0
## 1368 0 0.0000000 0
## 1369 0 0.0000000 0
## 1370 0 0.0000000 0
## 1371 2 0.4345527 0
## 1372 0 0.0000000 0
## 1373 0 0.0000000 0
## 1374 0 0.0000000 0
## 1375 0 0.0000000 0
## 1376 0 0.0000000 0
## 1377 0 0.0000000 0
## 1378 0 0.0000000 0
## 1379 6 1.3036580 0
## 1380 3 0.6518290 0
## 1381 4 0.8691053 0
## 1382 0 0.0000000 0
## 1383 2 0.4345527 0
## 1384 0 0.0000000 0
## 1385 0 0.0000000 0
## 1386 0 0.0000000 0
## 1387 0 0.0000000 0
## 1388 0 0.0000000 0
## 1389 0 0.0000000 0
## 1390 0 0.0000000 0
## 1391 0 0.0000000 0
## 1392 0 0.0000000 0
## 1393 0 0.0000000 0
## 1394 2 0.4345527 0
## 1395 0 0.0000000 0
## 1396 0 0.0000000 0
## 1397 0 0.0000000 0
## 1398 0 0.0000000 0
## 1399 0 0.0000000 0
## 1400 0 0.0000000 0
## 1401 3 0.6518290 0
## 1402 0 0.0000000 0
## 1403 0 0.0000000 0
## 1404 0 0.0000000 0
## 1405 0 0.0000000 0
## 1406 0 0.0000000 0
## 1407 0 0.0000000 0
## 1408 27 5.8664610 0
## 1409 0 0.0000000 0
## 1410 0 0.0000000 0
## 1411 0 0.0000000 0
## 1412 0 0.0000000 0
## 1413 0 0.0000000 0
## 1414 1 0.2172763 0
## 1415 0 0.0000000 0
## 1416 0 0.0000000 0
## 1417 0 0.0000000 0
## 1418 0 0.0000000 0
## 1419 0 0.0000000 0
## 1420 0 0.0000000 0
## 1421 0 0.0000000 0
## 1422 0 0.0000000 0
## 1423 1 0.2172763 0
## 1424 0 0.0000000 0
## 1425 0 0.0000000 0
## 1426 0 0.0000000 0
## 1427 1 0.2172763 0
## 1428 0 0.0000000 0
## 1429 1 0.2172763 0
## 1430 0 0.0000000 0
## 1431 1 0.2172763 0
## 1432 3 0.6518290 0
## 1433 0 0.0000000 0
## 1434 0 0.0000000 0
## 1435 0 0.0000000 0
## 1436 1 0.2172763 0
## 1437 0 0.0000000 0
## 1438 0 0.0000000 0
## 1439 0 0.0000000 0
## 1440 0 0.0000000 0
## 1441 0 0.0000000 0
## 1442 0 0.0000000 0
## 1443 0 0.0000000 0
## 1444 1 0.2172763 0
## 1445 0 0.0000000 0
## 1446 0 0.0000000 0
## 1447 0 0.0000000 0
## 1448 1 0.2172763 0
## 1449 0 0.0000000 0
## 1450 0 0.0000000 0
## 1451 0 0.0000000 0
## 1452 0 0.0000000 0
## 1453 0 0.0000000 0
## 1454 0 0.0000000 0
## 1455 0 0.0000000 0
## 1456 0 0.0000000 0
## 1457 0 0.0000000 0
## 1458 0 0.0000000 0
## 1459 0 0.0000000 0
## 1460 0 0.0000000 0
## 1461 0 0.0000000 0
## 1462 0 0.0000000 0
## 1463 0 0.0000000 0
## 1464 0 0.0000000 0
## 1465 0 0.0000000 0
## 1466 3 0.6518290 0
## 1467 1 0.2172763 0
## 1468 2 0.4345527 0
## 1469 0 0.0000000 0
## 1470 0 0.0000000 0
## 1471 0 0.0000000 0
## 1472 0 0.0000000 0
## 1473 1 0.2172763 0
## 1474 0 0.0000000 0
## 1475 0 0.0000000 0
## 1476 0 0.0000000 0
## 1477 0 0.0000000 0
## 1478 0 0.0000000 0
## 1479 0 0.0000000 0
## 1480 4 0.8691053 0
## 1481 0 0.0000000 0
## 1482 0 0.0000000 0
## 1483 0 0.0000000 0
## 1484 0 0.0000000 0
## 1485 1 0.2172763 0
## 1486 0 0.0000000 0
## 1487 0 0.0000000 0
## 1488 0 0.0000000 0
## 1489 0 0.0000000 0
## 1490 0 0.0000000 0
## 1491 0 0.0000000 0
## 1492 0 0.0000000 0
## 1493 0 0.0000000 0
## 1494 4 0.8691053 0
## 1495 2 0.4345527 0
## 1496 1 0.2172763 0
## 1497 0 0.0000000 0
## 1498 0 0.0000000 0
## 1499 0 0.0000000 0
## 1500 0 0.0000000 0
## 1501 1 0.2172763 0
## 1502 2 0.4345527 0
## 1503 0 0.0000000 0
## 1504 1 0.2172763 0
## 1505 8 1.7382110 0
## 1506 0 0.0000000 0
## 1507 0 0.0000000 0
## 1508 0 0.0000000 0
## 1509 0 0.0000000 0
## 1510 13 2.8245920 0
## 1511 9 1.9554870 0
## 1512 0 0.0000000 0
## 1513 0 0.0000000 0
## 1514 0 0.0000000 0
## 1515 0 0.0000000 0
## 1516 0 0.0000000 0
## 1517 1 0.2172763 0
## 1518 1 0.2172763 0
## 1519 0 0.0000000 0
## 1520 0 0.0000000 0
## 1521 0 0.0000000 0
## 1522 0 0.0000000 0
## 1523 0 0.0000000 0
## 1524 0 0.0000000 0
## 1525 0 0.0000000 0
## 1526 0 0.0000000 0
## 1527 0 0.0000000 0
## 1528 0 0.0000000 0
## 1529 0 0.0000000 0
## 1530 0 0.0000000 0
## 1531 0 0.0000000 0
## 1532 2 0.4345527 0
## 1533 0 0.0000000 0
## 1534 0 0.0000000 0
## 1535 0 0.0000000 0
## 1536 2 0.4345527 0
## 1537 0 0.0000000 0
## 1538 0 0.0000000 0
## 1539 0 0.0000000 0
## 1540 0 0.0000000 0
## 1541 0 0.0000000 0
## 1542 0 0.0000000 0
## 1543 0 0.0000000 0
## 1544 0 0.0000000 0
## 1545 1 0.2172763 0
## 1546 0 0.0000000 0
## 1547 5 1.0863820 0
## 1548 0 0.0000000 0
## 1549 0 0.0000000 0
## 1550 0 0.0000000 0
## 1551 0 0.0000000 0
## 1552 0 0.0000000 0
## 1553 0 0.0000000 0
## 1554 0 0.0000000 0
## 1555 0 0.0000000 0
## 1556 0 0.0000000 0
## 1557 5 1.0863820 0
## 1558 0 0.0000000 0
## 1559 0 0.0000000 0
## 1560 0 0.0000000 0
## 1561 0 0.0000000 0
## 1562 0 0.0000000 0
## 1563 5 1.0863820 0
## 1564 0 0.0000000 0
## 1565 0 0.0000000 0
## 1566 0 0.0000000 0
## 1567 0 0.0000000 0
## 1568 0 0.0000000 0
## 1569 0 0.0000000 0
## 1570 0 0.0000000 0
## 1571 0 0.0000000 0
## 1572 0 0.0000000 0
## 1573 0 0.0000000 0
## 1574 4 0.8691053 0
## 1575 0 0.0000000 0
## 1576 0 0.0000000 0
## 1577 0 0.0000000 0
## 1578 0 0.0000000 0
## 1579 1 0.2172763 0
## 1580 0 0.0000000 0
## 1581 0 0.0000000 0
## 1582 0 0.0000000 0
## 1583 0 0.0000000 0
## 1584 1 0.2172763 0
## 1585 0 0.0000000 0
## 1586 1 0.2172763 0
## 1587 0 0.0000000 0
## 1588 0 0.0000000 0
## 1589 1 0.2172763 0
## 1590 3 0.6518290 0
## 1591 0 0.0000000 0
## 1592 0 0.0000000 0
## 1593 0 0.0000000 0
## 1594 0 0.0000000 0
## 1595 0 0.0000000 0
## 1596 0 0.0000000 0
## 1597 0 0.0000000 0
## 1598 0 0.0000000 0
## 1599 0 0.0000000 0
## 1600 0 0.0000000 0
## 1601 0 0.0000000 0
## 1602 0 0.0000000 0
## 1603 0 0.0000000 0
## 1604 0 0.0000000 0
## 1605 5 1.0863820 0
## 1606 0 0.0000000 0
## 1607 0 0.0000000 0
## 1608 0 0.0000000 0
## 1609 0 0.0000000 0
## 1610 0 0.0000000 0
## 1611 0 0.0000000 0
## 1612 0 0.0000000 0
## 1613 0 0.0000000 0
## 1614 1 0.2172763 0
## 1615 0 0.0000000 0
## 1616 0 0.0000000 0
## 1617 0 0.0000000 0
## 1618 4 0.8691053 0
## 1619 0 0.0000000 0
## 1620 0 0.0000000 0
## 1621 1 0.2172763 0
## 1622 0 0.0000000 0
## 1623 0 0.0000000 0
## 1624 0 0.0000000 0
## 1625 1 0.2172763 0
## 1626 0 0.0000000 0
## 1627 0 0.0000000 0
## 1628 0 0.0000000 0
## 1629 0 0.0000000 0
## 1630 0 0.0000000 0
## 1631 0 0.0000000 0
## 1632 0 0.0000000 0
## 1633 0 0.0000000 0
## 1634 0 0.0000000 0
## 1635 0 0.0000000 0
## 1636 0 0.0000000 0
## 1637 0 0.0000000 0
## 1638 0 0.0000000 0
## 1639 0 0.0000000 0
## 1640 0 0.0000000 0
## 1641 0 0.0000000 0
## 1642 0 0.0000000 0
## 1643 1 0.2172763 0
## 1644 0 0.0000000 0
## 1645 0 0.0000000 0
## 1646 0 0.0000000 0
## 1647 0 0.0000000 0
## 1648 0 0.0000000 0
## 1649 0 0.0000000 0
## 1650 0 0.0000000 0
## 1651 0 0.0000000 0
## 1652 0 0.0000000 0
## 1653 0 0.0000000 0
## 1654 0 0.0000000 0
## 1655 0 0.0000000 0
## 1656 0 0.0000000 0
## 1657 1 0.2172763 0
## 1658 0 0.0000000 0
## 1659 1 0.2172763 0
## 1660 3 0.6518290 0
## 1661 0 0.0000000 0
## 1662 0 0.0000000 0
## 1663 3 0.6518290 0
## 1664 0 0.0000000 0
## 1665 0 0.0000000 0
## 1666 0 0.0000000 0
## 1667 2 0.4345527 0
## 1668 0 0.0000000 0
## 1669 0 0.0000000 0
## 1670 0 0.0000000 0
## 1671 0 0.0000000 0
## 1672 0 0.0000000 0
## 1673 0 0.0000000 0
## 1674 1 0.2172763 0
## 1675 0 0.0000000 0
## 1676 0 0.0000000 0
## 1677 2 0.4345527 0
## 1678 0 0.0000000 0
## 1679 0 0.0000000 0
## 1680 4 0.8691053 0
## 1681 0 0.0000000 0
## 1682 0 0.0000000 0
## 1683 0 0.0000000 0
## 1684 4 0.8691053 0
## 1685 0 0.0000000 0
## 1686 0 0.0000000 0
## 1687 0 0.0000000 0
## 1688 0 0.0000000 0
## 1689 0 0.0000000 0
## 1690 2 0.4345527 0
## 1691 0 0.0000000 0
## 1692 0 0.0000000 0
## 1693 0 0.0000000 0
## 1694 0 0.0000000 0
## 1695 0 0.0000000 0
## 1696 0 0.0000000 0
## 1697 0 0.0000000 0
## 1698 0 0.0000000 0
## 1699 0 0.0000000 0
## 1700 0 0.0000000 0
## 1701 0 0.0000000 0
## 1702 0 0.0000000 0
## 1703 0 0.0000000 0
## 1704 1 0.2172763 0
## 1705 1 0.2172763 0
## 1706 9 1.9554870 0
## 1707 0 0.0000000 0
## 1708 0 0.0000000 0
## 1709 2 0.4345527 0
## 1710 0 0.0000000 0
## 1711 0 0.0000000 0
## 1712 0 0.0000000 0
## 1713 0 0.0000000 0
## 1714 0 0.0000000 0
## 1715 0 0.0000000 0
## 1716 0 0.0000000 0
## 1717 0 0.0000000 0
## 1718 0 0.0000000 0
## 1719 0 0.0000000 0
## 1720 0 0.0000000 0
## 1721 0 0.0000000 0
## 1722 0 0.0000000 0
## 1723 0 0.0000000 0
## 1724 1 0.2172763 0
## 1725 0 0.0000000 0
## 1726 0 0.0000000 0
## 1727 0 0.0000000 0
## 1728 0 0.0000000 0
## Hyper_Fold_Enrichment Hyper_Region_Set_Coverage Hyper_Term_Region_Coverage
## 1 1.1792540 0.501014200 0.25622410
## 2 1.1867260 0.466531400 0.25784750
## 3 2.7196200 0.026369170 0.59090910
## 4 1.0714120 0.843813400 0.23279240
## 5 1.1357210 0.541582200 0.24676520
## 6 1.0321800 0.963488800 0.22426820
## 7 3.2217040 0.014198780 0.70000000
## 8 1.1590070 0.419878300 0.25182480
## 9 1.8785450 0.040567950 0.40816330
## 10 4.6024340 0.008113590 1.00000000
## 11 4.6024340 0.008113590 1.00000000
## 12 3.8353620 0.010141990 0.83333330
## 13 1.4007410 0.113590300 0.30434780
## 14 1.4007410 0.113590300 0.30434780
## 15 1.0307880 0.955375300 0.22396580
## 16 1.3101820 0.158215000 0.28467150
## 17 1.0664520 0.764705900 0.23171480
## 18 3.6819470 0.008113590 0.80000000
## 19 1.8167500 0.030425960 0.39473680
## 20 1.0582240 0.766734300 0.22992700
## 21 4.6024340 0.006085193 1.00000000
## 22 4.6024340 0.006085193 1.00000000
## 23 2.3012170 0.016227180 0.50000000
## 24 1.2964600 0.121703900 0.28169010
## 25 1.0363720 0.892494900 0.22517910
## 26 1.3880360 0.077079110 0.30158730
## 27 1.0740160 0.632860000 0.23335830
## 28 1.4957910 0.052738340 0.32500000
## 29 1.2696370 0.129817400 0.27586210
## 30 1.3322840 0.089249490 0.28947370
## 31 3.0682890 0.008113590 0.66666670
## 32 2.0455260 0.016227180 0.44444440
## 33 2.5569080 0.010141990 0.55555560
## 34 1.8409740 0.020283980 0.40000000
## 35 1.1252010 0.314401600 0.24447950
## 36 1.8828140 0.018255580 0.40909090
## 37 3.4518260 0.006085193 0.75000000
## 38 3.4518260 0.006085193 0.75000000
## 39 3.4518260 0.006085193 0.75000000
## 40 3.4518260 0.006085193 0.75000000
## 41 3.4518260 0.006085193 0.75000000
## 42 3.4518260 0.006085193 0.75000000
## 43 1.3588140 0.062880320 0.29523810
## 44 1.3051680 0.077079110 0.28358210
## 45 2.1242000 0.012170390 0.46153850
## 46 1.8009520 0.018255580 0.39130430
## 47 1.8009520 0.018255580 0.39130430
## 48 2.6299620 0.008113590 0.57142860
## 49 2.6299620 0.008113590 0.57142860
## 50 1.2303540 0.109533500 0.26732670
## 51 2.3012170 0.010141990 0.50000000
## 52 4.6024340 0.004056795 1.00000000
## 53 4.6024340 0.004056795 1.00000000
## 54 4.6024340 0.004056795 1.00000000
## 55 4.6024340 0.004056795 1.00000000
## 56 4.6024340 0.004056795 1.00000000
## 57 4.6024340 0.004056795 1.00000000
## 58 4.6024340 0.004056795 1.00000000
## 59 4.6024340 0.004056795 1.00000000
## 60 4.6024340 0.004056795 1.00000000
## 61 4.6024340 0.004056795 1.00000000
## 62 4.6024340 0.004056795 1.00000000
## 63 1.0258860 0.888438100 0.22290080
## 64 1.5779770 0.024340770 0.34285710
## 65 1.5341450 0.026369170 0.33333330
## 66 1.5341450 0.026369170 0.33333330
## 67 1.6437260 0.020283980 0.35714290
## 68 1.5820870 0.022312370 0.34375000
## 69 2.0920150 0.010141990 0.45454550
## 70 1.2853640 0.062880320 0.27927930
## 71 1.4225710 0.034482760 0.30909090
## 72 1.0685050 0.468559800 0.23216080
## 73 1.3149810 0.052738340 0.28571430
## 74 2.7614600 0.006085193 0.60000000
## 75 2.7614600 0.006085193 0.60000000
## 76 2.7614600 0.006085193 0.60000000
## 77 2.7614600 0.006085193 0.60000000
## 78 2.7614600 0.006085193 0.60000000
## 79 2.3012170 0.008113590 0.50000000
## 80 2.3012170 0.008113590 0.50000000
## 81 1.2294170 0.079107510 0.26712330
## 82 1.8409740 0.012170390 0.40000000
## 83 1.8409740 0.012170390 0.40000000
## 84 1.8409740 0.012170390 0.40000000
## 85 1.1547330 0.141987800 0.25089610
## 86 1.5931500 0.018255580 0.34615380
## 87 1.3580950 0.036511160 0.29508200
## 88 1.3580950 0.036511160 0.29508200
## 89 1.4890230 0.022312370 0.32352940
## 90 1.2909270 0.046653140 0.28048780
## 91 1.2203420 0.070993910 0.26515150
## 92 2.0455260 0.008113590 0.44444440
## 93 1.4846560 0.020283980 0.32258060
## 94 1.4161340 0.024340770 0.30769230
## 95 2.3012170 0.006085193 0.50000000
## 96 2.3012170 0.006085193 0.50000000
## 97 2.3012170 0.006085193 0.50000000
## 98 3.0682890 0.004056795 0.66666670
## 99 3.0682890 0.004056795 0.66666670
## 100 3.0682890 0.004056795 0.66666670
## 101 3.0682890 0.004056795 0.66666670
## 102 3.0682890 0.004056795 0.66666670
## 103 3.0682890 0.004056795 0.66666670
## 104 3.0682890 0.004056795 0.66666670
## 105 3.0682890 0.004056795 0.66666670
## 106 3.0682890 0.004056795 0.66666670
## 107 3.0682890 0.004056795 0.66666670
## 108 1.3388900 0.032454360 0.29090910
## 109 1.3709380 0.028397570 0.29787230
## 110 1.1412540 0.123732300 0.24796750
## 111 1.1793740 0.083164300 0.25625000
## 112 1.5341450 0.016227180 0.33333330
## 113 1.7701670 0.010141990 0.38461540
## 114 1.8409740 0.008113590 0.40000000
## 115 1.8409740 0.008113590 0.40000000
## 116 1.8409740 0.008113590 0.40000000
## 117 1.8409740 0.008113590 0.40000000
## 118 1.4727790 0.016227180 0.32000000
## 119 1.4727790 0.016227180 0.32000000
## 120 1.4727790 0.016227180 0.32000000
## 121 1.4283420 0.018255580 0.31034480
## 122 1.4283420 0.018255580 0.31034480
## 123 1.3946770 0.020283980 0.30303030
## 124 1.6437260 0.010141990 0.35714290
## 125 1.0999530 0.154158200 0.23899370
## 126 1.9724720 0.006085193 0.42857140
## 127 1.9724720 0.006085193 0.42857140
## 128 1.9724720 0.006085193 0.42857140
## 129 1.9724720 0.006085193 0.42857140
## 130 1.9724720 0.006085193 0.42857140
## 131 1.9724720 0.006085193 0.42857140
## 132 1.9724720 0.006085193 0.42857140
## 133 1.9724720 0.006085193 0.42857140
## 134 1.4161340 0.016227180 0.30769230
## 135 1.2552090 0.030425960 0.27272730
## 136 1.0073730 0.973630800 0.21887820
## 137 1.0073730 0.973630800 0.21887820
## 138 1.6736120 0.008113590 0.36363640
## 139 1.6736120 0.008113590 0.36363640
## 140 2.3012170 0.004056795 0.50000000
## 141 2.3012170 0.004056795 0.50000000
## 142 2.3012170 0.004056795 0.50000000
## 143 2.3012170 0.004056795 0.50000000
## 144 2.3012170 0.004056795 0.50000000
## 145 2.3012170 0.004056795 0.50000000
## 146 2.3012170 0.004056795 0.50000000
## 147 2.3012170 0.004056795 0.50000000
## 148 1.5341450 0.010141990 0.33333330
## 149 1.1238500 0.085192700 0.24418600
## 150 1.0119470 0.906693700 0.21987210
## 151 1.3361910 0.018255580 0.29032260
## 152 1.4007410 0.014198780 0.30434780
## 153 4.6024340 0.002028398 1.00000000
## 154 4.6024340 0.002028398 1.00000000
## 155 4.6024340 0.002028398 1.00000000
## 156 4.6024340 0.002028398 1.00000000
## 157 4.6024340 0.002028398 1.00000000
## 158 4.6024340 0.002028398 1.00000000
## 159 4.6024340 0.002028398 1.00000000
## 160 4.6024340 0.002028398 1.00000000
## 161 4.6024340 0.002028398 1.00000000
## 162 4.6024340 0.002028398 1.00000000
## 163 4.6024340 0.002028398 1.00000000
## 164 4.6024340 0.002028398 1.00000000
## 165 4.6024340 0.002028398 1.00000000
## 166 4.6024340 0.002028398 1.00000000
## 167 4.6024340 0.002028398 1.00000000
## 168 4.6024340 0.002028398 1.00000000
## 169 4.6024340 0.002028398 1.00000000
## 170 4.6024340 0.002028398 1.00000000
## 171 4.6024340 0.002028398 1.00000000
## 172 4.6024340 0.002028398 1.00000000
## 173 4.6024340 0.002028398 1.00000000
## 174 4.6024340 0.002028398 1.00000000
## 175 4.6024340 0.002028398 1.00000000
## 176 4.6024340 0.002028398 1.00000000
## 177 4.6024340 0.002028398 1.00000000
## 178 4.6024340 0.002028398 1.00000000
## 179 4.6024340 0.002028398 1.00000000
## 180 4.6024340 0.002028398 1.00000000
## 181 4.6024340 0.002028398 1.00000000
## 182 1.1028870 0.105476700 0.23963130
## 183 1.2552090 0.024340770 0.27272730
## 184 1.2552090 0.024340770 0.27272730
## 185 1.7259130 0.006085193 0.37500000
## 186 1.7259130 0.006085193 0.37500000
## 187 1.7259130 0.006085193 0.37500000
## 188 1.7259130 0.006085193 0.37500000
## 189 1.7259130 0.006085193 0.37500000
## 190 1.1506090 0.048681540 0.25000000
## 191 1.3423770 0.014198780 0.29166670
## 192 1.5341450 0.008113590 0.33333330
## 193 1.5341450 0.008113590 0.33333330
## 194 1.4382610 0.010141990 0.31250000
## 195 1.0958180 0.091277890 0.23809520
## 196 1.2886820 0.014198780 0.28000000
## 197 1.1506090 0.034482760 0.25000000
## 198 1.8409740 0.004056795 0.40000000
## 199 1.8409740 0.004056795 0.40000000
## 200 1.8409740 0.004056795 0.40000000
## 201 1.8409740 0.004056795 0.40000000
## 202 1.8409740 0.004056795 0.40000000
## 203 1.8409740 0.004056795 0.40000000
## 204 1.2111670 0.020283980 0.26315790
## 205 1.3536570 0.010141990 0.29411760
## 206 1.3536570 0.010141990 0.29411760
## 207 1.3536570 0.010141990 0.29411760
## 208 1.1731690 0.026369170 0.25490200
## 209 1.4161340 0.008113590 0.30769230
## 210 1.4161340 0.008113590 0.30769230
## 211 1.2182910 0.018255580 0.26470590
## 212 1.2273160 0.016227180 0.26666670
## 213 1.2273160 0.016227180 0.26666670
## 214 1.0465810 0.168357000 0.22739730
## 215 1.1329070 0.032454360 0.24615380
## 216 1.1506090 0.026369170 0.25000000
## 217 1.1195110 0.036511160 0.24324320
## 218 1.1090200 0.040567950 0.24096390
## 219 1.2552090 0.012170390 0.27272730
## 220 1.2552090 0.012170390 0.27272730
## 221 1.1069150 0.038539550 0.24050630
## 222 1.2784540 0.010141990 0.27777780
## 223 1.2784540 0.010141990 0.27777780
## 224 1.2784540 0.010141990 0.27777780
## 225 1.1506090 0.022312370 0.25000000
## 226 1.0695800 0.066937120 0.23239440
## 227 1.3807300 0.006085193 0.30000000
## 228 1.3807300 0.006085193 0.30000000
## 229 1.3807300 0.006085193 0.30000000
## 230 1.3807300 0.006085193 0.30000000
## 231 1.2006350 0.012170390 0.26086960
## 232 1.1250390 0.022312370 0.24444440
## 233 1.5341450 0.004056795 0.33333330
## 234 1.5341450 0.004056795 0.33333330
## 235 1.5341450 0.004056795 0.33333330
## 236 1.5341450 0.004056795 0.33333330
## 237 1.5341450 0.004056795 0.33333330
## 238 1.5341450 0.004056795 0.33333330
## 239 2.3012170 0.002028398 0.50000000
## 240 2.3012170 0.002028398 0.50000000
## 241 2.3012170 0.002028398 0.50000000
## 242 2.3012170 0.002028398 0.50000000
## 243 2.3012170 0.002028398 0.50000000
## 244 2.3012170 0.002028398 0.50000000
## 245 2.3012170 0.002028398 0.50000000
## 246 2.3012170 0.002028398 0.50000000
## 247 2.3012170 0.002028398 0.50000000
## 248 2.3012170 0.002028398 0.50000000
## 249 2.3012170 0.002028398 0.50000000
## 250 2.3012170 0.002028398 0.50000000
## 251 2.3012170 0.002028398 0.50000000
## 252 2.3012170 0.002028398 0.50000000
## 253 2.3012170 0.002028398 0.50000000
## 254 2.3012170 0.002028398 0.50000000
## 255 1.1506090 0.016227180 0.25000000
## 256 1.0758940 0.036511160 0.23376620
## 257 1.1506090 0.014198780 0.25000000
## 258 1.1506090 0.014198780 0.25000000
## 259 1.0400980 0.081135900 0.22598870
## 260 1.2273160 0.008113590 0.26666670
## 261 1.2552090 0.006085193 0.27272730
## 262 1.2552090 0.006085193 0.27272730
## 263 1.2552090 0.006085193 0.27272730
## 264 1.2552090 0.006085193 0.27272730
## 265 1.0573160 0.034482760 0.22972970
## 266 1.1506090 0.010141990 0.25000000
## 267 1.1506090 0.010141990 0.25000000
## 268 1.1045840 0.012170390 0.24000000
## 269 1.3149810 0.004056795 0.28571430
## 270 1.3149810 0.004056795 0.28571430
## 271 1.3149810 0.004056795 0.28571430
## 272 1.3149810 0.004056795 0.28571430
## 273 1.3149810 0.004056795 0.28571430
## 274 1.1506090 0.008113590 0.25000000
## 275 1.0355480 0.036511160 0.22500000
## 276 1.0958180 0.010141990 0.23809520
## 277 1.0958180 0.010141990 0.23809520
## 278 1.1506090 0.006085193 0.25000000
## 279 1.0331990 0.022312370 0.22448980
## 280 1.0355480 0.018255580 0.22500000
## 281 1.0227630 0.024340770 0.22222220
## 282 1.0227630 0.024340770 0.22222220
## 283 1.5341450 0.002028398 0.33333330
## 284 1.5341450 0.002028398 0.33333330
## 285 1.5341450 0.002028398 0.33333330
## 286 1.5341450 0.002028398 0.33333330
## 287 1.5341450 0.002028398 0.33333330
## 288 1.5341450 0.002028398 0.33333330
## 289 1.5341450 0.002028398 0.33333330
## 290 1.5341450 0.002028398 0.33333330
## 291 1.5341450 0.002028398 0.33333330
## 292 1.5341450 0.002028398 0.33333330
## 293 1.5341450 0.002028398 0.33333330
## 294 1.5341450 0.002028398 0.33333330
## 295 1.5341450 0.002028398 0.33333330
## 296 1.5341450 0.002028398 0.33333330
## 297 1.0392590 0.014198780 0.22580650
## 298 1.0392590 0.014198780 0.22580650
## 299 1.0460080 0.010141990 0.22727270
## 300 1.0460080 0.010141990 0.22727270
## 301 0.9977305 0.062880320 0.21678320
## 302 1.0005290 0.040567950 0.21739130
## 303 1.1506090 0.004056795 0.25000000
## 304 1.1506090 0.004056795 0.25000000
## 305 1.1506090 0.004056795 0.25000000
## 306 1.1506090 0.004056795 0.25000000
## 307 1.1506090 0.004056795 0.25000000
## 308 1.1506090 0.004056795 0.25000000
## 309 1.1506090 0.004056795 0.25000000
## 310 1.1506090 0.004056795 0.25000000
## 311 1.1506090 0.004056795 0.25000000
## 312 1.1506090 0.004056795 0.25000000
## 313 1.1506090 0.004056795 0.25000000
## 314 1.1506090 0.004056795 0.25000000
## 315 1.1506090 0.004056795 0.25000000
## 316 1.1506090 0.004056795 0.25000000
## 317 1.1506090 0.004056795 0.25000000
## 318 1.0227630 0.012170390 0.22222220
## 319 1.0227630 0.012170390 0.22222220
## 320 1.0621000 0.006085193 0.23076920
## 321 1.0227630 0.008113590 0.22222220
## 322 0.9927944 0.350912800 0.21571070
## 323 0.9808466 0.026369170 0.21311480
## 324 0.9808466 0.026369170 0.21311480
## 325 0.9792413 0.040567950 0.21276600
## 326 0.9792413 0.040567950 0.21276600
## 327 0.9792413 0.040567950 0.21276600
## 328 0.9889528 0.369168400 0.21487600
## 329 0.9633002 0.018255580 0.20930230
## 330 1.0227630 0.004056795 0.22222220
## 331 1.0227630 0.004056795 0.22222220
## 332 1.0227630 0.004056795 0.22222220
## 333 1.0227630 0.004056795 0.22222220
## 334 1.0227630 0.004056795 0.22222220
## 335 0.9862359 0.006085193 0.21428570
## 336 0.9862359 0.006085193 0.21428570
## 337 0.9862359 0.006085193 0.21428570
## 338 0.9862359 0.006085193 0.21428570
## 339 0.9775081 0.146044600 0.21238940
## 340 0.9689335 0.008113590 0.21052630
## 341 0.9689335 0.008113590 0.21052630
## 342 0.9689335 0.008113590 0.21052630
## 343 0.9552222 0.022312370 0.20754720
## 344 0.9552222 0.022312370 0.20754720
## 345 1.1506090 0.002028398 0.25000000
## 346 1.1506090 0.002028398 0.25000000
## 347 1.1506090 0.002028398 0.25000000
## 348 1.1506090 0.002028398 0.25000000
## 349 1.1506090 0.002028398 0.25000000
## 350 1.1506090 0.002028398 0.25000000
## 351 1.1506090 0.002028398 0.25000000
## 352 1.1506090 0.002028398 0.25000000
## 353 1.1506090 0.002028398 0.25000000
## 354 0.9522277 0.012170390 0.20689660
## 355 0.9440890 0.016227180 0.20512820
## 356 0.9440890 0.032454360 0.20512820
## 357 0.9774400 0.257606500 0.21237460
## 358 0.9497086 0.052738340 0.20634920
## 359 0.9204868 0.010141990 0.20000000
## 360 0.9204868 0.010141990 0.20000000
## 361 0.9204868 0.008113590 0.20000000
## 362 0.9204868 0.012170390 0.20000000
## 363 0.9204868 0.012170390 0.20000000
## 364 0.9204868 0.014198780 0.20000000
## 365 0.9204868 0.014198780 0.20000000
## 366 0.9204868 0.006085193 0.20000000
## 367 0.9204868 0.006085193 0.20000000
## 368 0.9204868 0.018255580 0.20000000
## 369 0.9204868 0.020283980 0.20000000
## 370 0.9204868 0.020283980 0.20000000
## 371 0.9204868 0.004056795 0.20000000
## 372 0.9204868 0.004056795 0.20000000
## 373 0.9204868 0.004056795 0.20000000
## 374 0.9204868 0.004056795 0.20000000
## 375 0.9204868 0.022312370 0.20000000
## 376 0.9204868 0.026369170 0.20000000
## 377 0.9204868 0.028397570 0.20000000
## 378 0.9204868 0.028397570 0.20000000
## 379 0.9204868 0.028397570 0.20000000
## 380 0.9204868 0.028397570 0.20000000
## 381 0.9354541 0.050709940 0.20325200
## 382 0.9204868 0.030425960 0.20000000
## 383 0.8949177 0.014198780 0.19444440
## 384 0.8907937 0.012170390 0.19354840
## 385 0.8907937 0.012170390 0.19354840
## 386 0.8850835 0.010141990 0.19230770
## 387 0.8850835 0.010141990 0.19230770
## 388 0.8766541 0.008113590 0.19047620
## 389 0.8766541 0.008113590 0.19047620
## 390 0.8766541 0.008113590 0.19047620
## 391 0.9872916 0.677484800 0.21451510
## 392 0.9279101 0.050709940 0.20161290
## 393 0.9065400 0.026369170 0.19696970
## 394 0.9204868 0.002028398 0.20000000
## 395 0.9204868 0.002028398 0.20000000
## 396 0.9204868 0.002028398 0.20000000
## 397 0.9204868 0.002028398 0.20000000
## 398 0.9204868 0.002028398 0.20000000
## 399 0.9204868 0.002028398 0.20000000
## 400 0.9204868 0.002028398 0.20000000
## 401 0.9204868 0.002028398 0.20000000
## 402 0.9204868 0.002028398 0.20000000
## 403 0.9204868 0.002028398 0.20000000
## 404 0.9204868 0.002028398 0.20000000
## 405 0.9204868 0.002028398 0.20000000
## 406 0.9204868 0.002028398 0.20000000
## 407 0.9204868 0.002028398 0.20000000
## 408 0.9204868 0.002028398 0.20000000
## 409 0.9204868 0.046653140 0.20000000
## 410 0.9898524 0.793103400 0.21507150
## 411 0.9733998 0.395537500 0.21149670
## 412 0.8368062 0.004056795 0.18181820
## 413 0.8368062 0.004056795 0.18181820
## 414 0.8368062 0.004056795 0.18181820
## 415 0.8368062 0.004056795 0.18181820
## 416 0.8523026 0.010141990 0.18518520
## 417 0.8523026 0.010141990 0.18518520
## 418 0.9131814 0.050709940 0.19841270
## 419 0.9134602 0.052738340 0.19847330
## 420 0.8629564 0.018255580 0.18750000
## 421 0.8891066 0.034482760 0.19318180
## 422 0.8368062 0.012170390 0.18181820
## 423 0.8766541 0.032454360 0.19047620
## 424 0.8004233 0.008113590 0.17391300
## 425 0.8004233 0.008113590 0.17391300
## 426 0.7670723 0.002028398 0.16666670
## 427 0.7670723 0.002028398 0.16666670
## 428 0.7670723 0.002028398 0.16666670
## 429 0.7670723 0.002028398 0.16666670
## 430 0.7670723 0.002028398 0.16666670
## 431 0.7670723 0.002028398 0.16666670
## 432 0.7670723 0.002028398 0.16666670
## 433 0.7670723 0.002028398 0.16666670
## 434 0.7670723 0.002028398 0.16666670
## 435 0.7670723 0.002028398 0.16666670
## 436 0.7670723 0.002028398 0.16666670
## 437 0.7670723 0.002028398 0.16666670
## 438 0.7670723 0.002028398 0.16666670
## 439 0.7670723 0.002028398 0.16666670
## 440 0.7670723 0.004056795 0.16666670
## 441 0.7670723 0.004056795 0.16666670
## 442 0.7670723 0.004056795 0.16666670
## 443 0.9018283 0.058823530 0.19594590
## 444 0.7670723 0.006085193 0.16666670
## 445 0.7935231 0.010141990 0.17241380
## 446 0.7935231 0.010141990 0.17241380
## 447 0.7670723 0.008113590 0.16666670
## 448 0.7670723 0.008113590 0.16666670
## 449 0.7670723 0.008113590 0.16666670
## 450 0.8658044 0.038539550 0.18811880
## 451 0.8658044 0.038539550 0.18811880
## 452 0.9024381 0.081135900 0.19607840
## 453 0.9024381 0.081135900 0.19607840
## 454 0.7080668 0.004056795 0.15384620
## 455 0.7080668 0.004056795 0.15384620
## 456 0.7670723 0.010141990 0.16666670
## 457 0.8004233 0.016227180 0.17391300
## 458 0.7267001 0.006085193 0.15789470
## 459 0.7267001 0.006085193 0.15789470
## 460 0.6574906 0.002028398 0.14285710
## 461 0.6574906 0.002028398 0.14285710
## 462 0.6574906 0.002028398 0.14285710
## 463 0.6574906 0.002028398 0.14285710
## 464 0.6574906 0.002028398 0.14285710
## 465 0.6574906 0.002028398 0.14285710
## 466 0.6574906 0.002028398 0.14285710
## 467 0.6574906 0.002028398 0.14285710
## 468 0.6574906 0.002028398 0.14285710
## 469 0.7363895 0.008113590 0.16000000
## 470 0.8196115 0.026369170 0.17808220
## 471 0.7423281 0.010141990 0.16129030
## 472 0.8408293 0.038539550 0.18269230
## 473 0.6903651 0.006085193 0.15000000
## 474 0.6903651 0.006085193 0.15000000
## 475 0.6903651 0.006085193 0.15000000
## 476 0.6903651 0.006085193 0.15000000
## 477 0.7080668 0.008113590 0.15384620
## 478 0.8646997 0.062880320 0.18787880
## 479 0.8235935 0.034482760 0.17894740
## 480 0.7191303 0.010141990 0.15625000
## 481 0.7492335 0.014198780 0.16279070
## 482 0.7492335 0.014198780 0.16279070
## 483 0.7492335 0.014198780 0.16279070
## 484 0.5753043 0.002028398 0.12500000
## 485 0.5753043 0.002028398 0.12500000
## 486 0.5753043 0.002028398 0.12500000
## 487 0.5753043 0.002028398 0.12500000
## 488 0.5753043 0.002028398 0.12500000
## 489 0.5753043 0.002028398 0.12500000
## 490 0.5753043 0.002028398 0.12500000
## 491 0.8092192 0.032454360 0.17582420
## 492 0.6136579 0.004056795 0.13333330
## 493 0.6136579 0.004056795 0.13333330
## 494 0.6136579 0.004056795 0.13333330
## 495 0.6818421 0.008113590 0.14814810
## 496 0.6818421 0.008113590 0.14814810
## 497 0.8523026 0.060851930 0.18518520
## 498 0.9119042 0.172413800 0.19813520
## 499 0.8597954 0.068965520 0.18681320
## 500 0.7935231 0.030425960 0.17241380
## 501 0.8269999 0.046653140 0.17968750
## 502 0.8231996 0.044624750 0.17886180
## 503 0.7159342 0.014198780 0.15555560
## 504 0.5113816 0.002028398 0.11111110
## 505 0.5113816 0.002028398 0.11111110
## 506 0.5113816 0.002028398 0.11111110
## 507 0.5113816 0.002028398 0.11111110
## 508 0.5113816 0.002028398 0.11111110
## 509 0.5113816 0.002028398 0.11111110
## 510 0.5113816 0.002028398 0.11111110
## 511 0.6768285 0.010141990 0.14705880
## 512 0.6768285 0.010141990 0.14705880
## 513 0.6768285 0.010141990 0.14705880
## 514 0.5753043 0.004056795 0.12500000
## 515 0.5753043 0.004056795 0.12500000
## 516 0.5753043 0.004056795 0.12500000
## 517 0.5753043 0.004056795 0.12500000
## 518 0.5753043 0.004056795 0.12500000
## 519 0.5753043 0.004056795 0.12500000
## 520 0.8707308 0.099391480 0.18918920
## 521 0.8523026 0.081135900 0.18518520
## 522 0.6003175 0.006085193 0.13043480
## 523 0.8320785 0.064908720 0.18079100
## 524 0.5414628 0.004056795 0.11764710
## 525 0.5414628 0.004056795 0.11764710
## 526 0.6854689 0.014198780 0.14893620
## 527 0.4602434 0.002028398 0.10000000
## 528 0.4602434 0.002028398 0.10000000
## 529 0.4602434 0.002028398 0.10000000
## 530 0.8855316 0.154158200 0.19240510
## 531 0.8046213 0.050709940 0.17482520
## 532 0.6392270 0.010141990 0.13888890
## 533 0.5753043 0.006085193 0.12500000
## 534 0.6574906 0.012170390 0.14285710
## 535 0.5113816 0.004056795 0.11111110
## 536 0.8783271 0.152129800 0.19083970
## 537 0.7735183 0.040567950 0.16806720
## 538 0.7670723 0.038539550 0.16666670
## 539 0.4184031 0.002028398 0.09090909
## 540 0.4184031 0.002028398 0.09090909
## 541 0.4184031 0.002028398 0.09090909
## 542 0.4184031 0.002028398 0.09090909
## 543 0.7031497 0.022312370 0.15277780
## 544 0.7944678 0.058823530 0.17261900
## 545 0.5310501 0.006085193 0.11538460
## 546 0.3835362 0.002028398 0.08333333
## 547 0.3835362 0.002028398 0.08333333
## 548 0.3835362 0.002028398 0.08333333
## 549 0.7191303 0.030425960 0.15625000
## 550 0.6670194 0.020283980 0.14492750
## 551 0.3540334 0.002028398 0.07692308
## 552 0.3540334 0.002028398 0.07692308
## 553 0.3540334 0.002028398 0.07692308
## 554 0.3540334 0.002028398 0.07692308
## 555 0.3540334 0.002028398 0.07692308
## 556 0.6078687 0.014198780 0.13207550
## 557 0.8876656 0.241379300 0.19286870
## 558 0.8862292 0.241379300 0.19255660
## 559 0.8862292 0.241379300 0.19255660
## 560 0.3287453 0.002028398 0.07142857
## 561 0.4184031 0.004056795 0.09090909
## 562 0.7785212 0.068965520 0.16915420
## 563 0.7785212 0.068965520 0.16915420
## 564 0.7785212 0.068965520 0.16915420
## 565 0.7531256 0.054766730 0.16363640
## 566 0.8004233 0.089249490 0.17391300
## 567 0.5857643 0.014198780 0.12727270
## 568 0.5857643 0.014198780 0.12727270
## 569 0.5857643 0.014198780 0.12727270
## 570 0.5857643 0.014198780 0.12727270
## 571 0.5857643 0.014198780 0.12727270
## 572 0.6711883 0.028397570 0.14583330
## 573 0.5753043 0.014198780 0.12500000
## 574 0.3068289 0.002028398 0.06666667
## 575 0.3835362 0.004056795 0.08333333
## 576 0.3835362 0.004056795 0.08333333
## 577 0.6638126 0.030425960 0.14423080
## 578 0.2876521 0.002028398 0.06250000
## 579 0.7636326 0.075050710 0.16591930
## 580 0.7889887 0.097363080 0.17142860
## 581 0.3681947 0.004056795 0.08000000
## 582 0.7487213 0.068965520 0.16267940
## 583 0.6298068 0.026369170 0.13684210
## 584 0.2707314 0.002028398 0.05882353
## 585 0.2707314 0.002028398 0.05882353
## 586 0.2707314 0.002028398 0.05882353
## 587 0.4184031 0.006085193 0.09090909
## 588 0.4602434 0.008113590 0.10000000
## 589 0.4602434 0.008113590 0.10000000
## 590 0.8067485 0.123732300 0.17528740
## 591 0.3540334 0.004056795 0.07692308
## 592 0.6854689 0.042596350 0.14893620
## 593 0.5674234 0.018255580 0.12328770
## 594 0.2556908 0.002028398 0.05555556
## 595 0.6841456 0.044624750 0.14864860
## 596 0.6795540 0.044624750 0.14765100
## 597 0.8755273 0.300202800 0.19023140
## 598 0.7836962 0.111561900 0.17027860
## 599 0.8785435 0.314401600 0.19088670
## 600 0.5113816 0.014198780 0.11111110
## 601 0.2301217 0.002028398 0.05000000
## 602 0.3174092 0.004056795 0.06896552
## 603 0.8763981 0.330628800 0.19042060
## 604 0.5625197 0.022312370 0.12222220
## 605 0.7567761 0.099391480 0.16442950
## 606 0.4602434 0.012170390 0.10000000
## 607 0.3540334 0.006085193 0.07692308
## 608 0.6348185 0.040567950 0.13793100
## 609 0.5578708 0.024340770 0.12121210
## 610 0.7670723 0.121703900 0.16666670
## 611 0.6801627 0.060851930 0.14778330
## 612 0.5230039 0.020283980 0.11363640
## 613 0.7690751 0.129817400 0.16710180
## 614 0.1840974 0.002028398 0.04000000
## 615 0.1840974 0.002028398 0.04000000
## 616 0.5838909 0.034482760 0.12686570
## 617 0.1770167 0.002028398 0.03846154
## 618 0.6443408 0.056795130 0.14000000
## 619 0.2487802 0.004056795 0.05405405
## 620 0.7638082 0.158215000 0.16595740
## 621 0.2360223 0.004056795 0.05128205
## 622 0.2922180 0.008113590 0.06349206
## 623 0.6596322 0.089249490 0.14332250
## 624 0.6328347 0.089249490 0.13750000
## 625 0.2592921 0.008113590 0.05633803
## 626 0.2592921 0.008113590 0.05633803
## 627 0.3867592 0.020283980 0.08403361
## 628 0.8023980 0.322515200 0.17434210
## 629 0.8004233 0.324543600 0.17391300
## 630 0.8607234 0.537525400 0.18701480
## 631 0.6831071 0.162271800 0.14842300
## 632 0.8114599 0.395537500 0.17631100
## 633 0.7043445 0.265720100 0.15303740
## 634 0.6938077 0.265720100 0.15074800
## 635 0.0000000 0.000000000 0.00000000
## 636 0.0000000 0.000000000 0.00000000
## 637 0.0000000 0.000000000 0.00000000
## 638 0.0000000 0.000000000 0.00000000
## 639 0.0000000 0.000000000 0.00000000
## 640 0.0000000 0.000000000 0.00000000
## 641 0.0000000 0.000000000 0.00000000
## 642 0.0000000 0.000000000 0.00000000
## 643 0.0000000 0.000000000 0.00000000
## 644 0.0000000 0.000000000 0.00000000
## 645 0.0000000 0.000000000 0.00000000
## 646 0.0000000 0.000000000 0.00000000
## 647 0.0000000 0.000000000 0.00000000
## 648 0.0000000 0.000000000 0.00000000
## 649 0.0000000 0.000000000 0.00000000
## 650 0.0000000 0.000000000 0.00000000
## 651 0.0000000 0.000000000 0.00000000
## 652 0.0000000 0.000000000 0.00000000
## 653 0.0000000 0.000000000 0.00000000
## 654 0.0000000 0.000000000 0.00000000
## 655 0.0000000 0.000000000 0.00000000
## 656 0.0000000 0.000000000 0.00000000
## 657 0.0000000 0.000000000 0.00000000
## 658 0.0000000 0.000000000 0.00000000
## 659 0.0000000 0.000000000 0.00000000
## 660 0.0000000 0.000000000 0.00000000
## 661 0.0000000 0.000000000 0.00000000
## 662 0.0000000 0.000000000 0.00000000
## 663 0.0000000 0.000000000 0.00000000
## 664 0.0000000 0.000000000 0.00000000
## 665 0.0000000 0.000000000 0.00000000
## 666 0.0000000 0.000000000 0.00000000
## 667 0.0000000 0.000000000 0.00000000
## 668 0.0000000 0.000000000 0.00000000
## 669 0.0000000 0.000000000 0.00000000
## 670 0.0000000 0.000000000 0.00000000
## 671 0.0000000 0.000000000 0.00000000
## 672 0.0000000 0.000000000 0.00000000
## 673 0.0000000 0.000000000 0.00000000
## 674 0.0000000 0.000000000 0.00000000
## 675 0.0000000 0.000000000 0.00000000
## 676 0.0000000 0.000000000 0.00000000
## 677 0.0000000 0.000000000 0.00000000
## 678 0.0000000 0.000000000 0.00000000
## 679 0.0000000 0.000000000 0.00000000
## 680 0.0000000 0.000000000 0.00000000
## 681 0.0000000 0.000000000 0.00000000
## 682 0.0000000 0.000000000 0.00000000
## 683 0.0000000 0.000000000 0.00000000
## 684 0.0000000 0.000000000 0.00000000
## 685 0.0000000 0.000000000 0.00000000
## 686 0.0000000 0.000000000 0.00000000
## 687 0.0000000 0.000000000 0.00000000
## 688 0.0000000 0.000000000 0.00000000
## 689 0.0000000 0.000000000 0.00000000
## 690 0.0000000 0.000000000 0.00000000
## 691 0.0000000 0.000000000 0.00000000
## 692 0.0000000 0.000000000 0.00000000
## 693 0.0000000 0.000000000 0.00000000
## 694 0.0000000 0.000000000 0.00000000
## 695 0.0000000 0.000000000 0.00000000
## 696 0.0000000 0.000000000 0.00000000
## 697 0.0000000 0.000000000 0.00000000
## 698 0.0000000 0.000000000 0.00000000
## 699 0.0000000 0.000000000 0.00000000
## 700 0.0000000 0.000000000 0.00000000
## 701 0.0000000 0.000000000 0.00000000
## 702 0.0000000 0.000000000 0.00000000
## 703 0.0000000 0.000000000 0.00000000
## 704 0.0000000 0.000000000 0.00000000
## 705 0.0000000 0.000000000 0.00000000
## 706 0.0000000 0.000000000 0.00000000
## 707 0.0000000 0.000000000 0.00000000
## 708 0.0000000 0.000000000 0.00000000
## 709 0.0000000 0.000000000 0.00000000
## 710 0.0000000 0.000000000 0.00000000
## 711 0.0000000 0.000000000 0.00000000
## 712 0.0000000 0.000000000 0.00000000
## 713 0.0000000 0.000000000 0.00000000
## 714 0.0000000 0.000000000 0.00000000
## 715 0.0000000 0.000000000 0.00000000
## 716 0.0000000 0.000000000 0.00000000
## 717 0.0000000 0.000000000 0.00000000
## 718 0.0000000 0.000000000 0.00000000
## 719 0.0000000 0.000000000 0.00000000
## 720 0.0000000 0.000000000 0.00000000
## 721 0.0000000 0.000000000 0.00000000
## 722 0.0000000 0.000000000 0.00000000
## 723 0.0000000 0.000000000 0.00000000
## 724 0.0000000 0.000000000 0.00000000
## 725 0.0000000 0.000000000 0.00000000
## 726 0.0000000 0.000000000 0.00000000
## 727 0.0000000 0.000000000 0.00000000
## 728 0.0000000 0.000000000 0.00000000
## 729 0.0000000 0.000000000 0.00000000
## 730 0.0000000 0.000000000 0.00000000
## 731 0.0000000 0.000000000 0.00000000
## 732 0.0000000 0.000000000 0.00000000
## 733 0.0000000 0.000000000 0.00000000
## 734 0.0000000 0.000000000 0.00000000
## 735 0.0000000 0.000000000 0.00000000
## 736 0.0000000 0.000000000 0.00000000
## 737 0.0000000 0.000000000 0.00000000
## 738 0.0000000 0.000000000 0.00000000
## 739 0.0000000 0.000000000 0.00000000
## 740 0.0000000 0.000000000 0.00000000
## 741 0.0000000 0.000000000 0.00000000
## 742 0.0000000 0.000000000 0.00000000
## 743 0.0000000 0.000000000 0.00000000
## 744 0.0000000 0.000000000 0.00000000
## 745 0.0000000 0.000000000 0.00000000
## 746 0.0000000 0.000000000 0.00000000
## 747 0.0000000 0.000000000 0.00000000
## 748 0.0000000 0.000000000 0.00000000
## 749 0.0000000 0.000000000 0.00000000
## 750 0.0000000 0.000000000 0.00000000
## 751 0.0000000 0.000000000 0.00000000
## 752 0.0000000 0.000000000 0.00000000
## 753 0.0000000 0.000000000 0.00000000
## 754 0.0000000 0.000000000 0.00000000
## 755 0.0000000 0.000000000 0.00000000
## 756 0.0000000 0.000000000 0.00000000
## 757 0.0000000 0.000000000 0.00000000
## 758 0.0000000 0.000000000 0.00000000
## 759 0.0000000 0.000000000 0.00000000
## 760 0.0000000 0.000000000 0.00000000
## 761 0.0000000 0.000000000 0.00000000
## 762 0.0000000 0.000000000 0.00000000
## 763 0.0000000 0.000000000 0.00000000
## 764 0.0000000 0.000000000 0.00000000
## 765 0.0000000 0.000000000 0.00000000
## 766 0.0000000 0.000000000 0.00000000
## 767 0.0000000 0.000000000 0.00000000
## 768 0.0000000 0.000000000 0.00000000
## 769 0.0000000 0.000000000 0.00000000
## 770 0.0000000 0.000000000 0.00000000
## 771 0.0000000 0.000000000 0.00000000
## 772 0.0000000 0.000000000 0.00000000
## 773 0.0000000 0.000000000 0.00000000
## 774 0.0000000 0.000000000 0.00000000
## 775 0.0000000 0.000000000 0.00000000
## 776 0.0000000 0.000000000 0.00000000
## 777 0.0000000 0.000000000 0.00000000
## 778 0.0000000 0.000000000 0.00000000
## 779 0.0000000 0.000000000 0.00000000
## 780 0.0000000 0.000000000 0.00000000
## 781 0.0000000 0.000000000 0.00000000
## 782 0.0000000 0.000000000 0.00000000
## 783 0.0000000 0.000000000 0.00000000
## 784 0.0000000 0.000000000 0.00000000
## 785 0.0000000 0.000000000 0.00000000
## 786 0.0000000 0.000000000 0.00000000
## 787 0.0000000 0.000000000 0.00000000
## 788 0.0000000 0.000000000 0.00000000
## 789 0.0000000 0.000000000 0.00000000
## 790 0.0000000 0.000000000 0.00000000
## 791 0.0000000 0.000000000 0.00000000
## 792 0.0000000 0.000000000 0.00000000
## 793 0.0000000 0.000000000 0.00000000
## 794 0.0000000 0.000000000 0.00000000
## 795 0.0000000 0.000000000 0.00000000
## 796 0.0000000 0.000000000 0.00000000
## 797 0.0000000 0.000000000 0.00000000
## 798 0.0000000 0.000000000 0.00000000
## 799 0.0000000 0.000000000 0.00000000
## 800 0.0000000 0.000000000 0.00000000
## 801 0.0000000 0.000000000 0.00000000
## 802 0.0000000 0.000000000 0.00000000
## 803 0.0000000 0.000000000 0.00000000
## 804 0.0000000 0.000000000 0.00000000
## 805 0.0000000 0.000000000 0.00000000
## 806 0.0000000 0.000000000 0.00000000
## 807 0.0000000 0.000000000 0.00000000
## 808 0.0000000 0.000000000 0.00000000
## 809 0.0000000 0.000000000 0.00000000
## 810 0.0000000 0.000000000 0.00000000
## 811 0.0000000 0.000000000 0.00000000
## 812 0.0000000 0.000000000 0.00000000
## 813 0.0000000 0.000000000 0.00000000
## 814 0.0000000 0.000000000 0.00000000
## 815 0.0000000 0.000000000 0.00000000
## 816 0.0000000 0.000000000 0.00000000
## 817 0.0000000 0.000000000 0.00000000
## 818 0.0000000 0.000000000 0.00000000
## 819 0.0000000 0.000000000 0.00000000
## 820 0.0000000 0.000000000 0.00000000
## 821 0.0000000 0.000000000 0.00000000
## 822 0.0000000 0.000000000 0.00000000
## 823 0.0000000 0.000000000 0.00000000
## 824 0.0000000 0.000000000 0.00000000
## 825 0.0000000 0.000000000 0.00000000
## 826 0.0000000 0.000000000 0.00000000
## 827 0.0000000 0.000000000 0.00000000
## 828 0.0000000 0.000000000 0.00000000
## 829 0.0000000 0.000000000 0.00000000
## 830 0.0000000 0.000000000 0.00000000
## 831 0.0000000 0.000000000 0.00000000
## 832 0.0000000 0.000000000 0.00000000
## 833 0.0000000 0.000000000 0.00000000
## 834 0.0000000 0.000000000 0.00000000
## 835 0.0000000 0.000000000 0.00000000
## 836 0.0000000 0.000000000 0.00000000
## 837 0.0000000 0.000000000 0.00000000
## 838 0.0000000 0.000000000 0.00000000
## 839 0.0000000 0.000000000 0.00000000
## 840 0.0000000 0.000000000 0.00000000
## 841 0.0000000 0.000000000 0.00000000
## 842 0.0000000 0.000000000 0.00000000
## 843 0.0000000 0.000000000 0.00000000
## 844 0.0000000 0.000000000 0.00000000
## 845 0.0000000 0.000000000 0.00000000
## 846 0.0000000 0.000000000 0.00000000
## 847 0.0000000 0.000000000 0.00000000
## 848 0.0000000 0.000000000 0.00000000
## 849 0.0000000 0.000000000 0.00000000
## 850 0.0000000 0.000000000 0.00000000
## 851 0.0000000 0.000000000 0.00000000
## 852 0.0000000 0.000000000 0.00000000
## 853 0.0000000 0.000000000 0.00000000
## 854 0.0000000 0.000000000 0.00000000
## 855 0.0000000 0.000000000 0.00000000
## 856 0.0000000 0.000000000 0.00000000
## 857 0.0000000 0.000000000 0.00000000
## 858 0.0000000 0.000000000 0.00000000
## 859 0.0000000 0.000000000 0.00000000
## 860 0.0000000 0.000000000 0.00000000
## 861 0.0000000 0.000000000 0.00000000
## 862 0.0000000 0.000000000 0.00000000
## 863 0.0000000 0.000000000 0.00000000
## 864 0.0000000 0.000000000 0.00000000
## 865 0.0000000 0.000000000 0.00000000
## 866 0.0000000 0.000000000 0.00000000
## 867 0.0000000 0.000000000 0.00000000
## 868 0.0000000 0.000000000 0.00000000
## 869 0.0000000 0.000000000 0.00000000
## 870 0.0000000 0.000000000 0.00000000
## 871 0.0000000 0.000000000 0.00000000
## 872 0.0000000 0.000000000 0.00000000
## 873 0.0000000 0.000000000 0.00000000
## 874 0.0000000 0.000000000 0.00000000
## 875 0.0000000 0.000000000 0.00000000
## 876 0.0000000 0.000000000 0.00000000
## 877 0.0000000 0.000000000 0.00000000
## 878 0.0000000 0.000000000 0.00000000
## 879 0.0000000 0.000000000 0.00000000
## 880 0.0000000 0.000000000 0.00000000
## 881 0.0000000 0.000000000 0.00000000
## 882 0.0000000 0.000000000 0.00000000
## 883 0.0000000 0.000000000 0.00000000
## 884 0.0000000 0.000000000 0.00000000
## 885 0.0000000 0.000000000 0.00000000
## 886 0.0000000 0.000000000 0.00000000
## 887 0.0000000 0.000000000 0.00000000
## 888 0.0000000 0.000000000 0.00000000
## 889 0.0000000 0.000000000 0.00000000
## 890 0.0000000 0.000000000 0.00000000
## 891 0.0000000 0.000000000 0.00000000
## 892 0.0000000 0.000000000 0.00000000
## 893 0.0000000 0.000000000 0.00000000
## 894 0.0000000 0.000000000 0.00000000
## 895 0.0000000 0.000000000 0.00000000
## 896 0.0000000 0.000000000 0.00000000
## 897 0.0000000 0.000000000 0.00000000
## 898 0.0000000 0.000000000 0.00000000
## 899 0.0000000 0.000000000 0.00000000
## 900 0.0000000 0.000000000 0.00000000
## 901 0.0000000 0.000000000 0.00000000
## 902 0.0000000 0.000000000 0.00000000
## 903 0.0000000 0.000000000 0.00000000
## 904 0.0000000 0.000000000 0.00000000
## 905 0.0000000 0.000000000 0.00000000
## 906 0.0000000 0.000000000 0.00000000
## 907 0.0000000 0.000000000 0.00000000
## 908 0.0000000 0.000000000 0.00000000
## 909 0.0000000 0.000000000 0.00000000
## 910 0.0000000 0.000000000 0.00000000
## 911 0.0000000 0.000000000 0.00000000
## 912 0.0000000 0.000000000 0.00000000
## 913 0.0000000 0.000000000 0.00000000
## 914 0.0000000 0.000000000 0.00000000
## 915 0.0000000 0.000000000 0.00000000
## 916 0.0000000 0.000000000 0.00000000
## 917 0.0000000 0.000000000 0.00000000
## 918 0.0000000 0.000000000 0.00000000
## 919 0.0000000 0.000000000 0.00000000
## 920 0.0000000 0.000000000 0.00000000
## 921 0.0000000 0.000000000 0.00000000
## 922 0.0000000 0.000000000 0.00000000
## 923 0.0000000 0.000000000 0.00000000
## 924 0.0000000 0.000000000 0.00000000
## 925 0.0000000 0.000000000 0.00000000
## 926 0.0000000 0.000000000 0.00000000
## 927 0.0000000 0.000000000 0.00000000
## 928 0.0000000 0.000000000 0.00000000
## 929 0.0000000 0.000000000 0.00000000
## 930 0.0000000 0.000000000 0.00000000
## 931 0.0000000 0.000000000 0.00000000
## 932 0.0000000 0.000000000 0.00000000
## 933 0.0000000 0.000000000 0.00000000
## 934 0.0000000 0.000000000 0.00000000
## 935 0.0000000 0.000000000 0.00000000
## 936 0.0000000 0.000000000 0.00000000
## 937 0.0000000 0.000000000 0.00000000
## 938 0.0000000 0.000000000 0.00000000
## 939 0.0000000 0.000000000 0.00000000
## 940 0.0000000 0.000000000 0.00000000
## 941 0.0000000 0.000000000 0.00000000
## 942 0.0000000 0.000000000 0.00000000
## 943 0.0000000 0.000000000 0.00000000
## 944 0.0000000 0.000000000 0.00000000
## 945 0.0000000 0.000000000 0.00000000
## 946 0.0000000 0.000000000 0.00000000
## 947 0.0000000 0.000000000 0.00000000
## 948 0.0000000 0.000000000 0.00000000
## 949 0.0000000 0.000000000 0.00000000
## 950 0.0000000 0.000000000 0.00000000
## 951 0.0000000 0.000000000 0.00000000
## 952 0.0000000 0.000000000 0.00000000
## 953 0.0000000 0.000000000 0.00000000
## 954 0.0000000 0.000000000 0.00000000
## 955 0.0000000 0.000000000 0.00000000
## 956 0.0000000 0.000000000 0.00000000
## 957 0.0000000 0.000000000 0.00000000
## 958 0.0000000 0.000000000 0.00000000
## 959 0.0000000 0.000000000 0.00000000
## 960 0.0000000 0.000000000 0.00000000
## 961 0.0000000 0.000000000 0.00000000
## 962 0.0000000 0.000000000 0.00000000
## 963 0.0000000 0.000000000 0.00000000
## 964 0.0000000 0.000000000 0.00000000
## 965 0.0000000 0.000000000 0.00000000
## 966 0.0000000 0.000000000 0.00000000
## 967 0.0000000 0.000000000 0.00000000
## 968 0.0000000 0.000000000 0.00000000
## 969 0.0000000 0.000000000 0.00000000
## 970 0.0000000 0.000000000 0.00000000
## 971 0.0000000 0.000000000 0.00000000
## 972 0.0000000 0.000000000 0.00000000
## 973 0.0000000 0.000000000 0.00000000
## 974 0.0000000 0.000000000 0.00000000
## 975 0.0000000 0.000000000 0.00000000
## 976 0.0000000 0.000000000 0.00000000
## 977 0.0000000 0.000000000 0.00000000
## 978 0.0000000 0.000000000 0.00000000
## 979 0.0000000 0.000000000 0.00000000
## 980 0.0000000 0.000000000 0.00000000
## 981 0.0000000 0.000000000 0.00000000
## 982 0.0000000 0.000000000 0.00000000
## 983 0.0000000 0.000000000 0.00000000
## 984 0.0000000 0.000000000 0.00000000
## 985 0.0000000 0.000000000 0.00000000
## 986 0.0000000 0.000000000 0.00000000
## 987 0.0000000 0.000000000 0.00000000
## 988 0.0000000 0.000000000 0.00000000
## 989 0.0000000 0.000000000 0.00000000
## 990 0.0000000 0.000000000 0.00000000
## 991 0.0000000 0.000000000 0.00000000
## 992 0.0000000 0.000000000 0.00000000
## 993 0.0000000 0.000000000 0.00000000
## 994 0.0000000 0.000000000 0.00000000
## 995 0.0000000 0.000000000 0.00000000
## 996 0.0000000 0.000000000 0.00000000
## 997 0.0000000 0.000000000 0.00000000
## 998 0.0000000 0.000000000 0.00000000
## 999 0.0000000 0.000000000 0.00000000
## 1000 0.0000000 0.000000000 0.00000000
## 1001 0.0000000 0.000000000 0.00000000
## 1002 0.0000000 0.000000000 0.00000000
## 1003 0.0000000 0.000000000 0.00000000
## 1004 0.0000000 0.000000000 0.00000000
## 1005 0.0000000 0.000000000 0.00000000
## 1006 0.0000000 0.000000000 0.00000000
## 1007 0.0000000 0.000000000 0.00000000
## 1008 0.0000000 0.000000000 0.00000000
## 1009 0.0000000 0.000000000 0.00000000
## 1010 0.0000000 0.000000000 0.00000000
## 1011 0.0000000 0.000000000 0.00000000
## 1012 0.0000000 0.000000000 0.00000000
## 1013 0.0000000 0.000000000 0.00000000
## 1014 0.0000000 0.000000000 0.00000000
## 1015 0.0000000 0.000000000 0.00000000
## 1016 0.0000000 0.000000000 0.00000000
## 1017 0.0000000 0.000000000 0.00000000
## 1018 0.0000000 0.000000000 0.00000000
## 1019 0.0000000 0.000000000 0.00000000
## 1020 0.0000000 0.000000000 0.00000000
## 1021 0.0000000 0.000000000 0.00000000
## 1022 0.0000000 0.000000000 0.00000000
## 1023 0.0000000 0.000000000 0.00000000
## 1024 0.0000000 0.000000000 0.00000000
## 1025 0.0000000 0.000000000 0.00000000
## 1026 0.0000000 0.000000000 0.00000000
## 1027 0.0000000 0.000000000 0.00000000
## 1028 0.0000000 0.000000000 0.00000000
## 1029 0.0000000 0.000000000 0.00000000
## 1030 0.0000000 0.000000000 0.00000000
## 1031 0.0000000 0.000000000 0.00000000
## 1032 0.0000000 0.000000000 0.00000000
## 1033 0.0000000 0.000000000 0.00000000
## 1034 0.0000000 0.000000000 0.00000000
## 1035 0.0000000 0.000000000 0.00000000
## 1036 0.0000000 0.000000000 0.00000000
## 1037 0.0000000 0.000000000 0.00000000
## 1038 0.0000000 0.000000000 0.00000000
## 1039 0.0000000 0.000000000 0.00000000
## 1040 0.0000000 0.000000000 0.00000000
## 1041 0.0000000 0.000000000 0.00000000
## 1042 0.0000000 0.000000000 0.00000000
## 1043 0.0000000 0.000000000 0.00000000
## 1044 0.0000000 0.000000000 0.00000000
## 1045 0.0000000 0.000000000 0.00000000
## 1046 0.0000000 0.000000000 0.00000000
## 1047 0.0000000 0.000000000 0.00000000
## 1048 0.0000000 0.000000000 0.00000000
## 1049 0.0000000 0.000000000 0.00000000
## 1050 0.0000000 0.000000000 0.00000000
## 1051 0.0000000 0.000000000 0.00000000
## 1052 0.0000000 0.000000000 0.00000000
## 1053 0.0000000 0.000000000 0.00000000
## 1054 0.0000000 0.000000000 0.00000000
## 1055 0.0000000 0.000000000 0.00000000
## 1056 0.0000000 0.000000000 0.00000000
## 1057 0.0000000 0.000000000 0.00000000
## 1058 0.0000000 0.000000000 0.00000000
## 1059 0.0000000 0.000000000 0.00000000
## 1060 0.0000000 0.000000000 0.00000000
## 1061 0.0000000 0.000000000 0.00000000
## 1062 0.0000000 0.000000000 0.00000000
## 1063 0.0000000 0.000000000 0.00000000
## 1064 0.0000000 0.000000000 0.00000000
## 1065 0.0000000 0.000000000 0.00000000
## 1066 0.0000000 0.000000000 0.00000000
## 1067 0.0000000 0.000000000 0.00000000
## 1068 0.0000000 0.000000000 0.00000000
## 1069 0.0000000 0.000000000 0.00000000
## 1070 0.0000000 0.000000000 0.00000000
## 1071 0.0000000 0.000000000 0.00000000
## 1072 0.0000000 0.000000000 0.00000000
## 1073 0.0000000 0.000000000 0.00000000
## 1074 0.0000000 0.000000000 0.00000000
## 1075 0.0000000 0.000000000 0.00000000
## 1076 0.0000000 0.000000000 0.00000000
## 1077 0.0000000 0.000000000 0.00000000
## 1078 0.0000000 0.000000000 0.00000000
## 1079 0.0000000 0.000000000 0.00000000
## 1080 0.0000000 0.000000000 0.00000000
## 1081 0.0000000 0.000000000 0.00000000
## 1082 0.0000000 0.000000000 0.00000000
## 1083 0.0000000 0.000000000 0.00000000
## 1084 0.0000000 0.000000000 0.00000000
## 1085 0.0000000 0.000000000 0.00000000
## 1086 0.0000000 0.000000000 0.00000000
## 1087 0.0000000 0.000000000 0.00000000
## 1088 0.0000000 0.000000000 0.00000000
## 1089 0.0000000 0.000000000 0.00000000
## 1090 0.0000000 0.000000000 0.00000000
## 1091 0.0000000 0.000000000 0.00000000
## 1092 0.0000000 0.000000000 0.00000000
## 1093 0.0000000 0.000000000 0.00000000
## 1094 0.0000000 0.000000000 0.00000000
## 1095 0.0000000 0.000000000 0.00000000
## 1096 0.0000000 0.000000000 0.00000000
## 1097 0.0000000 0.000000000 0.00000000
## 1098 0.0000000 0.000000000 0.00000000
## 1099 0.0000000 0.000000000 0.00000000
## 1100 0.0000000 0.000000000 0.00000000
## 1101 0.0000000 0.000000000 0.00000000
## 1102 0.0000000 0.000000000 0.00000000
## 1103 0.0000000 0.000000000 0.00000000
## 1104 0.0000000 0.000000000 0.00000000
## 1105 0.0000000 0.000000000 0.00000000
## 1106 0.0000000 0.000000000 0.00000000
## 1107 0.0000000 0.000000000 0.00000000
## 1108 0.0000000 0.000000000 0.00000000
## 1109 0.0000000 0.000000000 0.00000000
## 1110 0.0000000 0.000000000 0.00000000
## 1111 0.0000000 0.000000000 0.00000000
## 1112 0.0000000 0.000000000 0.00000000
## 1113 0.0000000 0.000000000 0.00000000
## 1114 0.0000000 0.000000000 0.00000000
## 1115 0.0000000 0.000000000 0.00000000
## 1116 0.0000000 0.000000000 0.00000000
## 1117 0.0000000 0.000000000 0.00000000
## 1118 0.0000000 0.000000000 0.00000000
## 1119 0.0000000 0.000000000 0.00000000
## 1120 0.0000000 0.000000000 0.00000000
## 1121 0.0000000 0.000000000 0.00000000
## 1122 0.0000000 0.000000000 0.00000000
## 1123 0.0000000 0.000000000 0.00000000
## 1124 0.0000000 0.000000000 0.00000000
## 1125 0.0000000 0.000000000 0.00000000
## 1126 0.0000000 0.000000000 0.00000000
## 1127 0.0000000 0.000000000 0.00000000
## 1128 0.0000000 0.000000000 0.00000000
## 1129 0.0000000 0.000000000 0.00000000
## 1130 0.0000000 0.000000000 0.00000000
## 1131 0.0000000 0.000000000 0.00000000
## 1132 0.0000000 0.000000000 0.00000000
## 1133 0.0000000 0.000000000 0.00000000
## 1134 0.0000000 0.000000000 0.00000000
## 1135 0.0000000 0.000000000 0.00000000
## 1136 0.0000000 0.000000000 0.00000000
## 1137 0.0000000 0.000000000 0.00000000
## 1138 0.0000000 0.000000000 0.00000000
## 1139 0.0000000 0.000000000 0.00000000
## 1140 0.0000000 0.000000000 0.00000000
## 1141 0.0000000 0.000000000 0.00000000
## 1142 0.0000000 0.000000000 0.00000000
## 1143 0.0000000 0.000000000 0.00000000
## 1144 0.0000000 0.000000000 0.00000000
## 1145 0.0000000 0.000000000 0.00000000
## 1146 0.0000000 0.000000000 0.00000000
## 1147 0.0000000 0.000000000 0.00000000
## 1148 0.0000000 0.000000000 0.00000000
## 1149 0.0000000 0.000000000 0.00000000
## 1150 0.0000000 0.000000000 0.00000000
## 1151 0.0000000 0.000000000 0.00000000
## 1152 0.0000000 0.000000000 0.00000000
## 1153 0.0000000 0.000000000 0.00000000
## 1154 0.0000000 0.000000000 0.00000000
## 1155 0.0000000 0.000000000 0.00000000
## 1156 0.0000000 0.000000000 0.00000000
## 1157 0.0000000 0.000000000 0.00000000
## 1158 0.0000000 0.000000000 0.00000000
## 1159 0.0000000 0.000000000 0.00000000
## 1160 0.0000000 0.000000000 0.00000000
## 1161 0.0000000 0.000000000 0.00000000
## 1162 0.0000000 0.000000000 0.00000000
## 1163 0.0000000 0.000000000 0.00000000
## 1164 0.0000000 0.000000000 0.00000000
## 1165 0.0000000 0.000000000 0.00000000
## 1166 0.0000000 0.000000000 0.00000000
## 1167 0.0000000 0.000000000 0.00000000
## 1168 0.0000000 0.000000000 0.00000000
## 1169 0.0000000 0.000000000 0.00000000
## 1170 0.0000000 0.000000000 0.00000000
## 1171 0.0000000 0.000000000 0.00000000
## 1172 0.0000000 0.000000000 0.00000000
## 1173 0.0000000 0.000000000 0.00000000
## 1174 0.0000000 0.000000000 0.00000000
## 1175 0.0000000 0.000000000 0.00000000
## 1176 0.0000000 0.000000000 0.00000000
## 1177 0.0000000 0.000000000 0.00000000
## 1178 0.0000000 0.000000000 0.00000000
## 1179 0.0000000 0.000000000 0.00000000
## 1180 0.0000000 0.000000000 0.00000000
## 1181 0.0000000 0.000000000 0.00000000
## 1182 0.0000000 0.000000000 0.00000000
## 1183 0.0000000 0.000000000 0.00000000
## 1184 0.0000000 0.000000000 0.00000000
## 1185 0.0000000 0.000000000 0.00000000
## 1186 0.0000000 0.000000000 0.00000000
## 1187 0.0000000 0.000000000 0.00000000
## 1188 0.0000000 0.000000000 0.00000000
## 1189 0.0000000 0.000000000 0.00000000
## 1190 0.0000000 0.000000000 0.00000000
## 1191 0.0000000 0.000000000 0.00000000
## 1192 0.0000000 0.000000000 0.00000000
## 1193 0.0000000 0.000000000 0.00000000
## 1194 0.0000000 0.000000000 0.00000000
## 1195 0.0000000 0.000000000 0.00000000
## 1196 0.0000000 0.000000000 0.00000000
## 1197 0.0000000 0.000000000 0.00000000
## 1198 0.0000000 0.000000000 0.00000000
## 1199 0.0000000 0.000000000 0.00000000
## 1200 0.0000000 0.000000000 0.00000000
## 1201 0.0000000 0.000000000 0.00000000
## 1202 0.0000000 0.000000000 0.00000000
## 1203 0.0000000 0.000000000 0.00000000
## 1204 0.0000000 0.000000000 0.00000000
## 1205 0.0000000 0.000000000 0.00000000
## 1206 0.0000000 0.000000000 0.00000000
## 1207 0.0000000 0.000000000 0.00000000
## 1208 0.0000000 0.000000000 0.00000000
## 1209 0.0000000 0.000000000 0.00000000
## 1210 0.0000000 0.000000000 0.00000000
## 1211 0.0000000 0.000000000 0.00000000
## 1212 0.0000000 0.000000000 0.00000000
## 1213 0.0000000 0.000000000 0.00000000
## 1214 0.0000000 0.000000000 0.00000000
## 1215 0.0000000 0.000000000 0.00000000
## 1216 0.0000000 0.000000000 0.00000000
## 1217 0.0000000 0.000000000 0.00000000
## 1218 0.0000000 0.000000000 0.00000000
## 1219 0.0000000 0.000000000 0.00000000
## 1220 0.0000000 0.000000000 0.00000000
## 1221 0.0000000 0.000000000 0.00000000
## 1222 0.0000000 0.000000000 0.00000000
## 1223 0.0000000 0.000000000 0.00000000
## 1224 0.0000000 0.000000000 0.00000000
## 1225 0.0000000 0.000000000 0.00000000
## 1226 0.0000000 0.000000000 0.00000000
## 1227 0.0000000 0.000000000 0.00000000
## 1228 0.0000000 0.000000000 0.00000000
## 1229 0.0000000 0.000000000 0.00000000
## 1230 0.0000000 0.000000000 0.00000000
## 1231 0.0000000 0.000000000 0.00000000
## 1232 0.0000000 0.000000000 0.00000000
## 1233 0.0000000 0.000000000 0.00000000
## 1234 0.0000000 0.000000000 0.00000000
## 1235 0.0000000 0.000000000 0.00000000
## 1236 0.0000000 0.000000000 0.00000000
## 1237 0.0000000 0.000000000 0.00000000
## 1238 0.0000000 0.000000000 0.00000000
## 1239 0.0000000 0.000000000 0.00000000
## 1240 0.0000000 0.000000000 0.00000000
## 1241 0.0000000 0.000000000 0.00000000
## 1242 0.0000000 0.000000000 0.00000000
## 1243 0.0000000 0.000000000 0.00000000
## 1244 0.0000000 0.000000000 0.00000000
## 1245 0.0000000 0.000000000 0.00000000
## 1246 0.0000000 0.000000000 0.00000000
## 1247 0.0000000 0.000000000 0.00000000
## 1248 0.0000000 0.000000000 0.00000000
## 1249 0.0000000 0.000000000 0.00000000
## 1250 0.0000000 0.000000000 0.00000000
## 1251 0.0000000 0.000000000 0.00000000
## 1252 0.0000000 0.000000000 0.00000000
## 1253 0.0000000 0.000000000 0.00000000
## 1254 0.0000000 0.000000000 0.00000000
## 1255 0.0000000 0.000000000 0.00000000
## 1256 0.0000000 0.000000000 0.00000000
## 1257 0.0000000 0.000000000 0.00000000
## 1258 0.0000000 0.000000000 0.00000000
## 1259 0.0000000 0.000000000 0.00000000
## 1260 0.0000000 0.000000000 0.00000000
## 1261 0.0000000 0.000000000 0.00000000
## 1262 0.0000000 0.000000000 0.00000000
## 1263 0.0000000 0.000000000 0.00000000
## 1264 0.0000000 0.000000000 0.00000000
## 1265 0.0000000 0.000000000 0.00000000
## 1266 0.0000000 0.000000000 0.00000000
## 1267 0.0000000 0.000000000 0.00000000
## 1268 0.0000000 0.000000000 0.00000000
## 1269 0.0000000 0.000000000 0.00000000
## 1270 0.0000000 0.000000000 0.00000000
## 1271 0.0000000 0.000000000 0.00000000
## 1272 0.0000000 0.000000000 0.00000000
## 1273 0.0000000 0.000000000 0.00000000
## 1274 0.0000000 0.000000000 0.00000000
## 1275 0.0000000 0.000000000 0.00000000
## 1276 0.0000000 0.000000000 0.00000000
## 1277 0.0000000 0.000000000 0.00000000
## 1278 0.0000000 0.000000000 0.00000000
## 1279 0.0000000 0.000000000 0.00000000
## 1280 0.0000000 0.000000000 0.00000000
## 1281 0.0000000 0.000000000 0.00000000
## 1282 0.0000000 0.000000000 0.00000000
## 1283 0.0000000 0.000000000 0.00000000
## 1284 0.0000000 0.000000000 0.00000000
## 1285 0.0000000 0.000000000 0.00000000
## 1286 0.0000000 0.000000000 0.00000000
## 1287 0.0000000 0.000000000 0.00000000
## 1288 0.0000000 0.000000000 0.00000000
## 1289 0.0000000 0.000000000 0.00000000
## 1290 0.0000000 0.000000000 0.00000000
## 1291 0.0000000 0.000000000 0.00000000
## 1292 0.0000000 0.000000000 0.00000000
## 1293 0.0000000 0.000000000 0.00000000
## 1294 0.0000000 0.000000000 0.00000000
## 1295 0.0000000 0.000000000 0.00000000
## 1296 0.0000000 0.000000000 0.00000000
## 1297 0.0000000 0.000000000 0.00000000
## 1298 0.0000000 0.000000000 0.00000000
## 1299 0.0000000 0.000000000 0.00000000
## 1300 0.0000000 0.000000000 0.00000000
## 1301 0.0000000 0.000000000 0.00000000
## 1302 0.0000000 0.000000000 0.00000000
## 1303 0.0000000 0.000000000 0.00000000
## 1304 0.0000000 0.000000000 0.00000000
## 1305 0.0000000 0.000000000 0.00000000
## 1306 0.0000000 0.000000000 0.00000000
## 1307 0.0000000 0.000000000 0.00000000
## 1308 0.0000000 0.000000000 0.00000000
## 1309 0.0000000 0.000000000 0.00000000
## 1310 0.0000000 0.000000000 0.00000000
## 1311 0.0000000 0.000000000 0.00000000
## 1312 0.0000000 0.000000000 0.00000000
## 1313 0.0000000 0.000000000 0.00000000
## 1314 0.0000000 0.000000000 0.00000000
## 1315 0.0000000 0.000000000 0.00000000
## 1316 0.0000000 0.000000000 0.00000000
## 1317 0.0000000 0.000000000 0.00000000
## 1318 0.0000000 0.000000000 0.00000000
## 1319 0.0000000 0.000000000 0.00000000
## 1320 0.0000000 0.000000000 0.00000000
## 1321 0.0000000 0.000000000 0.00000000
## 1322 0.0000000 0.000000000 0.00000000
## 1323 0.0000000 0.000000000 0.00000000
## 1324 0.0000000 0.000000000 0.00000000
## 1325 0.0000000 0.000000000 0.00000000
## 1326 0.0000000 0.000000000 0.00000000
## 1327 0.0000000 0.000000000 0.00000000
## 1328 0.0000000 0.000000000 0.00000000
## 1329 0.0000000 0.000000000 0.00000000
## 1330 0.0000000 0.000000000 0.00000000
## 1331 0.0000000 0.000000000 0.00000000
## 1332 0.0000000 0.000000000 0.00000000
## 1333 0.0000000 0.000000000 0.00000000
## 1334 0.0000000 0.000000000 0.00000000
## 1335 0.0000000 0.000000000 0.00000000
## 1336 0.0000000 0.000000000 0.00000000
## 1337 0.0000000 0.000000000 0.00000000
## 1338 0.0000000 0.000000000 0.00000000
## 1339 0.0000000 0.000000000 0.00000000
## 1340 0.0000000 0.000000000 0.00000000
## 1341 0.0000000 0.000000000 0.00000000
## 1342 0.0000000 0.000000000 0.00000000
## 1343 0.0000000 0.000000000 0.00000000
## 1344 0.0000000 0.000000000 0.00000000
## 1345 0.0000000 0.000000000 0.00000000
## 1346 0.0000000 0.000000000 0.00000000
## 1347 0.0000000 0.000000000 0.00000000
## 1348 0.0000000 0.000000000 0.00000000
## 1349 0.0000000 0.000000000 0.00000000
## 1350 0.0000000 0.000000000 0.00000000
## 1351 0.0000000 0.000000000 0.00000000
## 1352 0.0000000 0.000000000 0.00000000
## 1353 0.0000000 0.000000000 0.00000000
## 1354 0.0000000 0.000000000 0.00000000
## 1355 0.0000000 0.000000000 0.00000000
## 1356 0.0000000 0.000000000 0.00000000
## 1357 0.0000000 0.000000000 0.00000000
## 1358 0.0000000 0.000000000 0.00000000
## 1359 0.0000000 0.000000000 0.00000000
## 1360 0.0000000 0.000000000 0.00000000
## 1361 0.0000000 0.000000000 0.00000000
## 1362 0.0000000 0.000000000 0.00000000
## 1363 0.0000000 0.000000000 0.00000000
## 1364 0.0000000 0.000000000 0.00000000
## 1365 0.0000000 0.000000000 0.00000000
## 1366 0.0000000 0.000000000 0.00000000
## 1367 0.0000000 0.000000000 0.00000000
## 1368 0.0000000 0.000000000 0.00000000
## 1369 0.0000000 0.000000000 0.00000000
## 1370 0.0000000 0.000000000 0.00000000
## 1371 0.0000000 0.000000000 0.00000000
## 1372 0.0000000 0.000000000 0.00000000
## 1373 0.0000000 0.000000000 0.00000000
## 1374 0.0000000 0.000000000 0.00000000
## 1375 0.0000000 0.000000000 0.00000000
## 1376 0.0000000 0.000000000 0.00000000
## 1377 0.0000000 0.000000000 0.00000000
## 1378 0.0000000 0.000000000 0.00000000
## 1379 0.0000000 0.000000000 0.00000000
## 1380 0.0000000 0.000000000 0.00000000
## 1381 0.0000000 0.000000000 0.00000000
## 1382 0.0000000 0.000000000 0.00000000
## 1383 0.0000000 0.000000000 0.00000000
## 1384 0.0000000 0.000000000 0.00000000
## 1385 0.0000000 0.000000000 0.00000000
## 1386 0.0000000 0.000000000 0.00000000
## 1387 0.0000000 0.000000000 0.00000000
## 1388 0.0000000 0.000000000 0.00000000
## 1389 0.0000000 0.000000000 0.00000000
## 1390 0.0000000 0.000000000 0.00000000
## 1391 0.0000000 0.000000000 0.00000000
## 1392 0.0000000 0.000000000 0.00000000
## 1393 0.0000000 0.000000000 0.00000000
## 1394 0.0000000 0.000000000 0.00000000
## 1395 0.0000000 0.000000000 0.00000000
## 1396 0.0000000 0.000000000 0.00000000
## 1397 0.0000000 0.000000000 0.00000000
## 1398 0.0000000 0.000000000 0.00000000
## 1399 0.0000000 0.000000000 0.00000000
## 1400 0.0000000 0.000000000 0.00000000
## 1401 0.0000000 0.000000000 0.00000000
## 1402 0.0000000 0.000000000 0.00000000
## 1403 0.0000000 0.000000000 0.00000000
## 1404 0.0000000 0.000000000 0.00000000
## 1405 0.0000000 0.000000000 0.00000000
## 1406 0.0000000 0.000000000 0.00000000
## 1407 0.0000000 0.000000000 0.00000000
## 1408 0.0000000 0.000000000 0.00000000
## 1409 0.0000000 0.000000000 0.00000000
## 1410 0.0000000 0.000000000 0.00000000
## 1411 0.0000000 0.000000000 0.00000000
## 1412 0.0000000 0.000000000 0.00000000
## 1413 0.0000000 0.000000000 0.00000000
## 1414 0.0000000 0.000000000 0.00000000
## 1415 0.0000000 0.000000000 0.00000000
## 1416 0.0000000 0.000000000 0.00000000
## 1417 0.0000000 0.000000000 0.00000000
## 1418 0.0000000 0.000000000 0.00000000
## 1419 0.0000000 0.000000000 0.00000000
## 1420 0.0000000 0.000000000 0.00000000
## 1421 0.0000000 0.000000000 0.00000000
## 1422 0.0000000 0.000000000 0.00000000
## 1423 0.0000000 0.000000000 0.00000000
## 1424 0.0000000 0.000000000 0.00000000
## 1425 0.0000000 0.000000000 0.00000000
## 1426 0.0000000 0.000000000 0.00000000
## 1427 0.0000000 0.000000000 0.00000000
## 1428 0.0000000 0.000000000 0.00000000
## 1429 0.0000000 0.000000000 0.00000000
## 1430 0.0000000 0.000000000 0.00000000
## 1431 0.0000000 0.000000000 0.00000000
## 1432 0.0000000 0.000000000 0.00000000
## 1433 0.0000000 0.000000000 0.00000000
## 1434 0.0000000 0.000000000 0.00000000
## 1435 0.0000000 0.000000000 0.00000000
## 1436 0.0000000 0.000000000 0.00000000
## 1437 0.0000000 0.000000000 0.00000000
## 1438 0.0000000 0.000000000 0.00000000
## 1439 0.0000000 0.000000000 0.00000000
## 1440 0.0000000 0.000000000 0.00000000
## 1441 0.0000000 0.000000000 0.00000000
## 1442 0.0000000 0.000000000 0.00000000
## 1443 0.0000000 0.000000000 0.00000000
## 1444 0.0000000 0.000000000 0.00000000
## 1445 0.0000000 0.000000000 0.00000000
## 1446 0.0000000 0.000000000 0.00000000
## 1447 0.0000000 0.000000000 0.00000000
## 1448 0.0000000 0.000000000 0.00000000
## 1449 0.0000000 0.000000000 0.00000000
## 1450 0.0000000 0.000000000 0.00000000
## 1451 0.0000000 0.000000000 0.00000000
## 1452 0.0000000 0.000000000 0.00000000
## 1453 0.0000000 0.000000000 0.00000000
## 1454 0.0000000 0.000000000 0.00000000
## 1455 0.0000000 0.000000000 0.00000000
## 1456 0.0000000 0.000000000 0.00000000
## 1457 0.0000000 0.000000000 0.00000000
## 1458 0.0000000 0.000000000 0.00000000
## 1459 0.0000000 0.000000000 0.00000000
## 1460 0.0000000 0.000000000 0.00000000
## 1461 0.0000000 0.000000000 0.00000000
## 1462 0.0000000 0.000000000 0.00000000
## 1463 0.0000000 0.000000000 0.00000000
## 1464 0.0000000 0.000000000 0.00000000
## 1465 0.0000000 0.000000000 0.00000000
## 1466 0.0000000 0.000000000 0.00000000
## 1467 0.0000000 0.000000000 0.00000000
## 1468 0.0000000 0.000000000 0.00000000
## 1469 0.0000000 0.000000000 0.00000000
## 1470 0.0000000 0.000000000 0.00000000
## 1471 0.0000000 0.000000000 0.00000000
## 1472 0.0000000 0.000000000 0.00000000
## 1473 0.0000000 0.000000000 0.00000000
## 1474 0.0000000 0.000000000 0.00000000
## 1475 0.0000000 0.000000000 0.00000000
## 1476 0.0000000 0.000000000 0.00000000
## 1477 0.0000000 0.000000000 0.00000000
## 1478 0.0000000 0.000000000 0.00000000
## 1479 0.0000000 0.000000000 0.00000000
## 1480 0.0000000 0.000000000 0.00000000
## 1481 0.0000000 0.000000000 0.00000000
## 1482 0.0000000 0.000000000 0.00000000
## 1483 0.0000000 0.000000000 0.00000000
## 1484 0.0000000 0.000000000 0.00000000
## 1485 0.0000000 0.000000000 0.00000000
## 1486 0.0000000 0.000000000 0.00000000
## 1487 0.0000000 0.000000000 0.00000000
## 1488 0.0000000 0.000000000 0.00000000
## 1489 0.0000000 0.000000000 0.00000000
## 1490 0.0000000 0.000000000 0.00000000
## 1491 0.0000000 0.000000000 0.00000000
## 1492 0.0000000 0.000000000 0.00000000
## 1493 0.0000000 0.000000000 0.00000000
## 1494 0.0000000 0.000000000 0.00000000
## 1495 0.0000000 0.000000000 0.00000000
## 1496 0.0000000 0.000000000 0.00000000
## 1497 0.0000000 0.000000000 0.00000000
## 1498 0.0000000 0.000000000 0.00000000
## 1499 0.0000000 0.000000000 0.00000000
## 1500 0.0000000 0.000000000 0.00000000
## 1501 0.0000000 0.000000000 0.00000000
## 1502 0.0000000 0.000000000 0.00000000
## 1503 0.0000000 0.000000000 0.00000000
## 1504 0.0000000 0.000000000 0.00000000
## 1505 0.0000000 0.000000000 0.00000000
## 1506 0.0000000 0.000000000 0.00000000
## 1507 0.0000000 0.000000000 0.00000000
## 1508 0.0000000 0.000000000 0.00000000
## 1509 0.0000000 0.000000000 0.00000000
## 1510 0.0000000 0.000000000 0.00000000
## 1511 0.0000000 0.000000000 0.00000000
## 1512 0.0000000 0.000000000 0.00000000
## 1513 0.0000000 0.000000000 0.00000000
## 1514 0.0000000 0.000000000 0.00000000
## 1515 0.0000000 0.000000000 0.00000000
## 1516 0.0000000 0.000000000 0.00000000
## 1517 0.0000000 0.000000000 0.00000000
## 1518 0.0000000 0.000000000 0.00000000
## 1519 0.0000000 0.000000000 0.00000000
## 1520 0.0000000 0.000000000 0.00000000
## 1521 0.0000000 0.000000000 0.00000000
## 1522 0.0000000 0.000000000 0.00000000
## 1523 0.0000000 0.000000000 0.00000000
## 1524 0.0000000 0.000000000 0.00000000
## 1525 0.0000000 0.000000000 0.00000000
## 1526 0.0000000 0.000000000 0.00000000
## 1527 0.0000000 0.000000000 0.00000000
## 1528 0.0000000 0.000000000 0.00000000
## 1529 0.0000000 0.000000000 0.00000000
## 1530 0.0000000 0.000000000 0.00000000
## 1531 0.0000000 0.000000000 0.00000000
## 1532 0.0000000 0.000000000 0.00000000
## 1533 0.0000000 0.000000000 0.00000000
## 1534 0.0000000 0.000000000 0.00000000
## 1535 0.0000000 0.000000000 0.00000000
## 1536 0.0000000 0.000000000 0.00000000
## 1537 0.0000000 0.000000000 0.00000000
## 1538 0.0000000 0.000000000 0.00000000
## 1539 0.0000000 0.000000000 0.00000000
## 1540 0.0000000 0.000000000 0.00000000
## 1541 0.0000000 0.000000000 0.00000000
## 1542 0.0000000 0.000000000 0.00000000
## 1543 0.0000000 0.000000000 0.00000000
## 1544 0.0000000 0.000000000 0.00000000
## 1545 0.0000000 0.000000000 0.00000000
## 1546 0.0000000 0.000000000 0.00000000
## 1547 0.0000000 0.000000000 0.00000000
## 1548 0.0000000 0.000000000 0.00000000
## 1549 0.0000000 0.000000000 0.00000000
## 1550 0.0000000 0.000000000 0.00000000
## 1551 0.0000000 0.000000000 0.00000000
## 1552 0.0000000 0.000000000 0.00000000
## 1553 0.0000000 0.000000000 0.00000000
## 1554 0.0000000 0.000000000 0.00000000
## 1555 0.0000000 0.000000000 0.00000000
## 1556 0.0000000 0.000000000 0.00000000
## 1557 0.0000000 0.000000000 0.00000000
## 1558 0.0000000 0.000000000 0.00000000
## 1559 0.0000000 0.000000000 0.00000000
## 1560 0.0000000 0.000000000 0.00000000
## 1561 0.0000000 0.000000000 0.00000000
## 1562 0.0000000 0.000000000 0.00000000
## 1563 0.0000000 0.000000000 0.00000000
## 1564 0.0000000 0.000000000 0.00000000
## 1565 0.0000000 0.000000000 0.00000000
## 1566 0.0000000 0.000000000 0.00000000
## 1567 0.0000000 0.000000000 0.00000000
## 1568 0.0000000 0.000000000 0.00000000
## 1569 0.0000000 0.000000000 0.00000000
## 1570 0.0000000 0.000000000 0.00000000
## 1571 0.0000000 0.000000000 0.00000000
## 1572 0.0000000 0.000000000 0.00000000
## 1573 0.0000000 0.000000000 0.00000000
## 1574 0.0000000 0.000000000 0.00000000
## 1575 0.0000000 0.000000000 0.00000000
## 1576 0.0000000 0.000000000 0.00000000
## 1577 0.0000000 0.000000000 0.00000000
## 1578 0.0000000 0.000000000 0.00000000
## 1579 0.0000000 0.000000000 0.00000000
## 1580 0.0000000 0.000000000 0.00000000
## 1581 0.0000000 0.000000000 0.00000000
## 1582 0.0000000 0.000000000 0.00000000
## 1583 0.0000000 0.000000000 0.00000000
## 1584 0.0000000 0.000000000 0.00000000
## 1585 0.0000000 0.000000000 0.00000000
## 1586 0.0000000 0.000000000 0.00000000
## 1587 0.0000000 0.000000000 0.00000000
## 1588 0.0000000 0.000000000 0.00000000
## 1589 0.0000000 0.000000000 0.00000000
## 1590 0.0000000 0.000000000 0.00000000
## 1591 0.0000000 0.000000000 0.00000000
## 1592 0.0000000 0.000000000 0.00000000
## 1593 0.0000000 0.000000000 0.00000000
## 1594 0.0000000 0.000000000 0.00000000
## 1595 0.0000000 0.000000000 0.00000000
## 1596 0.0000000 0.000000000 0.00000000
## 1597 0.0000000 0.000000000 0.00000000
## 1598 0.0000000 0.000000000 0.00000000
## 1599 0.0000000 0.000000000 0.00000000
## 1600 0.0000000 0.000000000 0.00000000
## 1601 0.0000000 0.000000000 0.00000000
## 1602 0.0000000 0.000000000 0.00000000
## 1603 0.0000000 0.000000000 0.00000000
## 1604 0.0000000 0.000000000 0.00000000
## 1605 0.0000000 0.000000000 0.00000000
## 1606 0.0000000 0.000000000 0.00000000
## 1607 0.0000000 0.000000000 0.00000000
## 1608 0.0000000 0.000000000 0.00000000
## 1609 0.0000000 0.000000000 0.00000000
## 1610 0.0000000 0.000000000 0.00000000
## 1611 0.0000000 0.000000000 0.00000000
## 1612 0.0000000 0.000000000 0.00000000
## 1613 0.0000000 0.000000000 0.00000000
## 1614 0.0000000 0.000000000 0.00000000
## 1615 0.0000000 0.000000000 0.00000000
## 1616 0.0000000 0.000000000 0.00000000
## 1617 0.0000000 0.000000000 0.00000000
## 1618 0.0000000 0.000000000 0.00000000
## 1619 0.0000000 0.000000000 0.00000000
## 1620 0.0000000 0.000000000 0.00000000
## 1621 0.0000000 0.000000000 0.00000000
## 1622 0.0000000 0.000000000 0.00000000
## 1623 0.0000000 0.000000000 0.00000000
## 1624 0.0000000 0.000000000 0.00000000
## 1625 0.0000000 0.000000000 0.00000000
## 1626 0.0000000 0.000000000 0.00000000
## 1627 0.0000000 0.000000000 0.00000000
## 1628 0.0000000 0.000000000 0.00000000
## 1629 0.0000000 0.000000000 0.00000000
## 1630 0.0000000 0.000000000 0.00000000
## 1631 0.0000000 0.000000000 0.00000000
## 1632 0.0000000 0.000000000 0.00000000
## 1633 0.0000000 0.000000000 0.00000000
## 1634 0.0000000 0.000000000 0.00000000
## 1635 0.0000000 0.000000000 0.00000000
## 1636 0.0000000 0.000000000 0.00000000
## 1637 0.0000000 0.000000000 0.00000000
## 1638 0.0000000 0.000000000 0.00000000
## 1639 0.0000000 0.000000000 0.00000000
## 1640 0.0000000 0.000000000 0.00000000
## 1641 0.0000000 0.000000000 0.00000000
## 1642 0.0000000 0.000000000 0.00000000
## 1643 0.0000000 0.000000000 0.00000000
## 1644 0.0000000 0.000000000 0.00000000
## 1645 0.0000000 0.000000000 0.00000000
## 1646 0.0000000 0.000000000 0.00000000
## 1647 0.0000000 0.000000000 0.00000000
## 1648 0.0000000 0.000000000 0.00000000
## 1649 0.0000000 0.000000000 0.00000000
## 1650 0.0000000 0.000000000 0.00000000
## 1651 0.0000000 0.000000000 0.00000000
## 1652 0.0000000 0.000000000 0.00000000
## 1653 0.0000000 0.000000000 0.00000000
## 1654 0.0000000 0.000000000 0.00000000
## 1655 0.0000000 0.000000000 0.00000000
## 1656 0.0000000 0.000000000 0.00000000
## 1657 0.0000000 0.000000000 0.00000000
## 1658 0.0000000 0.000000000 0.00000000
## 1659 0.0000000 0.000000000 0.00000000
## 1660 0.0000000 0.000000000 0.00000000
## 1661 0.0000000 0.000000000 0.00000000
## 1662 0.0000000 0.000000000 0.00000000
## 1663 0.0000000 0.000000000 0.00000000
## 1664 0.0000000 0.000000000 0.00000000
## 1665 0.0000000 0.000000000 0.00000000
## 1666 0.0000000 0.000000000 0.00000000
## 1667 0.0000000 0.000000000 0.00000000
## 1668 0.0000000 0.000000000 0.00000000
## 1669 0.0000000 0.000000000 0.00000000
## 1670 0.0000000 0.000000000 0.00000000
## 1671 0.0000000 0.000000000 0.00000000
## 1672 0.0000000 0.000000000 0.00000000
## 1673 0.0000000 0.000000000 0.00000000
## 1674 0.0000000 0.000000000 0.00000000
## 1675 0.0000000 0.000000000 0.00000000
## 1676 0.0000000 0.000000000 0.00000000
## 1677 0.0000000 0.000000000 0.00000000
## 1678 0.0000000 0.000000000 0.00000000
## 1679 0.0000000 0.000000000 0.00000000
## 1680 0.0000000 0.000000000 0.00000000
## 1681 0.0000000 0.000000000 0.00000000
## 1682 0.0000000 0.000000000 0.00000000
## 1683 0.0000000 0.000000000 0.00000000
## 1684 0.0000000 0.000000000 0.00000000
## 1685 0.0000000 0.000000000 0.00000000
## 1686 0.0000000 0.000000000 0.00000000
## 1687 0.0000000 0.000000000 0.00000000
## 1688 0.0000000 0.000000000 0.00000000
## 1689 0.0000000 0.000000000 0.00000000
## 1690 0.0000000 0.000000000 0.00000000
## 1691 0.0000000 0.000000000 0.00000000
## 1692 0.0000000 0.000000000 0.00000000
## 1693 0.0000000 0.000000000 0.00000000
## 1694 0.0000000 0.000000000 0.00000000
## 1695 0.0000000 0.000000000 0.00000000
## 1696 0.0000000 0.000000000 0.00000000
## 1697 0.0000000 0.000000000 0.00000000
## 1698 0.0000000 0.000000000 0.00000000
## 1699 0.0000000 0.000000000 0.00000000
## 1700 0.0000000 0.000000000 0.00000000
## 1701 0.0000000 0.000000000 0.00000000
## 1702 0.0000000 0.000000000 0.00000000
## 1703 0.0000000 0.000000000 0.00000000
## 1704 0.0000000 0.000000000 0.00000000
## 1705 0.0000000 0.000000000 0.00000000
## 1706 0.0000000 0.000000000 0.00000000
## 1707 0.0000000 0.000000000 0.00000000
## 1708 0.0000000 0.000000000 0.00000000
## 1709 0.0000000 0.000000000 0.00000000
## 1710 0.0000000 0.000000000 0.00000000
## 1711 0.0000000 0.000000000 0.00000000
## 1712 0.0000000 0.000000000 0.00000000
## 1713 0.0000000 0.000000000 0.00000000
## 1714 0.0000000 0.000000000 0.00000000
## 1715 0.0000000 0.000000000 0.00000000
## 1716 0.0000000 0.000000000 0.00000000
## 1717 0.0000000 0.000000000 0.00000000
## 1718 0.0000000 0.000000000 0.00000000
## 1719 0.0000000 0.000000000 0.00000000
## 1720 0.0000000 0.000000000 0.00000000
## 1721 0.0000000 0.000000000 0.00000000
## 1722 0.0000000 0.000000000 0.00000000
## 1723 0.0000000 0.000000000 0.00000000
## 1724 0.0000000 0.000000000 0.00000000
## 1725 0.0000000 0.000000000 0.00000000
## 1726 0.0000000 0.000000000 0.00000000
## 1727 0.0000000 0.000000000 0.00000000
## 1728 0.0000000 0.000000000 0.00000000
## Hyper_Foreground_Gene_Hits Hyper_Background_Gene_Hits
## 1 170 384
## 2 156 352
## 3 9 11
## 4 346 848
## 5 189 438
## 6 421 1124
## 7 3 4
## 8 137 311
## 9 15 25
## 10 2 2
## 11 2 2
## 12 5 6
## 13 40 86
## 14 40 86
## 15 417 1106
## 16 52 104
## 17 299 742
## 18 4 4
## 19 8 16
## 20 303 757
## 21 3 3
## 22 2 2
## 23 5 6
## 24 39 75
## 25 374 969
## 26 24 43
## 27 237 571
## 28 16 31
## 29 43 85
## 30 30 69
## 31 2 3
## 32 3 5
## 33 3 7
## 34 9 13
## 35 113 252
## 36 4 6
## 37 2 3
## 38 2 2
## 39 2 2
## 40 1 1
## 41 1 1
## 42 1 1
## 43 20 38
## 44 26 46
## 45 2 4
## 46 6 10
## 47 6 10
## 48 3 5
## 49 2 5
## 50 37 75
## 51 4 5
## 52 1 1
## 53 2 2
## 54 2 2
## 55 2 2
## 56 1 1
## 57 1 1
## 58 2 2
## 59 2 2
## 60 1 1
## 61 1 1
## 62 1 1
## 63 373 970
## 64 7 16
## 65 8 15
## 66 11 16
## 67 7 11
## 68 8 12
## 69 1 2
## 70 20 43
## 71 14 21
## 72 178 429
## 73 15 30
## 74 2 4
## 75 2 3
## 76 1 1
## 77 1 1
## 78 1 2
## 79 4 6
## 80 3 3
## 81 31 70
## 82 4 8
## 83 4 8
## 84 2 3
## 85 56 126
## 86 5 9
## 87 9 26
## 88 9 26
## 89 9 12
## 90 16 30
## 91 23 48
## 92 1 1
## 93 8 11
## 94 10 19
## 95 3 5
## 96 3 3
## 97 3 5
## 98 2 2
## 99 1 2
## 100 2 2
## 101 1 2
## 102 1 2
## 103 1 1
## 104 2 3
## 105 1 2
## 106 1 1
## 107 2 3
## 108 11 20
## 109 11 16
## 110 44 102
## 111 31 58
## 112 4 9
## 113 5 6
## 114 2 5
## 115 1 2
## 116 2 5
## 117 2 3
## 118 6 13
## 119 6 13
## 120 6 13
## 121 6 12
## 122 6 12
## 123 8 15
## 124 3 5
## 125 55 132
## 126 1 1
## 127 1 1
## 128 3 5
## 129 2 4
## 130 2 2
## 131 2 4
## 132 1 1
## 133 3 6
## 134 5 7
## 135 11 24
## 136 442 1247
## 137 441 1245
## 138 2 2
## 139 2 4
## 140 2 2
## 141 2 3
## 142 2 2
## 143 2 3
## 144 2 3
## 145 2 4
## 146 1 1
## 147 2 2
## 148 3 4
## 149 31 67
## 150 386 1037
## 151 3 10
## 152 5 8
## 153 1 1
## 154 1 1
## 155 1 1
## 156 1 1
## 157 1 1
## 158 1 1
## 159 1 1
## 160 1 1
## 161 1 1
## 162 1 1
## 163 1 1
## 164 1 1
## 165 1 1
## 166 1 1
## 167 1 1
## 168 1 1
## 169 1 1
## 170 1 1
## 171 1 1
## 172 1 1
## 173 1 1
## 174 1 1
## 175 1 1
## 176 1 1
## 177 1 1
## 178 1 1
## 179 1 1
## 180 1 1
## 181 1 1
## 182 40 86
## 183 10 21
## 184 7 14
## 185 2 5
## 186 2 4
## 187 2 4
## 188 1 1
## 189 2 4
## 190 21 47
## 191 5 9
## 192 3 3
## 193 3 4
## 194 3 4
## 195 35 85
## 196 3 4
## 197 14 31
## 198 1 2
## 199 2 3
## 200 2 3
## 201 2 4
## 202 2 3
## 203 1 1
## 204 6 14
## 205 4 7
## 206 4 7
## 207 4 7
## 208 7 10
## 209 4 10
## 210 2 2
## 211 6 11
## 212 4 5
## 213 2 9
## 214 61 135
## 215 10 22
## 216 8 16
## 217 13 30
## 218 18 42
## 219 4 8
## 220 4 7
## 221 14 42
## 222 4 6
## 223 4 9
## 224 4 8
## 225 8 15
## 226 20 49
## 227 1 4
## 228 3 7
## 229 3 5
## 230 3 3
## 231 3 9
## 232 8 16
## 233 2 2
## 234 1 1
## 235 1 1
## 236 1 1
## 237 1 1
## 238 1 1
## 239 1 1
## 240 1 1
## 241 1 2
## 242 1 2
## 243 1 2
## 244 1 1
## 245 1 1
## 246 1 2
## 247 1 1
## 248 1 2
## 249 1 2
## 250 1 2
## 251 1 2
## 252 1 1
## 253 1 1
## 254 1 1
## 255 8 16
## 256 13 32
## 257 5 10
## 258 4 9
## 259 26 61
## 260 4 8
## 261 2 6
## 262 2 5
## 263 2 3
## 264 2 6
## 265 13 26
## 266 4 7
## 267 3 7
## 268 3 4
## 269 2 5
## 270 2 3
## 271 2 7
## 272 2 7
## 273 1 2
## 274 1 5
## 275 14 28
## 276 4 10
## 277 4 8
## 278 3 5
## 279 8 19
## 280 6 14
## 281 7 13
## 282 7 13
## 283 1 2
## 284 1 2
## 285 1 1
## 286 1 2
## 287 1 2
## 288 1 2
## 289 1 2
## 290 1 2
## 291 1 1
## 292 1 1
## 293 1 1
## 294 1 2
## 295 1 2
## 296 1 1
## 297 3 12
## 298 5 16
## 299 5 9
## 300 3 3
## 301 25 61
## 302 14 32
## 303 1 5
## 304 1 5
## 305 1 3
## 306 1 1
## 307 1 6
## 308 1 5
## 309 1 2
## 310 2 4
## 311 2 3
## 312 1 1
## 313 1 1
## 314 1 1
## 315 1 3
## 316 2 2
## 317 2 6
## 318 4 9
## 319 4 9
## 320 2 7
## 321 3 7
## 322 129 326
## 323 7 19
## 324 10 31
## 325 15 29
## 326 15 29
## 327 15 29
## 328 135 345
## 329 6 14
## 330 1 1
## 331 1 1
## 332 2 4
## 333 2 5
## 334 2 6
## 335 1 5
## 336 3 3
## 337 2 4
## 338 2 5
## 339 53 140
## 340 3 8
## 341 4 8
## 342 3 8
## 343 8 20
## 344 8 20
## 345 1 1
## 346 1 1
## 347 1 2
## 348 1 2
## 349 1 2
## 350 1 2
## 351 1 2
## 352 1 2
## 353 1 1
## 354 4 10
## 355 4 13
## 356 11 30
## 357 93 240
## 358 17 52
## 359 3 11
## 360 3 9
## 361 3 4
## 362 3 5
## 363 4 10
## 364 6 18
## 365 6 14
## 366 1 4
## 367 3 6
## 368 6 18
## 369 6 14
## 370 9 23
## 371 1 3
## 372 1 3
## 373 1 3
## 374 1 1
## 375 5 11
## 376 10 32
## 377 9 20
## 378 9 20
## 379 9 20
## 380 9 20
## 381 18 47
## 382 9 18
## 383 5 8
## 384 4 10
## 385 3 14
## 386 3 5
## 387 4 11
## 388 2 2
## 389 2 7
## 390 2 5
## 391 285 738
## 392 16 36
## 393 5 28
## 394 1 2
## 395 1 3
## 396 1 3
## 397 1 2
## 398 1 3
## 399 1 2
## 400 1 3
## 401 1 1
## 402 1 3
## 403 1 2
## 404 1 2
## 405 1 1
## 406 1 2
## 407 1 2
## 408 1 2
## 409 17 37
## 410 332 896
## 411 154 388
## 412 1 1
## 413 1 4
## 414 1 4
## 415 1 2
## 416 3 13
## 417 2 6
## 418 18 38
## 419 22 58
## 420 7 17
## 421 12 35
## 422 3 5
## 423 11 29
## 424 2 4
## 425 2 4
## 426 1 1
## 427 1 1
## 428 1 3
## 429 1 2
## 430 1 2
## 431 1 2
## 432 1 2
## 433 1 3
## 434 1 4
## 435 1 3
## 436 1 1
## 437 1 2
## 438 1 1
## 439 1 3
## 440 2 2
## 441 1 2
## 442 1 4
## 443 21 56
## 444 1 2
## 445 4 12
## 446 3 10
## 447 2 5
## 448 2 5
## 449 2 5
## 450 11 29
## 451 11 29
## 452 33 88
## 453 33 88
## 454 1 5
## 455 1 5
## 456 3 6
## 457 6 16
## 458 2 6
## 459 2 8
## 460 1 4
## 461 1 2
## 462 1 3
## 463 1 2
## 464 1 2
## 465 1 3
## 466 1 2
## 467 1 3
## 468 1 2
## 469 4 15
## 470 9 25
## 471 3 7
## 472 12 42
## 473 3 11
## 474 1 1
## 475 1 1
## 476 3 10
## 477 3 10
## 478 23 61
## 479 11 26
## 480 3 10
## 481 5 15
## 482 5 15
## 483 5 15
## 484 1 4
## 485 1 5
## 486 1 5
## 487 1 1
## 488 1 1
## 489 1 3
## 490 1 4
## 491 10 25
## 492 2 5
## 493 2 5
## 494 1 5
## 495 3 7
## 496 4 6
## 497 22 56
## 498 63 161
## 499 22 64
## 500 9 22
## 501 13 36
## 502 12 47
## 503 4 15
## 504 1 4
## 505 1 2
## 506 1 2
## 507 1 3
## 508 1 2
## 509 1 2
## 510 1 2
## 511 2 7
## 512 2 7
## 513 3 8
## 514 1 5
## 515 1 4
## 516 1 5
## 517 2 3
## 518 2 3
## 519 2 3
## 520 39 108
## 521 24 77
## 522 3 10
## 523 25 64
## 524 1 5
## 525 1 7
## 526 4 15
## 527 1 3
## 528 1 1
## 529 1 3
## 530 58 160
## 531 16 57
## 532 3 10
## 533 3 5
## 534 5 20
## 535 1 6
## 536 57 159
## 537 12 42
## 538 13 33
## 539 1 4
## 540 1 5
## 541 1 3
## 542 1 6
## 543 8 20
## 544 21 68
## 545 3 12
## 546 1 3
## 547 1 3
## 548 1 2
## 549 9 32
## 550 8 26
## 551 1 2
## 552 1 8
## 553 1 6
## 554 1 8
## 555 1 6
## 556 5 16
## 557 85 229
## 558 85 230
## 559 85 230
## 560 1 5
## 561 2 9
## 562 22 64
## 563 22 64
## 564 22 64
## 565 17 60
## 566 34 101
## 567 5 18
## 568 7 28
## 569 5 18
## 570 5 18
## 571 5 18
## 572 10 41
## 573 4 18
## 574 1 5
## 575 2 10
## 576 2 12
## 577 9 36
## 578 1 7
## 579 21 89
## 580 32 108
## 581 2 9
## 582 24 84
## 583 9 33
## 584 1 8
## 585 1 7
## 586 1 7
## 587 3 10
## 588 2 14
## 589 3 15
## 590 45 131
## 591 2 7
## 592 14 39
## 593 7 26
## 594 1 6
## 595 18 60
## 596 18 61
## 597 105 307
## 598 37 99
## 599 119 331
## 600 5 26
## 601 1 8
## 602 1 9
## 603 120 355
## 604 9 32
## 605 34 109
## 606 6 26
## 607 2 18
## 608 13 48
## 609 10 42
## 610 40 125
## 611 19 60
## 612 8 31
## 613 43 150
## 614 1 14
## 615 1 14
## 616 12 43
## 617 1 11
## 618 19 68
## 619 2 15
## 620 58 168
## 621 2 17
## 622 4 28
## 623 30 121
## 624 30 126
## 625 4 25
## 626 4 25
## 627 8 40
## 628 124 397
## 629 125 403
## 630 222 679
## 631 54 209
## 632 158 502
## 633 100 368
## 634 100 372
## 635 0 0
## 636 0 0
## 637 0 0
## 638 0 5
## 639 0 1
## 640 0 0
## 641 0 0
## 642 0 0
## 643 0 2
## 644 0 1
## 645 0 1
## 646 0 0
## 647 0 1
## 648 0 0
## 649 0 1
## 650 0 0
## 651 0 0
## 652 0 0
## 653 0 1
## 654 0 1
## 655 0 0
## 656 0 0
## 657 0 0
## 658 0 1
## 659 0 0
## 660 0 0
## 661 0 0
## 662 0 0
## 663 0 2
## 664 0 0
## 665 0 0
## 666 0 0
## 667 0 1
## 668 0 0
## 669 0 0
## 670 0 0
## 671 0 0
## 672 0 1
## 673 0 0
## 674 0 0
## 675 0 0
## 676 0 0
## 677 0 0
## 678 0 0
## 679 0 0
## 680 0 0
## 681 0 0
## 682 0 0
## 683 0 0
## 684 0 0
## 685 0 0
## 686 0 0
## 687 0 0
## 688 0 0
## 689 0 0
## 690 0 1
## 691 0 0
## 692 0 0
## 693 0 0
## 694 0 0
## 695 0 0
## 696 0 0
## 697 0 0
## 698 0 1
## 699 0 0
## 700 0 0
## 701 0 0
## 702 0 0
## 703 0 0
## 704 0 1
## 705 0 1
## 706 0 1
## 707 0 2
## 708 0 0
## 709 0 0
## 710 0 0
## 711 0 0
## 712 0 0
## 713 0 0
## 714 0 0
## 715 0 0
## 716 0 1
## 717 0 0
## 718 0 0
## 719 0 0
## 720 0 0
## 721 0 0
## 722 0 0
## 723 0 0
## 724 0 1
## 725 0 3
## 726 0 0
## 727 0 1
## 728 0 0
## 729 0 0
## 730 0 0
## 731 0 0
## 732 0 0
## 733 0 0
## 734 0 0
## 735 0 0
## 736 0 1
## 737 0 1
## 738 0 0
## 739 0 0
## 740 0 0
## 741 0 1
## 742 0 0
## 743 0 1
## 744 0 2
## 745 0 0
## 746 0 1
## 747 0 0
## 748 0 0
## 749 0 2
## 750 0 0
## 751 0 1
## 752 0 0
## 753 0 0
## 754 0 1
## 755 0 0
## 756 0 0
## 757 0 0
## 758 0 0
## 759 0 1
## 760 0 0
## 761 0 0
## 762 0 0
## 763 0 0
## 764 0 0
## 765 0 0
## 766 0 0
## 767 0 2
## 768 0 1
## 769 0 0
## 770 0 0
## 771 0 0
## 772 0 0
## 773 0 0
## 774 0 0
## 775 0 1
## 776 0 1
## 777 0 0
## 778 0 0
## 779 0 1
## 780 0 0
## 781 0 0
## 782 0 0
## 783 0 0
## 784 0 0
## 785 0 0
## 786 0 4
## 787 0 0
## 788 0 1
## 789 0 2
## 790 0 0
## 791 0 0
## 792 0 0
## 793 0 2
## 794 0 2
## 795 0 0
## 796 0 1
## 797 0 0
## 798 0 0
## 799 0 1
## 800 0 3
## 801 0 0
## 802 0 0
## 803 0 0
## 804 0 1
## 805 0 1
## 806 0 0
## 807 0 0
## 808 0 1
## 809 0 1
## 810 0 0
## 811 0 1
## 812 0 0
## 813 0 3
## 814 0 1
## 815 0 0
## 816 0 0
## 817 0 0
## 818 0 1
## 819 0 0
## 820 0 0
## 821 0 0
## 822 0 0
## 823 0 1
## 824 0 0
## 825 0 0
## 826 0 0
## 827 0 5
## 828 0 0
## 829 0 0
## 830 0 0
## 831 0 0
## 832 0 0
## 833 0 0
## 834 0 0
## 835 0 0
## 836 0 1
## 837 0 1
## 838 0 0
## 839 0 0
## 840 0 0
## 841 0 0
## 842 0 0
## 843 0 0
## 844 0 0
## 845 0 0
## 846 0 0
## 847 0 0
## 848 0 0
## 849 0 13
## 850 0 0
## 851 0 0
## 852 0 0
## 853 0 0
## 854 0 2
## 855 0 0
## 856 0 0
## 857 0 0
## 858 0 0
## 859 0 0
## 860 0 0
## 861 0 0
## 862 0 0
## 863 0 1
## 864 0 0
## 865 0 0
## 866 0 0
## 867 0 0
## 868 0 0
## 869 0 0
## 870 0 0
## 871 0 0
## 872 0 0
## 873 0 0
## 874 0 0
## 875 0 0
## 876 0 2
## 877 0 0
## 878 0 1
## 879 0 0
## 880 0 0
## 881 0 0
## 882 0 0
## 883 0 0
## 884 0 0
## 885 0 0
## 886 0 0
## 887 0 0
## 888 0 0
## 889 0 1
## 890 0 0
## 891 0 1
## 892 0 1
## 893 0 0
## 894 0 0
## 895 0 0
## 896 0 2
## 897 0 1
## 898 0 0
## 899 0 0
## 900 0 3
## 901 0 3
## 902 0 0
## 903 0 2
## 904 0 3
## 905 0 0
## 906 0 0
## 907 0 0
## 908 0 0
## 909 0 0
## 910 0 1
## 911 0 0
## 912 0 0
## 913 0 0
## 914 0 0
## 915 0 1
## 916 0 1
## 917 0 0
## 918 0 0
## 919 0 0
## 920 0 0
## 921 0 0
## 922 0 0
## 923 0 0
## 924 0 0
## 925 0 0
## 926 0 0
## 927 0 1
## 928 0 2
## 929 0 0
## 930 0 0
## 931 0 0
## 932 0 0
## 933 0 1
## 934 0 0
## 935 0 0
## 936 0 1
## 937 0 0
## 938 0 0
## 939 0 0
## 940 0 0
## 941 0 1
## 942 0 1
## 943 0 0
## 944 0 1
## 945 0 1
## 946 0 2
## 947 0 3
## 948 0 0
## 949 0 0
## 950 0 0
## 951 0 0
## 952 0 0
## 953 0 0
## 954 0 10
## 955 0 0
## 956 0 0
## 957 0 0
## 958 0 0
## 959 0 3
## 960 0 0
## 961 0 1
## 962 0 1
## 963 0 1
## 964 0 0
## 965 0 1
## 966 0 0
## 967 0 0
## 968 0 1
## 969 0 0
## 970 0 0
## 971 0 0
## 972 0 0
## 973 0 1
## 974 0 0
## 975 0 0
## 976 0 0
## 977 0 0
## 978 0 0
## 979 0 0
## 980 0 2
## 981 0 0
## 982 0 1
## 983 0 0
## 984 0 0
## 985 0 0
## 986 0 3
## 987 0 3
## 988 0 0
## 989 0 0
## 990 0 0
## 991 0 0
## 992 0 0
## 993 0 0
## 994 0 0
## 995 0 0
## 996 0 1
## 997 0 0
## 998 0 0
## 999 0 1
## 1000 0 1
## 1001 0 2
## 1002 0 0
## 1003 0 0
## 1004 0 0
## 1005 0 0
## 1006 0 1
## 1007 0 0
## 1008 0 1
## 1009 0 0
## 1010 0 1
## 1011 0 0
## 1012 0 0
## 1013 0 0
## 1014 0 0
## 1015 0 0
## 1016 0 0
## 1017 0 0
## 1018 0 0
## 1019 0 0
## 1020 0 0
## 1021 0 0
## 1022 0 0
## 1023 0 0
## 1024 0 0
## 1025 0 0
## 1026 0 0
## 1027 0 0
## 1028 0 0
## 1029 0 0
## 1030 0 0
## 1031 0 0
## 1032 0 2
## 1033 0 0
## 1034 0 0
## 1035 0 0
## 1036 0 0
## 1037 0 1
## 1038 0 0
## 1039 0 0
## 1040 0 0
## 1041 0 0
## 1042 0 0
## 1043 0 0
## 1044 0 1
## 1045 0 0
## 1046 0 0
## 1047 0 1
## 1048 0 0
## 1049 0 0
## 1050 0 1
## 1051 0 0
## 1052 0 0
## 1053 0 0
## 1054 0 1
## 1055 0 1
## 1056 0 0
## 1057 0 0
## 1058 0 1
## 1059 0 0
## 1060 0 3
## 1061 0 3
## 1062 0 0
## 1063 0 0
## 1064 0 0
## 1065 0 0
## 1066 0 0
## 1067 0 0
## 1068 0 0
## 1069 0 0
## 1070 0 0
## 1071 0 0
## 1072 0 1
## 1073 0 3
## 1074 0 0
## 1075 0 0
## 1076 0 1
## 1077 0 0
## 1078 0 1
## 1079 0 0
## 1080 0 1
## 1081 0 0
## 1082 0 0
## 1083 0 1
## 1084 0 1
## 1085 0 1
## 1086 0 0
## 1087 0 0
## 1088 0 0
## 1089 0 1
## 1090 0 0
## 1091 0 0
## 1092 0 0
## 1093 0 4
## 1094 0 4
## 1095 0 0
## 1096 0 0
## 1097 0 0
## 1098 0 0
## 1099 0 0
## 1100 0 0
## 1101 0 2
## 1102 0 0
## 1103 0 1
## 1104 0 0
## 1105 0 0
## 1106 0 0
## 1107 0 0
## 1108 0 1
## 1109 0 0
## 1110 0 0
## 1111 0 0
## 1112 0 0
## 1113 0 0
## 1114 0 0
## 1115 0 0
## 1116 0 1
## 1117 0 1
## 1118 0 1
## 1119 0 0
## 1120 0 0
## 1121 0 0
## 1122 0 2
## 1123 0 0
## 1124 0 0
## 1125 0 0
## 1126 0 1
## 1127 0 0
## 1128 0 0
## 1129 0 0
## 1130 0 0
## 1131 0 0
## 1132 0 0
## 1133 0 0
## 1134 0 0
## 1135 0 1
## 1136 0 1
## 1137 0 0
## 1138 0 1
## 1139 0 0
## 1140 0 0
## 1141 0 0
## 1142 0 0
## 1143 0 0
## 1144 0 0
## 1145 0 0
## 1146 0 0
## 1147 0 0
## 1148 0 0
## 1149 0 0
## 1150 0 0
## 1151 0 0
## 1152 0 0
## 1153 0 1
## 1154 0 0
## 1155 0 1
## 1156 0 2
## 1157 0 1
## 1158 0 0
## 1159 0 0
## 1160 0 0
## 1161 0 0
## 1162 0 0
## 1163 0 0
## 1164 0 0
## 1165 0 0
## 1166 0 0
## 1167 0 0
## 1168 0 0
## 1169 0 0
## 1170 0 0
## 1171 0 1
## 1172 0 0
## 1173 0 0
## 1174 0 0
## 1175 0 0
## 1176 0 0
## 1177 0 0
## 1178 0 0
## 1179 0 0
## 1180 0 0
## 1181 0 0
## 1182 0 0
## 1183 0 0
## 1184 0 0
## 1185 0 0
## 1186 0 0
## 1187 0 0
## 1188 0 0
## 1189 0 0
## 1190 0 0
## 1191 0 0
## 1192 0 0
## 1193 0 0
## 1194 0 0
## 1195 0 0
## 1196 0 2
## 1197 0 0
## 1198 0 0
## 1199 0 2
## 1200 0 1
## 1201 0 0
## 1202 0 0
## 1203 0 0
## 1204 0 0
## 1205 0 0
## 1206 0 0
## 1207 0 0
## 1208 0 1
## 1209 0 1
## 1210 0 0
## 1211 0 0
## 1212 0 0
## 1213 0 0
## 1214 0 0
## 1215 0 0
## 1216 0 0
## 1217 0 0
## 1218 0 1
## 1219 0 1
## 1220 0 0
## 1221 0 0
## 1222 0 0
## 1223 0 0
## 1224 0 0
## 1225 0 0
## 1226 0 0
## 1227 0 0
## 1228 0 0
## 1229 0 0
## 1230 0 0
## 1231 0 0
## 1232 0 1
## 1233 0 0
## 1234 0 0
## 1235 0 3
## 1236 0 0
## 1237 0 0
## 1238 0 1
## 1239 0 0
## 1240 0 0
## 1241 0 0
## 1242 0 0
## 1243 0 0
## 1244 0 0
## 1245 0 0
## 1246 0 0
## 1247 0 0
## 1248 0 0
## 1249 0 0
## 1250 0 1
## 1251 0 1
## 1252 0 1
## 1253 0 0
## 1254 0 0
## 1255 0 0
## 1256 0 0
## 1257 0 0
## 1258 0 0
## 1259 0 1
## 1260 0 1
## 1261 0 1
## 1262 0 0
## 1263 0 0
## 1264 0 2
## 1265 0 1
## 1266 0 0
## 1267 0 1
## 1268 0 1
## 1269 0 0
## 1270 0 0
## 1271 0 0
## 1272 0 0
## 1273 0 0
## 1274 0 0
## 1275 0 3
## 1276 0 1
## 1277 0 0
## 1278 0 0
## 1279 0 0
## 1280 0 0
## 1281 0 1
## 1282 0 0
## 1283 0 1
## 1284 0 0
## 1285 0 0
## 1286 0 0
## 1287 0 3
## 1288 0 0
## 1289 0 3
## 1290 0 1
## 1291 0 0
## 1292 0 1
## 1293 0 0
## 1294 0 1
## 1295 0 0
## 1296 0 0
## 1297 0 0
## 1298 0 0
## 1299 0 0
## 1300 0 0
## 1301 0 0
## 1302 0 0
## 1303 0 0
## 1304 0 0
## 1305 0 0
## 1306 0 0
## 1307 0 0
## 1308 0 0
## 1309 0 0
## 1310 0 0
## 1311 0 0
## 1312 0 1
## 1313 0 0
## 1314 0 1
## 1315 0 0
## 1316 0 0
## 1317 0 3
## 1318 0 0
## 1319 0 0
## 1320 0 0
## 1321 0 0
## 1322 0 0
## 1323 0 0
## 1324 0 0
## 1325 0 0
## 1326 0 0
## 1327 0 0
## 1328 0 0
## 1329 0 0
## 1330 0 0
## 1331 0 1
## 1332 0 0
## 1333 0 0
## 1334 0 1
## 1335 0 0
## 1336 0 0
## 1337 0 0
## 1338 0 2
## 1339 0 1
## 1340 0 0
## 1341 0 1
## 1342 0 0
## 1343 0 0
## 1344 0 0
## 1345 0 1
## 1346 0 0
## 1347 0 0
## 1348 0 0
## 1349 0 0
## 1350 0 0
## 1351 0 0
## 1352 0 0
## 1353 0 0
## 1354 0 1
## 1355 0 0
## 1356 0 0
## 1357 0 0
## 1358 0 0
## 1359 0 1
## 1360 0 0
## 1361 0 0
## 1362 0 0
## 1363 0 0
## 1364 0 0
## 1365 0 0
## 1366 0 1
## 1367 0 0
## 1368 0 0
## 1369 0 0
## 1370 0 0
## 1371 0 1
## 1372 0 0
## 1373 0 0
## 1374 0 0
## 1375 0 0
## 1376 0 0
## 1377 0 0
## 1378 0 0
## 1379 0 2
## 1380 0 2
## 1381 0 2
## 1382 0 0
## 1383 0 1
## 1384 0 0
## 1385 0 0
## 1386 0 0
## 1387 0 0
## 1388 0 0
## 1389 0 0
## 1390 0 0
## 1391 0 0
## 1392 0 0
## 1393 0 0
## 1394 0 1
## 1395 0 0
## 1396 0 0
## 1397 0 0
## 1398 0 0
## 1399 0 0
## 1400 0 0
## 1401 0 1
## 1402 0 0
## 1403 0 0
## 1404 0 0
## 1405 0 0
## 1406 0 0
## 1407 0 0
## 1408 0 14
## 1409 0 0
## 1410 0 0
## 1411 0 0
## 1412 0 0
## 1413 0 0
## 1414 0 1
## 1415 0 0
## 1416 0 0
## 1417 0 0
## 1418 0 0
## 1419 0 0
## 1420 0 0
## 1421 0 0
## 1422 0 0
## 1423 0 1
## 1424 0 0
## 1425 0 0
## 1426 0 0
## 1427 0 1
## 1428 0 0
## 1429 0 1
## 1430 0 0
## 1431 0 1
## 1432 0 2
## 1433 0 0
## 1434 0 0
## 1435 0 0
## 1436 0 1
## 1437 0 0
## 1438 0 0
## 1439 0 0
## 1440 0 0
## 1441 0 0
## 1442 0 0
## 1443 0 0
## 1444 0 1
## 1445 0 0
## 1446 0 0
## 1447 0 0
## 1448 0 1
## 1449 0 0
## 1450 0 0
## 1451 0 0
## 1452 0 0
## 1453 0 0
## 1454 0 0
## 1455 0 0
## 1456 0 0
## 1457 0 0
## 1458 0 0
## 1459 0 0
## 1460 0 0
## 1461 0 0
## 1462 0 0
## 1463 0 0
## 1464 0 0
## 1465 0 0
## 1466 0 1
## 1467 0 1
## 1468 0 2
## 1469 0 0
## 1470 0 0
## 1471 0 0
## 1472 0 0
## 1473 0 1
## 1474 0 0
## 1475 0 0
## 1476 0 0
## 1477 0 0
## 1478 0 0
## 1479 0 0
## 1480 0 1
## 1481 0 0
## 1482 0 0
## 1483 0 0
## 1484 0 0
## 1485 0 1
## 1486 0 0
## 1487 0 0
## 1488 0 0
## 1489 0 0
## 1490 0 0
## 1491 0 0
## 1492 0 0
## 1493 0 0
## 1494 0 1
## 1495 0 1
## 1496 0 1
## 1497 0 0
## 1498 0 0
## 1499 0 0
## 1500 0 0
## 1501 0 1
## 1502 0 2
## 1503 0 0
## 1504 0 1
## 1505 0 1
## 1506 0 0
## 1507 0 0
## 1508 0 0
## 1509 0 0
## 1510 0 6
## 1511 0 3
## 1512 0 0
## 1513 0 0
## 1514 0 0
## 1515 0 0
## 1516 0 0
## 1517 0 1
## 1518 0 1
## 1519 0 0
## 1520 0 0
## 1521 0 0
## 1522 0 0
## 1523 0 0
## 1524 0 0
## 1525 0 0
## 1526 0 0
## 1527 0 0
## 1528 0 0
## 1529 0 0
## 1530 0 0
## 1531 0 0
## 1532 0 1
## 1533 0 0
## 1534 0 0
## 1535 0 0
## 1536 0 1
## 1537 0 0
## 1538 0 0
## 1539 0 0
## 1540 0 0
## 1541 0 0
## 1542 0 0
## 1543 0 0
## 1544 0 0
## 1545 0 1
## 1546 0 0
## 1547 0 1
## 1548 0 0
## 1549 0 0
## 1550 0 0
## 1551 0 0
## 1552 0 0
## 1553 0 0
## 1554 0 0
## 1555 0 0
## 1556 0 0
## 1557 0 1
## 1558 0 0
## 1559 0 0
## 1560 0 0
## 1561 0 0
## 1562 0 0
## 1563 0 3
## 1564 0 0
## 1565 0 0
## 1566 0 0
## 1567 0 0
## 1568 0 0
## 1569 0 0
## 1570 0 0
## 1571 0 0
## 1572 0 0
## 1573 0 0
## 1574 0 1
## 1575 0 0
## 1576 0 0
## 1577 0 0
## 1578 0 0
## 1579 0 1
## 1580 0 0
## 1581 0 0
## 1582 0 0
## 1583 0 0
## 1584 0 1
## 1585 0 0
## 1586 0 1
## 1587 0 0
## 1588 0 0
## 1589 0 1
## 1590 0 1
## 1591 0 0
## 1592 0 0
## 1593 0 0
## 1594 0 0
## 1595 0 0
## 1596 0 0
## 1597 0 0
## 1598 0 0
## 1599 0 0
## 1600 0 0
## 1601 0 0
## 1602 0 0
## 1603 0 0
## 1604 0 0
## 1605 0 3
## 1606 0 0
## 1607 0 0
## 1608 0 0
## 1609 0 0
## 1610 0 0
## 1611 0 0
## 1612 0 0
## 1613 0 0
## 1614 0 1
## 1615 0 0
## 1616 0 0
## 1617 0 0
## 1618 0 1
## 1619 0 0
## 1620 0 0
## 1621 0 1
## 1622 0 0
## 1623 0 0
## 1624 0 0
## 1625 0 1
## 1626 0 0
## 1627 0 0
## 1628 0 0
## 1629 0 0
## 1630 0 0
## 1631 0 0
## 1632 0 0
## 1633 0 0
## 1634 0 0
## 1635 0 0
## 1636 0 0
## 1637 0 0
## 1638 0 0
## 1639 0 0
## 1640 0 0
## 1641 0 0
## 1642 0 0
## 1643 0 1
## 1644 0 0
## 1645 0 0
## 1646 0 0
## 1647 0 0
## 1648 0 0
## 1649 0 0
## 1650 0 0
## 1651 0 0
## 1652 0 0
## 1653 0 0
## 1654 0 0
## 1655 0 0
## 1656 0 0
## 1657 0 1
## 1658 0 0
## 1659 0 1
## 1660 0 1
## 1661 0 0
## 1662 0 0
## 1663 0 1
## 1664 0 0
## 1665 0 0
## 1666 0 0
## 1667 0 1
## 1668 0 0
## 1669 0 0
## 1670 0 0
## 1671 0 0
## 1672 0 0
## 1673 0 0
## 1674 0 1
## 1675 0 0
## 1676 0 0
## 1677 0 1
## 1678 0 0
## 1679 0 0
## 1680 0 1
## 1681 0 0
## 1682 0 0
## 1683 0 0
## 1684 0 1
## 1685 0 0
## 1686 0 0
## 1687 0 0
## 1688 0 0
## 1689 0 0
## 1690 0 1
## 1691 0 0
## 1692 0 0
## 1693 0 0
## 1694 0 0
## 1695 0 0
## 1696 0 0
## 1697 0 0
## 1698 0 0
## 1699 0 0
## 1700 0 0
## 1701 0 0
## 1702 0 0
## 1703 0 0
## 1704 0 1
## 1705 0 1
## 1706 0 1
## 1707 0 0
## 1708 0 0
## 1709 0 1
## 1710 0 0
## 1711 0 0
## 1712 0 0
## 1713 0 0
## 1714 0 0
## 1715 0 0
## 1716 0 0
## 1717 0 0
## 1718 0 0
## 1719 0 0
## 1720 0 0
## 1721 0 0
## 1722 0 0
## 1723 0 0
## 1724 0 1
## 1725 0 0
## 1726 0 0
## 1727 0 0
## 1728 0 0
## Total_Genes_Annotated Hyper_Raw_PValue Hyper_Adjp_BH
## 1 4296 7.206241e-05 0.08458497
## 2 3940 1.085330e-04 0.08458497
## 3 96 1.468489e-04 0.08458497
## 4 10646 2.585633e-04 0.11169935
## 5 5058 6.869294e-04 0.23740280
## 6 14472 1.012329e-03 0.29155075
## 7 6 1.423609e-03 0.31126884
## 8 3340 1.659763e-03 0.31126884
## 9 186 1.804337e-03 0.31126884
## 10 40 2.207500e-03 0.31126884
## 11 13 2.207500e-03 0.31126884
## 12 35 2.345881e-03 0.31126884
## 13 814 2.521854e-03 0.31126884
## 14 817 2.521854e-03 0.31126884
## 15 14132 2.790936e-03 0.32151583
## 16 1073 3.065016e-03 0.33102173
## 17 8863 4.290989e-03 0.43616641
## 18 53 9.131154e-03 0.80183599
## 19 217 9.522578e-03 0.80183599
## 20 9078 9.740742e-03 0.80183599
## 21 9 1.020856e-02 0.80183599
## 22 6 1.020856e-02 0.80183599
## 23 97 1.146151e-02 0.85886922
## 24 721 1.198831e-02 0.85886922
## 25 12367 1.242577e-02 0.85886922
## 26 550 1.436366e-02 0.92273234
## 27 7109 1.460645e-02 0.92273234
## 28 296 1.526552e-02 0.92273234
## 29 975 1.548567e-02 0.92273234
## 30 930 1.864699e-02 1.00000000
## 31 15 2.270170e-02 1.00000000
## 32 96 2.583510e-02 1.00000000
## 33 91 2.741739e-02 1.00000000
## 34 137 2.928899e-02 1.00000000
## 35 3181 2.947326e-02 1.00000000
## 36 43 3.274672e-02 1.00000000
## 37 19 3.421174e-02 1.00000000
## 38 7 3.421174e-02 1.00000000
## 39 4 3.421174e-02 1.00000000
## 40 19 3.421174e-02 1.00000000
## 41 1 3.421174e-02 1.00000000
## 42 2 3.421174e-02 1.00000000
## 43 514 3.441117e-02 1.00000000
## 44 373 3.789023e-02 1.00000000
## 45 26 4.324736e-02 1.00000000
## 46 150 4.378363e-02 1.00000000
## 47 155 4.378363e-02 1.00000000
## 48 69 4.397801e-02 1.00000000
## 49 69 4.397801e-02 1.00000000
## 50 852 4.513388e-02 1.00000000
## 51 73 4.523365e-02 1.00000000
## 52 20 4.713402e-02 1.00000000
## 53 15 4.713402e-02 1.00000000
## 54 23 4.713402e-02 1.00000000
## 55 33 4.713402e-02 1.00000000
## 56 8 4.713402e-02 1.00000000
## 57 2 4.713402e-02 1.00000000
## 58 46 4.713402e-02 1.00000000
## 59 31 4.713402e-02 1.00000000
## 60 9 4.713402e-02 1.00000000
## 61 2 4.713402e-02 1.00000000
## 62 6 4.713402e-02 1.00000000
## 63 12319 5.547362e-02 1.00000000
## 64 232 5.892896e-02 1.00000000
## 65 134 6.222286e-02 1.00000000
## 66 240 6.222286e-02 1.00000000
## 67 78 6.309767e-02 1.00000000
## 68 86 6.789426e-02 1.00000000
## 69 13 6.851284e-02 1.00000000
## 70 438 6.882994e-02 1.00000000
## 71 212 6.997292e-02 1.00000000
## 72 5073 7.120126e-02 1.00000000
## 73 316 7.168891e-02 1.00000000
## 74 26 7.183261e-02 1.00000000
## 75 51 7.183261e-02 1.00000000
## 76 2 7.183261e-02 1.00000000
## 77 8 7.183261e-02 1.00000000
## 78 27 7.183261e-02 1.00000000
## 79 73 7.316240e-02 1.00000000
## 80 55 7.316240e-02 1.00000000
## 81 765 8.200917e-02 1.00000000
## 82 79 8.533262e-02 1.00000000
## 83 89 8.533262e-02 1.00000000
## 84 17 8.533262e-02 1.00000000
## 85 1344 8.571755e-02 1.00000000
## 86 124 9.069878e-02 1.00000000
## 87 195 9.362392e-02 1.00000000
## 88 184 9.362392e-02 1.00000000
## 89 65 9.949207e-02 1.00000000
## 90 353 1.029192e-01 1.00000000
## 91 486 1.044999e-01 1.00000000
## 92 8 1.097584e-01 1.00000000
## 93 64 1.152299e-01 1.00000000
## 94 236 1.199821e-01 1.00000000
## 95 58 1.209635e-01 1.00000000
## 96 44 1.209635e-01 1.00000000
## 97 28 1.209635e-01 1.00000000
## 98 13 1.209849e-01 1.00000000
## 99 8 1.209849e-01 1.00000000
## 100 13 1.209849e-01 1.00000000
## 101 12 1.209849e-01 1.00000000
## 102 10 1.209849e-01 1.00000000
## 103 8 1.209849e-01 1.00000000
## 104 24 1.209849e-01 1.00000000
## 105 29 1.209849e-01 1.00000000
## 106 5 1.209849e-01 1.00000000
## 107 29 1.209849e-01 1.00000000
## 108 192 1.216838e-01 1.00000000
## 109 161 1.217451e-01 1.00000000
## 110 1163 1.249024e-01 1.00000000
## 111 687 1.278770e-01 1.00000000
## 112 72 1.293685e-01 1.00000000
## 113 112 1.309015e-01 1.00000000
## 114 22 1.527749e-01 1.00000000
## 115 15 1.527749e-01 1.00000000
## 116 36 1.527749e-01 1.00000000
## 117 12 1.527749e-01 1.00000000
## 118 135 1.560449e-01 1.00000000
## 119 137 1.560449e-01 1.00000000
## 120 134 1.560449e-01 1.00000000
## 121 103 1.588125e-01 1.00000000
## 122 116 1.588125e-01 1.00000000
## 123 202 1.602182e-01 1.00000000
## 124 103 1.690646e-01 1.00000000
## 125 1706 1.734335e-01 1.00000000
## 126 9 1.787027e-01 1.00000000
## 127 5 1.787027e-01 1.00000000
## 128 75 1.787027e-01 1.00000000
## 129 55 1.787027e-01 1.00000000
## 130 12 1.787027e-01 1.00000000
## 131 35 1.787027e-01 1.00000000
## 132 8 1.787027e-01 1.00000000
## 133 92 1.787027e-01 1.00000000
## 134 105 1.850876e-01 1.00000000
## 135 271 1.968485e-01 1.00000000
## 136 16433 1.988825e-01 1.00000000
## 137 16405 1.988825e-01 1.00000000
## 138 40 2.009247e-01 1.00000000
## 139 91 2.009247e-01 1.00000000
## 140 10 2.077581e-01 1.00000000
## 141 56 2.077581e-01 1.00000000
## 142 10 2.077581e-01 1.00000000
## 143 12 2.077581e-01 1.00000000
## 144 42 2.077581e-01 1.00000000
## 145 62 2.077581e-01 1.00000000
## 146 2 2.077581e-01 1.00000000
## 147 3 2.077581e-01 1.00000000
## 148 113 2.109306e-01 1.00000000
## 149 698 2.119376e-01 1.00000000
## 150 13296 2.141767e-01 1.00000000
## 151 130 2.147201e-01 1.00000000
## 152 132 2.166545e-01 1.00000000
## 153 2 2.172763e-01 1.00000000
## 154 9 2.172763e-01 1.00000000
## 155 19 2.172763e-01 1.00000000
## 156 19 2.172763e-01 1.00000000
## 157 10 2.172763e-01 1.00000000
## 158 11 2.172763e-01 1.00000000
## 159 7 2.172763e-01 1.00000000
## 160 7 2.172763e-01 1.00000000
## 161 11 2.172763e-01 1.00000000
## 162 15 2.172763e-01 1.00000000
## 163 20 2.172763e-01 1.00000000
## 164 15 2.172763e-01 1.00000000
## 165 13 2.172763e-01 1.00000000
## 166 16 2.172763e-01 1.00000000
## 167 1 2.172763e-01 1.00000000
## 168 4 2.172763e-01 1.00000000
## 169 4 2.172763e-01 1.00000000
## 170 6 2.172763e-01 1.00000000
## 171 7 2.172763e-01 1.00000000
## 172 4 2.172763e-01 1.00000000
## 173 34 2.172763e-01 1.00000000
## 174 10 2.172763e-01 1.00000000
## 175 1 2.172763e-01 1.00000000
## 176 3 2.172763e-01 1.00000000
## 177 8 2.172763e-01 1.00000000
## 178 11 2.172763e-01 1.00000000
## 179 4 2.172763e-01 1.00000000
## 180 5 2.172763e-01 1.00000000
## 181 5 2.172763e-01 1.00000000
## 182 912 2.239791e-01 1.00000000
## 183 177 2.319859e-01 1.00000000
## 184 129 2.319859e-01 1.00000000
## 185 46 2.420268e-01 1.00000000
## 186 9 2.420268e-01 1.00000000
## 187 9 2.420268e-01 1.00000000
## 188 1 2.420268e-01 1.00000000
## 189 29 2.420268e-01 1.00000000
## 190 553 2.482702e-01 1.00000000
## 191 167 2.525958e-01 1.00000000
## 192 36 2.527928e-01 1.00000000
## 193 62 2.527928e-01 1.00000000
## 194 91 2.556603e-01 1.00000000
## 195 1025 2.606563e-01 1.00000000
## 196 60 2.901433e-01 1.00000000
## 197 298 2.966096e-01 1.00000000
## 198 20 2.983752e-01 1.00000000
## 199 70 2.983752e-01 1.00000000
## 200 12 2.983752e-01 1.00000000
## 201 68 2.983752e-01 1.00000000
## 202 25 2.983752e-01 1.00000000
## 203 6 2.983752e-01 1.00000000
## 204 159 3.014927e-01 1.00000000
## 205 94 3.023821e-01 1.00000000
## 206 102 3.023821e-01 1.00000000
## 207 88 3.023821e-01 1.00000000
## 208 135 3.048738e-01 1.00000000
## 209 130 3.069667e-01 1.00000000
## 210 11 3.069667e-01 1.00000000
## 211 104 3.100845e-01 1.00000000
## 212 86 3.191799e-01 1.00000000
## 213 115 3.191799e-01 1.00000000
## 214 1464 3.264961e-01 1.00000000
## 215 241 3.291713e-01 1.00000000
## 216 162 3.321972e-01 1.00000000
## 217 435 3.342695e-01 1.00000000
## 218 497 3.382627e-01 1.00000000
## 219 154 3.391712e-01 1.00000000
## 220 72 3.391712e-01 1.00000000
## 221 454 3.477173e-01 1.00000000
## 222 56 3.502401e-01 1.00000000
## 223 88 3.502401e-01 1.00000000
## 224 111 3.502401e-01 1.00000000
## 225 131 3.534652e-01 1.00000000
## 226 513 3.589786e-01 1.00000000
## 227 50 3.747551e-01 1.00000000
## 228 72 3.747551e-01 1.00000000
## 229 66 3.747551e-01 1.00000000
## 230 21 3.747551e-01 1.00000000
## 231 90 3.824124e-01 1.00000000
## 232 156 3.842533e-01 1.00000000
## 233 14 3.870810e-01 1.00000000
## 234 5 3.870810e-01 1.00000000
## 235 31 3.870810e-01 1.00000000
## 236 6 3.870810e-01 1.00000000
## 237 7 3.870810e-01 1.00000000
## 238 8 3.870810e-01 1.00000000
## 239 11 3.874186e-01 1.00000000
## 240 6 3.874186e-01 1.00000000
## 241 32 3.874186e-01 1.00000000
## 242 22 3.874186e-01 1.00000000
## 243 17 3.874186e-01 1.00000000
## 244 8 3.874186e-01 1.00000000
## 245 4 3.874186e-01 1.00000000
## 246 7 3.874186e-01 1.00000000
## 247 10 3.874186e-01 1.00000000
## 248 12 3.874186e-01 1.00000000
## 249 17 3.874186e-01 1.00000000
## 250 12 3.874186e-01 1.00000000
## 251 7 3.874186e-01 1.00000000
## 252 10 3.874186e-01 1.00000000
## 253 2 3.874186e-01 1.00000000
## 254 5 3.874186e-01 1.00000000
## 255 185 3.922743e-01 1.00000000
## 256 478 4.052350e-01 1.00000000
## 257 123 4.079522e-01 1.00000000
## 258 76 4.079522e-01 1.00000000
## 259 671 4.159581e-01 1.00000000
## 260 71 4.171083e-01 1.00000000
## 261 68 4.399415e-01 1.00000000
## 262 50 4.399415e-01 1.00000000
## 263 12 4.399415e-01 1.00000000
## 264 69 4.399415e-01 1.00000000
## 265 170 4.420745e-01 1.00000000
## 266 51 4.462359e-01 1.00000000
## 267 31 4.462359e-01 1.00000000
## 268 50 4.684871e-01 1.00000000
## 269 83 4.704323e-01 1.00000000
## 270 61 4.704323e-01 1.00000000
## 271 137 4.704323e-01 1.00000000
## 272 141 4.704323e-01 1.00000000
## 273 25 4.704323e-01 1.00000000
## 274 116 4.709242e-01 1.00000000
## 275 184 4.773345e-01 1.00000000
## 276 107 4.930247e-01 1.00000000
## 277 96 4.930247e-01 1.00000000
## 278 68 5.023244e-01 1.00000000
## 279 321 5.076772e-01 1.00000000
## 280 165 5.151871e-01 1.00000000
## 281 119 5.189117e-01 1.00000000
## 282 133 5.189117e-01 1.00000000
## 283 13 5.206355e-01 1.00000000
## 284 4 5.206355e-01 1.00000000
## 285 9 5.206355e-01 1.00000000
## 286 12 5.206355e-01 1.00000000
## 287 6 5.206355e-01 1.00000000
## 288 12 5.206355e-01 1.00000000
## 289 46 5.206355e-01 1.00000000
## 290 12 5.206355e-01 1.00000000
## 291 21 5.206355e-01 1.00000000
## 292 9 5.206355e-01 1.00000000
## 293 6 5.206355e-01 1.00000000
## 294 27 5.206355e-01 1.00000000
## 295 23 5.206355e-01 1.00000000
## 296 10 5.206355e-01 1.00000000
## 297 83 5.247943e-01 1.00000000
## 298 127 5.247943e-01 1.00000000
## 299 115 5.382757e-01 1.00000000
## 300 15 5.382757e-01 1.00000000
## 301 746 5.407477e-01 1.00000000
## 302 315 5.414061e-01 1.00000000
## 303 52 5.465675e-01 1.00000000
## 304 86 5.465675e-01 1.00000000
## 305 50 5.465675e-01 1.00000000
## 306 15 5.465675e-01 1.00000000
## 307 50 5.465675e-01 1.00000000
## 308 58 5.465675e-01 1.00000000
## 309 8 5.465675e-01 1.00000000
## 310 37 5.465675e-01 1.00000000
## 311 10 5.465675e-01 1.00000000
## 312 12 5.465675e-01 1.00000000
## 313 14 5.465675e-01 1.00000000
## 314 20 5.465675e-01 1.00000000
## 315 22 5.465675e-01 1.00000000
## 316 23 5.465675e-01 1.00000000
## 317 124 5.465675e-01 1.00000000
## 318 121 5.509837e-01 1.00000000
## 319 124 5.509837e-01 1.00000000
## 320 72 5.609317e-01 1.00000000
## 321 78 5.720815e-01 1.00000000
## 322 4024 5.730281e-01 1.00000000
## 323 160 5.831514e-01 1.00000000
## 324 298 5.831514e-01 1.00000000
## 325 396 5.850032e-01 1.00000000
## 326 393 5.850032e-01 1.00000000
## 327 401 5.850032e-01 1.00000000
## 328 4309 6.041993e-01 1.00000000
## 329 184 6.113102e-01 1.00000000
## 330 4 6.146836e-01 1.00000000
## 331 25 6.146836e-01 1.00000000
## 332 53 6.146836e-01 1.00000000
## 333 24 6.146836e-01 1.00000000
## 334 74 6.146836e-01 1.00000000
## 335 53 6.151510e-01 1.00000000
## 336 49 6.151510e-01 1.00000000
## 337 39 6.151510e-01 1.00000000
## 338 32 6.151510e-01 1.00000000
## 339 1784 6.176517e-01 1.00000000
## 340 105 6.183879e-01 1.00000000
## 341 112 6.183879e-01 1.00000000
## 342 112 6.183879e-01 1.00000000
## 343 339 6.234009e-01 1.00000000
## 344 338 6.234009e-01 1.00000000
## 345 3 6.249280e-01 1.00000000
## 346 8 6.249280e-01 1.00000000
## 347 23 6.249280e-01 1.00000000
## 348 4 6.249280e-01 1.00000000
## 349 14 6.249280e-01 1.00000000
## 350 12 6.249280e-01 1.00000000
## 351 24 6.249280e-01 1.00000000
## 352 12 6.249280e-01 1.00000000
## 353 6 6.249280e-01 1.00000000
## 354 138 6.271610e-01 1.00000000
## 355 114 6.365196e-01 1.00000000
## 356 346 6.492082e-01 1.00000000
## 357 2879 6.524984e-01 1.00000000
## 358 501 6.559288e-01 1.00000000
## 359 74 6.611204e-01 1.00000000
## 360 63 6.611204e-01 1.00000000
## 361 26 6.614259e-01 1.00000000
## 362 44 6.623089e-01 1.00000000
## 363 176 6.623089e-01 1.00000000
## 364 196 6.643335e-01 1.00000000
## 365 163 6.643335e-01 1.00000000
## 366 39 6.646617e-01 1.00000000
## 367 51 6.646617e-01 1.00000000
## 368 298 6.696733e-01 1.00000000
## 369 170 6.726790e-01 1.00000000
## 370 257 6.726790e-01 1.00000000
## 371 13 6.746657e-01 1.00000000
## 372 14 6.746657e-01 1.00000000
## 373 18 6.746657e-01 1.00000000
## 374 1 6.746657e-01 1.00000000
## 375 122 6.757969e-01 1.00000000
## 376 318 6.821938e-01 1.00000000
## 377 214 6.854192e-01 1.00000000
## 378 193 6.854192e-01 1.00000000
## 379 225 6.854192e-01 1.00000000
## 380 210 6.854192e-01 1.00000000
## 381 553 6.863795e-01 1.00000000
## 382 248 6.886404e-01 1.00000000
## 383 44 6.950176e-01 1.00000000
## 384 102 6.953124e-01 1.00000000
## 385 151 6.953124e-01 1.00000000
## 386 23 6.970112e-01 1.00000000
## 387 126 6.970112e-01 1.00000000
## 388 11 7.010498e-01 1.00000000
## 389 56 7.010498e-01 1.00000000
## 390 25 7.010498e-01 1.00000000
## 391 9360 7.016782e-01 1.00000000
## 392 459 7.031130e-01 1.00000000
## 393 354 7.047055e-01 1.00000000
## 394 29 7.065662e-01 1.00000000
## 395 33 7.065662e-01 1.00000000
## 396 22 7.065662e-01 1.00000000
## 397 8 7.065662e-01 1.00000000
## 398 10 7.065662e-01 1.00000000
## 399 20 7.065662e-01 1.00000000
## 400 50 7.065662e-01 1.00000000
## 401 16 7.065662e-01 1.00000000
## 402 11 7.065662e-01 1.00000000
## 403 15 7.065662e-01 1.00000000
## 404 27 7.065662e-01 1.00000000
## 405 1 7.065662e-01 1.00000000
## 406 15 7.065662e-01 1.00000000
## 407 11 7.065662e-01 1.00000000
## 408 5 7.065662e-01 1.00000000
## 409 504 7.134728e-01 1.00000000
## 410 11263 7.190020e-01 1.00000000
## 411 4901 7.267222e-01 1.00000000
## 412 24 7.268266e-01 1.00000000
## 413 46 7.268266e-01 1.00000000
## 414 30 7.268266e-01 1.00000000
## 415 18 7.268266e-01 1.00000000
## 416 95 7.301993e-01 1.00000000
## 417 82 7.301993e-01 1.00000000
## 418 521 7.350301e-01 1.00000000
## 419 704 7.375493e-01 1.00000000
## 420 163 7.467622e-01 1.00000000
## 421 396 7.512385e-01 1.00000000
## 422 68 7.546450e-01 1.00000000
## 423 366 7.675424e-01 1.00000000
## 424 79 7.699904e-01 1.00000000
## 425 22 7.699904e-01 1.00000000
## 426 4 7.704632e-01 1.00000000
## 427 7 7.704632e-01 1.00000000
## 428 35 7.704632e-01 1.00000000
## 429 8 7.704632e-01 1.00000000
## 430 11 7.704632e-01 1.00000000
## 431 22 7.704632e-01 1.00000000
## 432 51 7.704632e-01 1.00000000
## 433 12 7.704632e-01 1.00000000
## 434 57 7.704632e-01 1.00000000
## 435 15 7.704632e-01 1.00000000
## 436 5 7.704632e-01 1.00000000
## 437 12 7.704632e-01 1.00000000
## 438 5 7.704632e-01 1.00000000
## 439 40 7.704632e-01 1.00000000
## 440 21 7.717271e-01 1.00000000
## 441 63 7.717271e-01 1.00000000
## 442 67 7.717271e-01 1.00000000
## 443 820 7.722974e-01 1.00000000
## 444 12 7.848077e-01 1.00000000
## 445 162 7.884954e-01 1.00000000
## 446 181 7.884954e-01 1.00000000
## 447 30 7.994697e-01 1.00000000
## 448 46 7.994697e-01 1.00000000
## 449 51 7.994697e-01 1.00000000
## 450 300 8.007898e-01 1.00000000
## 451 301 8.007898e-01 1.00000000
## 452 1010 8.037098e-01 1.00000000
## 453 1031 8.037098e-01 1.00000000
## 454 48 8.100535e-01 1.00000000
## 455 67 8.100535e-01 1.00000000
## 456 99 8.137327e-01 1.00000000
## 457 156 8.146541e-01 1.00000000
## 458 87 8.160114e-01 1.00000000
## 459 78 8.160114e-01 1.00000000
## 460 73 8.204683e-01 1.00000000
## 461 16 8.204683e-01 1.00000000
## 462 97 8.204683e-01 1.00000000
## 463 10 8.204683e-01 1.00000000
## 464 31 8.204683e-01 1.00000000
## 465 12 8.204683e-01 1.00000000
## 466 17 8.204683e-01 1.00000000
## 467 32 8.204683e-01 1.00000000
## 468 3 8.204683e-01 1.00000000
## 469 177 8.258219e-01 1.00000000
## 470 297 8.336680e-01 1.00000000
## 471 47 8.365058e-01 1.00000000
## 472 437 8.407853e-01 1.00000000
## 473 85 8.432912e-01 1.00000000
## 474 16 8.432912e-01 1.00000000
## 475 10 8.432912e-01 1.00000000
## 476 101 8.432912e-01 1.00000000
## 477 145 8.492421e-01 1.00000000
## 478 857 8.533701e-01 1.00000000
## 479 292 8.544890e-01 1.00000000
## 480 81 8.569514e-01 1.00000000
## 481 177 8.572319e-01 1.00000000
## 482 201 8.572319e-01 1.00000000
## 483 199 8.572319e-01 1.00000000
## 484 40 8.595970e-01 1.00000000
## 485 43 8.595970e-01 1.00000000
## 486 57 8.595970e-01 1.00000000
## 487 8 8.595970e-01 1.00000000
## 488 5 8.595970e-01 1.00000000
## 489 41 8.595970e-01 1.00000000
## 490 61 8.595970e-01 1.00000000
## 491 310 8.675670e-01 1.00000000
## 492 37 8.699027e-01 1.00000000
## 493 21 8.699027e-01 1.00000000
## 494 90 8.699027e-01 1.00000000
## 495 88 8.699451e-01 1.00000000
## 496 44 8.699451e-01 1.00000000
## 497 662 8.711337e-01 1.00000000
## 498 1976 8.717977e-01 1.00000000
## 499 658 8.723797e-01 1.00000000
## 500 208 8.805276e-01 1.00000000
## 501 377 8.810238e-01 1.00000000
## 502 699 8.816463e-01 1.00000000
## 503 183 8.879387e-01 1.00000000
## 504 128 8.902112e-01 1.00000000
## 505 25 8.902112e-01 1.00000000
## 506 14 8.902112e-01 1.00000000
## 507 56 8.902112e-01 1.00000000
## 508 19 8.902112e-01 1.00000000
## 509 22 8.902112e-01 1.00000000
## 510 35 8.902112e-01 1.00000000
## 511 76 8.914721e-01 1.00000000
## 512 96 8.914721e-01 1.00000000
## 513 126 8.914721e-01 1.00000000
## 514 42 8.928359e-01 1.00000000
## 515 25 8.928359e-01 1.00000000
## 516 63 8.928359e-01 1.00000000
## 517 15 8.928359e-01 1.00000000
## 518 23 8.928359e-01 1.00000000
## 519 24 8.928359e-01 1.00000000
## 520 1281 8.946682e-01 1.00000000
## 521 1049 9.030141e-01 1.00000000
## 522 224 9.051140e-01 1.00000000
## 523 756 9.088269e-01 1.00000000
## 524 49 9.119669e-01 1.00000000
## 525 64 9.119669e-01 1.00000000
## 526 83 9.129120e-01 1.00000000
## 527 33 9.141607e-01 1.00000000
## 528 17 9.141607e-01 1.00000000
## 529 28 9.141607e-01 1.00000000
## 530 2197 9.183875e-01 1.00000000
## 531 685 9.183932e-01 1.00000000
## 532 93 9.185732e-01 1.00000000
## 533 31 9.202060e-01 1.00000000
## 534 271 9.206297e-01 1.00000000
## 535 70 9.278618e-01 1.00000000
## 536 2194 9.299255e-01 1.00000000
## 537 535 9.301072e-01 1.00000000
## 538 361 9.315772e-01 1.00000000
## 539 33 9.328941e-01 1.00000000
## 540 95 9.328941e-01 1.00000000
## 541 55 9.328941e-01 1.00000000
## 542 176 9.328941e-01 1.00000000
## 543 327 9.374036e-01 1.00000000
## 544 935 9.431038e-01 1.00000000
## 545 294 9.440115e-01 1.00000000
## 546 48 9.475457e-01 1.00000000
## 547 12 9.475457e-01 1.00000000
## 548 11 9.475457e-01 1.00000000
## 549 407 9.505505e-01 1.00000000
## 550 324 9.538425e-01 1.00000000
## 551 11 9.590034e-01 1.00000000
## 552 109 9.590034e-01 1.00000000
## 553 54 9.590034e-01 1.00000000
## 554 110 9.590034e-01 1.00000000
## 555 141 9.590034e-01 1.00000000
## 556 226 9.612639e-01 1.00000000
## 557 2727 9.634107e-01 1.00000000
## 558 2748 9.653224e-01 1.00000000
## 559 2746 9.653224e-01 1.00000000
## 560 92 9.679623e-01 1.00000000
## 561 234 9.681469e-01 1.00000000
## 562 910 9.685336e-01 1.00000000
## 563 909 9.685336e-01 1.00000000
## 564 902 9.685336e-01 1.00000000
## 565 839 9.697278e-01 1.00000000
## 566 1430 9.704913e-01 1.00000000
## 567 204 9.709057e-01 1.00000000
## 568 369 9.709057e-01 1.00000000
## 569 209 9.709057e-01 1.00000000
## 570 212 9.709057e-01 1.00000000
## 571 205 9.709057e-01 1.00000000
## 572 408 9.730717e-01 1.00000000
## 573 311 9.748551e-01 1.00000000
## 574 198 9.749665e-01 1.00000000
## 575 107 9.790540e-01 1.00000000
## 576 154 9.790540e-01 1.00000000
## 577 394 9.796216e-01 1.00000000
## 578 65 9.804419e-01 1.00000000
## 579 1376 9.817634e-01 1.00000000
## 580 1356 9.823624e-01 1.00000000
## 581 147 9.830521e-01 1.00000000
## 582 989 9.842412e-01 1.00000000
## 583 318 9.846626e-01 1.00000000
## 584 81 9.847216e-01 1.00000000
## 585 125 9.847216e-01 1.00000000
## 586 127 9.847216e-01 1.00000000
## 587 162 9.848594e-01 1.00000000
## 588 149 9.849258e-01 1.00000000
## 589 174 9.849258e-01 1.00000000
## 590 1610 9.850696e-01 1.00000000
## 591 60 9.863055e-01 1.00000000
## 592 424 9.865590e-01 1.00000000
## 593 421 9.875692e-01 1.00000000
## 594 88 9.880663e-01 1.00000000
## 595 728 9.885768e-01 1.00000000
## 596 746 9.897508e-01 1.00000000
## 597 3818 9.899785e-01 1.00000000
## 598 1216 9.901443e-01 1.00000000
## 599 4219 9.904297e-01 1.00000000
## 600 287 9.913612e-01 1.00000000
## 601 119 9.927221e-01 1.00000000
## 602 104 9.928276e-01 1.00000000
## 603 4547 9.934496e-01 1.00000000
## 604 333 9.937945e-01 1.00000000
## 605 1113 9.939558e-01 1.00000000
## 606 365 9.951549e-01 1.00000000
## 607 191 9.953726e-01 1.00000000
## 608 679 9.954937e-01 1.00000000
## 609 480 9.959067e-01 1.00000000
## 610 1568 9.961871e-01 1.00000000
## 611 742 9.965591e-01 1.00000000
## 612 326 9.966117e-01 1.00000000
## 613 1917 9.969283e-01 1.00000000
## 614 94 9.978907e-01 1.00000000
## 615 98 9.978907e-01 1.00000000
## 616 559 9.979759e-01 1.00000000
## 617 189 9.983541e-01 1.00000000
## 618 986 9.986050e-01 1.00000000
## 619 109 9.987761e-01 1.00000000
## 620 2069 9.992152e-01 1.00000000
## 621 152 9.992196e-01 1.00000000
## 622 263 9.998263e-01 1.00000000
## 623 1603 9.998353e-01 1.00000000
## 624 1665 9.999647e-01 1.00000000
## 625 172 9.999673e-01 1.00000000
## 626 191 9.999673e-01 1.00000000
## 627 433 9.999805e-01 1.00000000
## 628 5287 9.999839e-01 1.00000000
## 629 5422 9.999882e-01 1.00000000
## 630 9041 9.999969e-01 1.00000000
## 631 2619 9.999983e-01 1.00000000
## 632 6581 9.999986e-01 1.00000000
## 633 5094 1.000000e+00 1.00000000
## 634 5196 1.000000e+00 1.00000000
## 635 15 1.000000e+00 1.00000000
## 636 3 1.000000e+00 1.00000000
## 637 1 1.000000e+00 1.00000000
## 638 60 1.000000e+00 1.00000000
## 639 5 1.000000e+00 1.00000000
## 640 4 1.000000e+00 1.00000000
## 641 2 1.000000e+00 1.00000000
## 642 6 1.000000e+00 1.00000000
## 643 7 1.000000e+00 1.00000000
## 644 7 1.000000e+00 1.00000000
## 645 13 1.000000e+00 1.00000000
## 646 6 1.000000e+00 1.00000000
## 647 13 1.000000e+00 1.00000000
## 648 13 1.000000e+00 1.00000000
## 649 23 1.000000e+00 1.00000000
## 650 4 1.000000e+00 1.00000000
## 651 3 1.000000e+00 1.00000000
## 652 2 1.000000e+00 1.00000000
## 653 6 1.000000e+00 1.00000000
## 654 8 1.000000e+00 1.00000000
## 655 1 1.000000e+00 1.00000000
## 656 1 1.000000e+00 1.00000000
## 657 5 1.000000e+00 1.00000000
## 658 11 1.000000e+00 1.00000000
## 659 3 1.000000e+00 1.00000000
## 660 2 1.000000e+00 1.00000000
## 661 2 1.000000e+00 1.00000000
## 662 6 1.000000e+00 1.00000000
## 663 30 1.000000e+00 1.00000000
## 664 3 1.000000e+00 1.00000000
## 665 8 1.000000e+00 1.00000000
## 666 6 1.000000e+00 1.00000000
## 667 8 1.000000e+00 1.00000000
## 668 11 1.000000e+00 1.00000000
## 669 22 1.000000e+00 1.00000000
## 670 13 1.000000e+00 1.00000000
## 671 1 1.000000e+00 1.00000000
## 672 42 1.000000e+00 1.00000000
## 673 7 1.000000e+00 1.00000000
## 674 1 1.000000e+00 1.00000000
## 675 5 1.000000e+00 1.00000000
## 676 3 1.000000e+00 1.00000000
## 677 17 1.000000e+00 1.00000000
## 678 8 1.000000e+00 1.00000000
## 679 1 1.000000e+00 1.00000000
## 680 2 1.000000e+00 1.00000000
## 681 3 1.000000e+00 1.00000000
## 682 10 1.000000e+00 1.00000000
## 683 3 1.000000e+00 1.00000000
## 684 12 1.000000e+00 1.00000000
## 685 2 1.000000e+00 1.00000000
## 686 6 1.000000e+00 1.00000000
## 687 5 1.000000e+00 1.00000000
## 688 3 1.000000e+00 1.00000000
## 689 6 1.000000e+00 1.00000000
## 690 19 1.000000e+00 1.00000000
## 691 4 1.000000e+00 1.00000000
## 692 3 1.000000e+00 1.00000000
## 693 1 1.000000e+00 1.00000000
## 694 4 1.000000e+00 1.00000000
## 695 3 1.000000e+00 1.00000000
## 696 14 1.000000e+00 1.00000000
## 697 6 1.000000e+00 1.00000000
## 698 10 1.000000e+00 1.00000000
## 699 5 1.000000e+00 1.00000000
## 700 3 1.000000e+00 1.00000000
## 701 2 1.000000e+00 1.00000000
## 702 6 1.000000e+00 1.00000000
## 703 13 1.000000e+00 1.00000000
## 704 5 1.000000e+00 1.00000000
## 705 6 1.000000e+00 1.00000000
## 706 10 1.000000e+00 1.00000000
## 707 23 1.000000e+00 1.00000000
## 708 13 1.000000e+00 1.00000000
## 709 6 1.000000e+00 1.00000000
## 710 3 1.000000e+00 1.00000000
## 711 2 1.000000e+00 1.00000000
## 712 3 1.000000e+00 1.00000000
## 713 2 1.000000e+00 1.00000000
## 714 1 1.000000e+00 1.00000000
## 715 2 1.000000e+00 1.00000000
## 716 6 1.000000e+00 1.00000000
## 717 11 1.000000e+00 1.00000000
## 718 3 1.000000e+00 1.00000000
## 719 3 1.000000e+00 1.00000000
## 720 2 1.000000e+00 1.00000000
## 721 2 1.000000e+00 1.00000000
## 722 1 1.000000e+00 1.00000000
## 723 9 1.000000e+00 1.00000000
## 724 7 1.000000e+00 1.00000000
## 725 89 1.000000e+00 1.00000000
## 726 1 1.000000e+00 1.00000000
## 727 12 1.000000e+00 1.00000000
## 728 2 1.000000e+00 1.00000000
## 729 1 1.000000e+00 1.00000000
## 730 1 1.000000e+00 1.00000000
## 731 6 1.000000e+00 1.00000000
## 732 3 1.000000e+00 1.00000000
## 733 3 1.000000e+00 1.00000000
## 734 1 1.000000e+00 1.00000000
## 735 1 1.000000e+00 1.00000000
## 736 2 1.000000e+00 1.00000000
## 737 6 1.000000e+00 1.00000000
## 738 3 1.000000e+00 1.00000000
## 739 1 1.000000e+00 1.00000000
## 740 1 1.000000e+00 1.00000000
## 741 1 1.000000e+00 1.00000000
## 742 1 1.000000e+00 1.00000000
## 743 2 1.000000e+00 1.00000000
## 744 21 1.000000e+00 1.00000000
## 745 3 1.000000e+00 1.00000000
## 746 2 1.000000e+00 1.00000000
## 747 2 1.000000e+00 1.00000000
## 748 3 1.000000e+00 1.00000000
## 749 13 1.000000e+00 1.00000000
## 750 1 1.000000e+00 1.00000000
## 751 4 1.000000e+00 1.00000000
## 752 24 1.000000e+00 1.00000000
## 753 5 1.000000e+00 1.00000000
## 754 9 1.000000e+00 1.00000000
## 755 8 1.000000e+00 1.00000000
## 756 2 1.000000e+00 1.00000000
## 757 6 1.000000e+00 1.00000000
## 758 6 1.000000e+00 1.00000000
## 759 9 1.000000e+00 1.00000000
## 760 18 1.000000e+00 1.00000000
## 761 2 1.000000e+00 1.00000000
## 762 6 1.000000e+00 1.00000000
## 763 1 1.000000e+00 1.00000000
## 764 2 1.000000e+00 1.00000000
## 765 12 1.000000e+00 1.00000000
## 766 8 1.000000e+00 1.00000000
## 767 21 1.000000e+00 1.00000000
## 768 36 1.000000e+00 1.00000000
## 769 8 1.000000e+00 1.00000000
## 770 1 1.000000e+00 1.00000000
## 771 1 1.000000e+00 1.00000000
## 772 2 1.000000e+00 1.00000000
## 773 2 1.000000e+00 1.00000000
## 774 1 1.000000e+00 1.00000000
## 775 35 1.000000e+00 1.00000000
## 776 19 1.000000e+00 1.00000000
## 777 1 1.000000e+00 1.00000000
## 778 1 1.000000e+00 1.00000000
## 779 22 1.000000e+00 1.00000000
## 780 14 1.000000e+00 1.00000000
## 781 2 1.000000e+00 1.00000000
## 782 18 1.000000e+00 1.00000000
## 783 1 1.000000e+00 1.00000000
## 784 4 1.000000e+00 1.00000000
## 785 2 1.000000e+00 1.00000000
## 786 28 1.000000e+00 1.00000000
## 787 14 1.000000e+00 1.00000000
## 788 38 1.000000e+00 1.00000000
## 789 43 1.000000e+00 1.00000000
## 790 5 1.000000e+00 1.00000000
## 791 5 1.000000e+00 1.00000000
## 792 32 1.000000e+00 1.00000000
## 793 8 1.000000e+00 1.00000000
## 794 72 1.000000e+00 1.00000000
## 795 4 1.000000e+00 1.00000000
## 796 5 1.000000e+00 1.00000000
## 797 7 1.000000e+00 1.00000000
## 798 12 1.000000e+00 1.00000000
## 799 21 1.000000e+00 1.00000000
## 800 24 1.000000e+00 1.00000000
## 801 14 1.000000e+00 1.00000000
## 802 3 1.000000e+00 1.00000000
## 803 4 1.000000e+00 1.00000000
## 804 6 1.000000e+00 1.00000000
## 805 17 1.000000e+00 1.00000000
## 806 4 1.000000e+00 1.00000000
## 807 3 1.000000e+00 1.00000000
## 808 17 1.000000e+00 1.00000000
## 809 27 1.000000e+00 1.00000000
## 810 8 1.000000e+00 1.00000000
## 811 4 1.000000e+00 1.00000000
## 812 3 1.000000e+00 1.00000000
## 813 21 1.000000e+00 1.00000000
## 814 22 1.000000e+00 1.00000000
## 815 9 1.000000e+00 1.00000000
## 816 3 1.000000e+00 1.00000000
## 817 6 1.000000e+00 1.00000000
## 818 8 1.000000e+00 1.00000000
## 819 13 1.000000e+00 1.00000000
## 820 2 1.000000e+00 1.00000000
## 821 17 1.000000e+00 1.00000000
## 822 1 1.000000e+00 1.00000000
## 823 3 1.000000e+00 1.00000000
## 824 1 1.000000e+00 1.00000000
## 825 3 1.000000e+00 1.00000000
## 826 2 1.000000e+00 1.00000000
## 827 81 1.000000e+00 1.00000000
## 828 1 1.000000e+00 1.00000000
## 829 8 1.000000e+00 1.00000000
## 830 10 1.000000e+00 1.00000000
## 831 3 1.000000e+00 1.00000000
## 832 1 1.000000e+00 1.00000000
## 833 2 1.000000e+00 1.00000000
## 834 3 1.000000e+00 1.00000000
## 835 2 1.000000e+00 1.00000000
## 836 5 1.000000e+00 1.00000000
## 837 8 1.000000e+00 1.00000000
## 838 2 1.000000e+00 1.00000000
## 839 1 1.000000e+00 1.00000000
## 840 4 1.000000e+00 1.00000000
## 841 2 1.000000e+00 1.00000000
## 842 4 1.000000e+00 1.00000000
## 843 4 1.000000e+00 1.00000000
## 844 5 1.000000e+00 1.00000000
## 845 3 1.000000e+00 1.00000000
## 846 3 1.000000e+00 1.00000000
## 847 1 1.000000e+00 1.00000000
## 848 2 1.000000e+00 1.00000000
## 849 152 1.000000e+00 1.00000000
## 850 8 1.000000e+00 1.00000000
## 851 2 1.000000e+00 1.00000000
## 852 17 1.000000e+00 1.00000000
## 853 8 1.000000e+00 1.00000000
## 854 34 1.000000e+00 1.00000000
## 855 7 1.000000e+00 1.00000000
## 856 3 1.000000e+00 1.00000000
## 857 12 1.000000e+00 1.00000000
## 858 4 1.000000e+00 1.00000000
## 859 33 1.000000e+00 1.00000000
## 860 1 1.000000e+00 1.00000000
## 861 11 1.000000e+00 1.00000000
## 862 3 1.000000e+00 1.00000000
## 863 12 1.000000e+00 1.00000000
## 864 7 1.000000e+00 1.00000000
## 865 5 1.000000e+00 1.00000000
## 866 2 1.000000e+00 1.00000000
## 867 3 1.000000e+00 1.00000000
## 868 2 1.000000e+00 1.00000000
## 869 3 1.000000e+00 1.00000000
## 870 1 1.000000e+00 1.00000000
## 871 1 1.000000e+00 1.00000000
## 872 1 1.000000e+00 1.00000000
## 873 2 1.000000e+00 1.00000000
## 874 1 1.000000e+00 1.00000000
## 875 5 1.000000e+00 1.00000000
## 876 14 1.000000e+00 1.00000000
## 877 2 1.000000e+00 1.00000000
## 878 14 1.000000e+00 1.00000000
## 879 9 1.000000e+00 1.00000000
## 880 1 1.000000e+00 1.00000000
## 881 1 1.000000e+00 1.00000000
## 882 4 1.000000e+00 1.00000000
## 883 1 1.000000e+00 1.00000000
## 884 21 1.000000e+00 1.00000000
## 885 7 1.000000e+00 1.00000000
## 886 6 1.000000e+00 1.00000000
## 887 4 1.000000e+00 1.00000000
## 888 1 1.000000e+00 1.00000000
## 889 3 1.000000e+00 1.00000000
## 890 2 1.000000e+00 1.00000000
## 891 7 1.000000e+00 1.00000000
## 892 9 1.000000e+00 1.00000000
## 893 1 1.000000e+00 1.00000000
## 894 19 1.000000e+00 1.00000000
## 895 10 1.000000e+00 1.00000000
## 896 71 1.000000e+00 1.00000000
## 897 33 1.000000e+00 1.00000000
## 898 10 1.000000e+00 1.00000000
## 899 1 1.000000e+00 1.00000000
## 900 71 1.000000e+00 1.00000000
## 901 62 1.000000e+00 1.00000000
## 902 3 1.000000e+00 1.00000000
## 903 13 1.000000e+00 1.00000000
## 904 16 1.000000e+00 1.00000000
## 905 1 1.000000e+00 1.00000000
## 906 1 1.000000e+00 1.00000000
## 907 9 1.000000e+00 1.00000000
## 908 2 1.000000e+00 1.00000000
## 909 1 1.000000e+00 1.00000000
## 910 3 1.000000e+00 1.00000000
## 911 5 1.000000e+00 1.00000000
## 912 8 1.000000e+00 1.00000000
## 913 1 1.000000e+00 1.00000000
## 914 1 1.000000e+00 1.00000000
## 915 2 1.000000e+00 1.00000000
## 916 2 1.000000e+00 1.00000000
## 917 1 1.000000e+00 1.00000000
## 918 11 1.000000e+00 1.00000000
## 919 1 1.000000e+00 1.00000000
## 920 2 1.000000e+00 1.00000000
## 921 2 1.000000e+00 1.00000000
## 922 1 1.000000e+00 1.00000000
## 923 5 1.000000e+00 1.00000000
## 924 2 1.000000e+00 1.00000000
## 925 1 1.000000e+00 1.00000000
## 926 2 1.000000e+00 1.00000000
## 927 9 1.000000e+00 1.00000000
## 928 11 1.000000e+00 1.00000000
## 929 7 1.000000e+00 1.00000000
## 930 3 1.000000e+00 1.00000000
## 931 7 1.000000e+00 1.00000000
## 932 16 1.000000e+00 1.00000000
## 933 3 1.000000e+00 1.00000000
## 934 2 1.000000e+00 1.00000000
## 935 3 1.000000e+00 1.00000000
## 936 24 1.000000e+00 1.00000000
## 937 16 1.000000e+00 1.00000000
## 938 6 1.000000e+00 1.00000000
## 939 7 1.000000e+00 1.00000000
## 940 5 1.000000e+00 1.00000000
## 941 6 1.000000e+00 1.00000000
## 942 6 1.000000e+00 1.00000000
## 943 10 1.000000e+00 1.00000000
## 944 5 1.000000e+00 1.00000000
## 945 12 1.000000e+00 1.00000000
## 946 28 1.000000e+00 1.00000000
## 947 15 1.000000e+00 1.00000000
## 948 4 1.000000e+00 1.00000000
## 949 2 1.000000e+00 1.00000000
## 950 7 1.000000e+00 1.00000000
## 951 4 1.000000e+00 1.00000000
## 952 3 1.000000e+00 1.00000000
## 953 1 1.000000e+00 1.00000000
## 954 81 1.000000e+00 1.00000000
## 955 16 1.000000e+00 1.00000000
## 956 13 1.000000e+00 1.00000000
## 957 3 1.000000e+00 1.00000000
## 958 10 1.000000e+00 1.00000000
## 959 31 1.000000e+00 1.00000000
## 960 12 1.000000e+00 1.00000000
## 961 3 1.000000e+00 1.00000000
## 962 1 1.000000e+00 1.00000000
## 963 1 1.000000e+00 1.00000000
## 964 2 1.000000e+00 1.00000000
## 965 2 1.000000e+00 1.00000000
## 966 7 1.000000e+00 1.00000000
## 967 7 1.000000e+00 1.00000000
## 968 6 1.000000e+00 1.00000000
## 969 1 1.000000e+00 1.00000000
## 970 6 1.000000e+00 1.00000000
## 971 3 1.000000e+00 1.00000000
## 972 6 1.000000e+00 1.00000000
## 973 14 1.000000e+00 1.00000000
## 974 4 1.000000e+00 1.00000000
## 975 4 1.000000e+00 1.00000000
## 976 7 1.000000e+00 1.00000000
## 977 3 1.000000e+00 1.00000000
## 978 3 1.000000e+00 1.00000000
## 979 3 1.000000e+00 1.00000000
## 980 32 1.000000e+00 1.00000000
## 981 8 1.000000e+00 1.00000000
## 982 21 1.000000e+00 1.00000000
## 983 3 1.000000e+00 1.00000000
## 984 13 1.000000e+00 1.00000000
## 985 3 1.000000e+00 1.00000000
## 986 23 1.000000e+00 1.00000000
## 987 18 1.000000e+00 1.00000000
## 988 3 1.000000e+00 1.00000000
## 989 2 1.000000e+00 1.00000000
## 990 6 1.000000e+00 1.00000000
## 991 14 1.000000e+00 1.00000000
## 992 17 1.000000e+00 1.00000000
## 993 11 1.000000e+00 1.00000000
## 994 9 1.000000e+00 1.00000000
## 995 6 1.000000e+00 1.00000000
## 996 4 1.000000e+00 1.00000000
## 997 3 1.000000e+00 1.00000000
## 998 2 1.000000e+00 1.00000000
## 999 7 1.000000e+00 1.00000000
## 1000 20 1.000000e+00 1.00000000
## 1001 16 1.000000e+00 1.00000000
## 1002 2 1.000000e+00 1.00000000
## 1003 1 1.000000e+00 1.00000000
## 1004 1 1.000000e+00 1.00000000
## 1005 5 1.000000e+00 1.00000000
## 1006 4 1.000000e+00 1.00000000
## 1007 6 1.000000e+00 1.00000000
## 1008 1 1.000000e+00 1.00000000
## 1009 1 1.000000e+00 1.00000000
## 1010 32 1.000000e+00 1.00000000
## 1011 8 1.000000e+00 1.00000000
## 1012 6 1.000000e+00 1.00000000
## 1013 2 1.000000e+00 1.00000000
## 1014 15 1.000000e+00 1.00000000
## 1015 9 1.000000e+00 1.00000000
## 1016 2 1.000000e+00 1.00000000
## 1017 2 1.000000e+00 1.00000000
## 1018 1 1.000000e+00 1.00000000
## 1019 1 1.000000e+00 1.00000000
## 1020 8 1.000000e+00 1.00000000
## 1021 10 1.000000e+00 1.00000000
## 1022 5 1.000000e+00 1.00000000
## 1023 2 1.000000e+00 1.00000000
## 1024 3 1.000000e+00 1.00000000
## 1025 6 1.000000e+00 1.00000000
## 1026 5 1.000000e+00 1.00000000
## 1027 2 1.000000e+00 1.00000000
## 1028 7 1.000000e+00 1.00000000
## 1029 5 1.000000e+00 1.00000000
## 1030 1 1.000000e+00 1.00000000
## 1031 1 1.000000e+00 1.00000000
## 1032 4 1.000000e+00 1.00000000
## 1033 3 1.000000e+00 1.00000000
## 1034 3 1.000000e+00 1.00000000
## 1035 2 1.000000e+00 1.00000000
## 1036 17 1.000000e+00 1.00000000
## 1037 23 1.000000e+00 1.00000000
## 1038 2 1.000000e+00 1.00000000
## 1039 1 1.000000e+00 1.00000000
## 1040 12 1.000000e+00 1.00000000
## 1041 9 1.000000e+00 1.00000000
## 1042 1 1.000000e+00 1.00000000
## 1043 4 1.000000e+00 1.00000000
## 1044 34 1.000000e+00 1.00000000
## 1045 3 1.000000e+00 1.00000000
## 1046 9 1.000000e+00 1.00000000
## 1047 7 1.000000e+00 1.00000000
## 1048 3 1.000000e+00 1.00000000
## 1049 3 1.000000e+00 1.00000000
## 1050 8 1.000000e+00 1.00000000
## 1051 5 1.000000e+00 1.00000000
## 1052 4 1.000000e+00 1.00000000
## 1053 2 1.000000e+00 1.00000000
## 1054 13 1.000000e+00 1.00000000
## 1055 8 1.000000e+00 1.00000000
## 1056 2 1.000000e+00 1.00000000
## 1057 2 1.000000e+00 1.00000000
## 1058 5 1.000000e+00 1.00000000
## 1059 1 1.000000e+00 1.00000000
## 1060 52 1.000000e+00 1.00000000
## 1061 61 1.000000e+00 1.00000000
## 1062 7 1.000000e+00 1.00000000
## 1063 1 1.000000e+00 1.00000000
## 1064 8 1.000000e+00 1.00000000
## 1065 3 1.000000e+00 1.00000000
## 1066 8 1.000000e+00 1.00000000
## 1067 2 1.000000e+00 1.00000000
## 1068 2 1.000000e+00 1.00000000
## 1069 2 1.000000e+00 1.00000000
## 1070 4 1.000000e+00 1.00000000
## 1071 1 1.000000e+00 1.00000000
## 1072 43 1.000000e+00 1.00000000
## 1073 50 1.000000e+00 1.00000000
## 1074 14 1.000000e+00 1.00000000
## 1075 15 1.000000e+00 1.00000000
## 1076 4 1.000000e+00 1.00000000
## 1077 3 1.000000e+00 1.00000000
## 1078 4 1.000000e+00 1.00000000
## 1079 1 1.000000e+00 1.00000000
## 1080 6 1.000000e+00 1.00000000
## 1081 2 1.000000e+00 1.00000000
## 1082 7 1.000000e+00 1.00000000
## 1083 10 1.000000e+00 1.00000000
## 1084 38 1.000000e+00 1.00000000
## 1085 23 1.000000e+00 1.00000000
## 1086 10 1.000000e+00 1.00000000
## 1087 4 1.000000e+00 1.00000000
## 1088 2 1.000000e+00 1.00000000
## 1089 12 1.000000e+00 1.00000000
## 1090 2 1.000000e+00 1.00000000
## 1091 24 1.000000e+00 1.00000000
## 1092 3 1.000000e+00 1.00000000
## 1093 21 1.000000e+00 1.00000000
## 1094 23 1.000000e+00 1.00000000
## 1095 3 1.000000e+00 1.00000000
## 1096 22 1.000000e+00 1.00000000
## 1097 3 1.000000e+00 1.00000000
## 1098 42 1.000000e+00 1.00000000
## 1099 1 1.000000e+00 1.00000000
## 1100 3 1.000000e+00 1.00000000
## 1101 7 1.000000e+00 1.00000000
## 1102 4 1.000000e+00 1.00000000
## 1103 40 1.000000e+00 1.00000000
## 1104 7 1.000000e+00 1.00000000
## 1105 7 1.000000e+00 1.00000000
## 1106 5 1.000000e+00 1.00000000
## 1107 2 1.000000e+00 1.00000000
## 1108 5 1.000000e+00 1.00000000
## 1109 1 1.000000e+00 1.00000000
## 1110 3 1.000000e+00 1.00000000
## 1111 12 1.000000e+00 1.00000000
## 1112 3 1.000000e+00 1.00000000
## 1113 1 1.000000e+00 1.00000000
## 1114 17 1.000000e+00 1.00000000
## 1115 9 1.000000e+00 1.00000000
## 1116 3 1.000000e+00 1.00000000
## 1117 3 1.000000e+00 1.00000000
## 1118 1 1.000000e+00 1.00000000
## 1119 7 1.000000e+00 1.00000000
## 1120 2 1.000000e+00 1.00000000
## 1121 4 1.000000e+00 1.00000000
## 1122 15 1.000000e+00 1.00000000
## 1123 4 1.000000e+00 1.00000000
## 1124 1 1.000000e+00 1.00000000
## 1125 1 1.000000e+00 1.00000000
## 1126 12 1.000000e+00 1.00000000
## 1127 5 1.000000e+00 1.00000000
## 1128 5 1.000000e+00 1.00000000
## 1129 3 1.000000e+00 1.00000000
## 1130 3 1.000000e+00 1.00000000
## 1131 6 1.000000e+00 1.00000000
## 1132 1 1.000000e+00 1.00000000
## 1133 3 1.000000e+00 1.00000000
## 1134 1 1.000000e+00 1.00000000
## 1135 12 1.000000e+00 1.00000000
## 1136 9 1.000000e+00 1.00000000
## 1137 5 1.000000e+00 1.00000000
## 1138 6 1.000000e+00 1.00000000
## 1139 1 1.000000e+00 1.00000000
## 1140 16 1.000000e+00 1.00000000
## 1141 2 1.000000e+00 1.00000000
## 1142 1 1.000000e+00 1.00000000
## 1143 3 1.000000e+00 1.00000000
## 1144 40 1.000000e+00 1.00000000
## 1145 1 1.000000e+00 1.00000000
## 1146 1 1.000000e+00 1.00000000
## 1147 20 1.000000e+00 1.00000000
## 1148 14 1.000000e+00 1.00000000
## 1149 5 1.000000e+00 1.00000000
## 1150 27 1.000000e+00 1.00000000
## 1151 3 1.000000e+00 1.00000000
## 1152 8 1.000000e+00 1.00000000
## 1153 7 1.000000e+00 1.00000000
## 1154 1 1.000000e+00 1.00000000
## 1155 6 1.000000e+00 1.00000000
## 1156 26 1.000000e+00 1.00000000
## 1157 3 1.000000e+00 1.00000000
## 1158 2 1.000000e+00 1.00000000
## 1159 3 1.000000e+00 1.00000000
## 1160 10 1.000000e+00 1.00000000
## 1161 1 1.000000e+00 1.00000000
## 1162 2 1.000000e+00 1.00000000
## 1163 16 1.000000e+00 1.00000000
## 1164 3 1.000000e+00 1.00000000
## 1165 11 1.000000e+00 1.00000000
## 1166 2 1.000000e+00 1.00000000
## 1167 3 1.000000e+00 1.00000000
## 1168 2 1.000000e+00 1.00000000
## 1169 1 1.000000e+00 1.00000000
## 1170 2 1.000000e+00 1.00000000
## 1171 3 1.000000e+00 1.00000000
## 1172 1 1.000000e+00 1.00000000
## 1173 1 1.000000e+00 1.00000000
## 1174 3 1.000000e+00 1.00000000
## 1175 1 1.000000e+00 1.00000000
## 1176 2 1.000000e+00 1.00000000
## 1177 2 1.000000e+00 1.00000000
## 1178 2 1.000000e+00 1.00000000
## 1179 2 1.000000e+00 1.00000000
## 1180 2 1.000000e+00 1.00000000
## 1181 2 1.000000e+00 1.00000000
## 1182 2 1.000000e+00 1.00000000
## 1183 2 1.000000e+00 1.00000000
## 1184 1 1.000000e+00 1.00000000
## 1185 21 1.000000e+00 1.00000000
## 1186 1 1.000000e+00 1.00000000
## 1187 2 1.000000e+00 1.00000000
## 1188 4 1.000000e+00 1.00000000
## 1189 1 1.000000e+00 1.00000000
## 1190 1 1.000000e+00 1.00000000
## 1191 1 1.000000e+00 1.00000000
## 1192 4 1.000000e+00 1.00000000
## 1193 8 1.000000e+00 1.00000000
## 1194 1 1.000000e+00 1.00000000
## 1195 1 1.000000e+00 1.00000000
## 1196 18 1.000000e+00 1.00000000
## 1197 3 1.000000e+00 1.00000000
## 1198 3 1.000000e+00 1.00000000
## 1199 18 1.000000e+00 1.00000000
## 1200 23 1.000000e+00 1.00000000
## 1201 4 1.000000e+00 1.00000000
## 1202 2 1.000000e+00 1.00000000
## 1203 1 1.000000e+00 1.00000000
## 1204 4 1.000000e+00 1.00000000
## 1205 2 1.000000e+00 1.00000000
## 1206 2 1.000000e+00 1.00000000
## 1207 1 1.000000e+00 1.00000000
## 1208 11 1.000000e+00 1.00000000
## 1209 6 1.000000e+00 1.00000000
## 1210 2 1.000000e+00 1.00000000
## 1211 1 1.000000e+00 1.00000000
## 1212 6 1.000000e+00 1.00000000
## 1213 1 1.000000e+00 1.00000000
## 1214 3 1.000000e+00 1.00000000
## 1215 2 1.000000e+00 1.00000000
## 1216 4 1.000000e+00 1.00000000
## 1217 3 1.000000e+00 1.00000000
## 1218 20 1.000000e+00 1.00000000
## 1219 14 1.000000e+00 1.00000000
## 1220 5 1.000000e+00 1.00000000
## 1221 1 1.000000e+00 1.00000000
## 1222 1 1.000000e+00 1.00000000
## 1223 1 1.000000e+00 1.00000000
## 1224 1 1.000000e+00 1.00000000
## 1225 1 1.000000e+00 1.00000000
## 1226 1 1.000000e+00 1.00000000
## 1227 1 1.000000e+00 1.00000000
## 1228 13 1.000000e+00 1.00000000
## 1229 2 1.000000e+00 1.00000000
## 1230 4 1.000000e+00 1.00000000
## 1231 9 1.000000e+00 1.00000000
## 1232 3 1.000000e+00 1.00000000
## 1233 1 1.000000e+00 1.00000000
## 1234 1 1.000000e+00 1.00000000
## 1235 24 1.000000e+00 1.00000000
## 1236 4 1.000000e+00 1.00000000
## 1237 2 1.000000e+00 1.00000000
## 1238 8 1.000000e+00 1.00000000
## 1239 28 1.000000e+00 1.00000000
## 1240 3 1.000000e+00 1.00000000
## 1241 2 1.000000e+00 1.00000000
## 1242 2 1.000000e+00 1.00000000
## 1243 2 1.000000e+00 1.00000000
## 1244 12 1.000000e+00 1.00000000
## 1245 7 1.000000e+00 1.00000000
## 1246 1 1.000000e+00 1.00000000
## 1247 2 1.000000e+00 1.00000000
## 1248 1 1.000000e+00 1.00000000
## 1249 5 1.000000e+00 1.00000000
## 1250 6 1.000000e+00 1.00000000
## 1251 13 1.000000e+00 1.00000000
## 1252 5 1.000000e+00 1.00000000
## 1253 11 1.000000e+00 1.00000000
## 1254 1 1.000000e+00 1.00000000
## 1255 2 1.000000e+00 1.00000000
## 1256 4 1.000000e+00 1.00000000
## 1257 1 1.000000e+00 1.00000000
## 1258 4 1.000000e+00 1.00000000
## 1259 18 1.000000e+00 1.00000000
## 1260 8 1.000000e+00 1.00000000
## 1261 6 1.000000e+00 1.00000000
## 1262 3 1.000000e+00 1.00000000
## 1263 5 1.000000e+00 1.00000000
## 1264 14 1.000000e+00 1.00000000
## 1265 11 1.000000e+00 1.00000000
## 1266 19 1.000000e+00 1.00000000
## 1267 20 1.000000e+00 1.00000000
## 1268 5 1.000000e+00 1.00000000
## 1269 15 1.000000e+00 1.00000000
## 1270 14 1.000000e+00 1.00000000
## 1271 2 1.000000e+00 1.00000000
## 1272 5 1.000000e+00 1.00000000
## 1273 2 1.000000e+00 1.00000000
## 1274 5 1.000000e+00 1.00000000
## 1275 71 1.000000e+00 1.00000000
## 1276 5 1.000000e+00 1.00000000
## 1277 5 1.000000e+00 1.00000000
## 1278 4 1.000000e+00 1.00000000
## 1279 21 1.000000e+00 1.00000000
## 1280 10 1.000000e+00 1.00000000
## 1281 1 1.000000e+00 1.00000000
## 1282 19 1.000000e+00 1.00000000
## 1283 18 1.000000e+00 1.00000000
## 1284 10 1.000000e+00 1.00000000
## 1285 4 1.000000e+00 1.00000000
## 1286 1 1.000000e+00 1.00000000
## 1287 16 1.000000e+00 1.00000000
## 1288 8 1.000000e+00 1.00000000
## 1289 62 1.000000e+00 1.00000000
## 1290 14 1.000000e+00 1.00000000
## 1291 4 1.000000e+00 1.00000000
## 1292 10 1.000000e+00 1.00000000
## 1293 2 1.000000e+00 1.00000000
## 1294 8 1.000000e+00 1.00000000
## 1295 1 1.000000e+00 1.00000000
## 1296 3 1.000000e+00 1.00000000
## 1297 3 1.000000e+00 1.00000000
## 1298 1 1.000000e+00 1.00000000
## 1299 2 1.000000e+00 1.00000000
## 1300 1 1.000000e+00 1.00000000
## 1301 2 1.000000e+00 1.00000000
## 1302 1 1.000000e+00 1.00000000
## 1303 2 1.000000e+00 1.00000000
## 1304 5 1.000000e+00 1.00000000
## 1305 1 1.000000e+00 1.00000000
## 1306 3 1.000000e+00 1.00000000
## 1307 3 1.000000e+00 1.00000000
## 1308 2 1.000000e+00 1.00000000
## 1309 5 1.000000e+00 1.00000000
## 1310 1 1.000000e+00 1.00000000
## 1311 3 1.000000e+00 1.00000000
## 1312 5 1.000000e+00 1.00000000
## 1313 1 1.000000e+00 1.00000000
## 1314 4 1.000000e+00 1.00000000
## 1315 5 1.000000e+00 1.00000000
## 1316 1 1.000000e+00 1.00000000
## 1317 10 1.000000e+00 1.00000000
## 1318 1 1.000000e+00 1.00000000
## 1319 1 1.000000e+00 1.00000000
## 1320 1 1.000000e+00 1.00000000
## 1321 9 1.000000e+00 1.00000000
## 1322 5 1.000000e+00 1.00000000
## 1323 21 1.000000e+00 1.00000000
## 1324 2 1.000000e+00 1.00000000
## 1325 5 1.000000e+00 1.00000000
## 1326 2 1.000000e+00 1.00000000
## 1327 1 1.000000e+00 1.00000000
## 1328 4 1.000000e+00 1.00000000
## 1329 1 1.000000e+00 1.00000000
## 1330 3 1.000000e+00 1.00000000
## 1331 2 1.000000e+00 1.00000000
## 1332 1 1.000000e+00 1.00000000
## 1333 3 1.000000e+00 1.00000000
## 1334 7 1.000000e+00 1.00000000
## 1335 6 1.000000e+00 1.00000000
## 1336 3 1.000000e+00 1.00000000
## 1337 6 1.000000e+00 1.00000000
## 1338 33 1.000000e+00 1.00000000
## 1339 3 1.000000e+00 1.00000000
## 1340 1 1.000000e+00 1.00000000
## 1341 2 1.000000e+00 1.00000000
## 1342 3 1.000000e+00 1.00000000
## 1343 6 1.000000e+00 1.00000000
## 1344 4 1.000000e+00 1.00000000
## 1345 6 1.000000e+00 1.00000000
## 1346 2 1.000000e+00 1.00000000
## 1347 9 1.000000e+00 1.00000000
## 1348 2 1.000000e+00 1.00000000
## 1349 1 1.000000e+00 1.00000000
## 1350 97 1.000000e+00 1.00000000
## 1351 2 1.000000e+00 1.00000000
## 1352 1 1.000000e+00 1.00000000
## 1353 5 1.000000e+00 1.00000000
## 1354 10 1.000000e+00 1.00000000
## 1355 1 1.000000e+00 1.00000000
## 1356 6 1.000000e+00 1.00000000
## 1357 7 1.000000e+00 1.00000000
## 1358 6 1.000000e+00 1.00000000
## 1359 13 1.000000e+00 1.00000000
## 1360 21 1.000000e+00 1.00000000
## 1361 3 1.000000e+00 1.00000000
## 1362 3 1.000000e+00 1.00000000
## 1363 6 1.000000e+00 1.00000000
## 1364 1 1.000000e+00 1.00000000
## 1365 1 1.000000e+00 1.00000000
## 1366 6 1.000000e+00 1.00000000
## 1367 3 1.000000e+00 1.00000000
## 1368 3 1.000000e+00 1.00000000
## 1369 2 1.000000e+00 1.00000000
## 1370 5 1.000000e+00 1.00000000
## 1371 4 1.000000e+00 1.00000000
## 1372 2 1.000000e+00 1.00000000
## 1373 7 1.000000e+00 1.00000000
## 1374 1 1.000000e+00 1.00000000
## 1375 1 1.000000e+00 1.00000000
## 1376 3 1.000000e+00 1.00000000
## 1377 1 1.000000e+00 1.00000000
## 1378 2 1.000000e+00 1.00000000
## 1379 27 1.000000e+00 1.00000000
## 1380 15 1.000000e+00 1.00000000
## 1381 8 1.000000e+00 1.00000000
## 1382 3 1.000000e+00 1.00000000
## 1383 2 1.000000e+00 1.00000000
## 1384 12 1.000000e+00 1.00000000
## 1385 3 1.000000e+00 1.00000000
## 1386 4 1.000000e+00 1.00000000
## 1387 2 1.000000e+00 1.00000000
## 1388 1 1.000000e+00 1.00000000
## 1389 1 1.000000e+00 1.00000000
## 1390 8 1.000000e+00 1.00000000
## 1391 1 1.000000e+00 1.00000000
## 1392 3 1.000000e+00 1.00000000
## 1393 1 1.000000e+00 1.00000000
## 1394 3 1.000000e+00 1.00000000
## 1395 4 1.000000e+00 1.00000000
## 1396 4 1.000000e+00 1.00000000
## 1397 4 1.000000e+00 1.00000000
## 1398 3 1.000000e+00 1.00000000
## 1399 3 1.000000e+00 1.00000000
## 1400 5 1.000000e+00 1.00000000
## 1401 3 1.000000e+00 1.00000000
## 1402 1 1.000000e+00 1.00000000
## 1403 7 1.000000e+00 1.00000000
## 1404 2 1.000000e+00 1.00000000
## 1405 2 1.000000e+00 1.00000000
## 1406 2 1.000000e+00 1.00000000
## 1407 2 1.000000e+00 1.00000000
## 1408 167 1.000000e+00 1.00000000
## 1409 1 1.000000e+00 1.00000000
## 1410 1 1.000000e+00 1.00000000
## 1411 9 1.000000e+00 1.00000000
## 1412 2 1.000000e+00 1.00000000
## 1413 1 1.000000e+00 1.00000000
## 1414 9 1.000000e+00 1.00000000
## 1415 4 1.000000e+00 1.00000000
## 1416 7 1.000000e+00 1.00000000
## 1417 4 1.000000e+00 1.00000000
## 1418 5 1.000000e+00 1.00000000
## 1419 2 1.000000e+00 1.00000000
## 1420 2 1.000000e+00 1.00000000
## 1421 9 1.000000e+00 1.00000000
## 1422 1 1.000000e+00 1.00000000
## 1423 5 1.000000e+00 1.00000000
## 1424 2 1.000000e+00 1.00000000
## 1425 1 1.000000e+00 1.00000000
## 1426 1 1.000000e+00 1.00000000
## 1427 1 1.000000e+00 1.00000000
## 1428 2 1.000000e+00 1.00000000
## 1429 6 1.000000e+00 1.00000000
## 1430 1 1.000000e+00 1.00000000
## 1431 7 1.000000e+00 1.00000000
## 1432 16 1.000000e+00 1.00000000
## 1433 1 1.000000e+00 1.00000000
## 1434 7 1.000000e+00 1.00000000
## 1435 1 1.000000e+00 1.00000000
## 1436 4 1.000000e+00 1.00000000
## 1437 2 1.000000e+00 1.00000000
## 1438 1 1.000000e+00 1.00000000
## 1439 10 1.000000e+00 1.00000000
## 1440 3 1.000000e+00 1.00000000
## 1441 2 1.000000e+00 1.00000000
## 1442 2 1.000000e+00 1.00000000
## 1443 2 1.000000e+00 1.00000000
## 1444 16 1.000000e+00 1.00000000
## 1445 3 1.000000e+00 1.00000000
## 1446 1 1.000000e+00 1.00000000
## 1447 5 1.000000e+00 1.00000000
## 1448 21 1.000000e+00 1.00000000
## 1449 6 1.000000e+00 1.00000000
## 1450 3 1.000000e+00 1.00000000
## 1451 2 1.000000e+00 1.00000000
## 1452 3 1.000000e+00 1.00000000
## 1453 2 1.000000e+00 1.00000000
## 1454 1 1.000000e+00 1.00000000
## 1455 9 1.000000e+00 1.00000000
## 1456 2 1.000000e+00 1.00000000
## 1457 1 1.000000e+00 1.00000000
## 1458 2 1.000000e+00 1.00000000
## 1459 2 1.000000e+00 1.00000000
## 1460 2 1.000000e+00 1.00000000
## 1461 16 1.000000e+00 1.00000000
## 1462 6 1.000000e+00 1.00000000
## 1463 9 1.000000e+00 1.00000000
## 1464 6 1.000000e+00 1.00000000
## 1465 1 1.000000e+00 1.00000000
## 1466 7 1.000000e+00 1.00000000
## 1467 7 1.000000e+00 1.00000000
## 1468 5 1.000000e+00 1.00000000
## 1469 22 1.000000e+00 1.00000000
## 1470 1 1.000000e+00 1.00000000
## 1471 1 1.000000e+00 1.00000000
## 1472 2 1.000000e+00 1.00000000
## 1473 3 1.000000e+00 1.00000000
## 1474 3 1.000000e+00 1.00000000
## 1475 1 1.000000e+00 1.00000000
## 1476 19 1.000000e+00 1.00000000
## 1477 1 1.000000e+00 1.00000000
## 1478 1 1.000000e+00 1.00000000
## 1479 1 1.000000e+00 1.00000000
## 1480 18 1.000000e+00 1.00000000
## 1481 6 1.000000e+00 1.00000000
## 1482 5 1.000000e+00 1.00000000
## 1483 3 1.000000e+00 1.00000000
## 1484 1 1.000000e+00 1.00000000
## 1485 3 1.000000e+00 1.00000000
## 1486 1 1.000000e+00 1.00000000
## 1487 2 1.000000e+00 1.00000000
## 1488 3 1.000000e+00 1.00000000
## 1489 4 1.000000e+00 1.00000000
## 1490 7 1.000000e+00 1.00000000
## 1491 4 1.000000e+00 1.00000000
## 1492 1 1.000000e+00 1.00000000
## 1493 1 1.000000e+00 1.00000000
## 1494 2 1.000000e+00 1.00000000
## 1495 2 1.000000e+00 1.00000000
## 1496 10 1.000000e+00 1.00000000
## 1497 3 1.000000e+00 1.00000000
## 1498 4 1.000000e+00 1.00000000
## 1499 2 1.000000e+00 1.00000000
## 1500 4 1.000000e+00 1.00000000
## 1501 8 1.000000e+00 1.00000000
## 1502 8 1.000000e+00 1.00000000
## 1503 1 1.000000e+00 1.00000000
## 1504 8 1.000000e+00 1.00000000
## 1505 9 1.000000e+00 1.00000000
## 1506 3 1.000000e+00 1.00000000
## 1507 1 1.000000e+00 1.00000000
## 1508 2 1.000000e+00 1.00000000
## 1509 23 1.000000e+00 1.00000000
## 1510 29 1.000000e+00 1.00000000
## 1511 4 1.000000e+00 1.00000000
## 1512 8 1.000000e+00 1.00000000
## 1513 1 1.000000e+00 1.00000000
## 1514 1 1.000000e+00 1.00000000
## 1515 1 1.000000e+00 1.00000000
## 1516 4 1.000000e+00 1.00000000
## 1517 16 1.000000e+00 1.00000000
## 1518 5 1.000000e+00 1.00000000
## 1519 1 1.000000e+00 1.00000000
## 1520 3 1.000000e+00 1.00000000
## 1521 5 1.000000e+00 1.00000000
## 1522 2 1.000000e+00 1.00000000
## 1523 3 1.000000e+00 1.00000000
## 1524 2 1.000000e+00 1.00000000
## 1525 2 1.000000e+00 1.00000000
## 1526 2 1.000000e+00 1.00000000
## 1527 2 1.000000e+00 1.00000000
## 1528 3 1.000000e+00 1.00000000
## 1529 1 1.000000e+00 1.00000000
## 1530 2 1.000000e+00 1.00000000
## 1531 2 1.000000e+00 1.00000000
## 1532 7 1.000000e+00 1.00000000
## 1533 1 1.000000e+00 1.00000000
## 1534 1 1.000000e+00 1.00000000
## 1535 3 1.000000e+00 1.00000000
## 1536 4 1.000000e+00 1.00000000
## 1537 3 1.000000e+00 1.00000000
## 1538 1 1.000000e+00 1.00000000
## 1539 1 1.000000e+00 1.00000000
## 1540 1 1.000000e+00 1.00000000
## 1541 2 1.000000e+00 1.00000000
## 1542 7 1.000000e+00 1.00000000
## 1543 7 1.000000e+00 1.00000000
## 1544 4 1.000000e+00 1.00000000
## 1545 1 1.000000e+00 1.00000000
## 1546 20 1.000000e+00 1.00000000
## 1547 1 1.000000e+00 1.00000000
## 1548 6 1.000000e+00 1.00000000
## 1549 1 1.000000e+00 1.00000000
## 1550 2 1.000000e+00 1.00000000
## 1551 5 1.000000e+00 1.00000000
## 1552 7 1.000000e+00 1.00000000
## 1553 1 1.000000e+00 1.00000000
## 1554 1 1.000000e+00 1.00000000
## 1555 4 1.000000e+00 1.00000000
## 1556 2 1.000000e+00 1.00000000
## 1557 22 1.000000e+00 1.00000000
## 1558 1 1.000000e+00 1.00000000
## 1559 1 1.000000e+00 1.00000000
## 1560 5 1.000000e+00 1.00000000
## 1561 5 1.000000e+00 1.00000000
## 1562 6 1.000000e+00 1.00000000
## 1563 25 1.000000e+00 1.00000000
## 1564 6 1.000000e+00 1.00000000
## 1565 14 1.000000e+00 1.00000000
## 1566 3 1.000000e+00 1.00000000
## 1567 2 1.000000e+00 1.00000000
## 1568 6 1.000000e+00 1.00000000
## 1569 1 1.000000e+00 1.00000000
## 1570 2 1.000000e+00 1.00000000
## 1571 5 1.000000e+00 1.00000000
## 1572 3 1.000000e+00 1.00000000
## 1573 1 1.000000e+00 1.00000000
## 1574 3 1.000000e+00 1.00000000
## 1575 1 1.000000e+00 1.00000000
## 1576 7 1.000000e+00 1.00000000
## 1577 4 1.000000e+00 1.00000000
## 1578 1 1.000000e+00 1.00000000
## 1579 12 1.000000e+00 1.00000000
## 1580 1 1.000000e+00 1.00000000
## 1581 7 1.000000e+00 1.00000000
## 1582 3 1.000000e+00 1.00000000
## 1583 7 1.000000e+00 1.00000000
## 1584 10 1.000000e+00 1.00000000
## 1585 1 1.000000e+00 1.00000000
## 1586 44 1.000000e+00 1.00000000
## 1587 1 1.000000e+00 1.00000000
## 1588 3 1.000000e+00 1.00000000
## 1589 6 1.000000e+00 1.00000000
## 1590 2 1.000000e+00 1.00000000
## 1591 2 1.000000e+00 1.00000000
## 1592 3 1.000000e+00 1.00000000
## 1593 1 1.000000e+00 1.00000000
## 1594 2 1.000000e+00 1.00000000
## 1595 2 1.000000e+00 1.00000000
## 1596 2 1.000000e+00 1.00000000
## 1597 1 1.000000e+00 1.00000000
## 1598 5 1.000000e+00 1.00000000
## 1599 2 1.000000e+00 1.00000000
## 1600 1 1.000000e+00 1.00000000
## 1601 10 1.000000e+00 1.00000000
## 1602 1 1.000000e+00 1.00000000
## 1603 3 1.000000e+00 1.00000000
## 1604 2 1.000000e+00 1.00000000
## 1605 22 1.000000e+00 1.00000000
## 1606 6 1.000000e+00 1.00000000
## 1607 2 1.000000e+00 1.00000000
## 1608 4 1.000000e+00 1.00000000
## 1609 3 1.000000e+00 1.00000000
## 1610 1 1.000000e+00 1.00000000
## 1611 1 1.000000e+00 1.00000000
## 1612 36 1.000000e+00 1.00000000
## 1613 7 1.000000e+00 1.00000000
## 1614 20 1.000000e+00 1.00000000
## 1615 8 1.000000e+00 1.00000000
## 1616 1 1.000000e+00 1.00000000
## 1617 5 1.000000e+00 1.00000000
## 1618 22 1.000000e+00 1.00000000
## 1619 1 1.000000e+00 1.00000000
## 1620 1 1.000000e+00 1.00000000
## 1621 3 1.000000e+00 1.00000000
## 1622 8 1.000000e+00 1.00000000
## 1623 2 1.000000e+00 1.00000000
## 1624 1 1.000000e+00 1.00000000
## 1625 5 1.000000e+00 1.00000000
## 1626 1 1.000000e+00 1.00000000
## 1627 3 1.000000e+00 1.00000000
## 1628 1 1.000000e+00 1.00000000
## 1629 1 1.000000e+00 1.00000000
## 1630 1 1.000000e+00 1.00000000
## 1631 1 1.000000e+00 1.00000000
## 1632 5 1.000000e+00 1.00000000
## 1633 4 1.000000e+00 1.00000000
## 1634 4 1.000000e+00 1.00000000
## 1635 1 1.000000e+00 1.00000000
## 1636 7 1.000000e+00 1.00000000
## 1637 1 1.000000e+00 1.00000000
## 1638 3 1.000000e+00 1.00000000
## 1639 9 1.000000e+00 1.00000000
## 1640 3 1.000000e+00 1.00000000
## 1641 3 1.000000e+00 1.00000000
## 1642 3 1.000000e+00 1.00000000
## 1643 8 1.000000e+00 1.00000000
## 1644 1 1.000000e+00 1.00000000
## 1645 1 1.000000e+00 1.00000000
## 1646 9 1.000000e+00 1.00000000
## 1647 1 1.000000e+00 1.00000000
## 1648 2 1.000000e+00 1.00000000
## 1649 2 1.000000e+00 1.00000000
## 1650 18 1.000000e+00 1.00000000
## 1651 17 1.000000e+00 1.00000000
## 1652 1 1.000000e+00 1.00000000
## 1653 1 1.000000e+00 1.00000000
## 1654 1 1.000000e+00 1.00000000
## 1655 4 1.000000e+00 1.00000000
## 1656 4 1.000000e+00 1.00000000
## 1657 2 1.000000e+00 1.00000000
## 1658 2 1.000000e+00 1.00000000
## 1659 2 1.000000e+00 1.00000000
## 1660 3 1.000000e+00 1.00000000
## 1661 1 1.000000e+00 1.00000000
## 1662 1 1.000000e+00 1.00000000
## 1663 2 1.000000e+00 1.00000000
## 1664 1 1.000000e+00 1.00000000
## 1665 1 1.000000e+00 1.00000000
## 1666 1 1.000000e+00 1.00000000
## 1667 1 1.000000e+00 1.00000000
## 1668 1 1.000000e+00 1.00000000
## 1669 3 1.000000e+00 1.00000000
## 1670 1 1.000000e+00 1.00000000
## 1671 1 1.000000e+00 1.00000000
## 1672 2 1.000000e+00 1.00000000
## 1673 1 1.000000e+00 1.00000000
## 1674 4 1.000000e+00 1.00000000
## 1675 5 1.000000e+00 1.00000000
## 1676 10 1.000000e+00 1.00000000
## 1677 4 1.000000e+00 1.00000000
## 1678 5 1.000000e+00 1.00000000
## 1679 1 1.000000e+00 1.00000000
## 1680 8 1.000000e+00 1.00000000
## 1681 1 1.000000e+00 1.00000000
## 1682 1 1.000000e+00 1.00000000
## 1683 3 1.000000e+00 1.00000000
## 1684 39 1.000000e+00 1.00000000
## 1685 5 1.000000e+00 1.00000000
## 1686 3 1.000000e+00 1.00000000
## 1687 3 1.000000e+00 1.00000000
## 1688 1 1.000000e+00 1.00000000
## 1689 3 1.000000e+00 1.00000000
## 1690 7 1.000000e+00 1.00000000
## 1691 2 1.000000e+00 1.00000000
## 1692 1 1.000000e+00 1.00000000
## 1693 1 1.000000e+00 1.00000000
## 1694 1 1.000000e+00 1.00000000
## 1695 1 1.000000e+00 1.00000000
## 1696 3 1.000000e+00 1.00000000
## 1697 2 1.000000e+00 1.00000000
## 1698 2 1.000000e+00 1.00000000
## 1699 3 1.000000e+00 1.00000000
## 1700 4 1.000000e+00 1.00000000
## 1701 2 1.000000e+00 1.00000000
## 1702 2 1.000000e+00 1.00000000
## 1703 4 1.000000e+00 1.00000000
## 1704 2 1.000000e+00 1.00000000
## 1705 2 1.000000e+00 1.00000000
## 1706 2 1.000000e+00 1.00000000
## 1707 2 1.000000e+00 1.00000000
## 1708 1 1.000000e+00 1.00000000
## 1709 3 1.000000e+00 1.00000000
## 1710 1 1.000000e+00 1.00000000
## 1711 2 1.000000e+00 1.00000000
## 1712 5 1.000000e+00 1.00000000
## 1713 2 1.000000e+00 1.00000000
## 1714 5 1.000000e+00 1.00000000
## 1715 4 1.000000e+00 1.00000000
## 1716 3 1.000000e+00 1.00000000
## 1717 1 1.000000e+00 1.00000000
## 1718 3 1.000000e+00 1.00000000
## 1719 1 1.000000e+00 1.00000000
## 1720 1 1.000000e+00 1.00000000
## 1721 4 1.000000e+00 1.00000000
## 1722 1 1.000000e+00 1.00000000
## 1723 3 1.000000e+00 1.00000000
## 1724 10 1.000000e+00 1.00000000
## 1725 1 1.000000e+00 1.00000000
## 1726 1 1.000000e+00 1.00000000
## 1727 3 1.000000e+00 1.00000000
## 1728 1 1.000000e+00 1.00000000
bp <- res$`GO Molecular Function`
head(bp)
## ID
## 1 GO:0032182
## 2 GO:0043130
## 3 GO:0016538
## 4 GO:0005087
## 5 GO:0003729
## 6 GO:0031490
## name
## 1 ubiquitin-like protein binding
## 2 ubiquitin binding
## 3 cyclin-dependent protein serine/threonine kinase regulator activity
## 4 Ran guanyl-nucleotide exchange factor activity
## 5 mRNA binding
## 6 chromatin DNA binding
## Hyper_Total_Regions Hyper_Expected Hyper_Foreground_Region_Hits
## 1 33 7.170119 15
## 2 33 7.170119 15
## 3 8 1.738211 6
## 4 6 1.303658 5
## 5 47 10.211990 19
## 6 34 7.387395 15
## Hyper_Fold_Enrichment Hyper_Region_Set_Coverage Hyper_Term_Region_Coverage
## 1 2.092015 0.03042596 0.4545455
## 2 2.092015 0.03042596 0.4545455
## 3 3.451826 0.01217039 0.7500000
## 4 3.835362 0.01014199 0.8333333
## 5 1.860558 0.03853955 0.4042553
## 6 2.030486 0.03042596 0.4411765
## Hyper_Foreground_Gene_Hits Hyper_Background_Gene_Hits Total_Genes_Annotated
## 1 7 12 121
## 2 7 12 103
## 3 3 3 29
## 4 1 1 4
## 5 9 17 193
## 6 5 11 104
## Hyper_Raw_PValue Hyper_Adjp_BH
## 1 0.001892007 1
## 2 0.001892007 1
## 3 0.001914967 1
## 4 0.002345881 1
## 5 0.002669516 1
## 6 0.002722739 1
bp
## ID
## 1 GO:0032182
## 2 GO:0043130
## 3 GO:0016538
## 4 GO:0005087
## 5 GO:0003729
## 6 GO:0031490
## 7 GO:0043566
## 8 GO:0003697
## 9 GO:0003725
## 10 GO:0003723
## 11 GO:0003873
## 12 GO:0004331
## 13 GO:0008443
## 14 GO:0050308
## 15 GO:0061578
## 16 GO:1904265
## 17 GO:1904455
## 18 GO:0017069
## 19 GO:0070530
## 20 GO:0031593
## 21 GO:0003730
## 22 GO:0008143
## 23 GO:0045503
## 24 GO:0070717
## 25 GO:0019211
## 26 GO:0072542
## 27 GO:0008157
## 28 GO:0005385
## 29 GO:0008187
## 30 GO:0046915
## 31 GO:0003727
## 32 GO:0031492
## 33 GO:0001097
## 34 GO:0003899
## 35 GO:0017130
## 36 GO:0019237
## 37 GO:0034046
## 38 GO:0034062
## 39 GO:0051010
## 40 GO:0099122
## 41 GO:0016853
## 42 GO:0043199
## 43 GO:0008200
## 44 GO:0016248
## 45 GO:0008094
## 46 GO:0004351
## 47 GO:0004356
## 48 GO:0001888
## 49 GO:0003836
## 50 GO:0004127
## 51 GO:0005068
## 52 GO:0005158
## 53 GO:0005165
## 54 GO:0005167
## 55 GO:0005168
## 56 GO:0008118
## 57 GO:0008373
## 58 GO:0008569
## 59 GO:0009041
## 60 GO:0015278
## 61 GO:0030295
## 62 GO:0035248
## 63 GO:0043539
## 64 GO:0047237
## 65 GO:0052856
## 66 GO:0052857
## 67 GO:0061575
## 68 GO:0072345
## 69 GO:0097153
## 70 GO:0097200
## 71 GO:0099604
## 72 GO:0019208
## 73 GO:0003676
## 74 GO:0019887
## 75 GO:0019888
## 76 GO:0048408
## 77 GO:0005085
## 78 GO:0001091
## 79 GO:0003678
## 80 GO:0004003
## 81 GO:0004523
## 82 GO:0008297
## 83 GO:0008309
## 84 GO:0016891
## 85 GO:0016893
## 86 GO:0045145
## 87 GO:0048256
## 88 GO:0051908
## 89 GO:0098821
## 90 GO:1990459
## 91 GO:0019855
## 92 GO:0051920
## 93 GO:1990825
## 94 GO:0045502
## 95 GO:0035591
## 96 GO:0060090
## 97 GO:0042393
## 98 GO:0004197
## 99 GO:0008536
## 100 GO:0016595
## 101 GO:0016796
## 102 GO:1990841
## 103 GO:0001078
## 104 GO:0004849
## 105 GO:0005246
## 106 GO:0033300
## 107 GO:0042910
## 108 GO:0050145
## 109 GO:0055056
## 110 GO:0004520
## 111 GO:0036002
## 112 GO:1990380
## 113 GO:0001069
## 114 GO:0003688
## 115 GO:0004577
## 116 GO:0005217
## 117 GO:0016530
## 118 GO:0016531
## 119 GO:0016532
## 120 GO:0017056
## 121 GO:0017116
## 122 GO:0033677
## 123 GO:0033680
## 124 GO:0033681
## 125 GO:0034458
## 126 GO:0034459
## 127 GO:0035197
## 128 GO:0036310
## 129 GO:0036470
## 130 GO:0036478
## 131 GO:0036524
## 132 GO:0043138
## 133 GO:0043140
## 134 GO:0043142
## 135 GO:0044388
## 136 GO:0045142
## 137 GO:0045340
## 138 GO:0045505
## 139 GO:0047429
## 140 GO:0051959
## 141 GO:0061676
## 142 GO:0071208
## 143 GO:0071209
## 144 GO:0097617
## 145 GO:1903136
## 146 GO:1905172
## 147 GO:1990381
## 148 GO:1990518
## 149 GO:0031625
## 150 GO:0044389
## 151 GO:0030145
## 152 GO:0030674
## 153 GO:0031491
## 154 GO:0004527
## 155 GO:0005031
## 156 GO:0008649
## 157 GO:0008173
## 158 GO:0008266
## 159 GO:0016835
## 160 GO:0016836
## 161 GO:0019206
## 162 GO:0000982
## 163 GO:0099106
## 164 GO:0005070
## 165 GO:1901363
## 166 GO:0098772
## 167 GO:0001228
## 168 GO:0015144
## 169 GO:0008613
## 170 GO:0017112
## 171 GO:0035613
## 172 GO:0036122
## 173 GO:1901618
## 174 GO:0003755
## 175 GO:0016859
## 176 GO:0097159
## 177 GO:0072509
## 178 GO:0003682
## 179 GO:0008375
## 180 GO:0019200
## 181 GO:0051183
## 182 GO:0000175
## 183 GO:0000179
## 184 GO:0004861
## 185 GO:0005154
## 186 GO:0005159
## 187 GO:0005283
## 188 GO:0005294
## 189 GO:0005343
## 190 GO:0005416
## 191 GO:0008408
## 192 GO:0015187
## 193 GO:0015296
## 194 GO:0015375
## 195 GO:0016433
## 196 GO:0016670
## 197 GO:0016854
## 198 GO:0016896
## 199 GO:0016971
## 200 GO:0016972
## 201 GO:0017160
## 202 GO:0019870
## 203 GO:0030971
## 204 GO:0031419
## 205 GO:0038021
## 206 GO:1903135
## 207 GO:0003690
## 208 GO:0016831
## 209 GO:0016247
## 210 GO:0004386
## 211 GO:0016779
## 212 GO:0001205
## 213 GO:0002094
## 214 GO:0003876
## 215 GO:0003909
## 216 GO:0003910
## 217 GO:0003950
## 218 GO:0003977
## 219 GO:0004333
## 220 GO:0004535
## 221 GO:0004729
## 222 GO:0004818
## 223 GO:0004829
## 224 GO:0004830
## 225 GO:0005047
## 226 GO:0005119
## 227 GO:0005372
## 228 GO:0008158
## 229 GO:0008169
## 230 GO:0008235
## 231 GO:0008312
## 232 GO:0008379
## 233 GO:0009383
## 234 GO:0009982
## 235 GO:0015166
## 236 GO:0015168
## 237 GO:0015204
## 238 GO:0015250
## 239 GO:0015254
## 240 GO:0015265
## 241 GO:0016004
## 242 GO:0016434
## 243 GO:0016504
## 244 GO:0016634
## 245 GO:0016722
## 246 GO:0016723
## 247 GO:0016866
## 248 GO:0019961
## 249 GO:0019964
## 250 GO:0030331
## 251 GO:0033787
## 252 GO:0034236
## 253 GO:0034511
## 254 GO:0042887
## 255 GO:0042947
## 256 GO:0043047
## 257 GO:0050733
## 258 GO:0055131
## 259 GO:0060229
## 260 GO:0070181
## 261 GO:0071568
## 262 GO:0097108
## 263 GO:0098505
## 264 GO:0098847
## 265 GO:1990404
## 266 GO:1990583
## 267 GO:0016874
## 268 GO:0008409
## 269 GO:0016895
## 270 GO:0019842
## 271 GO:0035258
## 272 GO:0035312
## 273 GO:0070034
## 274 GO:0003779
## 275 GO:0043021
## 276 GO:0003756
## 277 GO:0004550
## 278 GO:0004812
## 279 GO:0019843
## 280 GO:0032947
## 281 GO:0005088
## 282 GO:0008134
## 283 GO:0016829
## 284 GO:0019207
## 285 GO:0004402
## 286 GO:0005227
## 287 GO:0005326
## 288 GO:0005328
## 289 GO:0008080
## 290 GO:0008179
## 291 GO:0016671
## 292 GO:0019209
## 293 GO:0030291
## 294 GO:0034212
## 295 GO:0034237
## 296 GO:0035033
## 297 GO:0042800
## 298 GO:0044183
## 299 GO:0046811
## 300 GO:0061733
## 301 GO:1905538
## 302 GO:0051119
## 303 GO:0005355
## 304 GO:0015145
## 305 GO:0015149
## 306 GO:0016860
## 307 GO:0004521
## 308 GO:0004659
## 309 GO:0005507
## 310 GO:0019212
## 311 GO:0051428
## 312 GO:0004857
## 313 GO:0001227
## 314 GO:0001085
## 315 GO:0019900
## 316 GO:0030234
## 317 GO:0000981
## 318 GO:0004540
## 319 GO:0016597
## 320 GO:0016830
## 321 GO:0008175
## 322 GO:0016684
## 323 GO:0051018
## 324 GO:0004536
## 325 GO:0004559
## 326 GO:0004571
## 327 GO:0005262
## 328 GO:0008026
## 329 GO:0015923
## 330 GO:0015924
## 331 GO:0060590
## 332 GO:1990782
## 333 GO:0019901
## 334 GO:0003777
## 335 GO:0019903
## 336 GO:0004532
## 337 GO:0004864
## 338 GO:0008097
## 339 GO:0015129
## 340 GO:0015130
## 341 GO:0016407
## 342 GO:0016410
## 343 GO:0043274
## 344 GO:0043425
## 345 GO:0043560
## 346 GO:0046875
## 347 GO:1990948
## 348 GO:0000700
## 349 GO:0000701
## 350 GO:0002161
## 351 GO:0003954
## 352 GO:0004616
## 353 GO:0004661
## 354 GO:0004663
## 355 GO:0004815
## 356 GO:0005243
## 357 GO:0005520
## 358 GO:0008137
## 359 GO:0008318
## 360 GO:0008420
## 361 GO:0016018
## 362 GO:0016655
## 363 GO:0016763
## 364 GO:0016799
## 365 GO:0016886
## 366 GO:0019104
## 367 GO:0019119
## 368 GO:0019239
## 369 GO:0019797
## 370 GO:0019798
## 371 GO:0022829
## 372 GO:0030372
## 373 GO:0031543
## 374 GO:0031544
## 375 GO:0032404
## 376 GO:0032407
## 377 GO:0036042
## 378 GO:0046961
## 379 GO:0047276
## 380 GO:0050560
## 381 GO:0060703
## 382 GO:0070569
## 383 GO:0071949
## 384 GO:0090560
## 385 GO:1903763
## 386 GO:0035198
## 387 GO:0035257
## 388 GO:0008234
## 389 GO:0019902
## 390 GO:0019899
## 391 GO:0017124
## 392 GO:0008047
## 393 GO:0015459
## 394 GO:0016627
## 395 GO:0004175
## 396 GO:0051020
## 397 GO:0005521
## 398 GO:0000978
## 399 GO:0000987
## 400 GO:0001159
## 401 GO:0017016
## 402 GO:0047485
## 403 GO:0016879
## 404 GO:0051117
## 405 GO:0001077
## 406 GO:0016491
## 407 GO:0008233
## 408 GO:0048037
## 409 GO:0051427
## 410 GO:0016887
## 411 GO:0001223
## 412 GO:0001671
## 413 GO:0004601
## 414 GO:0015370
## 415 GO:0022839
## 416 GO:0035064
## 417 GO:0044390
## 418 GO:0046899
## 419 GO:0050681
## 420 GO:0055105
## 421 GO:1990837
## 422 GO:0000062
## 423 GO:0008106
## 424 GO:0008376
## 425 GO:0003677
## 426 GO:0050662
## 427 GO:0008194
## 428 GO:0016667
## 429 GO:0002020
## 430 GO:0015035
## 431 GO:0016435
## 432 GO:0046906
## 433 GO:0061134
## 434 GO:0070039
## 435 GO:0000104
## 436 GO:0000246
## 437 GO:0004012
## 438 GO:0004032
## 439 GO:0004301
## 440 GO:0004439
## 441 GO:0004679
## 442 GO:0004827
## 443 GO:0005149
## 444 GO:0005487
## 445 GO:0005548
## 446 GO:0008172
## 447 GO:0008238
## 448 GO:0008705
## 449 GO:0008843
## 450 GO:0015174
## 451 GO:0015181
## 452 GO:0015189
## 453 GO:0016801
## 454 GO:0016803
## 455 GO:0019215
## 456 GO:0031418
## 457 GO:0034593
## 458 GO:0034595
## 459 GO:0035035
## 460 GO:0042030
## 461 GO:0042284
## 462 GO:0042605
## 463 GO:0042954
## 464 GO:0043295
## 465 GO:0043532
## 466 GO:0044769
## 467 GO:0046030
## 468 GO:0048027
## 469 GO:0050614
## 470 GO:0052658
## 471 GO:0052659
## 472 GO:0052743
## 473 GO:0052745
## 474 GO:0052866
## 475 GO:0061631
## 476 GO:0061650
## 477 GO:0071253
## 478 GO:0086040
## 479 GO:0098641
## 480 GO:1900750
## 481 GO:0004712
## 482 GO:0016209
## 483 GO:0070851
## 484 GO:0000049
## 485 GO:0003724
## 486 GO:0004004
## 487 GO:0004697
## 488 GO:0004722
## 489 GO:0008186
## 490 GO:0015297
## 491 GO:0055106
## 492 GO:0071889
## 493 GO:0003735
## 494 GO:0003774
## 495 GO:0031267
## 496 GO:0004745
## 497 GO:0015036
## 498 GO:0016423
## 499 GO:0017017
## 500 GO:0033549
## 501 GO:0048273
## 502 GO:0048306
## 503 GO:0052650
## 504 GO:0099094
## 505 GO:0004843
## 506 GO:0019838
## 507 GO:0051082
## 508 GO:1901681
## 509 GO:0004518
## 510 GO:0004033
## 511 GO:0008138
## 512 GO:0019201
## 513 GO:0050660
## 514 GO:0070491
## 515 GO:0004222
## 516 GO:0046982
## 517 GO:0019205
## 518 GO:0042562
## 519 GO:0001618
## 520 GO:0005488
## 521 GO:0004727
## 522 GO:0004860
## 523 GO:0005225
## 524 GO:0005245
## 525 GO:0008028
## 526 GO:0016628
## 527 GO:0019210
## 528 GO:0051213
## 529 GO:1990939
## 530 GO:0004675
## 531 GO:0015026
## 532 GO:0017137
## 533 GO:0016757
## 534 GO:0070011
## 535 GO:0051059
## 536 GO:0000988
## 537 GO:0000989
## 538 GO:0002039
## 539 GO:0008237
## 540 GO:0004035
## 541 GO:0004040
## 542 GO:0004161
## 543 GO:0004337
## 544 GO:0004668
## 545 GO:0005057
## 546 GO:0005451
## 547 GO:0005518
## 548 GO:0005540
## 549 GO:0008020
## 550 GO:0009881
## 551 GO:0010997
## 552 GO:0015298
## 553 GO:0015299
## 554 GO:0015385
## 555 GO:0015386
## 556 GO:0015491
## 557 GO:0016651
## 558 GO:0017064
## 559 GO:0022821
## 560 GO:0030544
## 561 GO:0030620
## 562 GO:0030742
## 563 GO:0031435
## 564 GO:0032266
## 565 GO:0032427
## 566 GO:0034191
## 567 GO:0034647
## 568 GO:0042974
## 569 GO:0043422
## 570 GO:0047372
## 571 GO:0047499
## 572 GO:0048029
## 573 GO:0050613
## 574 GO:0051021
## 575 GO:0051022
## 576 GO:0051287
## 577 GO:0051539
## 578 GO:0070087
## 579 GO:0102077
## 580 GO:0103073
## 581 GO:1901707
## 582 GO:0000993
## 583 GO:0043175
## 584 GO:0008168
## 585 GO:0016741
## 586 GO:0009055
## 587 GO:0019783
## 588 GO:0031406
## 589 GO:0036459
## 590 GO:0043177
## 591 GO:0101005
## 592 GO:0042802
## 593 GO:0000287
## 594 GO:0003705
## 595 GO:0001099
## 596 GO:0016614
## 597 GO:0015179
## 598 GO:0008757
## 599 GO:0001221
## 600 GO:0015294
## 601 GO:0051721
## 602 GO:0019787
## 603 GO:0003700
## 604 GO:0000977
## 605 GO:0001012
## 606 GO:0070063
## 607 GO:0005524
## 608 GO:0004725
## 609 GO:0005342
## 610 GO:0016765
## 611 GO:0016798
## 612 GO:0046943
## 613 GO:0004519
## 614 GO:0005179
## 615 GO:0005319
## 616 GO:0015450
## 617 GO:0019894
## 618 GO:0052689
## 619 GO:0003883
## 620 GO:0003951
## 621 GO:0004016
## 622 GO:0004019
## 623 GO:0004489
## 624 GO:0004623
## 625 GO:0016706
## 626 GO:0016813
## 627 GO:0016814
## 628 GO:0016849
## 629 GO:0017025
## 630 GO:0022840
## 631 GO:0022841
## 632 GO:0030515
## 633 GO:0031996
## 634 GO:0034190
## 635 GO:0036442
## 636 GO:0036505
## 637 GO:0042500
## 638 GO:0042834
## 639 GO:0042988
## 640 GO:0044548
## 641 GO:0050750
## 642 GO:0070325
## 643 GO:0070628
## 644 GO:0071890
## 645 GO:0099516
## 646 GO:0008171
## 647 GO:0008432
## 648 GO:0015085
## 649 GO:0015171
## 650 GO:0015276
## 651 GO:0003712
## 652 GO:0004721
## 653 GO:0019955
## 654 GO:0004653
## 655 GO:0004866
## 656 GO:0015175
## 657 GO:0030414
## 658 GO:0032451
## 659 GO:0035497
## 660 GO:0061135
## 661 GO:0097110
## 662 GO:0046983
## 663 GO:0016616
## 664 GO:0043621
## 665 GO:0016791
## 666 GO:0045296
## 667 GO:0046914
## 668 GO:0005198
## 669 GO:0000975
## 670 GO:0001067
## 671 GO:0016776
## 672 GO:0030554
## 673 GO:0032559
## 674 GO:0061630
## 675 GO:0061659
## 676 GO:0043565
## 677 GO:0004842
## 678 GO:0008170
## 679 GO:0035091
## 680 GO:0000979
## 681 GO:0001882
## 682 GO:0001883
## 683 GO:0032549
## 684 GO:0032550
## 685 GO:0035639
## 686 GO:0001076
## 687 GO:0044212
## 688 GO:0001047
## 689 GO:0005525
## 690 GO:0019001
## 691 GO:0032561
## 692 GO:0004553
## 693 GO:0008320
## 694 GO:0015266
## 695 GO:0022884
## 696 GO:0003684
## 697 GO:0003823
## 698 GO:0003962
## 699 GO:0004123
## 700 GO:0004568
## 701 GO:0004602
## 702 GO:0004634
## 703 GO:0004869
## 704 GO:0005242
## 705 GO:0005247
## 706 GO:0005504
## 707 GO:0008061
## 708 GO:0009975
## 709 GO:0017154
## 710 GO:0019003
## 711 GO:0042809
## 712 GO:0043027
## 713 GO:0043028
## 714 GO:0043121
## 715 GO:0044540
## 716 GO:0047982
## 717 GO:0048406
## 718 GO:0080146
## 719 GO:0004198
## 720 GO:0016298
## 721 GO:0031072
## 722 GO:0042301
## 723 GO:0070412
## 724 GO:0035326
## 725 GO:0042623
## 726 GO:0017076
## 727 GO:0032553
## 728 GO:0032555
## 729 GO:0042826
## 730 GO:0001784
## 731 GO:0001848
## 732 GO:0004017
## 733 GO:0016705
## 734 GO:0016922
## 735 GO:0045309
## 736 GO:0072341
## 737 GO:0000980
## 738 GO:0008514
## 739 GO:0015078
## 740 GO:0000983
## 741 GO:0004190
## 742 GO:0004984
## 743 GO:0005545
## 744 GO:0005546
## 745 GO:0008144
## 746 GO:0016290
## 747 GO:0030170
## 748 GO:0033293
## 749 GO:0043023
## 750 GO:0050661
## 751 GO:0051536
## 752 GO:0070001
## 753 GO:1901505
## 754 GO:0000976
## 755 GO:0000166
## 756 GO:1901265
## 757 GO:0051219
## 758 GO:0015291
## 759 GO:0050839
## 760 GO:0001102
## 761 GO:0015248
## 762 GO:1901981
## 763 GO:0030943
## 764 GO:0043167
## 765 GO:0097367
## 766 GO:0008565
## 767 GO:0016278
## 768 GO:0016279
## 769 GO:0018024
## 770 GO:0004620
## 771 GO:0010857
## 772 GO:0016645
## 773 GO:0016646
## 774 GO:0019150
## 775 GO:0020037
## 776 GO:0030346
## 777 GO:0032453
## 778 GO:0034648
## 779 GO:0035250
## 780 GO:0046966
## 781 GO:0071837
## 782 GO:0098631
## 783 GO:0098632
## 784 GO:0017111
## 785 GO:0019904
## 786 GO:0042578
## 787 GO:0042054
## 788 GO:0042803
## 789 GO:0005515
## 790 GO:0001104
## 791 GO:0016758
## 792 GO:0003824
## 793 GO:0003714
## 794 GO:0003713
## 795 GO:0005539
## 796 GO:0043168
## 797 GO:0051019
## 798 GO:0015293
## 799 GO:0019199
## 800 GO:0046332
## 801 GO:0016462
## 802 GO:0016817
## 803 GO:0016818
## 804 GO:0003841
## 805 GO:0004252
## 806 GO:0005178
## 807 GO:0005506
## 808 GO:0008121
## 809 GO:0008308
## 810 GO:0016289
## 811 GO:0016307
## 812 GO:0016411
## 813 GO:0016679
## 814 GO:0016846
## 815 GO:0035005
## 816 GO:0042162
## 817 GO:0042171
## 818 GO:0046934
## 819 GO:0047144
## 820 GO:0047617
## 821 GO:0048365
## 822 GO:0052813
## 823 GO:1902936
## 824 GO:0004674
## 825 GO:0046872
## 826 GO:0016788
## 827 GO:0022853
## 828 GO:0005048
## 829 GO:0033613
## 830 GO:0030246
## 831 GO:0004896
## 832 GO:0005201
## 833 GO:0005200
## 834 GO:0030507
## 835 GO:0031432
## 836 GO:0032452
## 837 GO:0016772
## 838 GO:0046873
## 839 GO:0005253
## 840 GO:0008276
## 841 GO:0043492
## 842 GO:0043169
## 843 GO:0015081
## 844 GO:0015405
## 845 GO:0016787
## 846 GO:0003924
## 847 GO:0016740
## 848 GO:0005254
## 849 GO:0015108
## 850 GO:0008270
## 851 GO:0001046
## 852 GO:0003743
## 853 GO:0008135
## 854 GO:0008236
## 855 GO:0008307
## 856 GO:0008378
## 857 GO:0017171
## 858 GO:0019864
## 859 GO:0019865
## 860 GO:0001105
## 861 GO:0005543
## 862 GO:0001191
## 863 GO:0008017
## 864 GO:0016747
## 865 GO:0016810
## 866 GO:0022804
## 867 GO:0022890
## 868 GO:0001653
## 869 GO:0005003
## 870 GO:0005272
## 871 GO:0008528
## 872 GO:0017048
## 873 GO:1990239
## 874 GO:0001158
## 875 GO:0036094
## 876 GO:0001190
## 877 GO:0030165
## 878 GO:0016746
## 879 GO:0016820
## 880 GO:0042626
## 881 GO:0044877
## 882 GO:0008509
## 883 GO:0005391
## 884 GO:0005484
## 885 GO:0008556
## 886 GO:0016303
## 887 GO:0016790
## 888 GO:0030374
## 889 GO:0030955
## 890 GO:0031402
## 891 GO:0031420
## 892 GO:0044325
## 893 GO:0005509
## 894 GO:0030506
## 895 GO:0016301
## 896 GO:0004714
## 897 GO:0048487
## 898 GO:0050840
## 899 GO:0004713
## 900 GO:0016773
## 901 GO:0005089
## 902 GO:0008022
## 903 GO:0015103
## 904 GO:0008374
## 905 GO:0016811
## 906 GO:0035004
## 907 GO:0043548
## 908 GO:0052742
## 909 GO:0008201
## 910 GO:0008013
## 911 GO:0033218
## 912 GO:0042277
## 913 GO:0019829
## 914 GO:0042625
## 915 GO:0008092
## 916 GO:0015267
## 917 GO:0022803
## 918 GO:0043531
## 919 GO:0051087
## 920 GO:0008289
## 921 GO:0004672
## 922 GO:0032403
## 923 GO:0019905
## 924 GO:0005496
## 925 GO:0022838
## 926 GO:0022843
## 927 GO:0005261
## 928 GO:0060589
## 929 GO:0005096
## 930 GO:0008324
## 931 GO:0000149
## 932 GO:0015662
## 933 GO:0005216
## 934 GO:0001540
## 935 GO:0051015
## 936 GO:0015631
## 937 GO:0022891
## 938 GO:0008083
## 939 GO:0005516
## 940 GO:0015077
## 941 GO:0022857
## 942 GO:0005244
## 943 GO:0022892
## 944 GO:0004888
## 945 GO:0030695
## 946 GO:0005215
## 947 GO:0005249
## 948 GO:0015075
## 949 GO:0099600
## 950 GO:0015079
## 951 GO:0038023
## 952 GO:0022836
## 953 GO:0005267
## 954 GO:0004872
## 955 GO:0005102
## 956 GO:0005125
## 957 GO:0004871
## 958 GO:0004930
## 959 GO:0005126
## 960 GO:0000010
## 961 GO:0000014
## 962 GO:0000016
## 963 GO:0000026
## 964 GO:0000030
## 965 GO:0000033
## 966 GO:0000035
## 967 GO:0000036
## 968 GO:0000048
## 969 GO:0000064
## 970 GO:0000095
## 971 GO:0000099
## 972 GO:0000121
## 973 GO:0000146
## 974 GO:0000150
## 975 GO:0000155
## 976 GO:0000170
## 977 GO:0000171
## 978 GO:0000182
## 979 GO:0000210
## 980 GO:0000213
## 981 GO:0000215
## 982 GO:0000217
## 983 GO:0000224
## 984 GO:0000225
## 985 GO:0000247
## 986 GO:0000248
## 987 GO:0000250
## 988 GO:0000252
## 989 GO:0000253
## 990 GO:0000254
## 991 GO:0000257
## 992 GO:0000268
## 993 GO:0000285
## 994 GO:0000293
## 995 GO:0000295
## 996 GO:0000298
## 997 GO:0000309
## 998 GO:0000334
## 999 GO:0000339
## 1000 GO:0000340
## 1001 GO:0000384
## 1002 GO:0000386
## 1003 GO:0000400
## 1004 GO:0000403
## 1005 GO:0000404
## 1006 GO:0000405
## 1007 GO:0000406
## 1008 GO:0000702
## 1009 GO:0000703
## 1010 GO:0000773
## 1011 GO:0000774
## 1012 GO:0000822
## 1013 GO:0000823
## 1014 GO:0000824
## 1015 GO:0000825
## 1016 GO:0000827
## 1017 GO:0000829
## 1018 GO:0000831
## 1019 GO:0000832
## 1020 GO:0000900
## 1021 GO:0000990
## 1022 GO:0000991
## 1023 GO:0000994
## 1024 GO:0000995
## 1025 GO:0000997
## 1026 GO:0001002
## 1027 GO:0001003
## 1028 GO:0001005
## 1029 GO:0001007
## 1030 GO:0001010
## 1031 GO:0001011
## 1032 GO:0001016
## 1033 GO:0001025
## 1034 GO:0001026
## 1035 GO:0001030
## 1036 GO:0001031
## 1037 GO:0001032
## 1038 GO:0001034
## 1039 GO:0001042
## 1040 GO:0001054
## 1041 GO:0001055
## 1042 GO:0001056
## 1043 GO:0001075
## 1044 GO:0001083
## 1045 GO:0001087
## 1046 GO:0001093
## 1047 GO:0001094
## 1048 GO:0001096
## 1049 GO:0001103
## 1050 GO:0001106
## 1051 GO:0001128
## 1052 GO:0001129
## 1053 GO:0001133
## 1054 GO:0001134
## 1055 GO:0001135
## 1056 GO:0001147
## 1057 GO:0001156
## 1058 GO:0001161
## 1059 GO:0001162
## 1060 GO:0001164
## 1061 GO:0001165
## 1062 GO:0001179
## 1063 GO:0001181
## 1064 GO:0001187
## 1065 GO:0001206
## 1066 GO:0001222
## 1067 GO:0001224
## 1068 GO:0001225
## 1069 GO:0001226
## 1070 GO:0001512
## 1071 GO:0001515
## 1072 GO:0001517
## 1073 GO:0001530
## 1074 GO:0001532
## 1075 GO:0001537
## 1076 GO:0001567
## 1077 GO:0001587
## 1078 GO:0001588
## 1079 GO:0001591
## 1080 GO:0001594
## 1081 GO:0001596
## 1082 GO:0001601
## 1083 GO:0001602
## 1084 GO:0001604
## 1085 GO:0001605
## 1086 GO:0001607
## 1087 GO:0001609
## 1088 GO:0001614
## 1089 GO:0001616
## 1090 GO:0001621
## 1091 GO:0001626
## 1092 GO:0001631
## 1093 GO:0001632
## 1094 GO:0001635
## 1095 GO:0001640
## 1096 GO:0001641
## 1097 GO:0001642
## 1098 GO:0001664
## 1099 GO:0001665
## 1100 GO:0001681
## 1101 GO:0001716
## 1102 GO:0001727
## 1103 GO:0001729
## 1104 GO:0001730
## 1105 GO:0001733
## 1106 GO:0001735
## 1107 GO:0001758
## 1108 GO:0001760
## 1109 GO:0001785
## 1110 GO:0001786
## 1111 GO:0001791
## 1112 GO:0001792
## 1113 GO:0001846
## 1114 GO:0001847
## 1115 GO:0001849
## 1116 GO:0001850
## 1117 GO:0001851
## 1118 GO:0001855
## 1119 GO:0001856
## 1120 GO:0001861
## 1121 GO:0001872
## 1122 GO:0001875
## 1123 GO:0001918
## 1124 GO:0001948
## 1125 GO:0001965
## 1126 GO:0001968
## 1127 GO:0001972
## 1128 GO:0002046
## 1129 GO:0002054
## 1130 GO:0002055
## 1131 GO:0002058
## 1132 GO:0002059
## 1133 GO:0002060
## 1134 GO:0002083
## 1135 GO:0002113
## 1136 GO:0002114
## 1137 GO:0002134
## 1138 GO:0002135
## 1139 GO:0002151
## 1140 GO:0002153
## 1141 GO:0002162
## 1142 GO:0002196
## 1143 GO:0002950
## 1144 GO:0003680
## 1145 GO:0003689
## 1146 GO:0003691
## 1147 GO:0003692
## 1148 GO:0003696
## 1149 GO:0003707
## 1150 GO:0003708
## 1151 GO:0003720
## 1152 GO:0003721
## 1153 GO:0003726
## 1154 GO:0003746
## 1155 GO:0003747
## 1156 GO:0003785
## 1157 GO:0003796
## 1158 GO:0003810
## 1159 GO:0003826
## 1160 GO:0003827
## 1161 GO:0003828
## 1162 GO:0003829
## 1163 GO:0003830
## 1164 GO:0003831
## 1165 GO:0003834
## 1166 GO:0003835
## 1167 GO:0003837
## 1168 GO:0003839
## 1169 GO:0003842
## 1170 GO:0003844
## 1171 GO:0003845
## 1172 GO:0003846
## 1173 GO:0003847
## 1174 GO:0003854
## 1175 GO:0003857
## 1176 GO:0003858
## 1177 GO:0003860
## 1178 GO:0003863
## 1179 GO:0003865
## 1180 GO:0003868
## 1181 GO:0003870
## 1182 GO:0003872
## 1183 GO:0003874
## 1184 GO:0003875
## 1185 GO:0003877
## 1186 GO:0003878
## 1187 GO:0003880
## 1188 GO:0003881
## 1189 GO:0003882
## 1190 GO:0003884
## 1191 GO:0003886
## 1192 GO:0003887
## 1193 GO:0003896
## 1194 GO:0003906
## 1195 GO:0003908
## 1196 GO:0003912
## 1197 GO:0003916
## 1198 GO:0003917
## 1199 GO:0003918
## 1200 GO:0003919
## 1201 GO:0003920
## 1202 GO:0003921
## 1203 GO:0003922
## 1204 GO:0003923
## 1205 GO:0003934
## 1206 GO:0003937
## 1207 GO:0003938
## 1208 GO:0003939
## 1209 GO:0003940
## 1210 GO:0003941
## 1211 GO:0003943
## 1212 GO:0003944
## 1213 GO:0003945
## 1214 GO:0003947
## 1215 GO:0003948
## 1216 GO:0003952
## 1217 GO:0003953
## 1218 GO:0003955
## 1219 GO:0003956
## 1220 GO:0003957
## 1221 GO:0003958
## 1222 GO:0003960
## 1223 GO:0003963
## 1224 GO:0003968
## 1225 GO:0003972
## 1226 GO:0003974
## 1227 GO:0003975
## 1228 GO:0003976
## 1229 GO:0003978
## 1230 GO:0003979
## 1231 GO:0003980
## 1232 GO:0003983
## 1233 GO:0003985
## 1234 GO:0003986
## 1235 GO:0003987
## 1236 GO:0003988
## 1237 GO:0003989
## 1238 GO:0003990
## 1239 GO:0003993
## 1240 GO:0003994
## 1241 GO:0003995
## 1242 GO:0003996
## 1243 GO:0003997
## 1244 GO:0003998
## 1245 GO:0003999
## 1246 GO:0004000
## 1247 GO:0004001
## 1248 GO:0004008
## 1249 GO:0004013
## 1250 GO:0004014
## 1251 GO:0004018
## 1252 GO:0004020
## 1253 GO:0004021
## 1254 GO:0004022
## 1255 GO:0004024
## 1256 GO:0004027
## 1257 GO:0004028
## 1258 GO:0004029
## 1259 GO:0004030
## 1260 GO:0004031
## 1261 GO:0004034
## 1262 GO:0004037
## 1263 GO:0004042
## 1264 GO:0004043
## 1265 GO:0004044
## 1266 GO:0004045
## 1267 GO:0004046
## 1268 GO:0004047
## 1269 GO:0004051
## 1270 GO:0004052
## 1271 GO:0004053
## 1272 GO:0004055
## 1273 GO:0004056
## 1274 GO:0004057
## 1275 GO:0004059
## 1276 GO:0004060
## 1277 GO:0004061
## 1278 GO:0004062
## 1279 GO:0004063
## 1280 GO:0004064
## 1281 GO:0004065
## 1282 GO:0004066
## 1283 GO:0004067
## 1284 GO:0004068
## 1285 GO:0004069
## 1286 GO:0004070
## 1287 GO:0004074
## 1288 GO:0004075
## 1289 GO:0004077
## 1290 GO:0004078
## 1291 GO:0004079
## 1292 GO:0004080
## 1293 GO:0004081
## 1294 GO:0004082
## 1295 GO:0004083
## 1296 GO:0004085
## 1297 GO:0004087
## 1298 GO:0004088
## 1299 GO:0004089
## 1300 GO:0004090
## 1301 GO:0004092
## 1302 GO:0004095
## 1303 GO:0004096
## 1304 GO:0004098
## 1305 GO:0004102
## 1306 GO:0004103
## 1307 GO:0004104
## 1308 GO:0004105
## 1309 GO:0004108
## 1310 GO:0004109
## 1311 GO:0004111
## 1312 GO:0004112
## 1313 GO:0004113
## 1314 GO:0004114
## 1315 GO:0004115
## 1316 GO:0004117
## 1317 GO:0004118
## 1318 GO:0004119
## 1319 GO:0004122
## 1320 GO:0004126
## 1321 GO:0004128
## 1322 GO:0004129
## 1323 GO:0004131
## 1324 GO:0004132
## 1325 GO:0004134
## 1326 GO:0004135
## 1327 GO:0004137
## 1328 GO:0004138
## 1329 GO:0004139
## 1330 GO:0004140
## 1331 GO:0004142
## 1332 GO:0004143
## 1333 GO:0004144
## 1334 GO:0004145
## 1335 GO:0004146
## 1336 GO:0004148
## 1337 GO:0004149
## 1338 GO:0004151
## 1339 GO:0004152
## 1340 GO:0004155
## 1341 GO:0004157
## 1342 GO:0004163
## 1343 GO:0004164
## 1344 GO:0004165
## 1345 GO:0004167
## 1346 GO:0004168
## 1347 GO:0004169
## 1348 GO:0004170
## 1349 GO:0004174
## 1350 GO:0004176
## 1351 GO:0004177
## 1352 GO:0004180
## 1353 GO:0004181
## 1354 GO:0004185
## 1355 GO:0004298
## 1356 GO:0004300
## 1357 GO:0004303
## 1358 GO:0004304
## 1359 GO:0004305
## 1360 GO:0004306
## 1361 GO:0004307
## 1362 GO:0004308
## 1363 GO:0004310
## 1364 GO:0004311
## 1365 GO:0004312
## 1366 GO:0004313
## 1367 GO:0004314
## 1368 GO:0004315
## 1369 GO:0004316
## 1370 GO:0004317
## 1371 GO:0004319
## 1372 GO:0004320
## 1373 GO:0004321
## 1374 GO:0004322
## 1375 GO:0004324
## 1376 GO:0004325
## 1377 GO:0004326
## 1378 GO:0004329
## 1379 GO:0004332
## 1380 GO:0004334
## 1381 GO:0004335
## 1382 GO:0004336
## 1383 GO:0004339
## 1384 GO:0004340
## 1385 GO:0004341
## 1386 GO:0004342
## 1387 GO:0004343
## 1388 GO:0004345
## 1389 GO:0004346
## 1390 GO:0004347
## 1391 GO:0004348
## 1392 GO:0004349
## 1393 GO:0004350
## 1394 GO:0004352
## 1395 GO:0004353
## 1396 GO:0004357
## 1397 GO:0004359
## 1398 GO:0004360
## 1399 GO:0004361
## 1400 GO:0004362
## 1401 GO:0004363
## 1402 GO:0004364
## 1403 GO:0004365
## 1404 GO:0004366
## 1405 GO:0004367
## 1406 GO:0004368
## 1407 GO:0004370
## 1408 GO:0004371
## 1409 GO:0004372
## 1410 GO:0004373
## 1411 GO:0004375
## 1412 GO:0004376
## 1413 GO:0004377
## 1414 GO:0004378
## 1415 GO:0004379
## 1416 GO:0004380
## 1417 GO:0004381
## 1418 GO:0004382
## 1419 GO:0004383
## 1420 GO:0004385
## 1421 GO:0004392
## 1422 GO:0004394
## 1423 GO:0004395
## 1424 GO:0004397
## 1425 GO:0004398
## 1426 GO:0004407
## 1427 GO:0004408
## 1428 GO:0004411
## 1429 GO:0004415
## 1430 GO:0004416
## 1431 GO:0004418
## 1432 GO:0004419
## 1433 GO:0004420
## 1434 GO:0004421
## 1435 GO:0004422
## 1436 GO:0004423
## 1437 GO:0004427
## 1438 GO:0004430
## 1439 GO:0004435
## 1440 GO:0004438
## 1441 GO:0004441
## 1442 GO:0004445
## 1443 GO:0004447
## 1444 GO:0004448
## 1445 GO:0004449
## 1446 GO:0004450
## 1447 GO:0004452
## 1448 GO:0004454
## 1449 GO:0004457
## 1450 GO:0004458
## 1451 GO:0004459
## 1452 GO:0004461
## 1453 GO:0004462
## 1454 GO:0004463
## 1455 GO:0004464
## 1456 GO:0004465
## 1457 GO:0004466
## 1458 GO:0004467
## 1459 GO:0004468
## 1460 GO:0004470
## 1461 GO:0004471
## 1462 GO:0004473
## 1463 GO:0004474
## 1464 GO:0004475
## 1465 GO:0004476
## 1466 GO:0004477
## 1467 GO:0004478
## 1468 GO:0004479
## 1469 GO:0004482
## 1470 GO:0004483
## 1471 GO:0004484
## 1472 GO:0004485
## 1473 GO:0004486
## 1474 GO:0004487
## 1475 GO:0004488
## 1476 GO:0004490
## 1477 GO:0004491
## 1478 GO:0004492
## 1479 GO:0004493
## 1480 GO:0004494
## 1481 GO:0004496
## 1482 GO:0004497
## 1483 GO:0004498
## 1484 GO:0004499
## 1485 GO:0004500
## 1486 GO:0004502
## 1487 GO:0004503
## 1488 GO:0004504
## 1489 GO:0004505
## 1490 GO:0004506
## 1491 GO:0004507
## 1492 GO:0004508
## 1493 GO:0004509
## 1494 GO:0004510
## 1495 GO:0004511
## 1496 GO:0004512
## 1497 GO:0004513
## 1498 GO:0004514
## 1499 GO:0004515
## 1500 GO:0004516
## 1501 GO:0004517
## 1502 GO:0004522
## 1503 GO:0004525
## 1504 GO:0004526
## 1505 GO:0004528
## 1506 GO:0004530
## 1507 GO:0004531
## 1508 GO:0004534
## 1509 GO:0004549
## 1510 GO:0004551
## 1511 GO:0004555
## 1512 GO:0004556
## 1513 GO:0004557
## 1514 GO:0004558
## 1515 GO:0004560
## 1516 GO:0004561
## 1517 GO:0004563
## 1518 GO:0004565
## 1519 GO:0004566
## 1520 GO:0004567
## 1521 GO:0004569
## 1522 GO:0004572
## 1523 GO:0004573
## 1524 GO:0004574
## 1525 GO:0004575
## 1526 GO:0004576
## 1527 GO:0004578
## 1528 GO:0004579
## 1529 GO:0004581
## 1530 GO:0004582
## 1531 GO:0004583
## 1532 GO:0004584
## 1533 GO:0004585
## 1534 GO:0004586
## 1535 GO:0004587
## 1536 GO:0004588
## 1537 GO:0004590
## 1538 GO:0004591
## 1539 GO:0004594
## 1540 GO:0004595
## 1541 GO:0004596
## 1542 GO:0004597
## 1543 GO:0004598
## 1544 GO:0004603
## 1545 GO:0004605
## 1546 GO:0004607
## 1547 GO:0004608
## 1548 GO:0004609
## 1549 GO:0004610
## 1550 GO:0004613
## 1551 GO:0004614
## 1552 GO:0004615
## 1553 GO:0004617
## 1554 GO:0004618
## 1555 GO:0004621
## 1556 GO:0004622
## 1557 GO:0004629
## 1558 GO:0004630
## 1559 GO:0004631
## 1560 GO:0004632
## 1561 GO:0004633
## 1562 GO:0004637
## 1563 GO:0004638
## 1564 GO:0004639
## 1565 GO:0004641
## 1566 GO:0004642
## 1567 GO:0004643
## 1568 GO:0004644
## 1569 GO:0004645
## 1570 GO:0004647
## 1571 GO:0004648
## 1572 GO:0004649
## 1573 GO:0004651
## 1574 GO:0004652
## 1575 GO:0004654
## 1576 GO:0004655
## 1577 GO:0004656
## 1578 GO:0004657
## 1579 GO:0004658
## 1580 GO:0004660
## 1581 GO:0004662
## 1582 GO:0004666
## 1583 GO:0004667
## 1584 GO:0004671
## 1585 GO:0004673
## 1586 GO:0004676
## 1587 GO:0004677
## 1588 GO:0004683
## 1589 GO:0004686
## 1590 GO:0004687
## 1591 GO:0004689
## 1592 GO:0004690
## 1593 GO:0004691
## 1594 GO:0004692
## 1595 GO:0004693
## 1596 GO:0004694
## 1597 GO:0004698
## 1598 GO:0004699
## 1599 GO:0004702
## 1600 GO:0004703
## 1601 GO:0004704
## 1602 GO:0004705
## 1603 GO:0004706
## 1604 GO:0004707
## 1605 GO:0004708
## 1606 GO:0004709
## 1607 GO:0004711
## 1608 GO:0004715
## 1609 GO:0004716
## 1610 GO:0004719
## 1611 GO:0004720
## 1612 GO:0004723
## 1613 GO:0004726
## 1614 GO:0004728
## 1615 GO:0004730
## 1616 GO:0004731
## 1617 GO:0004733
## 1618 GO:0004735
## 1619 GO:0004736
## 1620 GO:0004738
## 1621 GO:0004739
## 1622 GO:0004740
## 1623 GO:0004741
## 1624 GO:0004742
## 1625 GO:0004743
## 1626 GO:0004744
## 1627 GO:0004747
## 1628 GO:0004748
## 1629 GO:0004749
## 1630 GO:0004750
## 1631 GO:0004751
## 1632 GO:0004756
## 1633 GO:0004757
## 1634 GO:0004758
## 1635 GO:0004760
## 1636 GO:0004766
## 1637 GO:0004767
## 1638 GO:0004768
## 1639 GO:0004769
## 1640 GO:0004771
## 1641 GO:0004773
## 1642 GO:0004774
## 1643 GO:0004775
## 1644 GO:0004776
## 1645 GO:0004777
## 1646 GO:0004778
## 1647 GO:0004781
## 1648 GO:0004782
## 1649 GO:0004784
## 1650 GO:0004788
## 1651 GO:0004790
## 1652 GO:0004791
## 1653 GO:0004792
## 1654 GO:0004794
## 1655 GO:0004796
## 1656 GO:0004797
## 1657 GO:0004798
## 1658 GO:0004799
## 1659 GO:0004800
## 1660 GO:0004801
## 1661 GO:0004802
## 1662 GO:0004803
## 1663 GO:0004806
## 1664 GO:0004807
## 1665 GO:0004809
## 1666 GO:0004813
## 1667 GO:0004814
## 1668 GO:0004816
## 1669 GO:0004817
## 1670 GO:0004819
## 1671 GO:0004820
## 1672 GO:0004821
## 1673 GO:0004822
## 1674 GO:0004823
## 1675 GO:0004824
## 1676 GO:0004825
## 1677 GO:0004826
## 1678 GO:0004828
## 1679 GO:0004831
## 1680 GO:0004832
## 1681 GO:0004833
## 1682 GO:0004835
## 1683 GO:0004838
## 1684 GO:0004839
## 1685 GO:0004844
## 1686 GO:0004850
## 1687 GO:0004852
## 1688 GO:0004853
## 1689 GO:0004854
## 1690 GO:0004855
## 1691 GO:0004856
## 1692 GO:0004859
## 1693 GO:0004862
## 1694 GO:0004865
## 1695 GO:0004867
## 1696 GO:0004873
## 1697 GO:0004874
## 1698 GO:0004875
## 1699 GO:0004876
## 1700 GO:0004877
## 1701 GO:0004878
## 1702 GO:0004879
## 1703 GO:0004882
## 1704 GO:0004886
## 1705 GO:0004887
## 1706 GO:0004890
## 1707 GO:0004897
## 1708 GO:0004900
## 1709 GO:0004904
## 1710 GO:0004905
## 1711 GO:0004906
## 1712 GO:0004908
## 1713 GO:0004909
## 1714 GO:0004910
## 1715 GO:0004911
## 1716 GO:0004912
## 1717 GO:0004913
## 1718 GO:0004914
## 1719 GO:0004915
## 1720 GO:0004917
## 1721 GO:0004918
## 1722 GO:0004919
## 1723 GO:0004920
## 1724 GO:0004921
## 1725 GO:0004923
## 1726 GO:0004924
## 1727 GO:0004925
## 1728 GO:0004931
## 1729 GO:0004935
## 1730 GO:0004936
## 1731 GO:0004937
## 1732 GO:0004938
## 1733 GO:0004939
## 1734 GO:0004940
## 1735 GO:0004941
## 1736 GO:0004945
## 1737 GO:0004946
## 1738 GO:0004947
## 1739 GO:0004948
## 1740 GO:0004949
## 1741 GO:0004950
## 1742 GO:0004951
## 1743 GO:0004952
## 1744 GO:0004953
## 1745 GO:0004954
## 1746 GO:0004955
## 1747 GO:0004956
## 1748 GO:0004957
## 1749 GO:0004958
## 1750 GO:0004961
## 1751 GO:0004962
## 1752 GO:0004963
## 1753 GO:0004964
## 1754 GO:0004965
## 1755 GO:0004966
## 1756 GO:0004967
## 1757 GO:0004968
## 1758 GO:0004969
## 1759 GO:0004970
## 1760 GO:0004971
## 1761 GO:0004972
## 1762 GO:0004974
## 1763 GO:0004977
## 1764 GO:0004978
## 1765 GO:0004979
## 1766 GO:0004980
## 1767 GO:0004982
## 1768 GO:0004983
## 1769 GO:0004985
## 1770 GO:0004990
## 1771 GO:0004991
## 1772 GO:0004992
## 1773 GO:0004993
## 1774 GO:0004994
## 1775 GO:0004995
## 1776 GO:0004996
## 1777 GO:0004997
## 1778 GO:0004998
## 1779 GO:0004999
## 1780 GO:0005000
## 1781 GO:0005001
## 1782 GO:0005004
## 1783 GO:0005005
## 1784 GO:0005006
## 1785 GO:0005007
## 1786 GO:0005008
## 1787 GO:0005009
## 1788 GO:0005010
## 1789 GO:0005011
## 1790 GO:0005017
## 1791 GO:0005018
## 1792 GO:0005019
## 1793 GO:0005020
## 1794 GO:0005021
## 1795 GO:0005024
## 1796 GO:0005025
## 1797 GO:0005026
## 1798 GO:0005030
## 1799 GO:0005034
## 1800 GO:0005041
## 1801 GO:0005042
## 1802 GO:0005044
## 1803 GO:0005046
## 1804 GO:0005049
## 1805 GO:0005052
## 1806 GO:0005053
## 1807 GO:0005055
## 1808 GO:0005072
## 1809 GO:0005078
## 1810 GO:0005080
## 1811 GO:0005086
## 1812 GO:0005090
## 1813 GO:0005092
## 1814 GO:0005093
## 1815 GO:0005094
## 1816 GO:0005095
## 1817 GO:0005104
## 1818 GO:0005105
## 1819 GO:0005109
## 1820 GO:0005110
## 1821 GO:0005111
## 1822 GO:0005112
## 1823 GO:0005113
## 1824 GO:0005114
## 1825 GO:0005115
## 1826 GO:0005123
## 1827 GO:0005124
## 1828 GO:0005127
## 1829 GO:0005128
## 1830 GO:0005129
## 1831 GO:0005130
## 1832 GO:0005131
## 1833 GO:0005132
## 1834 GO:0005133
## 1835 GO:0005134
## 1836 GO:0005135
## 1837 GO:0005136
## 1838 GO:0005137
## 1839 GO:0005138
## 1840 GO:0005139
## 1841 GO:0005140
## 1842 GO:0005141
## 1843 GO:0005142
## 1844 GO:0005143
## 1845 GO:0005144
## 1846 GO:0005146
## 1847 GO:0005147
## 1848 GO:0005148
## 1849 GO:0005150
## 1850 GO:0005151
## 1851 GO:0005152
## 1852 GO:0005153
## 1853 GO:0005157
## 1854 GO:0005160
## 1855 GO:0005161
## 1856 GO:0005163
## 1857 GO:0005164
## 1858 GO:0005166
## 1859 GO:0005169
## 1860 GO:0005170
## 1861 GO:0005171
## 1862 GO:0005172
## 1863 GO:0005173
## 1864 GO:0005174
## 1865 GO:0005175
## 1866 GO:0005176
## 1867 GO:0005183
## 1868 GO:0005184
## 1869 GO:0005185
## 1870 GO:0005199
## 1871 GO:0005212
## 1872 GO:0005219
## 1873 GO:0005220
## 1874 GO:0005221
## 1875 GO:0005222
## 1876 GO:0005223
## 1877 GO:0005229
## 1878 GO:0005230
## 1879 GO:0005231
## 1880 GO:0005234
## 1881 GO:0005237
## 1882 GO:0005248
## 1883 GO:0005250
## 1884 GO:0005251
## 1885 GO:0005252
## 1886 GO:0005260
## 1887 GO:0005275
## 1888 GO:0005276
## 1889 GO:0005277
## 1890 GO:0005280
## 1891 GO:0005289
## 1892 GO:0005290
## 1893 GO:0005292
## 1894 GO:0005298
## 1895 GO:0005302
## 1896 GO:0005307
## 1897 GO:0005308
## 1898 GO:0005309
## 1899 GO:0005310
## 1900 GO:0005313
## 1901 GO:0005314
## 1902 GO:0005315
## 1903 GO:0005316
## 1904 GO:0005324
## 1905 GO:0005325
## 1906 GO:0005329
## 1907 GO:0005330
## 1908 GO:0005332
## 1909 GO:0005333
## 1910 GO:0005334
## 1911 GO:0005335
## 1912 GO:0005337
## 1913 GO:0005338
## 1914 GO:0005344
## 1915 GO:0005345
## 1916 GO:0005346
## 1917 GO:0005347
## 1918 GO:0005350
## 1919 GO:0005351
## 1920 GO:0005353
## 1921 GO:0005362
## 1922 GO:0005365
## 1923 GO:0005366
## 1924 GO:0005367
## 1925 GO:0005369
## 1926 GO:0005375
## 1927 GO:0005381
## 1928 GO:0005384
## 1929 GO:0005388
## 1930 GO:0005395
## 1931 GO:0005412
## 1932 GO:0005415
## 1933 GO:0005427
## 1934 GO:0005432
## 1935 GO:0005436
## 1936 GO:0005452
## 1937 GO:0005456
## 1938 GO:0005457
## 1939 GO:0005459
## 1940 GO:0005461
## 1941 GO:0005462
## 1942 GO:0005464
## 1943 GO:0005471
## 1944 GO:0005476
## 1945 GO:0005477
## 1946 GO:0005483
## 1947 GO:0005497
## 1948 GO:0005499
## 1949 GO:0005501
## 1950 GO:0005502
## 1951 GO:0005503
## 1952 GO:0005519
## 1953 GO:0005522
## 1954 GO:0005523
## 1955 GO:0005528
## 1956 GO:0005534
## 1957 GO:0005536
## 1958 GO:0005537
## 1959 GO:0005542
## 1960 GO:0005544
## 1961 GO:0005547
## 1962 GO:0005549
## 1963 GO:0005550
## 1964 GO:0008009
## 1965 GO:0008035
## 1966 GO:0008046
## 1967 GO:0008048
## 1968 GO:0008066
## 1969 GO:0008068
## 1970 GO:0008073
## 1971 GO:0008081
## 1972 GO:0008093
## 1973 GO:0008107
## 1974 GO:0008108
## 1975 GO:0008109
## 1976 GO:0008111
## 1977 GO:0008112
## 1978 GO:0008113
## 1979 GO:0008115
## 1980 GO:0008116
## 1981 GO:0008117
## 1982 GO:0008119
## 1983 GO:0008120
## 1984 GO:0008123
## 1985 GO:0008124
## 1986 GO:0008127
## 1987 GO:0008131
## 1988 GO:0008139
## 1989 GO:0008140
## 1990 GO:0008142
## 1991 GO:0008146
## 1992 GO:0008147
## 1993 GO:0008160
## 1994 GO:0008174
## 1995 GO:0008176
## 1996 GO:0008177
## 1997 GO:0008184
## 1998 GO:0008188
## 1999 GO:0008190
## 2000 GO:0008191
## 2001 GO:0008192
## 2002 GO:0008193
## 2003 GO:0008195
## 2004 GO:0008198
## 2005 GO:0008199
## 2006 GO:0008227
## 2007 GO:0008239
## 2008 GO:0008240
## 2009 GO:0008241
## 2010 GO:0008242
## 2011 GO:0008251
## 2012 GO:0008252
## 2013 GO:0008253
## 2014 GO:0008254
## 2015 GO:0008260
## 2016 GO:0008263
## 2017 GO:0008265
## 2018 GO:0008267
## 2019 GO:0008269
## 2020 GO:0008271
## 2021 GO:0008273
## 2022 GO:0008281
## 2023 GO:0008294
## 2024 GO:0008296
## 2025 GO:0008301
## 2026 GO:0008310
## 2027 GO:0008311
## 2028 GO:0008321
## 2029 GO:0008327
## 2030 GO:0008329
## 2031 GO:0008330
## 2032 GO:0008331
## 2033 GO:0008332
## 2034 GO:0008336
## 2035 GO:0008349
## 2036 GO:0008353
## 2037 GO:0008381
## 2038 GO:0008384
## 2039 GO:0008386
## 2040 GO:0008387
## 2041 GO:0008389
## 2042 GO:0008392
## 2043 GO:0008395
## 2044 GO:0008396
## 2045 GO:0008397
## 2046 GO:0008398
## 2047 GO:0008401
## 2048 GO:0008403
## 2049 GO:0008404
## 2050 GO:0008405
## 2051 GO:0008410
## 2052 GO:0008413
## 2053 GO:0008417
## 2054 GO:0008418
## 2055 GO:0008419
## 2056 GO:0008422
## 2057 GO:0008424
## 2058 GO:0008425
## 2059 GO:0008426
## 2060 GO:0008427
## 2061 GO:0008428
## 2062 GO:0008429
## 2063 GO:0008430
## 2064 GO:0008431
## 2065 GO:0008434
## 2066 GO:0008437
## 2067 GO:0008440
## 2068 GO:0008441
## 2069 GO:0008442
## 2070 GO:0008444
## 2071 GO:0008445
## 2072 GO:0008446
## 2073 GO:0008448
## 2074 GO:0008449
## 2075 GO:0008453
## 2076 GO:0008454
## 2077 GO:0008455
## 2078 GO:0008456
## 2079 GO:0008457
## 2080 GO:0008458
## 2081 GO:0008459
## 2082 GO:0008460
## 2083 GO:0008465
## 2084 GO:0008466
## 2085 GO:0008467
## 2086 GO:0008469
## 2087 GO:0008470
## 2088 GO:0008474
## 2089 GO:0008475
## 2090 GO:0008476
## 2091 GO:0008478
## 2092 GO:0008479
## 2093 GO:0008480
## 2094 GO:0008481
## 2095 GO:0008482
## 2096 GO:0008483
## 2097 GO:0008484
## 2098 GO:0008486
## 2099 GO:0008488
## 2100 GO:0008489
## 2101 GO:0008493
## 2102 GO:0008494
## 2103 GO:0008495
## 2104 GO:0008496
## 2105 GO:0008499
## 2106 GO:0008502
## 2107 GO:0008503
## 2108 GO:0008504
## 2109 GO:0008506
## 2110 GO:0008507
## 2111 GO:0008508
## 2112 GO:0008510
## 2113 GO:0008511
## 2114 GO:0008513
## 2115 GO:0008517
## 2116 GO:0008518
## 2117 GO:0008519
## 2118 GO:0008520
## 2119 GO:0008521
## 2120 GO:0008523
## 2121 GO:0008525
## 2122 GO:0008526
## 2123 GO:0008527
## 2124 GO:0008531
## 2125 GO:0008532
## 2126 GO:0008534
## 2127 GO:0008545
## 2128 GO:0008553
## 2129 GO:0008554
## 2130 GO:0008555
## 2131 GO:0008559
## 2132 GO:0008568
## 2133 GO:0008574
## 2134 GO:0008579
## 2135 GO:0008597
## 2136 GO:0008603
## 2137 GO:0008607
## 2138 GO:0008609
## 2139 GO:0008641
## 2140 GO:0008650
## 2141 GO:0008656
## 2142 GO:0008670
## 2143 GO:0008689
## 2144 GO:0008700
## 2145 GO:0008709
## 2146 GO:0008721
## 2147 GO:0008725
## 2148 GO:0008732
## 2149 GO:0008745
## 2150 GO:0008746
## 2151 GO:0008747
## 2152 GO:0008750
## 2153 GO:0008753
## 2154 GO:0008761
## 2155 GO:0008768
## 2156 GO:0008775
## 2157 GO:0008781
## 2158 GO:0008783
## 2159 GO:0008785
## 2160 GO:0008792
## 2161 GO:0008794
## 2162 GO:0008798
## 2163 GO:0008802
## 2164 GO:0008803
## 2165 GO:0008808
## 2166 GO:0008811
## 2167 GO:0008812
## 2168 GO:0008817
## 2169 GO:0008821
## 2170 GO:0008823
## 2171 GO:0008829
## 2172 GO:0008832
## 2173 GO:0008852
## 2174 GO:0008853
## 2175 GO:0008859
## 2176 GO:0008865
## 2177 GO:0008887
## 2178 GO:0008889
## 2179 GO:0008890
## 2180 GO:0008891
## 2181 GO:0008892
## 2182 GO:0008893
## 2183 GO:0008894
## 2184 GO:0008897
## 2185 GO:0008900
## 2186 GO:0008903
## 2187 GO:0008934
## 2188 GO:0008940
## 2189 GO:0008941
## 2190 GO:0008948
## 2191 GO:0008955
## 2192 GO:0008962
## 2193 GO:0008963
## 2194 GO:0008967
## 2195 GO:0008970
## 2196 GO:0008973
## 2197 GO:0008988
## 2198 GO:0008995
## 2199 GO:0009000
## 2200 GO:0009007
## 2201 GO:0009008
## 2202 GO:0009013
## 2203 GO:0009019
## 2204 GO:0009020
## 2205 GO:0009032
## 2206 GO:0009374
## 2207 GO:0009378
## 2208 GO:0009384
## 2209 GO:0009400
## 2210 GO:0009673
## 2211 GO:0009882
## 2212 GO:0009917
## 2213 GO:0009918
## 2214 GO:0009922
## 2215 GO:0009931
## 2216 GO:0010181
## 2217 GO:0010309
## 2218 GO:0010314
## 2219 GO:0010348
## 2220 GO:0010385
## 2221 GO:0010428
## 2222 GO:0010465
## 2223 GO:0010484
## 2224 GO:0010485
## 2225 GO:0010521
## 2226 GO:0010698
## 2227 GO:0010736
## 2228 GO:0010851
## 2229 GO:0010855
## 2230 GO:0010858
## 2231 GO:0010859
## 2232 GO:0015016
## 2233 GO:0015018
## 2234 GO:0015019
## 2235 GO:0015020
## 2236 GO:0015037
## 2237 GO:0015038
## 2238 GO:0015039
## 2239 GO:0015052
## 2240 GO:0015054
## 2241 GO:0015055
## 2242 GO:0015056
## 2243 GO:0015057
## 2244 GO:0015065
## 2245 GO:0015068
## 2246 GO:0015086
## 2247 GO:0015087
## 2248 GO:0015088
## 2249 GO:0015091
## 2250 GO:0015093
## 2251 GO:0015094
## 2252 GO:0015095
## 2253 GO:0015098
## 2254 GO:0015101
## 2255 GO:0015105
## 2256 GO:0015106
## 2257 GO:0015111
## 2258 GO:0015112
## 2259 GO:0015114
## 2260 GO:0015116
## 2261 GO:0015117
## 2262 GO:0015125
## 2263 GO:0015126
## 2264 GO:0015127
## 2265 GO:0015131
## 2266 GO:0015132
## 2267 GO:0015137
## 2268 GO:0015139
## 2269 GO:0015140
## 2270 GO:0015141
## 2271 GO:0015143
## 2272 GO:0015165
## 2273 GO:0015173
## 2274 GO:0015180
## 2275 GO:0015182
## 2276 GO:0015183
## 2277 GO:0015184
## 2278 GO:0015185
## 2279 GO:0015186
## 2280 GO:0015190
## 2281 GO:0015191
## 2282 GO:0015193
## 2283 GO:0015194
## 2284 GO:0015195
## 2285 GO:0015196
## 2286 GO:0015197
## 2287 GO:0015198
## 2288 GO:0015205
## 2289 GO:0015207
## 2290 GO:0015211
## 2291 GO:0015215
## 2292 GO:0015216
## 2293 GO:0015217
## 2294 GO:0015218
## 2295 GO:0015220
## 2296 GO:0015222
## 2297 GO:0015226
## 2298 GO:0015227
## 2299 GO:0015228
## 2300 GO:0015230
## 2301 GO:0015232
## 2302 GO:0015234
## 2303 GO:0015235
## 2304 GO:0015238
## 2305 GO:0015245
## 2306 GO:0015247
## 2307 GO:0015252
## 2308 GO:0015269
## 2309 GO:0015271
## 2310 GO:0015272
## 2311 GO:0015275
## 2312 GO:0015277
## 2313 GO:0015279
## 2314 GO:0015280
## 2315 GO:0015288
## 2316 GO:0015292
## 2317 GO:0015295
## 2318 GO:0015301
## 2319 GO:0015307
## 2320 GO:0015319
## 2321 GO:0015320
## 2322 GO:0015321
## 2323 GO:0015327
## 2324 GO:0015333
## 2325 GO:0015347
## 2326 GO:0015349
## 2327 GO:0015350
## 2328 GO:0015361
## 2329 GO:0015362
## 2330 GO:0015367
## 2331 GO:0015368
## 2332 GO:0015369
## 2333 GO:0015377
## 2334 GO:0015378
## 2335 GO:0015379
## 2336 GO:0015382
## 2337 GO:0015389
## 2338 GO:0015390
## 2339 GO:0015403
## 2340 GO:0015410
## 2341 GO:0015420
## 2342 GO:0015421
## 2343 GO:0015431
## 2344 GO:0015432
## 2345 GO:0015433
## 2346 GO:0015439
## 2347 GO:0015440
## 2348 GO:0015464
## 2349 GO:0015467
## 2350 GO:0015485
## 2351 GO:0015489
## 2352 GO:0015495
## 2353 GO:0015501
## 2354 GO:0015538
## 2355 GO:0015556
## 2356 GO:0015562
## 2357 GO:0015563
## 2358 GO:0015578
## 2359 GO:0015605
## 2360 GO:0015616
## 2361 GO:0015633
## 2362 GO:0015636
## 2363 GO:0015639
## 2364 GO:0015643
## 2365 GO:0015645
## 2366 GO:0015651
## 2367 GO:0015659
## 2368 GO:0015660
## 2369 GO:0015925
## 2370 GO:0015926
## 2371 GO:0015929
## 2372 GO:0015932
## 2373 GO:0016005
## 2374 GO:0016015
## 2375 GO:0016019
## 2376 GO:0016034
## 2377 GO:0016150
## 2378 GO:0016151
## 2379 GO:0016153
## 2380 GO:0016154
## 2381 GO:0016155
## 2382 GO:0016160
## 2383 GO:0016165
## 2384 GO:0016167
## 2385 GO:0016174
## 2386 GO:0016175
## 2387 GO:0016176
## 2388 GO:0016206
## 2389 GO:0016208
## 2390 GO:0016212
## 2391 GO:0016213
## 2392 GO:0016229
## 2393 GO:0016230
## 2394 GO:0016231
## 2395 GO:0016232
## 2396 GO:0016250
## 2397 GO:0016262
## 2398 GO:0016263
## 2399 GO:0016274
## 2400 GO:0016277
## 2401 GO:0016286
## 2402 GO:0016287
## 2403 GO:0016295
## 2404 GO:0016296
## 2405 GO:0016300
## 2406 GO:0016308
## 2407 GO:0016309
## 2408 GO:0016312
## 2409 GO:0016314
## 2410 GO:0016316
## 2411 GO:0016361
## 2412 GO:0016362
## 2413 GO:0016401
## 2414 GO:0016402
## 2415 GO:0016403
## 2416 GO:0016404
## 2417 GO:0016405
## 2418 GO:0016406
## 2419 GO:0016408
## 2420 GO:0016409
## 2421 GO:0016412
## 2422 GO:0016413
## 2423 GO:0016416
## 2424 GO:0016417
## 2425 GO:0016418
## 2426 GO:0016421
## 2427 GO:0016422
## 2428 GO:0016426
## 2429 GO:0016427
## 2430 GO:0016428
## 2431 GO:0016429
## 2432 GO:0016430
## 2433 GO:0016453
## 2434 GO:0016492
## 2435 GO:0016493
## 2436 GO:0016494
## 2437 GO:0016495
## 2438 GO:0016496
## 2439 GO:0016497
## 2440 GO:0016499
## 2441 GO:0016500
## 2442 GO:0016501
## 2443 GO:0016503
## 2444 GO:0016505
## 2445 GO:0016508
## 2446 GO:0016509
## 2447 GO:0016517
## 2448 GO:0016519
## 2449 GO:0016520
## 2450 GO:0016521
## 2451 GO:0016524
## 2452 GO:0016534
## 2453 GO:0016594
## 2454 GO:0016596
## 2455 GO:0016603
## 2456 GO:0016608
## 2457 GO:0016615
## 2458 GO:0016618
## 2459 GO:0016620
## 2460 GO:0016623
## 2461 GO:0016624
## 2462 GO:0016635
## 2463 GO:0016638
## 2464 GO:0016639
## 2465 GO:0016641
## 2466 GO:0016647
## 2467 GO:0016653
## 2468 GO:0016661
## 2469 GO:0016668
## 2470 GO:0016672
## 2471 GO:0016675
## 2472 GO:0016701
## 2473 GO:0016702
## 2474 GO:0016709
## 2475 GO:0016711
## 2476 GO:0016712
## 2477 GO:0016713
## 2478 GO:0016714
## 2479 GO:0016715
## 2480 GO:0016717
## 2481 GO:0016725
## 2482 GO:0016742
## 2483 GO:0016743
## 2484 GO:0016744
## 2485 GO:0016748
## 2486 GO:0016755
## 2487 GO:0016768
## 2488 GO:0016769
## 2489 GO:0016774
## 2490 GO:0016775
## 2491 GO:0016778
## 2492 GO:0016780
## 2493 GO:0016782
## 2494 GO:0016783
## 2495 GO:0016784
## 2496 GO:0016805
## 2497 GO:0016807
## 2498 GO:0016812
## 2499 GO:0016823
## 2500 GO:0016832
## 2501 GO:0016833
## 2502 GO:0016838
## 2503 GO:0016840
## 2504 GO:0016841
## 2505 GO:0016842
## 2506 GO:0016844
## 2507 GO:0016857
## 2508 GO:0016861
## 2509 GO:0016863
## 2510 GO:0016868
## 2511 GO:0016877
## 2512 GO:0016878
## 2513 GO:0016881
## 2514 GO:0016882
## 2515 GO:0016884
## 2516 GO:0016885
## 2517 GO:0016888
## 2518 GO:0016889
## 2519 GO:0016890
## 2520 GO:0016892
## 2521 GO:0016894
## 2522 GO:0016899
## 2523 GO:0016903
## 2524 GO:0016907
## 2525 GO:0016913
## 2526 GO:0016917
## 2527 GO:0016918
## 2528 GO:0016920
## 2529 GO:0016929
## 2530 GO:0016934
## 2531 GO:0016936
## 2532 GO:0016941
## 2533 GO:0016964
## 2534 GO:0016979
## 2535 GO:0016990
## 2536 GO:0016992
## 2537 GO:0017002
## 2538 GO:0017005
## 2539 GO:0017018
## 2540 GO:0017020
## 2541 GO:0017022
## 2542 GO:0017024
## 2543 GO:0017034
## 2544 GO:0017040
## 2545 GO:0017042
## 2546 GO:0017045
## 2547 GO:0017046
## 2548 GO:0017049
## 2549 GO:0017050
## 2550 GO:0017057
## 2551 GO:0017060
## 2552 GO:0017061
## 2553 GO:0017065
## 2554 GO:0017070
## 2555 GO:0017075
## 2556 GO:0017077
## 2557 GO:0017080
## 2558 GO:0017081
## 2559 GO:0017082
## 2560 GO:0017084
## 2561 GO:0017089
## 2562 GO:0017091
## 2563 GO:0017095
## 2564 GO:0017096
## 2565 GO:0017098
## 2566 GO:0017099
## 2567 GO:0017108
## 2568 GO:0017110
## 2569 GO:0017113
## 2570 GO:0017125
## 2571 GO:0017127
## 2572 GO:0017128
## 2573 GO:0017129
## 2574 GO:0017134
## 2575 GO:0017136
## 2576 GO:0017147
## 2577 GO:0017150
## 2578 GO:0017151
## 2579 GO:0017153
## 2580 GO:0017159
## 2581 GO:0017161
## 2582 GO:0017162
## 2583 GO:0017166
## 2584 GO:0017168
## 2585 GO:0017169
## 2586 GO:0017172
## 2587 GO:0017174
## 2588 GO:0017176
## 2589 GO:0017178
## 2590 GO:0017188
## 2591 GO:0018025
## 2592 GO:0018114
## 2593 GO:0018169
## 2594 GO:0018423
## 2595 GO:0018455
## 2596 GO:0018467
## 2597 GO:0018478
## 2598 GO:0018479
## 2599 GO:0018585
## 2600 GO:0018636
## 2601 GO:0018685
## 2602 GO:0018733
## 2603 GO:0018738
## 2604 GO:0018773
## 2605 GO:0018812
## 2606 GO:0019002
## 2607 GO:0019103
## 2608 GO:0019115
## 2609 GO:0019135
## 2610 GO:0019136
## 2611 GO:0019144
## 2612 GO:0019145
## 2613 GO:0019153
## 2614 GO:0019158
## 2615 GO:0019166
## 2616 GO:0019213
## 2617 GO:0019238
## 2618 GO:0019531
## 2619 GO:0019534
## 2620 GO:0019706
## 2621 GO:0019763
## 2622 GO:0019767
## 2623 GO:0019770
## 2624 GO:0019772
## 2625 GO:0019776
## 2626 GO:0019777
## 2627 GO:0019778
## 2628 GO:0019779
## 2629 GO:0019780
## 2630 GO:0019781
## 2631 GO:0019782
## 2632 GO:0019784
## 2633 GO:0019785
## 2634 GO:0019788
## 2635 GO:0019789
## 2636 GO:0019799
## 2637 GO:0019807
## 2638 GO:0019808
## 2639 GO:0019809
## 2640 GO:0019810
## 2641 GO:0019811
## 2642 GO:0019825
## 2643 GO:0019826
## 2644 GO:0019828
## 2645 GO:0019834
## 2646 GO:0019840
## 2647 GO:0019841
## 2648 GO:0019862
## 2649 GO:0019863
## 2650 GO:0019869
## 2651 GO:0019871
## 2652 GO:0019911
## 2653 GO:0019912
## 2654 GO:0019948
## 2655 GO:0019956
## 2656 GO:0019957
## 2657 GO:0019958
## 2658 GO:0019959
## 2659 GO:0019960
## 2660 GO:0019962
## 2661 GO:0019966
## 2662 GO:0019969
## 2663 GO:0019970
## 2664 GO:0019972
## 2665 GO:0019976
## 2666 GO:0019981
## 2667 GO:0019983
## 2668 GO:0019992
## 2669 GO:0022820
## 2670 GO:0022824
## 2671 GO:0022848
## 2672 GO:0022849
## 2673 GO:0022850
## 2674 GO:0022851
## 2675 GO:0022852
## 2676 GO:0023023
## 2677 GO:0023024
## 2678 GO:0023026
## 2679 GO:0023029
## 2680 GO:0023030
## 2681 GO:0030020
## 2682 GO:0030023
## 2683 GO:0030060
## 2684 GO:0030108
## 2685 GO:0030109
## 2686 GO:0030144
## 2687 GO:0030151
## 2688 GO:0030156
## 2689 GO:0030158
## 2690 GO:0030159
## 2691 GO:0030160
## 2692 GO:0030169
## 2693 GO:0030171
## 2694 GO:0030172
## 2695 GO:0030184
## 2696 GO:0030197
## 2697 GO:0030215
## 2698 GO:0030226
## 2699 GO:0030228
## 2700 GO:0030229
## 2701 GO:0030233
## 2702 GO:0030235
## 2703 GO:0030247
## 2704 GO:0030249
## 2705 GO:0030250
## 2706 GO:0030251
## 2707 GO:0030267
## 2708 GO:0030272
## 2709 GO:0030273
## 2710 GO:0030274
## 2711 GO:0030275
## 2712 GO:0030276
## 2713 GO:0030280
## 2714 GO:0030283
## 2715 GO:0030284
## 2716 GO:0030290
## 2717 GO:0030292
## 2718 GO:0030294
## 2719 GO:0030296
## 2720 GO:0030297
## 2721 GO:0030298
## 2722 GO:0030305
## 2723 GO:0030306
## 2724 GO:0030332
## 2725 GO:0030337
## 2726 GO:0030342
## 2727 GO:0030343
## 2728 GO:0030345
## 2729 GO:0030348
## 2730 GO:0030350
## 2731 GO:0030351
## 2732 GO:0030354
## 2733 GO:0030366
## 2734 GO:0030368
## 2735 GO:0030369
## 2736 GO:0030371
## 2737 GO:0030375
## 2738 GO:0030377
## 2739 GO:0030378
## 2740 GO:0030379
## 2741 GO:0030380
## 2742 GO:0030387
## 2743 GO:0030395
## 2744 GO:0030409
## 2745 GO:0030412
## 2746 GO:0030429
## 2747 GO:0030492
## 2748 GO:0030504
## 2749 GO:0030545
## 2750 GO:0030546
## 2751 GO:0030547
## 2752 GO:0030548
## 2753 GO:0030549
## 2754 GO:0030550
## 2755 GO:0030551
## 2756 GO:0030552
## 2757 GO:0030553
## 2758 GO:0030586
## 2759 GO:0030594
## 2760 GO:0030614
## 2761 GO:0030616
## 2762 GO:0030617
## 2763 GO:0030618
## 2764 GO:0030619
## 2765 GO:0030621
## 2766 GO:0030622
## 2767 GO:0030623
## 2768 GO:0030624
## 2769 GO:0030626
## 2770 GO:0030627
## 2771 GO:0030628
## 2772 GO:0030629
## 2773 GO:0030676
## 2774 GO:0030697
## 2775 GO:0030729
## 2776 GO:0030731
## 2777 GO:0030735
## 2778 GO:0030748
## 2779 GO:0030760
## 2780 GO:0030791
## 2781 GO:0030792
## 2782 GO:0030881
## 2783 GO:0030883
## 2784 GO:0030884
## 2785 GO:0030898
## 2786 GO:0030899
## 2787 GO:0030911
## 2788 GO:0030942
## 2789 GO:0030957
## 2790 GO:0030975
## 2791 GO:0030976
## 2792 GO:0030977
## 2793 GO:0030983
## 2794 GO:0030984
## 2795 GO:0031005
## 2796 GO:0031013
## 2797 GO:0031014
## 2798 GO:0031071
## 2799 GO:0031151
## 2800 GO:0031177
## 2801 GO:0031208
## 2802 GO:0031210
## 2803 GO:0031249
## 2804 GO:0031369
## 2805 GO:0031370
## 2806 GO:0031386
## 2807 GO:0031403
## 2808 GO:0031404
## 2809 GO:0031433
## 2810 GO:0031434
## 2811 GO:0031489
## 2812 GO:0031493
## 2813 GO:0031531
## 2814 GO:0031545
## 2815 GO:0031624
## 2816 GO:0031626
## 2817 GO:0031628
## 2818 GO:0031681
## 2819 GO:0031682
## 2820 GO:0031683
## 2821 GO:0031685
## 2822 GO:0031686
## 2823 GO:0031687
## 2824 GO:0031690
## 2825 GO:0031691
## 2826 GO:0031692
## 2827 GO:0031694
## 2828 GO:0031695
## 2829 GO:0031696
## 2830 GO:0031697
## 2831 GO:0031698
## 2832 GO:0031699
## 2833 GO:0031700
## 2834 GO:0031701
## 2835 GO:0031702
## 2836 GO:0031703
## 2837 GO:0031704
## 2838 GO:0031705
## 2839 GO:0031707
## 2840 GO:0031708
## 2841 GO:0031710
## 2842 GO:0031711
## 2843 GO:0031715
## 2844 GO:0031716
## 2845 GO:0031720
## 2846 GO:0031721
## 2847 GO:0031724
## 2848 GO:0031726
## 2849 GO:0031727
## 2850 GO:0031728
## 2851 GO:0031729
## 2852 GO:0031730
## 2853 GO:0031731
## 2854 GO:0031732
## 2855 GO:0031735
## 2856 GO:0031737
## 2857 GO:0031741
## 2858 GO:0031748
## 2859 GO:0031749
## 2860 GO:0031750
## 2861 GO:0031751
## 2862 GO:0031752
## 2863 GO:0031755
## 2864 GO:0031762
## 2865 GO:0031764
## 2866 GO:0031765
## 2867 GO:0031766
## 2868 GO:0031768
## 2869 GO:0031769
## 2870 GO:0031770
## 2871 GO:0031771
## 2872 GO:0031772
## 2873 GO:0031773
## 2874 GO:0031775
## 2875 GO:0031780
## 2876 GO:0031781
## 2877 GO:0031782
## 2878 GO:0031783
## 2879 GO:0031798
## 2880 GO:0031802
## 2881 GO:0031812
## 2882 GO:0031821
## 2883 GO:0031826
## 2884 GO:0031835
## 2885 GO:0031837
## 2886 GO:0031849
## 2887 GO:0031851
## 2888 GO:0031852
## 2889 GO:0031854
## 2890 GO:0031855
## 2891 GO:0031857
## 2892 GO:0031858
## 2893 GO:0031859
## 2894 GO:0031861
## 2895 GO:0031862
## 2896 GO:0031867
## 2897 GO:0031870
## 2898 GO:0031871
## 2899 GO:0031877
## 2900 GO:0031883
## 2901 GO:0031893
## 2902 GO:0031894
## 2903 GO:0031895
## 2904 GO:0031896
## 2905 GO:0031957
## 2906 GO:0031962
## 2907 GO:0031994
## 2908 GO:0031995
## 2909 GO:0032003
## 2910 GO:0032027
## 2911 GO:0032028
## 2912 GO:0032029
## 2913 GO:0032036
## 2914 GO:0032038
## 2915 GO:0032041
## 2916 GO:0032050
## 2917 GO:0032051
## 2918 GO:0032052
## 2919 GO:0032089
## 2920 GO:0032090
## 2921 GO:0032093
## 2922 GO:0032135
## 2923 GO:0032137
## 2924 GO:0032138
## 2925 GO:0032139
## 2926 GO:0032142
## 2927 GO:0032143
## 2928 GO:0032145
## 2929 GO:0032181
## 2930 GO:0032183
## 2931 GO:0032184
## 2932 GO:0032190
## 2933 GO:0032217
## 2934 GO:0032356
## 2935 GO:0032357
## 2936 GO:0032358
## 2937 GO:0032393
## 2938 GO:0032394
## 2939 GO:0032395
## 2940 GO:0032396
## 2941 GO:0032399
## 2942 GO:0032405
## 2943 GO:0032422
## 2944 GO:0032428
## 2945 GO:0032440
## 2946 GO:0032448
## 2947 GO:0032450
## 2948 GO:0032454
## 2949 GO:0032500
## 2950 GO:0032542
## 2951 GO:0032552
## 2952 GO:0032554
## 2953 GO:0032556
## 2954 GO:0032557
## 2955 GO:0032564
## 2956 GO:0032567
## 2957 GO:0032575
## 2958 GO:0032767
## 2959 GO:0032794
## 2960 GO:0032795
## 2961 GO:0032810
## 2962 GO:0032813
## 2963 GO:0032841
## 2964 GO:0032934
## 2965 GO:0033038
## 2966 GO:0033040
## 2967 GO:0033041
## 2968 GO:0033130
## 2969 GO:0033142
## 2970 GO:0033149
## 2971 GO:0033188
## 2972 GO:0033192
## 2973 GO:0033204
## 2974 GO:0033229
## 2975 GO:0033265
## 2976 GO:0033558
## 2977 GO:0033560
## 2978 GO:0033570
## 2979 GO:0033592
## 2980 GO:0033608
## 2981 GO:0033612
## 2982 GO:0033676
## 2983 GO:0033682
## 2984 GO:0033691
## 2985 GO:0033699
## 2986 GO:0033735
## 2987 GO:0033737
## 2988 GO:0033743
## 2989 GO:0033745
## 2990 GO:0033746
## 2991 GO:0033749
## 2992 GO:0033754
## 2993 GO:0033764
## 2994 GO:0033778
## 2995 GO:0033780
## 2996 GO:0033781
## 2997 GO:0033791
## 2998 GO:0033798
## 2999 GO:0033814
## 3000 GO:0033819
## 3001 GO:0033823
## 3002 GO:0033829
## 3003 GO:0033842
## 3004 GO:0033857
## 3005 GO:0033858
## 3006 GO:0033862
## 3007 GO:0033867
## 3008 GO:0033871
## 3009 GO:0033872
## 3010 GO:0033878
## 3011 GO:0033882
## 3012 GO:0033883
## 3013 GO:0033885
## 3014 GO:0033897
## 3015 GO:0033906
## 3016 GO:0033919
## 3017 GO:0033925
## 3018 GO:0033961
## 3019 GO:0033981
## 3020 GO:0033989
## 3021 GO:0034012
## 3022 GO:0034038
## 3023 GO:0034039
## 3024 GO:0034040
## 3025 GO:0034041
## 3026 GO:0034056
## 3027 GO:0034057
## 3028 GO:0034061
## 3029 GO:0034185
## 3030 GO:0034186
## 3031 GO:0034188
## 3032 GO:0034189
## 3033 GO:0034211
## 3034 GO:0034235
## 3035 GO:0034353
## 3036 GO:0034386
## 3037 GO:0034416
## 3038 GO:0034417
## 3039 GO:0034431
## 3040 GO:0034432
## 3041 GO:0034437
## 3042 GO:0034450
## 3043 GO:0034452
## 3044 GO:0034481
## 3045 GO:0034483
## 3046 GO:0034485
## 3047 GO:0034512
## 3048 GO:0034513
## 3049 GO:0034545
## 3050 GO:0034584
## 3051 GO:0034590
## 3052 GO:0034594
## 3053 GO:0034596
## 3054 GO:0034597
## 3055 GO:0034602
## 3056 GO:0034604
## 3057 GO:0034617
## 3058 GO:0034618
## 3059 GO:0034632
## 3060 GO:0034634
## 3061 GO:0034649
## 3062 GO:0034711
## 3063 GO:0034713
## 3064 GO:0034714
## 3065 GO:0034722
## 3066 GO:0034736
## 3067 GO:0034739
## 3068 GO:0034875
## 3069 GO:0034899
## 3070 GO:0034979
## 3071 GO:0034986
## 3072 GO:0034987
## 3073 GO:0034988
## 3074 GO:0035014
## 3075 GO:0035034
## 3076 GO:0035173
## 3077 GO:0035174
## 3078 GO:0035175
## 3079 GO:0035184
## 3080 GO:0035226
## 3081 GO:0035240
## 3082 GO:0035241
## 3083 GO:0035242
## 3084 GO:0035243
## 3085 GO:0035251
## 3086 GO:0035252
## 3087 GO:0035254
## 3088 GO:0035255
## 3089 GO:0035256
## 3090 GO:0035259
## 3091 GO:0035276
## 3092 GO:0035299
## 3093 GO:0035325
## 3094 GO:0035368
## 3095 GO:0035373
## 3096 GO:0035374
## 3097 GO:0035375
## 3098 GO:0035379
## 3099 GO:0035401
## 3100 GO:0035402
## 3101 GO:0035403
## 3102 GO:0035410
## 3103 GO:0035438
## 3104 GO:0035472
## 3105 GO:0035473
## 3106 GO:0035478
## 3107 GO:0035500
## 3108 GO:0035501
## 3109 GO:0035514
## 3110 GO:0035515
## 3111 GO:0035516
## 3112 GO:0035529
## 3113 GO:0035538
## 3114 GO:0035539
## 3115 GO:0035575
## 3116 GO:0035586
## 3117 GO:0035594
## 3118 GO:0035596
## 3119 GO:0035597
## 3120 GO:0035598
## 3121 GO:0035605
## 3122 GO:0035612
## 3123 GO:0035614
## 3124 GO:0035615
## 3125 GO:0035620
## 3126 GO:0035642
## 3127 GO:0035643
## 3128 GO:0035650
## 3129 GO:0035651
## 3130 GO:0035662
## 3131 GO:0035663
## 3132 GO:0035671
## 3133 GO:0035673
## 3134 GO:0035717
## 3135 GO:0035718
## 3136 GO:0035727
## 3137 GO:0035730
## 3138 GO:0035731
## 3139 GO:0035755
## 3140 GO:0035757
## 3141 GO:0035758
## 3142 GO:0035800
## 3143 GO:0035851
## 3144 GO:0035870
## 3145 GO:0035877
## 3146 GO:0035925
## 3147 GO:0035939
## 3148 GO:0036004
## 3149 GO:0036033
## 3150 GO:0036041
## 3151 GO:0036054
## 3152 GO:0036055
## 3153 GO:0036105
## 3154 GO:0036130
## 3155 GO:0036131
## 3156 GO:0036132
## 3157 GO:0036134
## 3158 GO:0036139
## 3159 GO:0036140
## 3160 GO:0036143
## 3161 GO:0036219
## 3162 GO:0036220
## 3163 GO:0036222
## 3164 GO:0036312
## 3165 GO:0036313
## 3166 GO:0036317
## 3167 GO:0036326
## 3168 GO:0036327
## 3169 GO:0036328
## 3170 GO:0036332
## 3171 GO:0036374
## 3172 GO:0036393
## 3173 GO:0036402
## 3174 GO:0036403
## 3175 GO:0036435
## 3176 GO:0036455
## 3177 GO:0036458
## 3178 GO:0036461
## 3179 GO:0036468
## 3180 GO:0036479
## 3181 GO:0036487
## 3182 GO:0038024
## 3183 GO:0038025
## 3184 GO:0038036
## 3185 GO:0038046
## 3186 GO:0038047
## 3187 GO:0038048
## 3188 GO:0038049
## 3189 GO:0038051
## 3190 GO:0038052
## 3191 GO:0038062
## 3192 GO:0038064
## 3193 GO:0038085
## 3194 GO:0038100
## 3195 GO:0038106
## 3196 GO:0038117
## 3197 GO:0038121
## 3198 GO:0038131
## 3199 GO:0038132
## 3200 GO:0038164
## 3201 GO:0038181
## 3202 GO:0038182
## 3203 GO:0038186
## 3204 GO:0038191
## 3205 GO:0039552
## 3206 GO:0039706
## 3207 GO:0042007
## 3208 GO:0042008
## 3209 GO:0042011
## 3210 GO:0042012
## 3211 GO:0042015
## 3212 GO:0042017
## 3213 GO:0042018
## 3214 GO:0042019
## 3215 GO:0042020
## 3216 GO:0042043
## 3217 GO:0042056
## 3218 GO:0042131
## 3219 GO:0042132
## 3220 GO:0042134
## 3221 GO:0042163
## 3222 GO:0042164
## 3223 GO:0042165
## 3224 GO:0042166
## 3225 GO:0042169
## 3226 GO:0042281
## 3227 GO:0042282
## 3228 GO:0042287
## 3229 GO:0042288
## 3230 GO:0042289
## 3231 GO:0042292
## 3232 GO:0042296
## 3233 GO:0042328
## 3234 GO:0042356
## 3235 GO:0042379
## 3236 GO:0042392
## 3237 GO:0042497
## 3238 GO:0042577
## 3239 GO:0042586
## 3240 GO:0042602
## 3241 GO:0042608
## 3242 GO:0042609
## 3243 GO:0042610
## 3244 GO:0042624
## 3245 GO:0042658
## 3246 GO:0042731
## 3247 GO:0042781
## 3248 GO:0042799
## 3249 GO:0042805
## 3250 GO:0042806
## 3251 GO:0042813
## 3252 GO:0042835
## 3253 GO:0042903
## 3254 GO:0042922
## 3255 GO:0042923
## 3256 GO:0042924
## 3257 GO:0042931
## 3258 GO:0042975
## 3259 GO:0042978
## 3260 GO:0042979
## 3261 GO:0043008
## 3262 GO:0043014
## 3263 GO:0043015
## 3264 GO:0043022
## 3265 GO:0043024
## 3266 GO:0043035
## 3267 GO:0043120
## 3268 GO:0043125
## 3269 GO:0043136
## 3270 GO:0043139
## 3271 GO:0043141
## 3272 GO:0043178
## 3273 GO:0043183
## 3274 GO:0043184
## 3275 GO:0043185
## 3276 GO:0043208
## 3277 GO:0043221
## 3278 GO:0043225
## 3279 GO:0043236
## 3280 GO:0043237
## 3281 GO:0043250
## 3282 GO:0043262
## 3283 GO:0043273
## 3284 GO:0043325
## 3285 GO:0043337
## 3286 GO:0043394
## 3287 GO:0043395
## 3288 GO:0043398
## 3289 GO:0043423
## 3290 GO:0043426
## 3291 GO:0043495
## 3292 GO:0043515
## 3293 GO:0043522
## 3294 GO:0043533
## 3295 GO:0043544
## 3296 GO:0043546
## 3297 GO:0043559
## 3298 GO:0043734
## 3299 GO:0043739
## 3300 GO:0043754
## 3301 GO:0043783
## 3302 GO:0043795
## 3303 GO:0043812
## 3304 GO:0043813
## 3305 GO:0043843
## 3306 GO:0043849
## 3307 GO:0043874
## 3308 GO:0043890
## 3309 GO:0043914
## 3310 GO:0043916
## 3311 GO:0043924
## 3312 GO:0043994
## 3313 GO:0043995
## 3314 GO:0043996
## 3315 GO:0043997
## 3316 GO:0043998
## 3317 GO:0044020
## 3318 GO:0044323
## 3319 GO:0044377
## 3320 GO:0044378
## 3321 GO:0044508
## 3322 GO:0044547
## 3323 GO:0044549
## 3324 GO:0044594
## 3325 GO:0044595
## 3326 GO:0044596
## 3327 GO:0044610
## 3328 GO:0044713
## 3329 GO:0044714
## 3330 GO:0044715
## 3331 GO:0044716
## 3332 GO:0044717
## 3333 GO:0044729
## 3334 GO:0044730
## 3335 GO:0044736
## 3336 GO:0045027
## 3337 GO:0045028
## 3338 GO:0045029
## 3339 GO:0045030
## 3340 GO:0045031
## 3341 GO:0045032
## 3342 GO:0045118
## 3343 GO:0045125
## 3344 GO:0045127
## 3345 GO:0045130
## 3346 GO:0045131
## 3347 GO:0045134
## 3348 GO:0045153
## 3349 GO:0045155
## 3350 GO:0045159
## 3351 GO:0045174
## 3352 GO:0045182
## 3353 GO:0045183
## 3354 GO:0045236
## 3355 GO:0045294
## 3356 GO:0045295
## 3357 GO:0045322
## 3358 GO:0045352
## 3359 GO:0045353
## 3360 GO:0045485
## 3361 GO:0045499
## 3362 GO:0045504
## 3363 GO:0045509
## 3364 GO:0045513
## 3365 GO:0045517
## 3366 GO:0045518
## 3367 GO:0045519
## 3368 GO:0045523
## 3369 GO:0045545
## 3370 GO:0045550
## 3371 GO:0045569
## 3372 GO:0045703
## 3373 GO:0046316
## 3374 GO:0046403
## 3375 GO:0046404
## 3376 GO:0046523
## 3377 GO:0046525
## 3378 GO:0046526
## 3379 GO:0046527
## 3380 GO:0046538
## 3381 GO:0046539
## 3382 GO:0046554
## 3383 GO:0046556
## 3384 GO:0046570
## 3385 GO:0046577
## 3386 GO:0046592
## 3387 GO:0046623
## 3388 GO:0046624
## 3389 GO:0046625
## 3390 GO:0046703
## 3391 GO:0046715
## 3392 GO:0046789
## 3393 GO:0046790
## 3394 GO:0046817
## 3395 GO:0046848
## 3396 GO:0046870
## 3397 GO:0046904
## 3398 GO:0046911
## 3399 GO:0046912
## 3400 GO:0046920
## 3401 GO:0046922
## 3402 GO:0046923
## 3403 GO:0046933
## 3404 GO:0046935
## 3405 GO:0046964
## 3406 GO:0046965
## 3407 GO:0046969
## 3408 GO:0046970
## 3409 GO:0046972
## 3410 GO:0046974
## 3411 GO:0046975
## 3412 GO:0046976
## 3413 GO:0046978
## 3414 GO:0046979
## 3415 GO:0046980
## 3416 GO:0046997
## 3417 GO:0047006
## 3418 GO:0047012
## 3419 GO:0047015
## 3420 GO:0047016
## 3421 GO:0047017
## 3422 GO:0047020
## 3423 GO:0047021
## 3424 GO:0047023
## 3425 GO:0047025
## 3426 GO:0047035
## 3427 GO:0047042
## 3428 GO:0047045
## 3429 GO:0047057
## 3430 GO:0047058
## 3431 GO:0047066
## 3432 GO:0047086
## 3433 GO:0047105
## 3434 GO:0047115
## 3435 GO:0047117
## 3436 GO:0047127
## 3437 GO:0047130
## 3438 GO:0047131
## 3439 GO:0047134
## 3440 GO:0047150
## 3441 GO:0047159
## 3442 GO:0047166
## 3443 GO:0047173
## 3444 GO:0047179
## 3445 GO:0047184
## 3446 GO:0047186
## 3447 GO:0047191
## 3448 GO:0047192
## 3449 GO:0047196
## 3450 GO:0047198
## 3451 GO:0047220
## 3452 GO:0047223
## 3453 GO:0047224
## 3454 GO:0047225
## 3455 GO:0047238
## 3456 GO:0047256
## 3457 GO:0047263
## 3458 GO:0047273
## 3459 GO:0047275
## 3460 GO:0047277
## 3461 GO:0047280
## 3462 GO:0047288
## 3463 GO:0047290
## 3464 GO:0047291
## 3465 GO:0047293
## 3466 GO:0047298
## 3467 GO:0047305
## 3468 GO:0047312
## 3469 GO:0047315
## 3470 GO:0047316
## 3471 GO:0047322
## 3472 GO:0047323
## 3473 GO:0047325
## 3474 GO:0047326
## 3475 GO:0047341
## 3476 GO:0047349
## 3477 GO:0047369
## 3478 GO:0047374
## 3479 GO:0047389
## 3480 GO:0047390
## 3481 GO:0047391
## 3482 GO:0047394
## 3483 GO:0047395
## 3484 GO:0047402
## 3485 GO:0047408
## 3486 GO:0047409
## 3487 GO:0047442
## 3488 GO:0047444
## 3489 GO:0047451
## 3490 GO:0047453
## 3491 GO:0047464
## 3492 GO:0047493
## 3493 GO:0047498
## 3494 GO:0047522
## 3495 GO:0047536
## 3496 GO:0047545
## 3497 GO:0047547
## 3498 GO:0047555
## 3499 GO:0047560
## 3500 GO:0047578
## 3501 GO:0047598
## 3502 GO:0047613
## 3503 GO:0047620
## 3504 GO:0047621
## 3505 GO:0047631
## 3506 GO:0047638
## 3507 GO:0047658
## 3508 GO:0047676
## 3509 GO:0047685
## 3510 GO:0047693
## 3511 GO:0047696
## 3512 GO:0047704
## 3513 GO:0047708
## 3514 GO:0047710
## 3515 GO:0047718
## 3516 GO:0047726
## 3517 GO:0047730
## 3518 GO:0047734
## 3519 GO:0047743
## 3520 GO:0047747
## 3521 GO:0047750
## 3522 GO:0047751
## 3523 GO:0047756
## 3524 GO:0047757
## 3525 GO:0047760
## 3526 GO:0047783
## 3527 GO:0047787
## 3528 GO:0047800
## 3529 GO:0047801
## 3530 GO:0047804
## 3531 GO:0047820
## 3532 GO:0047837
## 3533 GO:0047840
## 3534 GO:0047844
## 3535 GO:0047856
## 3536 GO:0047860
## 3537 GO:0047865
## 3538 GO:0047874
## 3539 GO:0047888
## 3540 GO:0047894
## 3541 GO:0047915
## 3542 GO:0047933
## 3543 GO:0047936
## 3544 GO:0047939
## 3545 GO:0047945
## 3546 GO:0047946
## 3547 GO:0047961
## 3548 GO:0047962
## 3549 GO:0047963
## 3550 GO:0047969
## 3551 GO:0047977
## 3552 GO:0047988
## 3553 GO:0047992
## 3554 GO:0048018
## 3555 GO:0048019
## 3556 GO:0048020
## 3557 GO:0048030
## 3558 GO:0048038
## 3559 GO:0048039
## 3560 GO:0048040
## 3561 GO:0048101
## 3562 GO:0048156
## 3563 GO:0048185
## 3564 GO:0048244
## 3565 GO:0048248
## 3566 GO:0048257
## 3567 GO:0048270
## 3568 GO:0048403
## 3569 GO:0048407
## 3570 GO:0048495
## 3571 GO:0048531
## 3572 GO:0048763
## 3573 GO:0050023
## 3574 GO:0050031
## 3575 GO:0050038
## 3576 GO:0050046
## 3577 GO:0050051
## 3578 GO:0050072
## 3579 GO:0050080
## 3580 GO:0050104
## 3581 GO:0050113
## 3582 GO:0050115
## 3583 GO:0050119
## 3584 GO:0050121
## 3585 GO:0050124
## 3586 GO:0050129
## 3587 GO:0050135
## 3588 GO:0050144
## 3589 GO:0050146
## 3590 GO:0050152
## 3591 GO:0050178
## 3592 GO:0050197
## 3593 GO:0050201
## 3594 GO:0050211
## 3595 GO:0050220
## 3596 GO:0050221
## 3597 GO:0050252
## 3598 GO:0050253
## 3599 GO:0050254
## 3600 GO:0050262
## 3601 GO:0050265
## 3602 GO:0050277
## 3603 GO:0050290
## 3604 GO:0050291
## 3605 GO:0050294
## 3606 GO:0050313
## 3607 GO:0050321
## 3608 GO:0050333
## 3609 GO:0050337
## 3610 GO:0050346
## 3611 GO:0050347
## 3612 GO:0050353
## 3613 GO:0050354
## 3614 GO:0050355
## 3615 GO:0050379
## 3616 GO:0050405
## 3617 GO:0050421
## 3618 GO:0050429
## 3619 GO:0050431
## 3620 GO:0050436
## 3621 GO:0050444
## 3622 GO:0050459
## 3623 GO:0050462
## 3624 GO:0050473
## 3625 GO:0050479
## 3626 GO:0050480
## 3627 GO:0050501
## 3628 GO:0050508
## 3629 GO:0050509
## 3630 GO:0050510
## 3631 GO:0050512
## 3632 GO:0050528
## 3633 GO:0050542
## 3634 GO:0050543
## 3635 GO:0050544
## 3636 GO:0050561
## 3637 GO:0050567
## 3638 GO:0050571
## 3639 GO:0050577
## 3640 GO:0050591
## 3641 GO:0050610
## 3642 GO:0050632
## 3643 GO:0050646
## 3644 GO:0050647
## 3645 GO:0050648
## 3646 GO:0050649
## 3647 GO:0050656
## 3648 GO:0050659
## 3649 GO:0050664
## 3650 GO:0050682
## 3651 GO:0050683
## 3652 GO:0050692
## 3653 GO:0050693
## 3654 GO:0050698
## 3655 GO:0050699
## 3656 GO:0050700
## 3657 GO:0050780
## 3658 GO:0050785
## 3659 GO:0050786
## 3660 GO:0050811
## 3661 GO:0050815
## 3662 GO:0050816
## 3663 GO:0050833
## 3664 GO:0050897
## 3665 GO:0050998
## 3666 GO:0051011
## 3667 GO:0051033
## 3668 GO:0051120
## 3669 GO:0051139
## 3670 GO:0051184
## 3671 GO:0051185
## 3672 GO:0051264
## 3673 GO:0051265
## 3674 GO:0051267
## 3675 GO:0051371
## 3676 GO:0051373
## 3677 GO:0051377
## 3678 GO:0051378
## 3679 GO:0051379
## 3680 GO:0051380
## 3681 GO:0051392
## 3682 GO:0051393
## 3683 GO:0051400
## 3684 GO:0051424
## 3685 GO:0051425
## 3686 GO:0051429
## 3687 GO:0051430
## 3688 GO:0051431
## 3689 GO:0051433
## 3690 GO:0051434
## 3691 GO:0051500
## 3692 GO:0051525
## 3693 GO:0051537
## 3694 GO:0051538
## 3695 GO:0051575
## 3696 GO:0051717
## 3697 GO:0051722
## 3698 GO:0051724
## 3699 GO:0051731
## 3700 GO:0051736
## 3701 GO:0051747
## 3702 GO:0051765
## 3703 GO:0051766
## 3704 GO:0051786
## 3705 GO:0051787
## 3706 GO:0051800
## 3707 GO:0051861
## 3708 GO:0051864
## 3709 GO:0051870
## 3710 GO:0051879
## 3711 GO:0051880
## 3712 GO:0051903
## 3713 GO:0051916
## 3714 GO:0051978
## 3715 GO:0051990
## 3716 GO:0051996
## 3717 GO:0051998
## 3718 GO:0052381
## 3719 GO:0052591
## 3720 GO:0052593
## 3721 GO:0052594
## 3722 GO:0052595
## 3723 GO:0052596
## 3724 GO:0052597
## 3725 GO:0052598
## 3726 GO:0052599
## 3727 GO:0052600
## 3728 GO:0052629
## 3729 GO:0052642
## 3730 GO:0052654
## 3731 GO:0052655
## 3732 GO:0052656
## 3733 GO:0052657
## 3734 GO:0052666
## 3735 GO:0052692
## 3736 GO:0052717
## 3737 GO:0052723
## 3738 GO:0052724
## 3739 GO:0052725
## 3740 GO:0052726
## 3741 GO:0052731
## 3742 GO:0052732
## 3743 GO:0052739
## 3744 GO:0052740
## 3745 GO:0052794
## 3746 GO:0052795
## 3747 GO:0052796
## 3748 GO:0052798
## 3749 GO:0052810
## 3750 GO:0052811
## 3751 GO:0052812
## 3752 GO:0052815
## 3753 GO:0052817
## 3754 GO:0052821
## 3755 GO:0052822
## 3756 GO:0052825
## 3757 GO:0052826
## 3758 GO:0052827
## 3759 GO:0052828
## 3760 GO:0052829
## 3761 GO:0052830
## 3762 GO:0052831
## 3763 GO:0052832
## 3764 GO:0052833
## 3765 GO:0052835
## 3766 GO:0052836
## 3767 GO:0052839
## 3768 GO:0052840
## 3769 GO:0052843
## 3770 GO:0052844
## 3771 GO:0052845
## 3772 GO:0052846
## 3773 GO:0052847
## 3774 GO:0052848
## 3775 GO:0052851
## 3776 GO:0052852
## 3777 GO:0052853
## 3778 GO:0052854
## 3779 GO:0052855
## 3780 GO:0052858
## 3781 GO:0052869
## 3782 GO:0052871
## 3783 GO:0052872
## 3784 GO:0052884
## 3785 GO:0052885
## 3786 GO:0052894
## 3787 GO:0052895
## 3788 GO:0052899
## 3789 GO:0052901
## 3790 GO:0052902
## 3791 GO:0052903
## 3792 GO:0052904
## 3793 GO:0052906
## 3794 GO:0052907
## 3795 GO:0052909
## 3796 GO:0052917
## 3797 GO:0052918
## 3798 GO:0052925
## 3799 GO:0052926
## 3800 GO:0052927
## 3801 GO:0052928
## 3802 GO:0052929
## 3803 GO:0055077
## 3804 GO:0055100
## 3805 GO:0055102
## 3806 GO:0055103
## 3807 GO:0060001
## 3808 GO:0060002
## 3809 GO:0060072
## 3810 GO:0060175
## 3811 GO:0060228
## 3812 GO:0060230
## 3813 GO:0060422
## 3814 GO:0060698
## 3815 GO:0061133
## 3816 GO:0061501
## 3817 GO:0061507
## 3818 GO:0061513
## 3819 GO:0061547
## 3820 GO:0061598
## 3821 GO:0061599
## 3822 GO:0061604
## 3823 GO:0061605
## 3824 GO:0061609
## 3825 GO:0061627
## 3826 GO:0061628
## 3827 GO:0061629
## 3828 GO:0061649
## 3829 GO:0061656
## 3830 GO:0061663
## 3831 GO:0061665
## 3832 GO:0061685
## 3833 GO:0061690
## 3834 GO:0061697
## 3835 GO:0061711
## 3836 GO:0061712
## 3837 GO:0061714
## 3838 GO:0061749
## 3839 GO:0061750
## 3840 GO:0061752
## 3841 GO:0061768
## 3842 GO:0061769
## 3843 GO:0061770
## 3844 GO:0061783
## 3845 GO:0061798
## 3846 GO:0061799
## 3847 GO:0061809
## 3848 GO:0061811
## 3849 GO:0061812
## 3850 GO:0061821
## 3851 GO:0070002
## 3852 GO:0070006
## 3853 GO:0070008
## 3854 GO:0070009
## 3855 GO:0070012
## 3856 GO:0070016
## 3857 GO:0070025
## 3858 GO:0070026
## 3859 GO:0070037
## 3860 GO:0070051
## 3861 GO:0070052
## 3862 GO:0070053
## 3863 GO:0070061
## 3864 GO:0070064
## 3865 GO:0070080
## 3866 GO:0070095
## 3867 GO:0070097
## 3868 GO:0070119
## 3869 GO:0070123
## 3870 GO:0070139
## 3871 GO:0070140
## 3872 GO:0070180
## 3873 GO:0070182
## 3874 GO:0070191
## 3875 GO:0070224
## 3876 GO:0070251
## 3877 GO:0070259
## 3878 GO:0070260
## 3879 GO:0070273
## 3880 GO:0070280
## 3881 GO:0070287
## 3882 GO:0070290
## 3883 GO:0070300
## 3884 GO:0070320
## 3885 GO:0070324
## 3886 GO:0070326
## 3887 GO:0070330
## 3888 GO:0070335
## 3889 GO:0070336
## 3890 GO:0070337
## 3891 GO:0070361
## 3892 GO:0070362
## 3893 GO:0070363
## 3894 GO:0070401
## 3895 GO:0070402
## 3896 GO:0070403
## 3897 GO:0070404
## 3898 GO:0070405
## 3899 GO:0070410
## 3900 GO:0070411
## 3901 GO:0070463
## 3902 GO:0070492
## 3903 GO:0070506
## 3904 GO:0070513
## 3905 GO:0070524
## 3906 GO:0070538
## 3907 GO:0070539
## 3908 GO:0070546
## 3909 GO:0070548
## 3910 GO:0070551
## 3911 GO:0070553
## 3912 GO:0070566
## 3913 GO:0070567
## 3914 GO:0070568
## 3915 GO:0070573
## 3916 GO:0070576
## 3917 GO:0070577
## 3918 GO:0070579
## 3919 GO:0070611
## 3920 GO:0070612
## 3921 GO:0070615
## 3922 GO:0070626
## 3923 GO:0070644
## 3924 GO:0070653
## 3925 GO:0070679
## 3926 GO:0070694
## 3927 GO:0070696
## 3928 GO:0070697
## 3929 GO:0070698
## 3930 GO:0070699
## 3931 GO:0070700
## 3932 GO:0070728
## 3933 GO:0070733
## 3934 GO:0070735
## 3935 GO:0070736
## 3936 GO:0070739
## 3937 GO:0070740
## 3938 GO:0070742
## 3939 GO:0070773
## 3940 GO:0070774
## 3941 GO:0070780
## 3942 GO:0070815
## 3943 GO:0070840
## 3944 GO:0070853
## 3945 GO:0070856
## 3946 GO:0070878
## 3947 GO:0070883
## 3948 GO:0070888
## 3949 GO:0070890
## 3950 GO:0070891
## 3951 GO:0070892
## 3952 GO:0070905
## 3953 GO:0070915
## 3954 GO:0070974
## 3955 GO:0070975
## 3956 GO:0070976
## 3957 GO:0070984
## 3958 GO:0070990
## 3959 GO:0070991
## 3960 GO:0070996
## 3961 GO:0071074
## 3962 GO:0071164
## 3963 GO:0071207
## 3964 GO:0071424
## 3965 GO:0071532
## 3966 GO:0071535
## 3967 GO:0071558
## 3968 GO:0071566
## 3969 GO:0071567
## 3970 GO:0071614
## 3971 GO:0071633
## 3972 GO:0071723
## 3973 GO:0071791
## 3974 GO:0071795
## 3975 GO:0071796
## 3976 GO:0071813
## 3977 GO:0071820
## 3978 GO:0071855
## 3979 GO:0071885
## 3980 GO:0071886
## 3981 GO:0071933
## 3982 GO:0071936
## 3983 GO:0071987
## 3984 GO:0072320
## 3985 GO:0072349
## 3986 GO:0072354
## 3987 GO:0072518
## 3988 GO:0072544
## 3989 GO:0072545
## 3990 GO:0072555
## 3991 GO:0072570
## 3992 GO:0072572
## 3993 GO:0072582
## 3994 GO:0072587
## 3995 GO:0072590
## 3996 GO:0072591
## 3997 GO:0080019
## 3998 GO:0080023
## 3999 GO:0080025
## 4000 GO:0080048
## 4001 GO:0080101
## 4002 GO:0080122
## 4003 GO:0080130
## 4004 GO:0080132
## 4005 GO:0086006
## 4006 GO:0086007
## 4007 GO:0086008
## 4008 GO:0086020
## 4009 GO:0086037
## 4010 GO:0086038
## 4011 GO:0086039
## 4012 GO:0086041
## 4013 GO:0086056
## 4014 GO:0086057
## 4015 GO:0086059
## 4016 GO:0086060
## 4017 GO:0086061
## 4018 GO:0086062
## 4019 GO:0086063
## 4020 GO:0086075
## 4021 GO:0086076
## 4022 GO:0086077
## 4023 GO:0086078
## 4024 GO:0086079
## 4025 GO:0086080
## 4026 GO:0086082
## 4027 GO:0086083
## 4028 GO:0086087
## 4029 GO:0086089
## 4030 GO:0086090
## 4031 GO:0089720
## 4032 GO:0090079
## 4033 GO:0090409
## 4034 GO:0090416
## 4035 GO:0090422
## 4036 GO:0090482
## 4037 GO:0090484
## 4038 GO:0090541
## 4039 GO:0090554
## 4040 GO:0090555
## 4041 GO:0090556
## 4042 GO:0090599
## 4043 GO:0090624
## 4044 GO:0090631
## 4045 GO:0090722
## 4046 GO:0097001
## 4047 GO:0097003
## 4048 GO:0097016
## 4049 GO:0097020
## 4050 GO:0097027
## 4051 GO:0097100
## 4052 GO:0097109
## 4053 GO:0097157
## 4054 GO:0097158
## 4055 GO:0097160
## 4056 GO:0097161
## 4057 GO:0097162
## 4058 GO:0097177
## 4059 GO:0097199
## 4060 GO:0097258
## 4061 GO:0097259
## 4062 GO:0097260
## 4063 GO:0097322
## 4064 GO:0097363
## 4065 GO:0097371
## 4066 GO:0097372
## 4067 GO:0097383
## 4068 GO:0097472
## 4069 GO:0097493
## 4070 GO:0097573
## 4071 GO:0097602
## 4072 GO:0097603
## 4073 GO:0097604
## 4074 GO:0097621
## 4075 GO:0097626
## 4076 GO:0097627
## 4077 GO:0097642
## 4078 GO:0097643
## 4079 GO:0097655
## 4080 GO:0097677
## 4081 GO:0097689
## 4082 GO:0097718
## 4083 GO:0097726
## 4084 GO:0098518
## 4085 GO:0098519
## 4086 GO:0098601
## 4087 GO:0098619
## 4088 GO:0098621
## 4089 GO:0098625
## 4090 GO:0098626
## 4091 GO:0098633
## 4092 GO:0098634
## 4093 GO:0098639
## 4094 GO:0098640
## 4095 GO:0098770
## 4096 GO:0098782
## 4097 GO:0098808
## 4098 GO:0098960
## 4099 GO:0098973
## 4100 GO:0099038
## 4101 GO:0099095
## 4102 GO:0099104
## 4103 GO:0099530
## 4104 GO:0099580
## 4105 GO:0099583
## 4106 GO:0099589
## 4107 GO:0099609
## 4108 GO:0101006
## 4109 GO:0101020
## 4110 GO:0102005
## 4111 GO:0102007
## 4112 GO:0102008
## 4113 GO:0102009
## 4114 GO:0102132
## 4115 GO:0102279
## 4116 GO:0102320
## 4117 GO:0102336
## 4118 GO:0102337
## 4119 GO:0102338
## 4120 GO:0102339
## 4121 GO:0102340
## 4122 GO:0102341
## 4123 GO:0102342
## 4124 GO:0102344
## 4125 GO:0102345
## 4126 GO:0102390
## 4127 GO:0102391
## 4128 GO:0102483
## 4129 GO:0102490
## 4130 GO:0102522
## 4131 GO:0102704
## 4132 GO:0103053
## 4133 GO:0103095
## 4134 GO:1901338
## 4135 GO:1901474
## 4136 GO:1901611
## 4137 GO:1901612
## 4138 GO:1901640
## 4139 GO:1901641
## 4140 GO:1901677
## 4141 GO:1901682
## 4142 GO:1902098
## 4143 GO:1902118
## 4144 GO:1902121
## 4145 GO:1902122
## 4146 GO:1902271
## 4147 GO:1902282
## 4148 GO:1902379
## 4149 GO:1902387
## 4150 GO:1902388
## 4151 GO:1902444
## 4152 GO:1903924
## 4153 GO:1904012
## 4154 GO:1904013
## 4155 GO:1904047
## 4156 GO:1904121
## 4157 GO:1904264
## 4158 GO:1904288
## 4159 GO:1904315
## 4160 GO:1904399
## 4161 GO:1904408
## 4162 GO:1904454
## 4163 GO:1904492
## 4164 GO:1904493
## 4165 GO:1904599
## 4166 GO:1904680
## 4167 GO:1904713
## 4168 GO:1904768
## 4169 GO:1904854
## 4170 GO:1904928
## 4171 GO:1904929
## 4172 GO:1905394
## 4173 GO:1905573
## 4174 GO:1905574
## 4175 GO:1905575
## 4176 GO:1905576
## 4177 GO:1905577
## 4178 GO:1905594
## 4179 GO:1905773
## 4180 GO:1990003
## 4181 GO:1990050
## 4182 GO:1990081
## 4183 GO:1990136
## 4184 GO:1990174
## 4185 GO:1990175
## 4186 GO:1990188
## 4187 GO:1990189
## 4188 GO:1990190
## 4189 GO:1990226
## 4190 GO:1990244
## 4191 GO:1990247
## 4192 GO:1990254
## 4193 GO:1990259
## 4194 GO:1990269
## 4195 GO:1990272
## 4196 GO:1990275
## 4197 GO:1990405
## 4198 GO:1990430
## 4199 GO:1990439
## 4200 GO:1990444
## 4201 GO:1990446
## 4202 GO:1990450
## 4203 GO:1990460
## 4204 GO:1990595
## 4205 GO:1990599
## 4206 GO:1990698
## 4207 GO:1990699
## 4208 GO:1990715
## 4209 GO:1990738
## 4210 GO:1990756
## 4211 GO:1990763
## 4212 GO:1990829
## 4213 GO:1990883
## 4214 GO:1990889
## 4215 GO:1990930
## 4216 GO:1990931
## 4217 GO:1990932
## 4218 GO:1990955
## 4219 GO:1990984
## 4220 GO:2001065
## 4221 GO:2001069
## 4222 GO:2001070
## name
## 1 ubiquitin-like protein binding
## 2 ubiquitin binding
## 3 cyclin-dependent protein serine/threonine kinase regulator activity
## 4 Ran guanyl-nucleotide exchange factor activity
## 5 mRNA binding
## 6 chromatin DNA binding
## 7 structure-specific DNA binding
## 8 single-stranded DNA binding
## 9 double-stranded RNA binding
## 10 RNA binding
## 11 6-phosphofructo-2-kinase activity
## 12 fructose-2,6-bisphosphate 2-phosphatase activity
## 13 phosphofructokinase activity
## 14 sugar-phosphatase activity
## 15 Lys63-specific deubiquitinase activity
## 16 ubiquitin-specific protease activity involved in negative regulation of retrograde protein transport, ER to cytosol
## 17 ubiquitin-specific protease activity involved in negative regulation of ERAD pathway
## 18 snRNA binding
## 19 K63-linked polyubiquitin binding
## 20 polyubiquitin binding
## 21 mRNA 3'-UTR binding
## 22 poly(A) binding
## 23 dynein light chain binding
## 24 poly-purine tract binding
## 25 phosphatase activator activity
## 26 protein phosphatase activator activity
## 27 protein phosphatase 1 binding
## 28 zinc ion transmembrane transporter activity
## 29 poly-pyrimidine tract binding
## 30 transition metal ion transmembrane transporter activity
## 31 single-stranded RNA binding
## 32 nucleosomal DNA binding
## 33 TFIIH-class transcription factor binding
## 34 DNA-directed 5'-3' RNA polymerase activity
## 35 poly(C) RNA binding
## 36 centromeric DNA binding
## 37 poly(G) binding
## 38 5'-3' RNA polymerase activity
## 39 microtubule plus-end binding
## 40 RNA polymerase II C-terminal domain binding
## 41 isomerase activity
## 42 sulfate binding
## 43 ion channel inhibitor activity
## 44 channel inhibitor activity
## 45 DNA-dependent ATPase activity
## 46 glutamate decarboxylase activity
## 47 glutamate-ammonia ligase activity
## 48 glucuronyl-galactosyl-proteoglycan 4-alpha-N-acetylglucosaminyltransferase activity
## 49 beta-galactoside (CMP) alpha-2,3-sialyltransferase activity
## 50 cytidylate kinase activity
## 51 transmembrane receptor protein tyrosine kinase adaptor activity
## 52 insulin receptor binding
## 53 neurotrophin receptor binding
## 54 neurotrophin TRK receptor binding
## 55 neurotrophin TRKA receptor binding
## 56 N-acetyllactosaminide alpha-2,3-sialyltransferase activity
## 57 sialyltransferase activity
## 58 ATP-dependent microtubule motor activity, minus-end-directed
## 59 uridylate kinase activity
## 60 calcium-release channel activity
## 61 protein kinase activator activity
## 62 alpha-1,4-N-acetylgalactosaminyltransferase activity
## 63 protein serine/threonine kinase activator activity
## 64 glucuronylgalactosylproteoglycan 4-beta-N-acetylgalactosaminyltransferase activity
## 65 NADHX epimerase activity
## 66 NADPHX epimerase activity
## 67 cyclin-dependent protein serine/threonine kinase activator activity
## 68 NAADP-sensitive calcium-release channel activity
## 69 cysteine-type endopeptidase activity involved in apoptotic process
## 70 cysteine-type endopeptidase activity involved in execution phase of apoptosis
## 71 ligand-gated calcium channel activity
## 72 phosphatase regulator activity
## 73 nucleic acid binding
## 74 protein kinase regulator activity
## 75 protein phosphatase regulator activity
## 76 epidermal growth factor binding
## 77 guanyl-nucleotide exchange factor activity
## 78 RNA polymerase II basal transcription factor binding
## 79 DNA helicase activity
## 80 ATP-dependent DNA helicase activity
## 81 RNA-DNA hybrid ribonuclease activity
## 82 single-stranded DNA exodeoxyribonuclease activity
## 83 double-stranded DNA exodeoxyribonuclease activity
## 84 endoribonuclease activity, producing 5'-phosphomonoesters
## 85 endonuclease activity, active with either ribo- or deoxyribonucleic acids and producing 5'-phosphomonoesters
## 86 single-stranded DNA 5'-3' exodeoxyribonuclease activity
## 87 flap endonuclease activity
## 88 double-stranded DNA 5'-3' exodeoxyribonuclease activity
## 89 BMP receptor activity
## 90 transferrin receptor binding
## 91 calcium channel inhibitor activity
## 92 peroxiredoxin activity
## 93 sequence-specific mRNA binding
## 94 dynein binding
## 95 signaling adaptor activity
## 96 binding, bridging
## 97 histone binding
## 98 cysteine-type endopeptidase activity
## 99 Ran GTPase binding
## 100 glutamate binding
## 101 exonuclease activity, active with either ribo- or deoxyribonucleic acids and producing 5'-phosphomonoesters
## 102 promoter-specific chromatin binding
## 103 transcriptional repressor activity, RNA polymerase II core promoter proximal region sequence-specific binding
## 104 uridine kinase activity
## 105 calcium channel regulator activity
## 106 dehydroascorbic acid transporter activity
## 107 xenobiotic transporter activity
## 108 nucleoside phosphate kinase activity
## 109 D-glucose transmembrane transporter activity
## 110 endodeoxyribonuclease activity
## 111 pre-mRNA binding
## 112 Lys48-specific deubiquitinase activity
## 113 regulatory region RNA binding
## 114 DNA replication origin binding
## 115 N-acetylglucosaminyldiphosphodolichol N-acetylglucosaminyltransferase activity
## 116 intracellular ligand-gated ion channel activity
## 117 metallochaperone activity
## 118 copper chaperone activity
## 119 superoxide dismutase copper chaperone activity
## 120 structural constituent of nuclear pore
## 121 single-stranded DNA-dependent ATP-dependent DNA helicase activity
## 122 DNA/RNA helicase activity
## 123 ATP-dependent DNA/RNA helicase activity
## 124 ATP-dependent 3'-5' DNA/RNA helicase activity
## 125 3'-5' RNA helicase activity
## 126 ATP-dependent 3'-5' RNA helicase activity
## 127 siRNA binding
## 128 annealing helicase activity
## 129 tyrosine 3-monooxygenase activator activity
## 130 L-dopa decarboxylase activator activity
## 131 protein deglycase activity
## 132 3'-5' DNA helicase activity
## 133 ATP-dependent 3'-5' DNA helicase activity
## 134 single-stranded DNA-dependent ATPase activity
## 135 small protein activating enzyme binding
## 136 triplex DNA binding
## 137 mercury ion binding
## 138 dynein intermediate chain binding
## 139 nucleoside-triphosphate diphosphatase activity
## 140 dynein light intermediate chain binding
## 141 importin-alpha family protein binding
## 142 histone pre-mRNA DCP binding
## 143 U7 snRNA binding
## 144 annealing activity
## 145 cuprous ion binding
## 146 RISC complex binding
## 147 ubiquitin-specific protease binding
## 148 single-stranded DNA-dependent ATP-dependent 3'-5' DNA helicase activity
## 149 ubiquitin protein ligase binding
## 150 ubiquitin-like protein ligase binding
## 151 manganese ion binding
## 152 protein binding, bridging
## 153 nucleosome binding
## 154 exonuclease activity
## 155 tumor necrosis factor-activated receptor activity
## 156 rRNA methyltransferase activity
## 157 RNA methyltransferase activity
## 158 poly(U) RNA binding
## 159 carbon-oxygen lyase activity
## 160 hydro-lyase activity
## 161 nucleoside kinase activity
## 162 transcription factor activity, RNA polymerase II core promoter proximal region sequence-specific binding
## 163 ion channel regulator activity
## 164 SH3/SH2 adaptor activity
## 165 heterocyclic compound binding
## 166 molecular function regulator
## 167 transcriptional activator activity, RNA polymerase II transcription regulatory region sequence-specific binding
## 168 carbohydrate transmembrane transporter activity
## 169 diuretic hormone activity
## 170 Rab guanyl-nucleotide exchange factor activity
## 171 RNA stem-loop binding
## 172 BMP binding
## 173 organic hydroxy compound transmembrane transporter activity
## 174 peptidyl-prolyl cis-trans isomerase activity
## 175 cis-trans isomerase activity
## 176 organic cyclic compound binding
## 177 divalent inorganic cation transmembrane transporter activity
## 178 chromatin binding
## 179 acetylglucosaminyltransferase activity
## 180 carbohydrate kinase activity
## 181 vitamin transporter activity
## 182 3'-5'-exoribonuclease activity
## 183 rRNA (adenine-N6,N6-)-dimethyltransferase activity
## 184 cyclin-dependent protein serine/threonine kinase inhibitor activity
## 185 epidermal growth factor receptor binding
## 186 insulin-like growth factor receptor binding
## 187 sodium:amino acid symporter activity
## 188 neutral L-amino acid secondary active transmembrane transporter activity
## 189 organic acid:sodium symporter activity
## 190 cation:amino acid symporter activity
## 191 3'-5' exonuclease activity
## 192 glycine transmembrane transporter activity
## 193 anion:cation symporter activity
## 194 glycine:sodium symporter activity
## 195 rRNA (adenine) methyltransferase activity
## 196 oxidoreductase activity, acting on a sulfur group of donors, oxygen as acceptor
## 197 racemase and epimerase activity
## 198 exoribonuclease activity, producing 5'-phosphomonoesters
## 199 flavin-linked sulfhydryl oxidase activity
## 200 thiol oxidase activity
## 201 Ral GTPase binding
## 202 potassium channel inhibitor activity
## 203 receptor tyrosine kinase binding
## 204 cobalamin binding
## 205 leptin receptor activity
## 206 cupric ion binding
## 207 double-stranded DNA binding
## 208 carboxy-lyase activity
## 209 channel regulator activity
## 210 helicase activity
## 211 nucleotidyltransferase activity
## 212 transcriptional activator activity, RNA polymerase II distal enhancer sequence-specific binding
## 213 polyprenyltransferase activity
## 214 AMP deaminase activity
## 215 DNA ligase activity
## 216 DNA ligase (ATP) activity
## 217 NAD+ ADP-ribosyltransferase activity
## 218 UDP-N-acetylglucosamine diphosphorylase activity
## 219 fumarate hydratase activity
## 220 poly(A)-specific ribonuclease activity
## 221 oxygen-dependent protoporphyrinogen oxidase activity
## 222 glutamate-tRNA ligase activity
## 223 threonine-tRNA ligase activity
## 224 tryptophan-tRNA ligase activity
## 225 signal recognition particle binding
## 226 smoothened binding
## 227 water transmembrane transporter activity
## 228 hedgehog receptor activity
## 229 C-methyltransferase activity
## 230 metalloexopeptidase activity
## 231 7S RNA binding
## 232 thioredoxin peroxidase activity
## 233 rRNA (cytosine-C5-)-methyltransferase activity
## 234 pseudouridine synthase activity
## 235 polyol transmembrane transporter activity
## 236 glycerol transmembrane transporter activity
## 237 urea transmembrane transporter activity
## 238 water channel activity
## 239 glycerol channel activity
## 240 urea channel activity
## 241 phospholipase activator activity
## 242 rRNA (cytosine) methyltransferase activity
## 243 peptidase activator activity
## 244 oxidoreductase activity, acting on the CH-CH group of donors, oxygen as acceptor
## 245 oxidoreductase activity, oxidizing metal ions
## 246 oxidoreductase activity, oxidizing metal ions, NAD or NADP as acceptor
## 247 intramolecular transferase activity
## 248 interferon binding
## 249 interferon-gamma binding
## 250 estrogen receptor binding
## 251 cyanocobalamin reductase (cyanide-eliminating) activity
## 252 protein kinase A catalytic subunit binding
## 253 U3 snoRNA binding
## 254 amide transmembrane transporter activity
## 255 glucoside transmembrane transporter activity
## 256 single-stranded telomeric DNA binding
## 257 RS domain binding
## 258 C3HC4-type RING finger domain binding
## 259 lipase activator activity
## 260 small ribosomal subunit rRNA binding
## 261 UFM1 transferase activity
## 262 hedgehog family protein binding
## 263 G-rich strand telomeric DNA binding
## 264 sequence-specific single stranded DNA binding
## 265 protein ADP-ribosylase activity
## 266 phospholipase D activator activity
## 267 ligase activity
## 268 5'-3' exonuclease activity
## 269 exodeoxyribonuclease activity, producing 5'-phosphomonoesters
## 270 vitamin binding
## 271 steroid hormone receptor binding
## 272 5'-3' exodeoxyribonuclease activity
## 273 telomerase RNA binding
## 274 actin binding
## 275 ribonucleoprotein complex binding
## 276 protein disulfide isomerase activity
## 277 nucleoside diphosphate kinase activity
## 278 aminoacyl-tRNA ligase activity
## 279 rRNA binding
## 280 protein complex scaffold
## 281 Ras guanyl-nucleotide exchange factor activity
## 282 transcription factor binding
## 283 lyase activity
## 284 kinase regulator activity
## 285 histone acetyltransferase activity
## 286 calcium activated cation channel activity
## 287 neurotransmitter transporter activity
## 288 neurotransmitter:sodium symporter activity
## 289 N-acetyltransferase activity
## 290 adenylate cyclase binding
## 291 oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor
## 292 kinase activator activity
## 293 protein serine/threonine kinase inhibitor activity
## 294 peptide N-acetyltransferase activity
## 295 protein kinase A regulatory subunit binding
## 296 histone deacetylase regulator activity
## 297 histone methyltransferase activity (H3-K4 specific)
## 298 protein binding involved in protein folding
## 299 histone deacetylase inhibitor activity
## 300 peptide-lysine-N-acetyltransferase activity
## 301 polysome binding
## 302 sugar transmembrane transporter activity
## 303 glucose transmembrane transporter activity
## 304 monosaccharide transmembrane transporter activity
## 305 hexose transmembrane transporter activity
## 306 intramolecular oxidoreductase activity
## 307 endoribonuclease activity
## 308 prenyltransferase activity
## 309 copper ion binding
## 310 phosphatase inhibitor activity
## 311 peptide hormone receptor binding
## 312 enzyme inhibitor activity
## 313 transcriptional repressor activity, RNA polymerase II transcription regulatory region sequence-specific binding
## 314 RNA polymerase II transcription factor binding
## 315 kinase binding
## 316 enzyme regulator activity
## 317 RNA polymerase II transcription factor activity, sequence-specific DNA binding
## 318 ribonuclease activity
## 319 amino acid binding
## 320 carbon-carbon lyase activity
## 321 tRNA methyltransferase activity
## 322 oxidoreductase activity, acting on peroxide as acceptor
## 323 protein kinase A binding
## 324 deoxyribonuclease activity
## 325 alpha-mannosidase activity
## 326 mannosyl-oligosaccharide 1,2-alpha-mannosidase activity
## 327 calcium channel activity
## 328 ATP-dependent helicase activity
## 329 mannosidase activity
## 330 mannosyl-oligosaccharide mannosidase activity
## 331 ATPase regulator activity
## 332 protein tyrosine kinase binding
## 333 protein kinase binding
## 334 microtubule motor activity
## 335 protein phosphatase binding
## 336 exoribonuclease activity
## 337 protein phosphatase inhibitor activity
## 338 5S rRNA binding
## 339 lactate transmembrane transporter activity
## 340 mevalonate transmembrane transporter activity
## 341 acetyltransferase activity
## 342 N-acyltransferase activity
## 343 phospholipase binding
## 344 bHLH transcription factor binding
## 345 insulin receptor substrate binding
## 346 ephrin receptor binding
## 347 ubiquitin ligase inhibitor activity
## 348 mismatch base pair DNA N-glycosylase activity
## 349 purine-specific mismatch base pair DNA N-glycosylase activity
## 350 aminoacyl-tRNA editing activity
## 351 NADH dehydrogenase activity
## 352 phosphogluconate dehydrogenase (decarboxylating) activity
## 353 protein geranylgeranyltransferase activity
## 354 Rab geranylgeranyltransferase activity
## 355 aspartate-tRNA ligase activity
## 356 gap junction channel activity
## 357 insulin-like growth factor binding
## 358 NADH dehydrogenase (ubiquinone) activity
## 359 protein prenyltransferase activity
## 360 CTD phosphatase activity
## 361 cyclosporin A binding
## 362 oxidoreductase activity, acting on NAD(P)H, quinone or similar compound as acceptor
## 363 transferase activity, transferring pentosyl groups
## 364 hydrolase activity, hydrolyzing N-glycosyl compounds
## 365 ligase activity, forming phosphoric ester bonds
## 366 DNA N-glycosylase activity
## 367 phenanthrene-9,10-epoxide hydrolase activity
## 368 deaminase activity
## 369 procollagen-proline 3-dioxygenase activity
## 370 procollagen-proline dioxygenase activity
## 371 wide pore channel activity
## 372 high molecular weight B cell growth factor receptor binding
## 373 peptidyl-proline dioxygenase activity
## 374 peptidyl-proline 3-dioxygenase activity
## 375 mismatch repair complex binding
## 376 MutSalpha complex binding
## 377 long-chain fatty acyl-CoA binding
## 378 proton-transporting ATPase activity, rotational mechanism
## 379 N-acetyllactosaminide 3-alpha-galactosyltransferase activity
## 380 aspartate-tRNA(Asn) ligase activity
## 381 deoxyribonuclease inhibitor activity
## 382 uridylyltransferase activity
## 383 FAD binding
## 384 2-(3-amino-3-carboxypropyl)histidine synthase activity
## 385 gap junction channel activity involved in cell communication by electrical coupling
## 386 miRNA binding
## 387 nuclear hormone receptor binding
## 388 cysteine-type peptidase activity
## 389 phosphatase binding
## 390 enzyme binding
## 391 SH3 domain binding
## 392 enzyme activator activity
## 393 potassium channel regulator activity
## 394 oxidoreductase activity, acting on the CH-CH group of donors
## 395 endopeptidase activity
## 396 GTPase binding
## 397 lamin binding
## 398 RNA polymerase II core promoter proximal region sequence-specific DNA binding
## 399 core promoter proximal region sequence-specific DNA binding
## 400 core promoter proximal region DNA binding
## 401 Ras GTPase binding
## 402 protein N-terminus binding
## 403 ligase activity, forming carbon-nitrogen bonds
## 404 ATPase binding
## 405 transcriptional activator activity, RNA polymerase II core promoter proximal region sequence-specific binding
## 406 oxidoreductase activity
## 407 peptidase activity
## 408 cofactor binding
## 409 hormone receptor binding
## 410 ATPase activity
## 411 transcription coactivator binding
## 412 ATPase activator activity
## 413 peroxidase activity
## 414 solute:sodium symporter activity
## 415 ion gated channel activity
## 416 methylated histone binding
## 417 ubiquitin-like protein conjugating enzyme binding
## 418 nucleoside triphosphate adenylate kinase activity
## 419 androgen receptor binding
## 420 ubiquitin-protein transferase inhibitor activity
## 421 sequence-specific double-stranded DNA binding
## 422 fatty-acyl-CoA binding
## 423 alcohol dehydrogenase (NADP+) activity
## 424 acetylgalactosaminyltransferase activity
## 425 DNA binding
## 426 coenzyme binding
## 427 UDP-glycosyltransferase activity
## 428 oxidoreductase activity, acting on a sulfur group of donors
## 429 protease binding
## 430 protein disulfide oxidoreductase activity
## 431 rRNA (guanine) methyltransferase activity
## 432 tetrapyrrole binding
## 433 peptidase regulator activity
## 434 rRNA (guanosine-2'-O-)-methyltransferase activity
## 435 succinate dehydrogenase activity
## 436 delta24(24-1) sterol reductase activity
## 437 phospholipid-translocating ATPase activity
## 438 alditol:NADP+ 1-oxidoreductase activity
## 439 epoxide hydrolase activity
## 440 phosphatidylinositol-4,5-bisphosphate 5-phosphatase activity
## 441 AMP-activated protein kinase activity
## 442 proline-tRNA ligase activity
## 443 interleukin-1 receptor binding
## 444 nucleocytoplasmic transporter activity
## 445 phospholipid transporter activity
## 446 S-methyltransferase activity
## 447 exopeptidase activity
## 448 methionine synthase activity
## 449 endochitinase activity
## 450 basic amino acid transmembrane transporter activity
## 451 arginine transmembrane transporter activity
## 452 L-lysine transmembrane transporter activity
## 453 hydrolase activity, acting on ether bonds
## 454 ether hydrolase activity
## 455 intermediate filament binding
## 456 L-ascorbic acid binding
## 457 phosphatidylinositol bisphosphate phosphatase activity
## 458 phosphatidylinositol phosphate 5-phosphatase activity
## 459 histone acetyltransferase binding
## 460 ATPase inhibitor activity
## 461 sphingolipid delta-4 desaturase activity
## 462 peptide antigen binding
## 463 lipoprotein transporter activity
## 464 glutathione binding
## 465 angiostatin binding
## 466 ATPase activity, coupled to transmembrane movement of ions, rotational mechanism
## 467 inositol trisphosphate phosphatase activity
## 468 mRNA 5'-UTR binding
## 469 delta24-sterol reductase activity
## 470 inositol-1,4,5-trisphosphate 5-phosphatase activity
## 471 inositol-1,3,4,5-tetrakisphosphate 5-phosphatase activity
## 472 inositol tetrakisphosphate phosphatase activity
## 473 inositol phosphate phosphatase activity
## 474 phosphatidylinositol phosphate phosphatase activity
## 475 ubiquitin conjugating enzyme activity
## 476 ubiquitin-like protein conjugating enzyme activity
## 477 connexin binding
## 478 sodium:proton antiporter activity involved in regulation of cardiac muscle cell membrane potential
## 479 cadherin binding involved in cell-cell adhesion
## 480 oligopeptide binding
## 481 protein serine/threonine/tyrosine kinase activity
## 482 antioxidant activity
## 483 growth factor receptor binding
## 484 tRNA binding
## 485 RNA helicase activity
## 486 ATP-dependent RNA helicase activity
## 487 protein kinase C activity
## 488 protein serine/threonine phosphatase activity
## 489 RNA-dependent ATPase activity
## 490 antiporter activity
## 491 ubiquitin-protein transferase regulator activity
## 492 14-3-3 protein binding
## 493 structural constituent of ribosome
## 494 motor activity
## 495 small GTPase binding
## 496 retinol dehydrogenase activity
## 497 disulfide oxidoreductase activity
## 498 tRNA (guanine) methyltransferase activity
## 499 MAP kinase tyrosine/serine/threonine phosphatase activity
## 500 MAP kinase phosphatase activity
## 501 mitogen-activated protein kinase p38 binding
## 502 calcium-dependent protein binding
## 503 NADP-retinol dehydrogenase activity
## 504 ligand-gated cation channel activity
## 505 thiol-dependent ubiquitin-specific protease activity
## 506 growth factor binding
## 507 unfolded protein binding
## 508 sulfur compound binding
## 509 nuclease activity
## 510 aldo-keto reductase (NADP) activity
## 511 protein tyrosine/serine/threonine phosphatase activity
## 512 nucleotide kinase activity
## 513 flavin adenine dinucleotide binding
## 514 repressing transcription factor binding
## 515 metalloendopeptidase activity
## 516 protein heterodimerization activity
## 517 nucleobase-containing compound kinase activity
## 518 hormone binding
## 519 virus receptor activity
## 520 binding
## 521 prenylated protein tyrosine phosphatase activity
## 522 protein kinase inhibitor activity
## 523 volume-sensitive anion channel activity
## 524 voltage-gated calcium channel activity
## 525 monocarboxylic acid transmembrane transporter activity
## 526 oxidoreductase activity, acting on the CH-CH group of donors, NAD or NADP as acceptor
## 527 kinase inhibitor activity
## 528 dioxygenase activity
## 529 ATP-dependent microtubule motor activity
## 530 transmembrane receptor protein serine/threonine kinase activity
## 531 coreceptor activity
## 532 Rab GTPase binding
## 533 transferase activity, transferring glycosyl groups
## 534 peptidase activity, acting on L-amino acid peptides
## 535 NF-kappaB binding
## 536 transcription factor activity, protein binding
## 537 transcription factor activity, transcription factor binding
## 538 p53 binding
## 539 metallopeptidase activity
## 540 alkaline phosphatase activity
## 541 amidase activity
## 542 dimethylallyltranstransferase activity
## 543 geranyltranstransferase activity
## 544 protein-arginine deiminase activity
## 545 signal transducer activity, downstream of receptor
## 546 monovalent cation:proton antiporter activity
## 547 collagen binding
## 548 hyaluronic acid binding
## 549 G-protein coupled photoreceptor activity
## 550 photoreceptor activity
## 551 anaphase-promoting complex binding
## 552 solute:cation antiporter activity
## 553 solute:proton antiporter activity
## 554 sodium:proton antiporter activity
## 555 potassium:proton antiporter activity
## 556 cation:cation antiporter activity
## 557 oxidoreductase activity, acting on NAD(P)H
## 558 fatty acid amide hydrolase activity
## 559 potassium ion antiporter activity
## 560 Hsp70 protein binding
## 561 U2 snRNA binding
## 562 GTP-dependent protein binding
## 563 mitogen-activated protein kinase kinase kinase binding
## 564 phosphatidylinositol-3-phosphate binding
## 565 GBD domain binding
## 566 apolipoprotein A-I receptor binding
## 567 histone demethylase activity (H3-trimethyl-K4 specific)
## 568 retinoic acid receptor binding
## 569 protein kinase B binding
## 570 acylglycerol lipase activity
## 571 calcium-independent phospholipase A2 activity
## 572 monosaccharide binding
## 573 delta14-sterol reductase activity
## 574 GDP-dissociation inhibitor binding
## 575 Rho GDP-dissociation inhibitor binding
## 576 NAD binding
## 577 4 iron, 4 sulfur cluster binding
## 578 chromo shadow domain binding
## 579 oleamide hydrolase activity
## 580 anandamide amidohydrolase activity
## 581 leptomycin B binding
## 582 RNA polymerase II core binding
## 583 RNA polymerase core enzyme binding
## 584 methyltransferase activity
## 585 transferase activity, transferring one-carbon groups
## 586 electron carrier activity
## 587 ubiquitin-like protein-specific protease activity
## 588 carboxylic acid binding
## 589 thiol-dependent ubiquitinyl hydrolase activity
## 590 organic acid binding
## 591 ubiquitinyl hydrolase activity
## 592 identical protein binding
## 593 magnesium ion binding
## 594 transcription factor activity, RNA polymerase II distal enhancer sequence-specific binding
## 595 basal RNA polymerase II transcription machinery binding
## 596 oxidoreductase activity, acting on CH-OH group of donors
## 597 L-amino acid transmembrane transporter activity
## 598 S-adenosylmethionine-dependent methyltransferase activity
## 599 transcription cofactor binding
## 600 solute:cation symporter activity
## 601 protein phosphatase 2A binding
## 602 ubiquitin-like protein transferase activity
## 603 transcription factor activity, sequence-specific DNA binding
## 604 RNA polymerase II regulatory region sequence-specific DNA binding
## 605 RNA polymerase II regulatory region DNA binding
## 606 RNA polymerase binding
## 607 ATP binding
## 608 protein tyrosine phosphatase activity
## 609 organic acid transmembrane transporter activity
## 610 transferase activity, transferring alkyl or aryl (other than methyl) groups
## 611 hydrolase activity, acting on glycosyl bonds
## 612 carboxylic acid transmembrane transporter activity
## 613 endonuclease activity
## 614 hormone activity
## 615 lipid transporter activity
## 616 P-P-bond-hydrolysis-driven protein transmembrane transporter activity
## 617 kinesin binding
## 618 carboxylic ester hydrolase activity
## 619 CTP synthase activity
## 620 NAD+ kinase activity
## 621 adenylate cyclase activity
## 622 adenylosuccinate synthase activity
## 623 methylenetetrahydrofolate reductase (NAD(P)H) activity
## 624 phospholipase A2 activity
## 625 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors
## 626 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amidines
## 627 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in cyclic amidines
## 628 phosphorus-oxygen lyase activity
## 629 TBP-class protein binding
## 630 leak channel activity
## 631 potassium ion leak channel activity
## 632 snoRNA binding
## 633 thioesterase binding
## 634 apolipoprotein receptor binding
## 635 hydrogen-exporting ATPase activity
## 636 prosaposin receptor activity
## 637 aspartic endopeptidase activity, intramembrane cleaving
## 638 peptidoglycan binding
## 639 X11-like protein binding
## 640 S100 protein binding
## 641 low-density lipoprotein particle receptor binding
## 642 lipoprotein particle receptor binding
## 643 proteasome binding
## 644 bicarbonate binding
## 645 ion antiporter activity
## 646 O-methyltransferase activity
## 647 JUN kinase binding
## 648 calcium ion transmembrane transporter activity
## 649 amino acid transmembrane transporter activity
## 650 ligand-gated ion channel activity
## 651 transcription cofactor activity
## 652 phosphoprotein phosphatase activity
## 653 cytokine binding
## 654 polypeptide N-acetylgalactosaminyltransferase activity
## 655 endopeptidase inhibitor activity
## 656 neutral amino acid transmembrane transporter activity
## 657 peptidase inhibitor activity
## 658 demethylase activity
## 659 cAMP response element binding
## 660 endopeptidase regulator activity
## 661 scaffold protein binding
## 662 protein dimerization activity
## 663 oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor
## 664 protein self-association
## 665 phosphatase activity
## 666 cadherin binding
## 667 transition metal ion binding
## 668 structural molecule activity
## 669 regulatory region DNA binding
## 670 regulatory region nucleic acid binding
## 671 phosphotransferase activity, phosphate group as acceptor
## 672 adenyl nucleotide binding
## 673 adenyl ribonucleotide binding
## 674 ubiquitin protein ligase activity
## 675 ubiquitin-like protein ligase activity
## 676 sequence-specific DNA binding
## 677 ubiquitin-protein transferase activity
## 678 N-methyltransferase activity
## 679 phosphatidylinositol binding
## 680 RNA polymerase II core promoter sequence-specific DNA binding
## 681 nucleoside binding
## 682 purine nucleoside binding
## 683 ribonucleoside binding
## 684 purine ribonucleoside binding
## 685 purine ribonucleoside triphosphate binding
## 686 transcription factor activity, RNA polymerase II transcription factor binding
## 687 transcription regulatory region DNA binding
## 688 core promoter binding
## 689 GTP binding
## 690 guanyl nucleotide binding
## 691 guanyl ribonucleotide binding
## 692 hydrolase activity, hydrolyzing O-glycosyl compounds
## 693 protein transmembrane transporter activity
## 694 protein channel activity
## 695 macromolecule transmembrane transporter activity
## 696 damaged DNA binding
## 697 antigen binding
## 698 cystathionine gamma-synthase activity
## 699 cystathionine gamma-lyase activity
## 700 chitinase activity
## 701 glutathione peroxidase activity
## 702 phosphopyruvate hydratase activity
## 703 cysteine-type endopeptidase inhibitor activity
## 704 inward rectifier potassium channel activity
## 705 voltage-gated chloride channel activity
## 706 fatty acid binding
## 707 chitin binding
## 708 cyclase activity
## 709 semaphorin receptor activity
## 710 GDP binding
## 711 vitamin D receptor binding
## 712 cysteine-type endopeptidase inhibitor activity involved in apoptotic process
## 713 cysteine-type endopeptidase regulator activity involved in apoptotic process
## 714 neurotrophin binding
## 715 L-cystine L-cysteine-lyase (deaminating)
## 716 homocysteine desulfhydrase activity
## 717 nerve growth factor binding
## 718 L-cysteine desulfhydrase activity
## 719 calcium-dependent cysteine-type endopeptidase activity
## 720 lipase activity
## 721 heat shock protein binding
## 722 phosphate ion binding
## 723 R-SMAD binding
## 724 enhancer binding
## 725 ATPase activity, coupled
## 726 purine nucleotide binding
## 727 ribonucleotide binding
## 728 purine ribonucleotide binding
## 729 histone deacetylase binding
## 730 phosphotyrosine binding
## 731 complement binding
## 732 adenylate kinase activity
## 733 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen
## 734 ligand-dependent nuclear receptor binding
## 735 protein phosphorylated amino acid binding
## 736 modified amino acid binding
## 737 RNA polymerase II distal enhancer sequence-specific DNA binding
## 738 organic anion transmembrane transporter activity
## 739 hydrogen ion transmembrane transporter activity
## 740 transcription factor activity, RNA polymerase II core promoter sequence-specific
## 741 aspartic-type endopeptidase activity
## 742 olfactory receptor activity
## 743 1-phosphatidylinositol binding
## 744 phosphatidylinositol-4,5-bisphosphate binding
## 745 drug binding
## 746 palmitoyl-CoA hydrolase activity
## 747 pyridoxal phosphate binding
## 748 monocarboxylic acid binding
## 749 ribosomal large subunit binding
## 750 NADP binding
## 751 iron-sulfur cluster binding
## 752 aspartic-type peptidase activity
## 753 carbohydrate derivative transporter activity
## 754 transcription regulatory region sequence-specific DNA binding
## 755 nucleotide binding
## 756 nucleoside phosphate binding
## 757 phosphoprotein binding
## 758 secondary active transmembrane transporter activity
## 759 cell adhesion molecule binding
## 760 RNA polymerase II activating transcription factor binding
## 761 sterol transporter activity
## 762 phosphatidylinositol phosphate binding
## 763 mitochondrion targeting sequence binding
## 764 ion binding
## 765 carbohydrate derivative binding
## 766 protein transporter activity
## 767 lysine N-methyltransferase activity
## 768 protein-lysine N-methyltransferase activity
## 769 histone-lysine N-methyltransferase activity
## 770 phospholipase activity
## 771 calcium-dependent protein kinase activity
## 772 oxidoreductase activity, acting on the CH-NH group of donors
## 773 oxidoreductase activity, acting on the CH-NH group of donors, NAD or NADP as acceptor
## 774 D-ribulokinase activity
## 775 heme binding
## 776 protein phosphatase 2B binding
## 777 histone demethylase activity (H3-K4 specific)
## 778 histone demethylase activity (H3-dimethyl-K4 specific)
## 779 UDP-galactosyltransferase activity
## 780 thyroid hormone receptor binding
## 781 HMG box domain binding
## 782 protein binding involved in cell adhesion
## 783 protein binding involved in cell-cell adhesion
## 784 nucleoside-triphosphatase activity
## 785 protein domain specific binding
## 786 phosphoric ester hydrolase activity
## 787 histone methyltransferase activity
## 788 protein homodimerization activity
## 789 protein binding
## 790 RNA polymerase II transcription cofactor activity
## 791 transferase activity, transferring hexosyl groups
## 792 catalytic activity
## 793 transcription corepressor activity
## 794 transcription coactivator activity
## 795 glycosaminoglycan binding
## 796 anion binding
## 797 mitogen-activated protein kinase binding
## 798 symporter activity
## 799 transmembrane receptor protein kinase activity
## 800 SMAD binding
## 801 pyrophosphatase activity
## 802 hydrolase activity, acting on acid anhydrides
## 803 hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides
## 804 1-acylglycerol-3-phosphate O-acyltransferase activity
## 805 serine-type endopeptidase activity
## 806 integrin binding
## 807 iron ion binding
## 808 ubiquinol-cytochrome-c reductase activity
## 809 voltage-gated anion channel activity
## 810 CoA hydrolase activity
## 811 phosphatidylinositol phosphate kinase activity
## 812 acylglycerol O-acyltransferase activity
## 813 oxidoreductase activity, acting on diphenols and related substances as donors
## 814 carbon-sulfur lyase activity
## 815 1-phosphatidylinositol-4-phosphate 3-kinase activity
## 816 telomeric DNA binding
## 817 lysophosphatidic acid acyltransferase activity
## 818 phosphatidylinositol-4,5-bisphosphate 3-kinase activity
## 819 2-acylglycerol-3-phosphate O-acyltransferase activity
## 820 acyl-CoA hydrolase activity
## 821 Rac GTPase binding
## 822 phosphatidylinositol bisphosphate kinase activity
## 823 phosphatidylinositol bisphosphate binding
## 824 protein serine/threonine kinase activity
## 825 metal ion binding
## 826 hydrolase activity, acting on ester bonds
## 827 active ion transmembrane transporter activity
## 828 signal sequence binding
## 829 activating transcription factor binding
## 830 carbohydrate binding
## 831 cytokine receptor activity
## 832 extracellular matrix structural constituent
## 833 structural constituent of cytoskeleton
## 834 spectrin binding
## 835 titin binding
## 836 histone demethylase activity
## 837 transferase activity, transferring phosphorus-containing groups
## 838 metal ion transmembrane transporter activity
## 839 anion channel activity
## 840 protein methyltransferase activity
## 841 ATPase activity, coupled to movement of substances
## 842 cation binding
## 843 sodium ion transmembrane transporter activity
## 844 P-P-bond-hydrolysis-driven transmembrane transporter activity
## 845 hydrolase activity
## 846 GTPase activity
## 847 transferase activity
## 848 chloride channel activity
## 849 chloride transmembrane transporter activity
## 850 zinc ion binding
## 851 core promoter sequence-specific DNA binding
## 852 translation initiation factor activity
## 853 translation factor activity, RNA binding
## 854 serine-type peptidase activity
## 855 structural constituent of muscle
## 856 galactosyltransferase activity
## 857 serine hydrolase activity
## 858 IgG binding
## 859 immunoglobulin binding
## 860 RNA polymerase II transcription coactivator activity
## 861 phospholipid binding
## 862 transcriptional repressor activity, RNA polymerase II transcription factor binding
## 863 microtubule binding
## 864 transferase activity, transferring acyl groups other than amino-acyl groups
## 865 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds
## 866 active transmembrane transporter activity
## 867 inorganic cation transmembrane transporter activity
## 868 peptide receptor activity
## 869 ephrin receptor activity
## 870 sodium channel activity
## 871 G-protein coupled peptide receptor activity
## 872 Rho GTPase binding
## 873 steroid hormone binding
## 874 enhancer sequence-specific DNA binding
## 875 small molecule binding
## 876 transcriptional activator activity, RNA polymerase II transcription factor binding
## 877 PDZ domain binding
## 878 transferase activity, transferring acyl groups
## 879 hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances
## 880 ATPase activity, coupled to transmembrane movement of substances
## 881 macromolecular complex binding
## 882 anion transmembrane transporter activity
## 883 sodium:potassium-exchanging ATPase activity
## 884 SNAP receptor activity
## 885 potassium-transporting ATPase activity
## 886 1-phosphatidylinositol-3-kinase activity
## 887 thiolester hydrolase activity
## 888 ligand-dependent nuclear receptor transcription coactivator activity
## 889 potassium ion binding
## 890 sodium ion binding
## 891 alkali metal ion binding
## 892 ion channel binding
## 893 calcium ion binding
## 894 ankyrin binding
## 895 kinase activity
## 896 transmembrane receptor protein tyrosine kinase activity
## 897 beta-tubulin binding
## 898 extracellular matrix binding
## 899 protein tyrosine kinase activity
## 900 phosphotransferase activity, alcohol group as acceptor
## 901 Rho guanyl-nucleotide exchange factor activity
## 902 protein C-terminus binding
## 903 inorganic anion transmembrane transporter activity
## 904 O-acyltransferase activity
## 905 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides
## 906 phosphatidylinositol 3-kinase activity
## 907 phosphatidylinositol 3-kinase binding
## 908 phosphatidylinositol kinase activity
## 909 heparin binding
## 910 beta-catenin binding
## 911 amide binding
## 912 peptide binding
## 913 cation-transporting ATPase activity
## 914 ATPase coupled ion transmembrane transporter activity
## 915 cytoskeletal protein binding
## 916 channel activity
## 917 passive transmembrane transporter activity
## 918 ADP binding
## 919 chaperone binding
## 920 lipid binding
## 921 protein kinase activity
## 922 protein complex binding
## 923 syntaxin binding
## 924 steroid binding
## 925 substrate-specific channel activity
## 926 voltage-gated cation channel activity
## 927 cation channel activity
## 928 nucleoside-triphosphatase regulator activity
## 929 GTPase activator activity
## 930 cation transmembrane transporter activity
## 931 SNARE binding
## 932 ATPase activity, coupled to transmembrane movement of ions, phosphorylative mechanism
## 933 ion channel activity
## 934 beta-amyloid binding
## 935 actin filament binding
## 936 tubulin binding
## 937 substrate-specific transmembrane transporter activity
## 938 growth factor activity
## 939 calmodulin binding
## 940 monovalent inorganic cation transmembrane transporter activity
## 941 transmembrane transporter activity
## 942 voltage-gated ion channel activity
## 943 substrate-specific transporter activity
## 944 transmembrane signaling receptor activity
## 945 GTPase regulator activity
## 946 transporter activity
## 947 voltage-gated potassium channel activity
## 948 ion transmembrane transporter activity
## 949 transmembrane receptor activity
## 950 potassium ion transmembrane transporter activity
## 951 signaling receptor activity
## 952 gated channel activity
## 953 potassium channel activity
## 954 receptor activity
## 955 receptor binding
## 956 cytokine activity
## 957 signal transducer activity
## 958 G-protein coupled receptor activity
## 959 cytokine receptor binding
## 960 trans-hexaprenyltranstransferase activity
## 961 single-stranded DNA endodeoxyribonuclease activity
## 962 lactase activity
## 963 alpha-1,2-mannosyltransferase activity
## 964 mannosyltransferase activity
## 965 alpha-1,3-mannosyltransferase activity
## 966 acyl binding
## 967 ACP phosphopantetheine attachment site binding involved in fatty acid biosynthetic process
## 968 peptidyltransferase activity
## 969 L-ornithine transmembrane transporter activity
## 970 S-adenosyl-L-methionine transmembrane transporter activity
## 971 sulfur amino acid transmembrane transporter activity
## 972 glycerol-1-phosphatase activity
## 973 microfilament motor activity
## 974 recombinase activity
## 975 phosphorelay sensor kinase activity
## 976 sphingosine hydroxylase activity
## 977 ribonuclease MRP activity
## 978 rDNA binding
## 979 NAD+ diphosphatase activity
## 980 tRNA-intron endonuclease activity
## 981 tRNA 2'-phosphotransferase activity
## 982 DNA secondary structure binding
## 983 peptide-N4-(N-acetyl-beta-glucosaminyl)asparagine amidase activity
## 984 N-acetylglucosaminylphosphatidylinositol deacetylase activity
## 985 C-8 sterol isomerase activity
## 986 C-5 sterol desaturase activity
## 987 lanosterol synthase activity
## 988 C-3 sterol dehydrogenase (C-4 sterol decarboxylase) activity
## 989 3-keto sterol reductase activity
## 990 C-4 methylsterol oxidase activity
## 991 nitrilase activity
## 992 peroxisome targeting sequence binding
## 993 1-phosphatidylinositol-3-phosphate 5-kinase activity
## 994 ferric-chelate reductase activity
## 995 adenine nucleotide transmembrane transporter activity
## 996 endopolyphosphatase activity
## 997 nicotinamide-nucleotide adenylyltransferase activity
## 998 3-hydroxyanthranilate 3,4-dioxygenase activity
## 999 RNA cap binding
## 1000 RNA 7-methylguanosine cap binding
## 1001 first spliceosomal transesterification activity
## 1002 second spliceosomal transesterification activity
## 1003 four-way junction DNA binding
## 1004 Y-form DNA binding
## 1005 heteroduplex DNA loop binding
## 1006 bubble DNA binding
## 1007 double-strand/single-strand DNA junction binding
## 1008 oxidized base lesion DNA N-glycosylase activity
## 1009 oxidized pyrimidine nucleobase lesion DNA N-glycosylase activity
## 1010 phosphatidyl-N-methylethanolamine N-methyltransferase activity
## 1011 adenyl-nucleotide exchange factor activity
## 1012 inositol hexakisphosphate binding
## 1013 inositol-1,4,5-trisphosphate 6-kinase activity
## 1014 inositol tetrakisphosphate 3-kinase activity
## 1015 inositol tetrakisphosphate 6-kinase activity
## 1016 inositol-1,3,4,5,6-pentakisphosphate kinase activity
## 1017 inositol heptakisphosphate kinase activity
## 1018 inositol hexakisphosphate 6-kinase activity
## 1019 inositol hexakisphosphate 5-kinase activity
## 1020 translation repressor activity, nucleic acid binding
## 1021 transcription factor activity, core RNA polymerase binding
## 1022 transcription factor activity, core RNA polymerase II binding
## 1023 RNA polymerase III core binding
## 1024 transcription factor activity, core RNA polymerase III binding
## 1025 mitochondrial RNA polymerase core promoter sequence-specific DNA binding
## 1026 RNA polymerase III type 1 promoter sequence-specific DNA binding
## 1027 RNA polymerase III type 2 promoter sequence-specific DNA binding
## 1028 transcription factor activity, RNA polymerase III type 1 promoter sequence-specific binding, TFIIIB recruiting
## 1029 transcription factor activity, RNA polymerase III transcription factor binding
## 1030 transcription factor activity, sequence-specific DNA binding transcription factor recruiting
## 1031 transcription factor activity, sequence-specific DNA binding, RNA polymerase recruiting
## 1032 RNA polymerase III regulatory region DNA binding
## 1033 RNA polymerase III transcription factor binding
## 1034 TFIIIB-type transcription factor activity
## 1035 RNA polymerase III type 1 promoter DNA binding
## 1036 RNA polymerase III type 2 promoter DNA binding
## 1037 RNA polymerase III type 3 promoter DNA binding
## 1038 RNA polymerase III transcription factor activity, sequence-specific DNA binding
## 1039 RNA polymerase I core binding
## 1040 RNA polymerase I activity
## 1041 RNA polymerase II activity
## 1042 RNA polymerase III activity
## 1043 transcription factor activity, RNA polymerase II core promoter sequence-specific binding involved in preinitiation complex assembly
## 1044 transcription factor activity, RNA polymerase II basal transcription factor binding
## 1045 transcription factor activity, TFIIB-class binding
## 1046 TFIIB-class transcription factor binding
## 1047 TFIID-class transcription factor binding
## 1048 TFIIF-class transcription factor binding
## 1049 RNA polymerase II repressing transcription factor binding
## 1050 RNA polymerase II transcription corepressor activity
## 1051 RNA polymerase II transcription coactivator activity involved in preinitiation complex assembly
## 1052 RNA polymerase II transcription factor activity, TBP-class protein binding, involved in preinitiation complex assembly
## 1053 RNA polymerase II transcription factor activity, sequence-specific transcription regulatory region DNA binding
## 1054 transcription factor activity, transcription factor recruiting
## 1055 transcription factor activity, RNA polymerase II transcription factor recruiting
## 1056 transcription termination site sequence-specific DNA binding
## 1057 TFIIIC-class transcription factor binding
## 1058 intronic transcription regulatory region sequence-specific DNA binding
## 1059 RNA polymerase II intronic transcription regulatory region sequence-specific DNA binding
## 1060 RNA polymerase I CORE element sequence-specific DNA binding
## 1061 RNA polymerase I upstream control element sequence-specific DNA binding
## 1062 RNA polymerase I transcription factor binding
## 1063 transcription factor activity, core RNA polymerase I binding
## 1064 transcription factor activity, RNA polymerase I CORE element binding transcription factor recruiting
## 1065 transcriptional repressor activity, RNA polymerase II distal enhancer sequence-specific binding
## 1066 transcription corepressor binding
## 1067 RNA polymerase II transcription cofactor binding
## 1068 RNA polymerase II transcription coactivator binding
## 1069 RNA polymerase II transcription corepressor binding
## 1070 dihydronicotinamide riboside quinone reductase activity
## 1071 opioid peptide activity
## 1072 N-acetylglucosamine 6-O-sulfotransferase activity
## 1073 lipopolysaccharide binding
## 1074 interleukin-21 receptor activity
## 1075 N-acetylgalactosamine 4-O-sulfotransferase activity
## 1076 cholesterol 25-hydroxylase activity
## 1077 Gq/11-coupled serotonin receptor activity
## 1078 dopamine neurotransmitter receptor activity, coupled via Gs
## 1079 dopamine neurotransmitter receptor activity, coupled via Gi/Go
## 1080 trace-amine receptor activity
## 1081 angiotensin type I receptor activity
## 1082 peptide YY receptor activity
## 1083 pancreatic polypeptide receptor activity
## 1084 urotensin II receptor activity
## 1085 adrenomedullin receptor activity
## 1086 neuromedin U receptor activity
## 1087 G-protein coupled adenosine receptor activity
## 1088 purinergic nucleotide receptor activity
## 1089 growth hormone secretagogue receptor activity
## 1090 ADP receptor activity
## 1091 nociceptin receptor activity
## 1092 cysteinyl leukotriene receptor activity
## 1093 leukotriene B4 receptor activity
## 1094 calcitonin gene-related peptide receptor activity
## 1095 adenylate cyclase inhibiting G-protein coupled glutamate receptor activity
## 1096 group II metabotropic glutamate receptor activity
## 1097 group III metabotropic glutamate receptor activity
## 1098 G-protein coupled receptor binding
## 1099 alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase activity
## 1100 sialate O-acetylesterase activity
## 1101 L-amino-acid oxidase activity
## 1102 lipid kinase activity
## 1103 ceramide kinase activity
## 1104 2'-5'-oligoadenylate synthetase activity
## 1105 galactosylceramide sulfotransferase activity
## 1106 prenylcysteine oxidase activity
## 1107 retinal dehydrogenase activity
## 1108 aminocarboxymuconate-semialdehyde decarboxylase activity
## 1109 prostaglandin J receptor activity
## 1110 phosphatidylserine binding
## 1111 IgM binding
## 1112 polymeric immunoglobulin receptor activity
## 1113 opsonin binding
## 1114 opsonin receptor activity
## 1115 complement component C1q binding
## 1116 complement component C3a binding
## 1117 complement component C3b binding
## 1118 complement component C4b binding
## 1119 complement component C5a binding
## 1120 complement component C4b receptor activity
## 1121 (1->3)-beta-D-glucan binding
## 1122 lipopolysaccharide receptor activity
## 1123 farnesylated protein binding
## 1124 glycoprotein binding
## 1125 G-protein alpha-subunit binding
## 1126 fibronectin binding
## 1127 retinoic acid binding
## 1128 opsin binding
## 1129 nucleobase binding
## 1130 adenine binding
## 1131 uracil binding
## 1132 thymine binding
## 1133 purine nucleobase binding
## 1134 4-hydroxybenzoate decaprenyltransferase activity
## 1135 interleukin-33 binding
## 1136 interleukin-33 receptor activity
## 1137 UTP binding
## 1138 CTP binding
## 1139 G-quadruplex RNA binding
## 1140 steroid receptor RNA activator RNA binding
## 1141 dystroglycan binding
## 1142 Ser-tRNA(Ala) hydrolase activity
## 1143 ceramide phosphoethanolamine synthase activity
## 1144 AT DNA binding
## 1145 DNA clamp loader activity
## 1146 double-stranded telomeric DNA binding
## 1147 left-handed Z-DNA binding
## 1148 satellite DNA binding
## 1149 steroid hormone receptor activity
## 1150 retinoic acid receptor activity
## 1151 telomerase activity
## 1152 telomerase RNA reverse transcriptase activity
## 1153 double-stranded RNA adenosine deaminase activity
## 1154 translation elongation factor activity
## 1155 translation release factor activity
## 1156 actin monomer binding
## 1157 lysozyme activity
## 1158 protein-glutamine gamma-glutamyltransferase activity
## 1159 alpha-ketoacid dehydrogenase activity
## 1160 alpha-1,3-mannosylglycoprotein 2-beta-N-acetylglucosaminyltransferase activity
## 1161 alpha-N-acetylneuraminate alpha-2,8-sialyltransferase activity
## 1162 beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase activity
## 1163 beta-1,4-mannosylglycoprotein 4-beta-N-acetylglucosaminyltransferase activity
## 1164 beta-N-acetylglucosaminylglycopeptide beta-1,4-galactosyltransferase activity
## 1165 beta-carotene 15,15'-monooxygenase activity
## 1166 beta-galactoside alpha-2,6-sialyltransferase activity
## 1167 beta-ureidopropionase activity
## 1168 gamma-glutamylcyclotransferase activity
## 1169 1-pyrroline-5-carboxylate dehydrogenase activity
## 1170 1,4-alpha-glucan branching enzyme activity
## 1171 11-beta-hydroxysteroid dehydrogenase [NAD(P)] activity
## 1172 2-acylglycerol O-acyltransferase activity
## 1173 1-alkyl-2-acetylglycerophosphocholine esterase activity
## 1174 3-beta-hydroxy-delta5-steroid dehydrogenase activity
## 1175 3-hydroxyacyl-CoA dehydrogenase activity
## 1176 3-hydroxybutyrate dehydrogenase activity
## 1177 3-hydroxyisobutyryl-CoA hydrolase activity
## 1178 3-methyl-2-oxobutanoate dehydrogenase (2-methylpropanoyl-transferring) activity
## 1179 3-oxo-5-alpha-steroid 4-dehydrogenase activity
## 1180 4-hydroxyphenylpyruvate dioxygenase activity
## 1181 5-aminolevulinate synthase activity
## 1182 6-phosphofructokinase activity
## 1183 6-pyruvoyltetrahydropterin synthase activity
## 1184 ADP-ribosylarginine hydrolase activity
## 1185 ATP adenylyltransferase activity
## 1186 ATP citrate synthase activity
## 1187 protein C-terminal carboxyl O-methyltransferase activity
## 1188 CDP-diacylglycerol-inositol 3-phosphatidyltransferase activity
## 1189 CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## 1190 D-amino-acid oxidase activity
## 1191 DNA (cytosine-5-)-methyltransferase activity
## 1192 DNA-directed DNA polymerase activity
## 1193 DNA primase activity
## 1194 DNA-(apurinic or apyrimidinic site) lyase activity
## 1195 methylated-DNA-[protein]-cysteine S-methyltransferase activity
## 1196 DNA nucleotidylexotransferase activity
## 1197 DNA topoisomerase activity
## 1198 DNA topoisomerase type I activity
## 1199 DNA topoisomerase type II (ATP-hydrolyzing) activity
## 1200 FMN adenylyltransferase activity
## 1201 GMP reductase activity
## 1202 GMP synthase activity
## 1203 GMP synthase (glutamine-hydrolyzing) activity
## 1204 GPI-anchor transamidase activity
## 1205 GTP cyclohydrolase I activity
## 1206 IMP cyclohydrolase activity
## 1207 IMP dehydrogenase activity
## 1208 L-iditol 2-dehydrogenase activity
## 1209 L-iduronidase activity
## 1210 L-serine ammonia-lyase activity
## 1211 N-acetylgalactosamine-4-sulfatase activity
## 1212 N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase activity
## 1213 N-acetyllactosamine synthase activity
## 1214 (N-acetylneuraminyl)-galactosylglucosylceramide N-acetylgalactosaminyltransferase activity
## 1215 N4-(beta-N-acetylglucosaminyl)-L-asparaginase activity
## 1216 NAD+ synthase (glutamine-hydrolyzing) activity
## 1217 NAD+ nucleosidase activity
## 1218 NAD(P)H dehydrogenase (quinone) activity
## 1219 NAD(P)+-protein-arginine ADP-ribosyltransferase activity
## 1220 NAD(P)+ transhydrogenase (B-specific) activity
## 1221 NADPH-hemoprotein reductase activity
## 1222 NADPH:quinone reductase activity
## 1223 RNA-3'-phosphate cyclase activity
## 1224 RNA-directed 5'-3' RNA polymerase activity
## 1225 RNA ligase (ATP) activity
## 1226 UDP-N-acetylglucosamine 4-epimerase activity
## 1227 UDP-N-acetylglucosamine-dolichyl-phosphate N-acetylglucosaminephosphotransferase activity
## 1228 UDP-N-acetylglucosamine-lysosomal-enzyme N-acetylglucosaminephosphotransferase activity
## 1229 UDP-glucose 4-epimerase activity
## 1230 UDP-glucose 6-dehydrogenase activity
## 1231 UDP-glucose:glycoprotein glucosyltransferase activity
## 1232 UTP:glucose-1-phosphate uridylyltransferase activity
## 1233 acetyl-CoA C-acetyltransferase activity
## 1234 acetyl-CoA hydrolase activity
## 1235 acetate-CoA ligase activity
## 1236 acetyl-CoA C-acyltransferase activity
## 1237 acetyl-CoA carboxylase activity
## 1238 acetylcholinesterase activity
## 1239 acid phosphatase activity
## 1240 aconitate hydratase activity
## 1241 acyl-CoA dehydrogenase activity
## 1242 acyl-CoA ligase activity
## 1243 acyl-CoA oxidase activity
## 1244 acylphosphatase activity
## 1245 adenine phosphoribosyltransferase activity
## 1246 adenosine deaminase activity
## 1247 adenosine kinase activity
## 1248 copper-exporting ATPase activity
## 1249 adenosylhomocysteinase activity
## 1250 adenosylmethionine decarboxylase activity
## 1251 N6-(1,2-dicarboxyethyl)AMP AMP-lyase (fumarate-forming) activity
## 1252 adenylylsulfate kinase activity
## 1253 L-alanine:2-oxoglutarate aminotransferase activity
## 1254 alcohol dehydrogenase (NAD) activity
## 1255 alcohol dehydrogenase activity, zinc-dependent
## 1256 alcohol sulfotransferase activity
## 1257 3-chloroallyl aldehyde dehydrogenase activity
## 1258 aldehyde dehydrogenase (NAD) activity
## 1259 aldehyde dehydrogenase [NAD(P)+] activity
## 1260 aldehyde oxidase activity
## 1261 aldose 1-epimerase activity
## 1262 allantoicase activity
## 1263 acetyl-CoA:L-glutamate N-acetyltransferase activity
## 1264 L-aminoadipate-semialdehyde dehydrogenase activity
## 1265 amidophosphoribosyltransferase activity
## 1266 aminoacyl-tRNA hydrolase activity
## 1267 aminoacylase activity
## 1268 aminomethyltransferase activity
## 1269 arachidonate 5-lipoxygenase activity
## 1270 arachidonate 12-lipoxygenase activity
## 1271 arginase activity
## 1272 argininosuccinate synthase activity
## 1273 argininosuccinate lyase activity
## 1274 arginyltransferase activity
## 1275 aralkylamine N-acetyltransferase activity
## 1276 arylamine N-acetyltransferase activity
## 1277 arylformamidase activity
## 1278 aryl sulfotransferase activity
## 1279 aryldialkylphosphatase activity
## 1280 arylesterase activity
## 1281 arylsulfatase activity
## 1282 asparagine synthase (glutamine-hydrolyzing) activity
## 1283 asparaginase activity
## 1284 aspartate 1-decarboxylase activity
## 1285 L-aspartate:2-oxoglutarate aminotransferase activity
## 1286 aspartate carbamoyltransferase activity
## 1287 biliverdin reductase activity
## 1288 biotin carboxylase activity
## 1289 biotin-[acetyl-CoA-carboxylase] ligase activity
## 1290 biotin-[methylcrotonoyl-CoA-carboxylase] ligase activity
## 1291 biotin-[methylmalonyl-CoA-carboxytransferase] ligase activity
## 1292 biotin-[propionyl-CoA-carboxylase (ATP-hydrolyzing)] ligase activity
## 1293 bis(5'-nucleosyl)-tetraphosphatase (asymmetrical) activity
## 1294 bisphosphoglycerate mutase activity
## 1295 bisphosphoglycerate 2-phosphatase activity
## 1296 butyryl-CoA dehydrogenase activity
## 1297 carbamoyl-phosphate synthase (ammonia) activity
## 1298 carbamoyl-phosphate synthase (glutamine-hydrolyzing) activity
## 1299 carbonate dehydratase activity
## 1300 carbonyl reductase (NADPH) activity
## 1301 carnitine O-acetyltransferase activity
## 1302 carnitine O-palmitoyltransferase activity
## 1303 catalase activity
## 1304 cerebroside-sulfatase activity
## 1305 choline O-acetyltransferase activity
## 1306 choline kinase activity
## 1307 cholinesterase activity
## 1308 choline-phosphate cytidylyltransferase activity
## 1309 citrate (Si)-synthase activity
## 1310 coproporphyrinogen oxidase activity
## 1311 creatine kinase activity
## 1312 cyclic-nucleotide phosphodiesterase activity
## 1313 2',3'-cyclic-nucleotide 3'-phosphodiesterase activity
## 1314 3',5'-cyclic-nucleotide phosphodiesterase activity
## 1315 3',5'-cyclic-AMP phosphodiesterase activity
## 1316 calmodulin-dependent cyclic-nucleotide phosphodiesterase activity
## 1317 cGMP-stimulated cyclic-nucleotide phosphodiesterase activity
## 1318 cGMP-inhibited cyclic-nucleotide phosphodiesterase activity
## 1319 cystathionine beta-synthase activity
## 1320 cytidine deaminase activity
## 1321 cytochrome-b5 reductase activity, acting on NAD(P)H
## 1322 cytochrome-c oxidase activity
## 1323 cytosine deaminase activity
## 1324 dCMP deaminase activity
## 1325 4-alpha-glucanotransferase activity
## 1326 amylo-alpha-1,6-glucosidase activity
## 1327 deoxycytidine kinase activity
## 1328 deoxyguanosine kinase activity
## 1329 deoxyribose-phosphate aldolase activity
## 1330 dephospho-CoA kinase activity
## 1331 diacylglycerol cholinephosphotransferase activity
## 1332 diacylglycerol kinase activity
## 1333 diacylglycerol O-acyltransferase activity
## 1334 diamine N-acetyltransferase activity
## 1335 dihydrofolate reductase activity
## 1336 dihydrolipoyl dehydrogenase activity
## 1337 dihydrolipoyllysine-residue succinyltransferase activity
## 1338 dihydroorotase activity
## 1339 dihydroorotate dehydrogenase activity
## 1340 6,7-dihydropteridine reductase activity
## 1341 dihydropyrimidinase activity
## 1342 diphosphomevalonate decarboxylase activity
## 1343 diphthine synthase activity
## 1344 dodecenoyl-CoA delta-isomerase activity
## 1345 dopachrome isomerase activity
## 1346 dolichol kinase activity
## 1347 dolichyl-phosphate-mannose-protein mannosyltransferase activity
## 1348 dUTP diphosphatase activity
## 1349 electron-transferring-flavoprotein dehydrogenase activity
## 1350 ATP-dependent peptidase activity
## 1351 aminopeptidase activity
## 1352 carboxypeptidase activity
## 1353 metallocarboxypeptidase activity
## 1354 serine-type carboxypeptidase activity
## 1355 threonine-type endopeptidase activity
## 1356 enoyl-CoA hydratase activity
## 1357 estradiol 17-beta-dehydrogenase activity
## 1358 estrone sulfotransferase activity
## 1359 ethanolamine kinase activity
## 1360 ethanolamine-phosphate cytidylyltransferase activity
## 1361 ethanolaminephosphotransferase activity
## 1362 exo-alpha-sialidase activity
## 1363 farnesyl-diphosphate farnesyltransferase activity
## 1364 farnesyltranstransferase activity
## 1365 fatty acid synthase activity
## 1366 [acyl-carrier-protein] S-acetyltransferase activity
## 1367 [acyl-carrier-protein] S-malonyltransferase activity
## 1368 3-oxoacyl-[acyl-carrier-protein] synthase activity
## 1369 3-oxoacyl-[acyl-carrier-protein] reductase (NADPH) activity
## 1370 3-hydroxypalmitoyl-[acyl-carrier-protein] dehydratase activity
## 1371 enoyl-[acyl-carrier-protein] reductase (NADPH, B-specific) activity
## 1372 oleoyl-[acyl-carrier-protein] hydrolase activity
## 1373 fatty-acyl-CoA synthase activity
## 1374 ferroxidase activity
## 1375 ferredoxin-NADP+ reductase activity
## 1376 ferrochelatase activity
## 1377 tetrahydrofolylpolyglutamate synthase activity
## 1378 formate-tetrahydrofolate ligase activity
## 1379 fructose-bisphosphate aldolase activity
## 1380 fumarylacetoacetase activity
## 1381 galactokinase activity
## 1382 galactosylceramidase activity
## 1383 glucan 1,4-alpha-glucosidase activity
## 1384 glucokinase activity
## 1385 gluconolactonase activity
## 1386 glucosamine-6-phosphate deaminase activity
## 1387 glucosamine 6-phosphate N-acetyltransferase activity
## 1388 glucose-6-phosphate dehydrogenase activity
## 1389 glucose-6-phosphatase activity
## 1390 glucose-6-phosphate isomerase activity
## 1391 glucosylceramidase activity
## 1392 glutamate 5-kinase activity
## 1393 glutamate-5-semialdehyde dehydrogenase activity
## 1394 glutamate dehydrogenase (NAD+) activity
## 1395 glutamate dehydrogenase [NAD(P)+] activity
## 1396 glutamate-cysteine ligase activity
## 1397 glutaminase activity
## 1398 glutamine-fructose-6-phosphate transaminase (isomerizing) activity
## 1399 glutaryl-CoA dehydrogenase activity
## 1400 glutathione-disulfide reductase activity
## 1401 glutathione synthase activity
## 1402 glutathione transferase activity
## 1403 glyceraldehyde-3-phosphate dehydrogenase (NAD+) (phosphorylating) activity
## 1404 glycerol-3-phosphate O-acyltransferase activity
## 1405 glycerol-3-phosphate dehydrogenase [NAD+] activity
## 1406 glycerol-3-phosphate dehydrogenase activity
## 1407 glycerol kinase activity
## 1408 glycerone kinase activity
## 1409 glycine hydroxymethyltransferase activity
## 1410 glycogen (starch) synthase activity
## 1411 glycine dehydrogenase (decarboxylating) activity
## 1412 glycolipid mannosyltransferase activity
## 1413 GDP-Man:Man3GlcNAc2-PP-Dol alpha-1,2-mannosyltransferase activity
## 1414 GDP-Man:Man1GlcNAc2-PP-Dol alpha-1,3-mannosyltransferase activity
## 1415 glycylpeptide N-tetradecanoyltransferase activity
## 1416 glycoprotein-fucosylgalactoside alpha-N-acetylgalactosaminyltransferase activity
## 1417 fucosylgalactoside 3-alpha-galactosyltransferase activity
## 1418 guanosine-diphosphatase activity
## 1419 guanylate cyclase activity
## 1420 guanylate kinase activity
## 1421 heme oxygenase (decyclizing) activity
## 1422 heparan sulfate 2-O-sulfotransferase activity
## 1423 hexaprenyldihydroxybenzoate methyltransferase activity
## 1424 histidine ammonia-lyase activity
## 1425 histidine decarboxylase activity
## 1426 histone deacetylase activity
## 1427 holocytochrome-c synthase activity
## 1428 homogentisate 1,2-dioxygenase activity
## 1429 hyalurononglucosaminidase activity
## 1430 hydroxyacylglutathione hydrolase activity
## 1431 hydroxymethylbilane synthase activity
## 1432 hydroxymethylglutaryl-CoA lyase activity
## 1433 hydroxymethylglutaryl-CoA reductase (NADPH) activity
## 1434 hydroxymethylglutaryl-CoA synthase activity
## 1435 hypoxanthine phosphoribosyltransferase activity
## 1436 iduronate-2-sulfatase activity
## 1437 inorganic diphosphatase activity
## 1438 1-phosphatidylinositol 4-kinase activity
## 1439 phosphatidylinositol phospholipase C activity
## 1440 phosphatidylinositol-3-phosphatase activity
## 1441 inositol-1,4-bisphosphate 1-phosphatase activity
## 1442 inositol-polyphosphate 5-phosphatase activity
## 1443 iodide peroxidase activity
## 1444 isocitrate dehydrogenase activity
## 1445 isocitrate dehydrogenase (NAD+) activity
## 1446 isocitrate dehydrogenase (NADP+) activity
## 1447 isopentenyl-diphosphate delta-isomerase activity
## 1448 ketohexokinase activity
## 1449 lactate dehydrogenase activity
## 1450 D-lactate dehydrogenase (cytochrome) activity
## 1451 L-lactate dehydrogenase activity
## 1452 lactose synthase activity
## 1453 lactoylglutathione lyase activity
## 1454 leukotriene-A4 hydrolase activity
## 1455 leukotriene-C4 synthase activity
## 1456 lipoprotein lipase activity
## 1457 long-chain-acyl-CoA dehydrogenase activity
## 1458 long-chain fatty acid-CoA ligase activity
## 1459 lysine N-acetyltransferase activity, acting on acetyl phosphate as donor
## 1460 malic enzyme activity
## 1461 malate dehydrogenase (decarboxylating) (NAD+) activity
## 1462 malate dehydrogenase (decarboxylating) (NADP+) activity
## 1463 malate synthase activity
## 1464 mannose-1-phosphate guanylyltransferase activity
## 1465 mannose-6-phosphate isomerase activity
## 1466 methenyltetrahydrofolate cyclohydrolase activity
## 1467 methionine adenosyltransferase activity
## 1468 methionyl-tRNA formyltransferase activity
## 1469 mRNA (guanine-N7-)-methyltransferase activity
## 1470 mRNA (nucleoside-2'-O-)-methyltransferase activity
## 1471 mRNA guanylyltransferase activity
## 1472 methylcrotonoyl-CoA carboxylase activity
## 1473 methylenetetrahydrofolate dehydrogenase [NAD(P)+] activity
## 1474 methylenetetrahydrofolate dehydrogenase (NAD+) activity
## 1475 methylenetetrahydrofolate dehydrogenase (NADP+) activity
## 1476 methylglutaconyl-CoA hydratase activity
## 1477 methylmalonate-semialdehyde dehydrogenase (acylating) activity
## 1478 methylmalonyl-CoA decarboxylase activity
## 1479 methylmalonyl-CoA epimerase activity
## 1480 methylmalonyl-CoA mutase activity
## 1481 mevalonate kinase activity
## 1482 monooxygenase activity
## 1483 calcidiol 1-monooxygenase activity
## 1484 N,N-dimethylaniline monooxygenase activity
## 1485 dopamine beta-monooxygenase activity
## 1486 kynurenine 3-monooxygenase activity
## 1487 monophenol monooxygenase activity
## 1488 peptidylglycine monooxygenase activity
## 1489 phenylalanine 4-monooxygenase activity
## 1490 squalene monooxygenase activity
## 1491 steroid 11-beta-monooxygenase activity
## 1492 steroid 17-alpha-monooxygenase activity
## 1493 steroid 21-monooxygenase activity
## 1494 tryptophan 5-monooxygenase activity
## 1495 tyrosine 3-monooxygenase activity
## 1496 inositol-3-phosphate synthase activity
## 1497 neolactotetraosylceramide alpha-2,3-sialyltransferase activity
## 1498 nicotinate-nucleotide diphosphorylase (carboxylating) activity
## 1499 nicotinate-nucleotide adenylyltransferase activity
## 1500 nicotinate phosphoribosyltransferase activity
## 1501 nitric-oxide synthase activity
## 1502 ribonuclease A activity
## 1503 ribonuclease III activity
## 1504 ribonuclease P activity
## 1505 phosphodiesterase I activity
## 1506 deoxyribonuclease I activity
## 1507 deoxyribonuclease II activity
## 1508 5'-3' exoribonuclease activity
## 1509 tRNA-specific ribonuclease activity
## 1510 nucleotide diphosphatase activity
## 1511 alpha,alpha-trehalase activity
## 1512 alpha-amylase activity
## 1513 alpha-galactosidase activity
## 1514 alpha-1,4-glucosidase activity
## 1515 alpha-L-fucosidase activity
## 1516 alpha-N-acetylglucosaminidase activity
## 1517 beta-N-acetylhexosaminidase activity
## 1518 beta-galactosidase activity
## 1519 beta-glucuronidase activity
## 1520 beta-mannosidase activity
## 1521 glycoprotein endo-alpha-1,2-mannosidase activity
## 1522 mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase activity
## 1523 mannosyl-oligosaccharide glucosidase activity
## 1524 oligo-1,6-glucosidase activity
## 1525 sucrose alpha-glucosidase activity
## 1526 oligosaccharyl transferase activity
## 1527 chitobiosyldiphosphodolichol beta-mannosyltransferase activity
## 1528 dolichyl-diphosphooligosaccharide-protein glycotransferase activity
## 1529 dolichyl-phosphate beta-glucosyltransferase activity
## 1530 dolichyl-phosphate beta-D-mannosyltransferase activity
## 1531 dolichyl-phosphate-glucose-glycolipid alpha-glucosyltransferase activity
## 1532 dolichyl-phosphate-mannose-glycolipid alpha-mannosyltransferase activity
## 1533 ornithine carbamoyltransferase activity
## 1534 ornithine decarboxylase activity
## 1535 ornithine-oxo-acid transaminase activity
## 1536 orotate phosphoribosyltransferase activity
## 1537 orotidine-5'-phosphate decarboxylase activity
## 1538 oxoglutarate dehydrogenase (succinyl-transferring) activity
## 1539 pantothenate kinase activity
## 1540 pantetheine-phosphate adenylyltransferase activity
## 1541 peptide alpha-N-acetyltransferase activity
## 1542 peptide-aspartate beta-dioxygenase activity
## 1543 peptidylamidoglycolate lyase activity
## 1544 phenylethanolamine N-methyltransferase activity
## 1545 phosphatidate cytidylyltransferase activity
## 1546 phosphatidylcholine-sterol O-acyltransferase activity
## 1547 phosphatidylethanolamine N-methyltransferase activity
## 1548 phosphatidylserine decarboxylase activity
## 1549 phosphoacetylglucosamine mutase activity
## 1550 phosphoenolpyruvate carboxykinase (GTP) activity
## 1551 phosphoglucomutase activity
## 1552 phosphomannomutase activity
## 1553 phosphoglycerate dehydrogenase activity
## 1554 phosphoglycerate kinase activity
## 1555 glycosylphosphatidylinositol phospholipase D activity
## 1556 lysophospholipase activity
## 1557 phospholipase C activity
## 1558 phospholipase D activity
## 1559 phosphomevalonate kinase activity
## 1560 phosphopantothenate--cysteine ligase activity
## 1561 phosphopantothenoylcysteine decarboxylase activity
## 1562 phosphoribosylamine-glycine ligase activity
## 1563 phosphoribosylaminoimidazole carboxylase activity
## 1564 phosphoribosylaminoimidazolesuccinocarboxamide synthase activity
## 1565 phosphoribosylformylglycinamidine cyclo-ligase activity
## 1566 phosphoribosylformylglycinamidine synthase activity
## 1567 phosphoribosylaminoimidazolecarboxamide formyltransferase activity
## 1568 phosphoribosylglycinamide formyltransferase activity
## 1569 phosphorylase activity
## 1570 phosphoserine phosphatase activity
## 1571 O-phospho-L-serine:2-oxoglutarate aminotransferase activity
## 1572 poly(ADP-ribose) glycohydrolase activity
## 1573 polynucleotide 5'-phosphatase activity
## 1574 polynucleotide adenylyltransferase activity
## 1575 polyribonucleotide nucleotidyltransferase activity
## 1576 porphobilinogen synthase activity
## 1577 procollagen-proline 4-dioxygenase activity
## 1578 proline dehydrogenase activity
## 1579 propionyl-CoA carboxylase activity
## 1580 protein farnesyltransferase activity
## 1581 CAAX-protein geranylgeranyltransferase activity
## 1582 prostaglandin-endoperoxide synthase activity
## 1583 prostaglandin-D synthase activity
## 1584 protein C-terminal S-isoprenylcysteine carboxyl O-methyltransferase activity
## 1585 protein histidine kinase activity
## 1586 3-phosphoinositide-dependent protein kinase activity
## 1587 DNA-dependent protein kinase activity
## 1588 calmodulin-dependent protein kinase activity
## 1589 elongation factor-2 kinase activity
## 1590 myosin light chain kinase activity
## 1591 phosphorylase kinase activity
## 1592 cyclic nucleotide-dependent protein kinase activity
## 1593 cAMP-dependent protein kinase activity
## 1594 cGMP-dependent protein kinase activity
## 1595 cyclin-dependent protein serine/threonine kinase activity
## 1596 eukaryotic translation initiation factor 2alpha kinase activity
## 1597 calcium-dependent protein kinase C activity
## 1598 calcium-independent protein kinase C activity
## 1599 signal transducer, downstream of receptor, with serine/threonine kinase activity
## 1600 G-protein coupled receptor kinase activity
## 1601 NF-kappaB-inducing kinase activity
## 1602 JUN kinase activity
## 1603 JUN kinase kinase kinase activity
## 1604 MAP kinase activity
## 1605 MAP kinase kinase activity
## 1606 MAP kinase kinase kinase activity
## 1607 ribosomal protein S6 kinase activity
## 1608 non-membrane spanning protein tyrosine kinase activity
## 1609 signal transducer, downstream of receptor, with protein tyrosine kinase activity
## 1610 protein-L-isoaspartate (D-aspartate) O-methyltransferase activity
## 1611 protein-lysine 6-oxidase activity
## 1612 calcium-dependent protein serine/threonine phosphatase activity
## 1613 non-membrane spanning protein tyrosine phosphatase activity
## 1614 signal transducer, downstream of receptor, with protein tyrosine phosphatase activity
## 1615 pseudouridylate synthase activity
## 1616 purine-nucleoside phosphorylase activity
## 1617 pyridoxamine-phosphate oxidase activity
## 1618 pyrroline-5-carboxylate reductase activity
## 1619 pyruvate carboxylase activity
## 1620 pyruvate dehydrogenase activity
## 1621 pyruvate dehydrogenase (acetyl-transferring) activity
## 1622 pyruvate dehydrogenase (acetyl-transferring) kinase activity
## 1623 [pyruvate dehydrogenase (lipoamide)] phosphatase activity
## 1624 dihydrolipoyllysine-residue acetyltransferase activity
## 1625 pyruvate kinase activity
## 1626 retinal isomerase activity
## 1627 ribokinase activity
## 1628 ribonucleoside-diphosphate reductase activity, thioredoxin disulfide as acceptor
## 1629 ribose phosphate diphosphokinase activity
## 1630 ribulose-phosphate 3-epimerase activity
## 1631 ribose-5-phosphate isomerase activity
## 1632 selenide, water dikinase activity
## 1633 sepiapterin reductase activity
## 1634 serine C-palmitoyltransferase activity
## 1635 serine-pyruvate transaminase activity
## 1636 spermidine synthase activity
## 1637 sphingomyelin phosphodiesterase activity
## 1638 stearoyl-CoA 9-desaturase activity
## 1639 steroid delta-isomerase activity
## 1640 sterol esterase activity
## 1641 steryl-sulfatase activity
## 1642 succinate-CoA ligase activity
## 1643 succinate-CoA ligase (ADP-forming) activity
## 1644 succinate-CoA ligase (GDP-forming) activity
## 1645 succinate-semialdehyde dehydrogenase (NAD+) activity
## 1646 succinyl-CoA hydrolase activity
## 1647 sulfate adenylyltransferase (ATP) activity
## 1648 sulfinoalanine decarboxylase activity
## 1649 superoxide dismutase activity
## 1650 thiamine diphosphokinase activity
## 1651 thioether S-methyltransferase activity
## 1652 thioredoxin-disulfide reductase activity
## 1653 thiosulfate sulfurtransferase activity
## 1654 L-threonine ammonia-lyase activity
## 1655 thromboxane-A synthase activity
## 1656 thymidine kinase activity
## 1657 thymidylate kinase activity
## 1658 thymidylate synthase activity
## 1659 thyroxine 5'-deiodinase activity
## 1660 sedoheptulose-7-phosphate:D-glyceraldehyde-3-phosphate glyceronetransferase activity
## 1661 transketolase activity
## 1662 transposase activity
## 1663 triglyceride lipase activity
## 1664 triose-phosphate isomerase activity
## 1665 tRNA (guanine-N2-)-methyltransferase activity
## 1666 alanine-tRNA ligase activity
## 1667 arginine-tRNA ligase activity
## 1668 asparagine-tRNA ligase activity
## 1669 cysteine-tRNA ligase activity
## 1670 glutamine-tRNA ligase activity
## 1671 glycine-tRNA ligase activity
## 1672 histidine-tRNA ligase activity
## 1673 isoleucine-tRNA ligase activity
## 1674 leucine-tRNA ligase activity
## 1675 lysine-tRNA ligase activity
## 1676 methionine-tRNA ligase activity
## 1677 phenylalanine-tRNA ligase activity
## 1678 serine-tRNA ligase activity
## 1679 tyrosine-tRNA ligase activity
## 1680 valine-tRNA ligase activity
## 1681 tryptophan 2,3-dioxygenase activity
## 1682 tubulin-tyrosine ligase activity
## 1683 L-tyrosine:2-oxoglutarate aminotransferase activity
## 1684 ubiquitin activating enzyme activity
## 1685 uracil DNA N-glycosylase activity
## 1686 uridine phosphorylase activity
## 1687 uroporphyrinogen-III synthase activity
## 1688 uroporphyrinogen decarboxylase activity
## 1689 xanthine dehydrogenase activity
## 1690 xanthine oxidase activity
## 1691 xylulokinase activity
## 1692 phospholipase inhibitor activity
## 1693 cAMP-dependent protein kinase inhibitor activity
## 1694 protein serine/threonine phosphatase inhibitor activity
## 1695 serine-type endopeptidase inhibitor activity
## 1696 asialoglycoprotein receptor activity
## 1697 aryl hydrocarbon receptor activity
## 1698 complement receptor activity
## 1699 complement component C3a receptor activity
## 1700 complement component C3b receptor activity
## 1701 complement component C5a receptor activity
## 1702 RNA polymerase II transcription factor activity, ligand-activated sequence-specific DNA binding
## 1703 androgen receptor activity
## 1704 9-cis retinoic acid receptor activity
## 1705 thyroid hormone receptor activity
## 1706 GABA-A receptor activity
## 1707 ciliary neurotrophic factor receptor activity
## 1708 erythropoietin receptor activity
## 1709 interferon receptor activity
## 1710 type I interferon receptor activity
## 1711 interferon-gamma receptor activity
## 1712 interleukin-1 receptor activity
## 1713 interleukin-1, Type I, activating receptor activity
## 1714 interleukin-1, Type II, blocking receptor activity
## 1715 interleukin-2 receptor activity
## 1716 interleukin-3 receptor activity
## 1717 interleukin-4 receptor activity
## 1718 interleukin-5 receptor activity
## 1719 interleukin-6 receptor activity
## 1720 interleukin-7 receptor activity
## 1721 interleukin-8 receptor activity
## 1722 interleukin-9 receptor activity
## 1723 interleukin-10 receptor activity
## 1724 interleukin-11 receptor activity
## 1725 leukemia inhibitory factor receptor activity
## 1726 oncostatin-M receptor activity
## 1727 prolactin receptor activity
## 1728 extracellular ATP-gated cation channel activity
## 1729 adrenergic receptor activity
## 1730 alpha-adrenergic receptor activity
## 1731 alpha1-adrenergic receptor activity
## 1732 alpha2-adrenergic receptor activity
## 1733 beta-adrenergic receptor activity
## 1734 beta1-adrenergic receptor activity
## 1735 beta2-adrenergic receptor activity
## 1736 angiotensin type II receptor activity
## 1737 bombesin receptor activity
## 1738 bradykinin receptor activity
## 1739 calcitonin receptor activity
## 1740 cannabinoid receptor activity
## 1741 chemokine receptor activity
## 1742 cholecystokinin receptor activity
## 1743 dopamine neurotransmitter receptor activity
## 1744 icosanoid receptor activity
## 1745 prostanoid receptor activity
## 1746 prostaglandin receptor activity
## 1747 prostaglandin D receptor activity
## 1748 prostaglandin E receptor activity
## 1749 prostaglandin F receptor activity
## 1750 thromboxane A2 receptor activity
## 1751 endothelin receptor activity
## 1752 follicle-stimulating hormone receptor activity
## 1753 luteinizing hormone receptor activity
## 1754 G-protein coupled GABA receptor activity
## 1755 galanin receptor activity
## 1756 glucagon receptor activity
## 1757 gonadotropin-releasing hormone receptor activity
## 1758 histamine receptor activity
## 1759 ionotropic glutamate receptor activity
## 1760 AMPA glutamate receptor activity
## 1761 NMDA glutamate receptor activity
## 1762 leukotriene receptor activity
## 1763 melanocortin receptor activity
## 1764 corticotropin receptor activity
## 1765 beta-endorphin receptor activity
## 1766 melanocyte-stimulating hormone receptor activity
## 1767 N-formyl peptide receptor activity
## 1768 neuropeptide Y receptor activity
## 1769 opioid receptor activity
## 1770 oxytocin receptor activity
## 1771 parathyroid hormone receptor activity
## 1772 platelet activating factor receptor activity
## 1773 G-protein coupled serotonin receptor activity
## 1774 somatostatin receptor activity
## 1775 tachykinin receptor activity
## 1776 thyroid-stimulating hormone receptor activity
## 1777 thyrotropin-releasing hormone receptor activity
## 1778 transferrin receptor activity
## 1779 vasoactive intestinal polypeptide receptor activity
## 1780 vasopressin receptor activity
## 1781 transmembrane receptor protein tyrosine phosphatase activity
## 1782 GPI-linked ephrin receptor activity
## 1783 transmembrane-ephrin receptor activity
## 1784 epidermal growth factor-activated receptor activity
## 1785 fibroblast growth factor-activated receptor activity
## 1786 hepatocyte growth factor-activated receptor activity
## 1787 insulin-activated receptor activity
## 1788 insulin-like growth factor-activated receptor activity
## 1789 macrophage colony-stimulating factor receptor activity
## 1790 platelet-derived growth factor-activated receptor activity
## 1791 platelet-derived growth factor alpha-receptor activity
## 1792 platelet-derived growth factor beta-receptor activity
## 1793 stem cell factor receptor activity
## 1794 vascular endothelial growth factor-activated receptor activity
## 1795 transforming growth factor beta-activated receptor activity
## 1796 transforming growth factor beta receptor activity, type I
## 1797 transforming growth factor beta receptor activity, type II
## 1798 neurotrophin receptor activity
## 1799 osmosensor activity
## 1800 low-density lipoprotein receptor activity
## 1801 netrin receptor activity
## 1802 scavenger receptor activity
## 1803 KDEL sequence binding
## 1804 nuclear export signal receptor activity
## 1805 peroxisome matrix targeting signal-1 binding
## 1806 peroxisome matrix targeting signal-2 binding
## 1807 laminin receptor activity
## 1808 transforming growth factor beta receptor, cytoplasmic mediator activity
## 1809 MAP-kinase scaffold activity
## 1810 protein kinase C binding
## 1811 ARF guanyl-nucleotide exchange factor activity
## 1812 Sar guanyl-nucleotide exchange factor activity
## 1813 GDP-dissociation inhibitor activity
## 1814 Rab GDP-dissociation inhibitor activity
## 1815 Rho GDP-dissociation inhibitor activity
## 1816 GTPase inhibitor activity
## 1817 fibroblast growth factor receptor binding
## 1818 type 1 fibroblast growth factor receptor binding
## 1819 frizzled binding
## 1820 frizzled-2 binding
## 1821 type 2 fibroblast growth factor receptor binding
## 1822 Notch binding
## 1823 patched binding
## 1824 type II transforming growth factor beta receptor binding
## 1825 receptor tyrosine kinase-like orphan receptor binding
## 1826 death receptor binding
## 1827 scavenger receptor binding
## 1828 ciliary neurotrophic factor receptor binding
## 1829 erythropoietin receptor binding
## 1830 granulocyte macrophage colony-stimulating factor receptor binding
## 1831 granulocyte colony-stimulating factor receptor binding
## 1832 growth hormone receptor binding
## 1833 type I interferon receptor binding
## 1834 interferon-gamma receptor binding
## 1835 interleukin-2 receptor binding
## 1836 interleukin-3 receptor binding
## 1837 interleukin-4 receptor binding
## 1838 interleukin-5 receptor binding
## 1839 interleukin-6 receptor binding
## 1840 interleukin-7 receptor binding
## 1841 interleukin-9 receptor binding
## 1842 interleukin-10 receptor binding
## 1843 interleukin-11 receptor binding
## 1844 interleukin-12 receptor binding
## 1845 interleukin-13 receptor binding
## 1846 leukemia inhibitory factor receptor binding
## 1847 oncostatin-M receptor binding
## 1848 prolactin receptor binding
## 1849 interleukin-1, Type I receptor binding
## 1850 interleukin-1, Type II receptor binding
## 1851 interleukin-1 receptor antagonist activity
## 1852 interleukin-8 receptor binding
## 1853 macrophage colony-stimulating factor receptor binding
## 1854 transforming growth factor beta receptor binding
## 1855 platelet-derived growth factor receptor binding
## 1856 nerve growth factor receptor binding
## 1857 tumor necrosis factor receptor binding
## 1858 neurotrophin p75 receptor binding
## 1859 neurotrophin TRKB receptor binding
## 1860 neurotrophin TRKC receptor binding
## 1861 hepatocyte growth factor receptor binding
## 1862 vascular endothelial growth factor receptor binding
## 1863 stem cell factor receptor binding
## 1864 CD40 receptor binding
## 1865 CD27 receptor binding
## 1866 ErbB-2 class receptor binding
## 1867 gonadotropin hormone-releasing hormone activity
## 1868 neuropeptide hormone activity
## 1869 neurohypophyseal hormone activity
## 1870 structural constituent of cell wall
## 1871 structural constituent of eye lens
## 1872 ryanodine-sensitive calcium-release channel activity
## 1873 inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## 1874 intracellular cyclic nucleotide activated cation channel activity
## 1875 intracellular cAMP activated cation channel activity
## 1876 intracellular cGMP activated cation channel activity
## 1877 intracellular calcium activated chloride channel activity
## 1878 extracellular ligand-gated ion channel activity
## 1879 excitatory extracellular ligand-gated ion channel activity
## 1880 extracellular-glutamate-gated ion channel activity
## 1881 inhibitory extracellular ligand-gated ion channel activity
## 1882 voltage-gated sodium channel activity
## 1883 A-type (transient outward) potassium channel activity
## 1884 delayed rectifier potassium channel activity
## 1885 open rectifier potassium channel activity
## 1886 channel-conductance-controlling ATPase activity
## 1887 amine transmembrane transporter activity
## 1888 vesicular hydrogen:amino acid antiporter activity
## 1889 acetylcholine transmembrane transporter activity
## 1890 hydrogen:amino acid symporter activity
## 1891 high-affinity arginine transmembrane transporter activity
## 1892 L-histidine transmembrane transporter activity
## 1893 high-affinity lysine transmembrane transporter activity
## 1894 proline:sodium symporter activity
## 1895 L-tyrosine transmembrane transporter activity
## 1896 choline:sodium symporter activity
## 1897 creatine transmembrane transporter activity
## 1898 creatine:sodium symporter activity
## 1899 dicarboxylic acid transmembrane transporter activity
## 1900 L-glutamate transmembrane transporter activity
## 1901 high-affinity glutamate transmembrane transporter activity
## 1902 inorganic phosphate transmembrane transporter activity
## 1903 high-affinity inorganic phosphate:sodium symporter activity
## 1904 long-chain fatty acid transporter activity
## 1905 peroxisomal fatty-acyl-CoA transporter activity
## 1906 dopamine transmembrane transporter activity
## 1907 dopamine:sodium symporter activity
## 1908 gamma-aminobutyric acid:sodium symporter activity
## 1909 norepinephrine transmembrane transporter activity
## 1910 norepinephrine:sodium symporter activity
## 1911 serotonin:sodium symporter activity
## 1912 nucleoside transmembrane transporter activity
## 1913 nucleotide-sugar transmembrane transporter activity
## 1914 oxygen transporter activity
## 1915 purine nucleobase transmembrane transporter activity
## 1916 purine ribonucleotide transmembrane transporter activity
## 1917 ATP transmembrane transporter activity
## 1918 pyrimidine nucleobase transmembrane transporter activity
## 1919 sugar:proton symporter activity
## 1920 fructose transmembrane transporter activity
## 1921 low-affinity glucose:sodium symporter activity
## 1922 myo-inositol transmembrane transporter activity
## 1923 myo-inositol:proton symporter activity
## 1924 myo-inositol:sodium symporter activity
## 1925 taurine:sodium symporter activity
## 1926 copper ion transmembrane transporter activity
## 1927 iron ion transmembrane transporter activity
## 1928 manganese ion transmembrane transporter activity
## 1929 calcium-transporting ATPase activity
## 1930 eye pigment precursor transporter activity
## 1931 glucose:sodium symporter activity
## 1932 nucleoside:sodium symporter activity
## 1933 proton-dependent oligopeptide secondary active transmembrane transporter activity
## 1934 calcium:sodium antiporter activity
## 1935 sodium:phosphate symporter activity
## 1936 inorganic anion exchanger activity
## 1937 CMP-N-acetylneuraminate transmembrane transporter activity
## 1938 GDP-fucose transmembrane transporter activity
## 1939 UDP-galactose transmembrane transporter activity
## 1940 UDP-glucuronic acid transmembrane transporter activity
## 1941 UDP-N-acetylglucosamine transmembrane transporter activity
## 1942 UDP-xylose transmembrane transporter activity
## 1943 ATP:ADP antiporter activity
## 1944 carnitine:acyl carnitine antiporter activity
## 1945 pyruvate secondary active transmembrane transporter activity
## 1946 soluble NSF attachment protein activity
## 1947 androgen binding
## 1948 vitamin D binding
## 1949 retinoid binding
## 1950 11-cis retinal binding
## 1951 all-trans retinal binding
## 1952 cytoskeletal regulatory protein binding
## 1953 profilin binding
## 1954 tropomyosin binding
## 1955 FK506 binding
## 1956 galactose binding
## 1957 glucose binding
## 1958 mannose binding
## 1959 folic acid binding
## 1960 calcium-dependent phospholipid binding
## 1961 phosphatidylinositol-3,4,5-trisphosphate binding
## 1962 odorant binding
## 1963 pheromone binding
## 1964 chemokine activity
## 1965 high-density lipoprotein particle binding
## 1966 axon guidance receptor activity
## 1967 calcium sensitive guanylate cyclase activator activity
## 1968 glutamate receptor activity
## 1969 extracellular-glutamate-gated chloride channel activity
## 1970 ornithine decarboxylase inhibitor activity
## 1971 phosphoric diester hydrolase activity
## 1972 cytoskeletal adaptor activity
## 1973 galactoside 2-alpha-L-fucosyltransferase activity
## 1974 UDP-glucose:hexose-1-phosphate uridylyltransferase activity
## 1975 N-acetyllactosaminide beta-1,6-N-acetylglucosaminyltransferase activity
## 1976 alpha-methylacyl-CoA racemase activity
## 1977 nicotinamide N-methyltransferase activity
## 1978 peptide-methionine (S)-S-oxide reductase activity
## 1979 sarcosine oxidase activity
## 1980 prostaglandin-I synthase activity
## 1981 sphinganine-1-phosphate aldolase activity
## 1982 thiopurine S-methyltransferase activity
## 1983 ceramide glucosyltransferase activity
## 1984 cholesterol 7-alpha-monooxygenase activity
## 1985 4-alpha-hydroxytetrahydrobiopterin dehydratase activity
## 1986 quercetin 2,3-dioxygenase activity
## 1987 primary amine oxidase activity
## 1988 nuclear localization sequence binding
## 1989 cAMP response element binding protein binding
## 1990 oxysterol binding
## 1991 sulfotransferase activity
## 1992 structural constituent of bone
## 1993 protein tyrosine phosphatase activator activity
## 1994 mRNA methyltransferase activity
## 1995 tRNA (guanine-N7-)-methyltransferase activity
## 1996 succinate dehydrogenase (ubiquinone) activity
## 1997 glycogen phosphorylase activity
## 1998 neuropeptide receptor activity
## 1999 eukaryotic initiation factor 4E binding
## 2000 metalloendopeptidase inhibitor activity
## 2001 RNA guanylyltransferase activity
## 2002 tRNA guanylyltransferase activity
## 2003 phosphatidate phosphatase activity
## 2004 ferrous iron binding
## 2005 ferric iron binding
## 2006 G-protein coupled amine receptor activity
## 2007 dipeptidyl-peptidase activity
## 2008 tripeptidyl-peptidase activity
## 2009 peptidyl-dipeptidase activity
## 2010 omega peptidase activity
## 2011 tRNA-specific adenosine deaminase activity
## 2012 nucleotidase activity
## 2013 5'-nucleotidase activity
## 2014 3'-nucleotidase activity
## 2015 3-oxoacid CoA-transferase activity
## 2016 pyrimidine-specific mismatch base pair DNA N-glycosylase activity
## 2017 Mo-molybdopterin cofactor sulfurase activity
## 2018 poly-glutamine tract binding
## 2019 JAK pathway signal transduction adaptor activity
## 2020 secondary active sulfate transmembrane transporter activity
## 2021 calcium, potassium:sodium antiporter activity
## 2022 sulfonylurea receptor activity
## 2023 calcium- and calmodulin-responsive adenylate cyclase activity
## 2024 3'-5'-exodeoxyribonuclease activity
## 2025 DNA binding, bending
## 2026 single-stranded DNA 3'-5' exodeoxyribonuclease activity
## 2027 double-stranded DNA 3'-5' exodeoxyribonuclease activity
## 2028 Ral guanyl-nucleotide exchange factor activity
## 2029 methyl-CpG binding
## 2030 signaling pattern recognition receptor activity
## 2031 protein tyrosine/threonine phosphatase activity
## 2032 high voltage-gated calcium channel activity
## 2033 low voltage-gated calcium channel activity
## 2034 gamma-butyrobetaine dioxygenase activity
## 2035 MAP kinase kinase kinase kinase activity
## 2036 RNA polymerase II carboxy-terminal domain kinase activity
## 2037 mechanically-gated ion channel activity
## 2038 IkappaB kinase activity
## 2039 cholesterol monooxygenase (side-chain-cleaving) activity
## 2040 steroid 7-alpha-hydroxylase activity
## 2041 coumarin 7-hydroxylase activity
## 2042 arachidonic acid epoxygenase activity
## 2043 steroid hydroxylase activity
## 2044 oxysterol 7-alpha-hydroxylase activity
## 2045 sterol 12-alpha-hydroxylase activity
## 2046 sterol 14-demethylase activity
## 2047 retinoic acid 4-hydroxylase activity
## 2048 25-hydroxycholecalciferol-24-hydroxylase activity
## 2049 arachidonic acid 14,15-epoxygenase activity
## 2050 arachidonic acid 11,12-epoxygenase activity
## 2051 CoA-transferase activity
## 2052 8-oxo-7,8-dihydroguanosine triphosphate pyrophosphatase activity
## 2053 fucosyltransferase activity
## 2054 protein-N-terminal asparagine amidohydrolase activity
## 2055 RNA lariat debranching enzyme activity
## 2056 beta-glucosidase activity
## 2057 glycoprotein 6-alpha-L-fucosyltransferase activity
## 2058 2-polyprenyl-6-methoxy-1,4-benzoquinone methyltransferase activity
## 2059 protein kinase C inhibitor activity
## 2060 calcium-dependent protein kinase inhibitor activity
## 2061 ribonuclease inhibitor activity
## 2062 phosphatidylethanolamine binding
## 2063 selenium binding
## 2064 vitamin E binding
## 2065 calcitriol receptor activity
## 2066 thyrotropin-releasing hormone activity
## 2067 inositol-1,4,5-trisphosphate 3-kinase activity
## 2068 3'(2'),5'-bisphosphate nucleotidase activity
## 2069 3-hydroxyisobutyrate dehydrogenase activity
## 2070 CDP-diacylglycerol-glycerol-3-phosphate 3-phosphatidyltransferase activity
## 2071 D-aspartate oxidase activity
## 2072 GDP-mannose 4,6-dehydratase activity
## 2073 N-acetylglucosamine-6-phosphate deacetylase activity
## 2074 N-acetylglucosamine-6-sulfatase activity
## 2075 alanine-glyoxylate transaminase activity
## 2076 alpha-1,3-mannosylglycoprotein 4-beta-N-acetylglucosaminyltransferase activity
## 2077 alpha-1,6-mannosylglycoprotein 2-beta-N-acetylglucosaminyltransferase activity
## 2078 alpha-N-acetylgalactosaminidase activity
## 2079 beta-galactosyl-N-acetylglucosaminylgalactosylglucosyl-ceramide beta-1,3-acetylglucosaminyltransferase activity
## 2080 carnitine O-octanoyltransferase activity
## 2081 chondroitin 6-sulfotransferase activity
## 2082 dTDP-glucose 4,6-dehydratase activity
## 2083 glycerate dehydrogenase activity
## 2084 glycogenin glucosyltransferase activity
## 2085 [heparan sulfate]-glucosamine 3-sulfotransferase 1 activity
## 2086 histone-arginine N-methyltransferase activity
## 2087 isovaleryl-CoA dehydrogenase activity
## 2088 palmitoyl-(protein) hydrolase activity
## 2089 procollagen-lysine 5-dioxygenase activity
## 2090 protein-tyrosine sulfotransferase activity
## 2091 pyridoxal kinase activity
## 2092 queuine tRNA-ribosyltransferase activity
## 2093 sarcosine dehydrogenase activity
## 2094 sphinganine kinase activity
## 2095 sulfite oxidase activity
## 2096 transaminase activity
## 2097 sulfuric ester hydrolase activity
## 2098 diphosphoinositol-polyphosphate diphosphatase activity
## 2099 gamma-glutamyl carboxylase activity
## 2100 UDP-galactose:glucosylceramide beta-1,4-galactosyltransferase activity
## 2101 tetracycline transporter activity
## 2102 translation activator activity
## 2103 protoheme IX farnesyltransferase activity
## 2104 mannan endo-1,6-alpha-mannosidase activity
## 2105 UDP-galactose:beta-N-acetylglucosamine beta-1,3-galactosyltransferase activity
## 2106 melatonin receptor activity
## 2107 benzodiazepine receptor activity
## 2108 monoamine transmembrane transporter activity
## 2109 sucrose:proton symporter activity
## 2110 sodium:iodide symporter activity
## 2111 bile acid:sodium symporter activity
## 2112 sodium:bicarbonate symporter activity
## 2113 sodium:potassium:chloride symporter activity
## 2114 secondary active organic cation transmembrane transporter activity
## 2115 folic acid transporter activity
## 2116 reduced folate carrier activity
## 2117 ammonium transmembrane transporter activity
## 2118 L-ascorbate:sodium symporter activity
## 2119 acetyl-CoA transporter activity
## 2120 sodium-dependent multivitamin transmembrane transporter activity
## 2121 phosphatidylcholine transporter activity
## 2122 phosphatidylinositol transporter activity
## 2123 taste receptor activity
## 2124 riboflavin kinase activity
## 2125 N-acetyllactosaminide beta-1,3-N-acetylglucosaminyltransferase activity
## 2126 oxidized purine nucleobase lesion DNA N-glycosylase activity
## 2127 JUN kinase kinase activity
## 2128 hydrogen-exporting ATPase activity, phosphorylative mechanism
## 2129 sodium-exporting ATPase activity, phosphorylative mechanism
## 2130 chloride-transporting ATPase activity
## 2131 xenobiotic-transporting ATPase activity
## 2132 microtubule-severing ATPase activity
## 2133 ATP-dependent microtubule motor activity, plus-end-directed
## 2134 JUN kinase phosphatase activity
## 2135 calcium-dependent protein serine/threonine phosphatase regulator activity
## 2136 cAMP-dependent protein kinase regulator activity
## 2137 phosphorylase kinase regulator activity
## 2138 alkylglycerone-phosphate synthase activity
## 2139 small protein activating enzyme activity
## 2140 rRNA (uridine-2'-O-)-methyltransferase activity
## 2141 cysteine-type endopeptidase activator activity involved in apoptotic process
## 2142 2,4-dienoyl-CoA reductase (NADPH) activity
## 2143 3-demethylubiquinone-9 3-O-methyltransferase activity
## 2144 4-hydroxy-2-oxoglutarate aldolase activity
## 2145 cholate 7-alpha-dehydrogenase activity
## 2146 D-serine ammonia-lyase activity
## 2147 DNA-3-methyladenine glycosylase activity
## 2148 L-allo-threonine aldolase activity
## 2149 N-acetylmuramoyl-L-alanine amidase activity
## 2150 NAD(P)+ transhydrogenase activity
## 2151 N-acetylneuraminate lyase activity
## 2152 NAD(P)+ transhydrogenase (AB-specific) activity
## 2153 NADPH dehydrogenase (quinone) activity
## 2154 UDP-N-acetylglucosamine 2-epimerase activity
## 2155 UDP-sugar diphosphatase activity
## 2156 acetate CoA-transferase activity
## 2157 N-acylneuraminate cytidylyltransferase activity
## 2158 agmatinase activity
## 2159 alkyl hydroperoxide reductase activity
## 2160 arginine decarboxylase activity
## 2161 arsenate reductase (glutaredoxin) activity
## 2162 beta-aspartyl-peptidase activity
## 2163 betaine-aldehyde dehydrogenase activity
## 2164 bis(5'-nucleosyl)-tetraphosphatase (symmetrical) activity
## 2165 cardiolipin synthase activity
## 2166 chloramphenicol O-acetyltransferase activity
## 2167 choline dehydrogenase activity
## 2168 cob(I)yrinic acid a,c-diamide adenosyltransferase activity
## 2169 crossover junction endodeoxyribonuclease activity
## 2170 cupric reductase activity
## 2171 dCTP deaminase activity
## 2172 dGTPase activity
## 2173 exodeoxyribonuclease I activity
## 2174 exodeoxyribonuclease III activity
## 2175 exoribonuclease II activity
## 2176 fructokinase activity
## 2177 glycerate kinase activity
## 2178 glycerophosphodiester phosphodiesterase activity
## 2179 glycine C-acetyltransferase activity
## 2180 glycolate oxidase activity
## 2181 guanine deaminase activity
## 2182 guanosine-3',5'-bis(diphosphate) 3'-diphosphatase activity
## 2183 guanosine-5'-triphosphate,3'-diphosphate diphosphatase activity
## 2184 holo-[acyl-carrier-protein] synthase activity
## 2185 hydrogen:potassium-exchanging ATPase activity
## 2186 hydroxypyruvate isomerase activity
## 2187 inositol monophosphate 1-phosphatase activity
## 2188 nitrate reductase activity
## 2189 nitric oxide dioxygenase activity
## 2190 oxaloacetate decarboxylase activity
## 2191 peptidoglycan glycosyltransferase activity
## 2192 phosphatidylglycerophosphatase activity
## 2193 phospho-N-acetylmuramoyl-pentapeptide-transferase activity
## 2194 phosphoglycolate phosphatase activity
## 2195 phosphatidylcholine 1-acylhydrolase activity
## 2196 phosphopentomutase activity
## 2197 rRNA (adenine-N6-)-methyltransferase activity
## 2198 ribonuclease E activity
## 2199 selenocysteine lyase activity
## 2200 site-specific DNA-methyltransferase (adenine-specific) activity
## 2201 DNA-methyltransferase activity
## 2202 succinate-semialdehyde dehydrogenase [NAD(P)+] activity
## 2203 tRNA (guanine-N1-)-methyltransferase activity
## 2204 tRNA (guanosine-2'-O-)-methyltransferase activity
## 2205 thymidine phosphorylase activity
## 2206 biotin binding
## 2207 four-way junction helicase activity
## 2208 N-acylmannosamine kinase activity
## 2209 signal transducer, downstream of receptor, with serine/threonine phosphatase activity
## 2210 low-affinity phosphate transmembrane transporter activity
## 2211 blue light photoreceptor activity
## 2212 sterol 5-alpha reductase activity
## 2213 sterol delta7 reductase activity
## 2214 fatty acid elongase activity
## 2215 calcium-dependent protein serine/threonine kinase activity
## 2216 FMN binding
## 2217 acireductone dioxygenase [iron(II)-requiring] activity
## 2218 phosphatidylinositol-5-phosphate binding
## 2219 lithium:proton antiporter activity
## 2220 double-stranded methylated DNA binding
## 2221 methyl-CpNpG binding
## 2222 nerve growth factor receptor activity
## 2223 H3 histone acetyltransferase activity
## 2224 H4 histone acetyltransferase activity
## 2225 telomerase inhibitor activity
## 2226 acetyltransferase activator activity
## 2227 serum response element binding
## 2228 cyclase regulator activity
## 2229 adenylate cyclase inhibitor activity
## 2230 calcium-dependent protein kinase regulator activity
## 2231 calcium-dependent cysteine-type endopeptidase inhibitor activity
## 2232 [heparan sulfate]-glucosamine N-sulfotransferase activity
## 2233 galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase activity
## 2234 heparan-alpha-glucosaminide N-acetyltransferase activity
## 2235 glucuronosyltransferase activity
## 2236 peptide disulfide oxidoreductase activity
## 2237 glutathione disulfide oxidoreductase activity
## 2238 NADPH-adrenodoxin reductase activity
## 2239 beta3-adrenergic receptor activity
## 2240 gastrin receptor activity
## 2241 secretin receptor activity
## 2242 corticotrophin-releasing factor receptor activity
## 2243 thrombin-activated receptor activity
## 2244 uridine nucleotide receptor activity
## 2245 glycine amidinotransferase activity
## 2246 cadmium ion transmembrane transporter activity
## 2247 cobalt ion transmembrane transporter activity
## 2248 copper uptake transmembrane transporter activity
## 2249 ferric iron transmembrane transporter activity
## 2250 ferrous iron transmembrane transporter activity
## 2251 lead ion transmembrane transporter activity
## 2252 magnesium ion transmembrane transporter activity
## 2253 molybdate ion transmembrane transporter activity
## 2254 organic cation transmembrane transporter activity
## 2255 arsenite transmembrane transporter activity
## 2256 bicarbonate transmembrane transporter activity
## 2257 iodide transmembrane transporter activity
## 2258 nitrate transmembrane transporter activity
## 2259 phosphate ion transmembrane transporter activity
## 2260 sulfate transmembrane transporter activity
## 2261 thiosulfate transmembrane transporter activity
## 2262 bile acid transmembrane transporter activity
## 2263 canalicular bile acid transmembrane transporter activity
## 2264 bilirubin transmembrane transporter activity
## 2265 oxaloacetate transmembrane transporter activity
## 2266 prostaglandin transmembrane transporter activity
## 2267 citrate transmembrane transporter activity
## 2268 alpha-ketoglutarate transmembrane transporter activity
## 2269 malate transmembrane transporter activity
## 2270 succinate transmembrane transporter activity
## 2271 urate transmembrane transporter activity
## 2272 pyrimidine nucleotide-sugar transmembrane transporter activity
## 2273 aromatic amino acid transmembrane transporter activity
## 2274 L-alanine transmembrane transporter activity
## 2275 L-asparagine transmembrane transporter activity
## 2276 L-aspartate transmembrane transporter activity
## 2277 L-cystine transmembrane transporter activity
## 2278 gamma-aminobutyric acid transmembrane transporter activity
## 2279 L-glutamine transmembrane transporter activity
## 2280 L-leucine transmembrane transporter activity
## 2281 L-methionine transmembrane transporter activity
## 2282 L-proline transmembrane transporter activity
## 2283 L-serine transmembrane transporter activity
## 2284 L-threonine transmembrane transporter activity
## 2285 L-tryptophan transmembrane transporter activity
## 2286 peptide transporter activity
## 2287 oligopeptide transporter activity
## 2288 nucleobase transmembrane transporter activity
## 2289 adenine transmembrane transporter activity
## 2290 purine nucleoside transmembrane transporter activity
## 2291 nucleotide transmembrane transporter activity
## 2292 purine nucleotide transmembrane transporter activity
## 2293 ADP transmembrane transporter activity
## 2294 pyrimidine nucleotide transmembrane transporter activity
## 2295 choline transmembrane transporter activity
## 2296 serotonin transmembrane transporter activity
## 2297 carnitine transmembrane transporter activity
## 2298 acyl carnitine transmembrane transporter activity
## 2299 coenzyme A transmembrane transporter activity
## 2300 FAD transmembrane transporter activity
## 2301 heme transporter activity
## 2302 thiamine transmembrane transporter activity
## 2303 cobalamin transporter activity
## 2304 drug transmembrane transporter activity
## 2305 fatty acid transporter activity
## 2306 aminophospholipid transporter activity
## 2307 hydrogen ion channel activity
## 2308 calcium-activated potassium channel activity
## 2309 outward rectifier potassium channel activity
## 2310 ATP-activated inward rectifier potassium channel activity
## 2311 stretch-activated, cation-selective, calcium channel activity
## 2312 kainate selective glutamate receptor activity
## 2313 store-operated calcium channel activity
## 2314 ligand-gated sodium channel activity
## 2315 porin activity
## 2316 uniporter activity
## 2317 solute:proton symporter activity
## 2318 anion:anion antiporter activity
## 2319 drug:proton antiporter activity
## 2320 sodium:inorganic phosphate symporter activity
## 2321 phosphate ion carrier activity
## 2322 sodium-dependent phosphate transmembrane transporter activity
## 2323 cystine:glutamate antiporter activity
## 2324 peptide:proton symporter activity
## 2325 sodium-independent organic anion transmembrane transporter activity
## 2326 thyroid hormone transmembrane transporter activity
## 2327 methotrexate transporter activity
## 2328 low-affinity sodium:dicarboxylate symporter activity
## 2329 high-affinity sodium:dicarboxylate symporter activity
## 2330 oxoglutarate:malate antiporter activity
## 2331 calcium:cation antiporter activity
## 2332 calcium:proton antiporter activity
## 2333 cation:chloride symporter activity
## 2334 sodium:chloride symporter activity
## 2335 potassium:chloride symporter activity
## 2336 sodium:sulfate symporter activity
## 2337 pyrimidine- and adenine-specific:sodium symporter activity
## 2338 purine-specific nucleoside:sodium symporter activity
## 2339 thiamine uptake transmembrane transporter activity
## 2340 manganese-transporting ATPase activity
## 2341 cobalamin-transporting ATPase activity
## 2342 oligopeptide-transporting ATPase activity
## 2343 glutathione S-conjugate-exporting ATPase activity
## 2344 bile acid-exporting ATPase activity
## 2345 peptide antigen-transporting ATPase activity
## 2346 heme-transporting ATPase activity
## 2347 peptide-transporting ATPase activity
## 2348 acetylcholine receptor activity
## 2349 G-protein activated inward rectifier potassium channel activity
## 2350 cholesterol binding
## 2351 putrescine transmembrane transporter activity
## 2352 gamma-aminobutyric acid:proton symporter activity
## 2353 glutamate:sodium symporter activity
## 2354 sialic acid:proton symporter activity
## 2355 C4-dicarboxylate transmembrane transporter activity
## 2356 efflux transmembrane transporter activity
## 2357 uptake transmembrane transporter activity
## 2358 mannose transmembrane transporter activity
## 2359 organophosphate ester transmembrane transporter activity
## 2360 DNA translocase activity
## 2361 zinc-transporting ATPase activity
## 2362 short-chain fatty acid uptake transporter activity
## 2363 ferrous iron uptake transmembrane transporter activity
## 2364 toxic substance binding
## 2365 fatty acid ligase activity
## 2366 quaternary ammonium group transmembrane transporter activity
## 2367 formate uptake transmembrane transporter activity
## 2368 formate efflux transmembrane transporter activity
## 2369 galactosidase activity
## 2370 glucosidase activity
## 2371 hexosaminidase activity
## 2372 nucleobase-containing compound transmembrane transporter activity
## 2373 phospholipase A2 activator activity
## 2374 morphogen activity
## 2375 peptidoglycan receptor activity
## 2376 maleylacetoacetate isomerase activity
## 2377 translation release factor activity, codon nonspecific
## 2378 nickel cation binding
## 2379 urocanate hydratase activity
## 2380 pyrimidine-nucleoside phosphorylase activity
## 2381 formyltetrahydrofolate dehydrogenase activity
## 2382 amylase activity
## 2383 linoleate 13S-lipoxygenase activity
## 2384 glial cell-derived neurotrophic factor receptor activity
## 2385 NAD(P)H oxidase activity
## 2386 superoxide-generating NADPH oxidase activity
## 2387 superoxide-generating NADPH oxidase activator activity
## 2388 catechol O-methyltransferase activity
## 2389 AMP binding
## 2390 kynurenine-oxoglutarate transaminase activity
## 2391 linoleoyl-CoA desaturase activity
## 2392 steroid dehydrogenase activity
## 2393 sphingomyelin phosphodiesterase activator activity
## 2394 beta-N-acetylglucosaminidase activity
## 2395 HNK-1 sulfotransferase activity
## 2396 N-sulfoglucosamine sulfohydrolase activity
## 2397 protein N-acetylglucosaminyltransferase activity
## 2398 glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase activity
## 2399 protein-arginine N-methyltransferase activity
## 2400 [myelin basic protein]-arginine N-methyltransferase activity
## 2401 small conductance calcium-activated potassium channel activity
## 2402 glycerone-phosphate O-acyltransferase activity
## 2403 myristoyl-[acyl-carrier-protein] hydrolase activity
## 2404 palmitoyl-[acyl-carrier-protein] hydrolase activity
## 2405 tRNA (uracil) methyltransferase activity
## 2406 1-phosphatidylinositol-4-phosphate 5-kinase activity
## 2407 1-phosphatidylinositol-5-phosphate 4-kinase activity
## 2408 inositol bisphosphate phosphatase activity
## 2409 phosphatidylinositol-3,4,5-trisphosphate 3-phosphatase activity
## 2410 phosphatidylinositol-3,4-bisphosphate 4-phosphatase activity
## 2411 activin receptor activity, type I
## 2412 activin receptor activity, type II
## 2413 palmitoyl-CoA oxidase activity
## 2414 pristanoyl-CoA oxidase activity
## 2415 dimethylargininase activity
## 2416 15-hydroxyprostaglandin dehydrogenase (NAD+) activity
## 2417 CoA-ligase activity
## 2418 carnitine O-acyltransferase activity
## 2419 C-acyltransferase activity
## 2420 palmitoyltransferase activity
## 2421 serine O-acyltransferase activity
## 2422 O-acetyltransferase activity
## 2423 O-palmitoyltransferase activity
## 2424 S-acyltransferase activity
## 2425 S-acetyltransferase activity
## 2426 CoA carboxylase activity
## 2427 mRNA (2'-O-methyladenosine-N6-)-methyltransferase activity
## 2428 tRNA (adenine) methyltransferase activity
## 2429 tRNA (cytosine) methyltransferase activity
## 2430 tRNA (cytosine-5-)-methyltransferase activity
## 2431 tRNA (adenine-N1-)-methyltransferase activity
## 2432 tRNA (adenine-N6-)-methyltransferase activity
## 2433 C-acetyltransferase activity
## 2434 G-protein coupled neurotensin receptor activity
## 2435 C-C chemokine receptor activity
## 2436 C-X-C chemokine receptor activity
## 2437 C-X3-C chemokine receptor activity
## 2438 substance P receptor activity
## 2439 substance K receptor activity
## 2440 orexin receptor activity
## 2441 protein-hormone receptor activity
## 2442 prostacyclin receptor activity
## 2443 pheromone receptor activity
## 2444 peptidase activator activity involved in apoptotic process
## 2445 long-chain-enoyl-CoA hydratase activity
## 2446 long-chain-3-hydroxyacyl-CoA dehydrogenase activity
## 2447 interleukin-12 receptor activity
## 2448 gastric inhibitory peptide receptor activity
## 2449 growth hormone-releasing hormone receptor activity
## 2450 pituitary adenylate cyclase activating polypeptide activity
## 2451 latrotoxin receptor activity
## 2452 cyclin-dependent protein kinase 5 activator activity
## 2453 glycine binding
## 2454 thienylcyclohexylpiperidine binding
## 2455 glutaminyl-peptide cyclotransferase activity
## 2456 growth hormone-releasing hormone activity
## 2457 malate dehydrogenase activity
## 2458 hydroxypyruvate reductase activity
## 2459 oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor
## 2460 oxidoreductase activity, acting on the aldehyde or oxo group of donors, oxygen as acceptor
## 2461 oxidoreductase activity, acting on the aldehyde or oxo group of donors, disulfide as acceptor
## 2462 oxidoreductase activity, acting on the CH-CH group of donors, quinone or related compound as acceptor
## 2463 oxidoreductase activity, acting on the CH-NH2 group of donors
## 2464 oxidoreductase activity, acting on the CH-NH2 group of donors, NAD or NADP as acceptor
## 2465 oxidoreductase activity, acting on the CH-NH2 group of donors, oxygen as acceptor
## 2466 oxidoreductase activity, acting on the CH-NH group of donors, oxygen as acceptor
## 2467 oxidoreductase activity, acting on NAD(P)H, heme protein as acceptor
## 2468 oxidoreductase activity, acting on other nitrogenous compounds as donors
## 2469 oxidoreductase activity, acting on a sulfur group of donors, NAD(P) as acceptor
## 2470 oxidoreductase activity, acting on a sulfur group of donors, quinone or similar compound as acceptor
## 2471 oxidoreductase activity, acting on a heme group of donors
## 2472 oxidoreductase activity, acting on single donors with incorporation of molecular oxygen
## 2473 oxidoreductase activity, acting on single donors with incorporation of molecular oxygen, incorporation of two atoms of oxygen
## 2474 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, NAD(P)H as one donor, and incorporation of one atom of oxygen
## 2475 flavonoid 3'-monooxygenase activity
## 2476 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen
## 2477 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced iron-sulfur protein as one donor, and incorporation of one atom of oxygen
## 2478 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced pteridine as one donor, and incorporation of one atom of oxygen
## 2479 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen
## 2480 oxidoreductase activity, acting on paired donors, with oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water
## 2481 oxidoreductase activity, acting on CH or CH2 groups
## 2482 hydroxymethyl-, formyl- and related transferase activity
## 2483 carboxyl- or carbamoyltransferase activity
## 2484 transferase activity, transferring aldehyde or ketonic groups
## 2485 succinyltransferase activity
## 2486 transferase activity, transferring amino-acyl groups
## 2487 spermine synthase activity
## 2488 transferase activity, transferring nitrogenous groups
## 2489 phosphotransferase activity, carboxyl group as acceptor
## 2490 phosphotransferase activity, nitrogenous group as acceptor
## 2491 diphosphotransferase activity
## 2492 phosphotransferase activity, for other substituted phosphate groups
## 2493 transferase activity, transferring sulfur-containing groups
## 2494 sulfurtransferase activity
## 2495 3-mercaptopyruvate sulfurtransferase activity
## 2496 dipeptidase activity
## 2497 cysteine-type carboxypeptidase activity
## 2498 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in cyclic amides
## 2499 hydrolase activity, acting on acid carbon-carbon bonds, in ketonic substances
## 2500 aldehyde-lyase activity
## 2501 oxo-acid-lyase activity
## 2502 carbon-oxygen lyase activity, acting on phosphates
## 2503 carbon-nitrogen lyase activity
## 2504 ammonia-lyase activity
## 2505 amidine-lyase activity
## 2506 strictosidine synthase activity
## 2507 racemase and epimerase activity, acting on carbohydrates and derivatives
## 2508 intramolecular oxidoreductase activity, interconverting aldoses and ketoses
## 2509 intramolecular oxidoreductase activity, transposing C=C bonds
## 2510 intramolecular transferase activity, phosphotransferases
## 2511 ligase activity, forming carbon-sulfur bonds
## 2512 acid-thiol ligase activity
## 2513 acid-amino acid ligase activity
## 2514 cyclo-ligase activity
## 2515 carbon-nitrogen ligase activity, with glutamine as amido-N-donor
## 2516 ligase activity, forming carbon-carbon bonds
## 2517 endodeoxyribonuclease activity, producing 5'-phosphomonoesters
## 2518 endodeoxyribonuclease activity, producing 3'-phosphomonoesters
## 2519 site-specific endodeoxyribonuclease activity, specific for altered base
## 2520 endoribonuclease activity, producing 3'-phosphomonoesters
## 2521 endonuclease activity, active with either ribo- or deoxyribonucleic acids and producing 3'-phosphomonoesters
## 2522 oxidoreductase activity, acting on the CH-OH group of donors, oxygen as acceptor
## 2523 oxidoreductase activity, acting on the aldehyde or oxo group of donors
## 2524 G-protein coupled acetylcholine receptor activity
## 2525 follicle-stimulating hormone activity
## 2526 GABA receptor activity
## 2527 retinal binding
## 2528 pyroglutamyl-peptidase activity
## 2529 SUMO-specific protease activity
## 2530 extracellular-glycine-gated chloride channel activity
## 2531 galactoside binding
## 2532 natriuretic peptide receptor activity
## 2533 alpha-2 macroglobulin receptor activity
## 2534 lipoate-protein ligase activity
## 2535 arginine deiminase activity
## 2536 lipoate synthase activity
## 2537 activin-activated receptor activity
## 2538 3'-tyrosyl-DNA phosphodiesterase activity
## 2539 myosin phosphatase activity
## 2540 myosin phosphatase regulator activity
## 2541 myosin binding
## 2542 myosin I binding
## 2543 Rap guanyl-nucleotide exchange factor activity
## 2544 ceramidase activity
## 2545 glycosylceramidase activity
## 2546 corticotropin-releasing hormone activity
## 2547 peptide hormone binding
## 2548 GTP-Rho binding
## 2549 D-erythro-sphingosine kinase activity
## 2550 6-phosphogluconolactonase activity
## 2551 3-galactosyl-N-acetylglucosaminide 4-alpha-L-fucosyltransferase activity
## 2552 S-methyl-5-thioadenosine phosphorylase activity
## 2553 single-strand selective uracil DNA N-glycosylase activity
## 2554 U6 snRNA binding
## 2555 syntaxin-1 binding
## 2556 oxidative phosphorylation uncoupler activity
## 2557 sodium channel regulator activity
## 2558 chloride channel regulator activity
## 2559 mineralocorticoid receptor activity
## 2560 delta1-pyrroline-5-carboxylate synthetase activity
## 2561 glycolipid transporter activity
## 2562 AU-rich element binding
## 2563 heparan sulfate 6-O-sulfotransferase activity
## 2564 acetylserotonin O-methyltransferase activity
## 2565 sulfonylurea receptor binding
## 2566 very-long-chain-acyl-CoA dehydrogenase activity
## 2567 5'-flap endonuclease activity
## 2568 nucleoside-diphosphatase activity
## 2569 dihydropyrimidine dehydrogenase (NADP+) activity
## 2570 deoxycytidyl transferase activity
## 2571 cholesterol transporter activity
## 2572 phospholipid scramblase activity
## 2573 triglyceride binding
## 2574 fibroblast growth factor binding
## 2575 NAD-dependent histone deacetylase activity
## 2576 Wnt-protein binding
## 2577 tRNA dihydrouridine synthase activity
## 2578 DEAD/H-box RNA helicase binding
## 2579 sodium:dicarboxylate symporter activity
## 2580 pantetheine hydrolase activity
## 2581 inositol-1,3,4-trisphosphate 4-phosphatase activity
## 2582 aryl hydrocarbon receptor binding
## 2583 vinculin binding
## 2584 5-oxoprolinase (ATP-hydrolyzing) activity
## 2585 CDP-alcohol phosphatidyltransferase activity
## 2586 cysteine dioxygenase activity
## 2587 glycine N-methyltransferase activity
## 2588 phosphatidylinositol N-acetylglucosaminyltransferase activity
## 2589 diphthine-ammonia ligase activity
## 2590 aspartate N-acetyltransferase activity
## 2591 calmodulin-lysine N-methyltransferase activity
## 2592 threonine racemase activity
## 2593 ribosomal S6-glutamic acid ligase activity
## 2594 protein C-terminal leucine carboxyl O-methyltransferase activity
## 2595 alcohol dehydrogenase [NAD(P)+] activity
## 2596 formaldehyde dehydrogenase activity
## 2597 malonate-semialdehyde dehydrogenase (acetylating) activity
## 2598 benzaldehyde dehydrogenase (NAD+) activity
## 2599 fluorene oxygenase activity
## 2600 phenanthrene 9,10-monooxygenase activity
## 2601 alkane 1-monooxygenase activity
## 2602 3,4-dihydrocoumarin hydrolase activity
## 2603 S-formylglutathione hydrolase activity
## 2604 acetylpyruvate hydrolase activity
## 2605 3-hydroxyacyl-CoA dehydratase activity
## 2606 GMP binding
## 2607 pyrimidine nucleotide binding
## 2608 benzaldehyde dehydrogenase activity
## 2609 deoxyhypusine monooxygenase activity
## 2610 deoxynucleoside kinase activity
## 2611 ADP-sugar diphosphatase activity
## 2612 aminobutyraldehyde dehydrogenase activity
## 2613 protein-disulfide reductase (glutathione) activity
## 2614 mannokinase activity
## 2615 trans-2-enoyl-CoA reductase (NADPH) activity
## 2616 deacetylase activity
## 2617 cyclohydrolase activity
## 2618 oxalate transmembrane transporter activity
## 2619 toxin transporter activity
## 2620 protein-cysteine S-palmitoyltransferase activity
## 2621 immunoglobulin receptor activity
## 2622 IgE receptor activity
## 2623 IgG receptor activity
## 2624 low-affinity IgG receptor activity
## 2625 Atg8 ligase activity
## 2626 Atg12 transferase activity
## 2627 Atg12 activating enzyme activity
## 2628 Atg8 activating enzyme activity
## 2629 FAT10 activating enzyme activity
## 2630 NEDD8 activating enzyme activity
## 2631 ISG15 activating enzyme activity
## 2632 NEDD8-specific protease activity
## 2633 ISG15-specific protease activity
## 2634 NEDD8 transferase activity
## 2635 SUMO transferase activity
## 2636 tubulin N-acetyltransferase activity
## 2637 aspartoacylase activity
## 2638 polyamine binding
## 2639 spermidine binding
## 2640 putrescine binding
## 2641 cocaine binding
## 2642 oxygen binding
## 2643 oxygen sensor activity
## 2644 aspartic-type endopeptidase inhibitor activity
## 2645 phospholipase A2 inhibitor activity
## 2646 isoprenoid binding
## 2647 retinol binding
## 2648 IgA binding
## 2649 IgE binding
## 2650 chloride channel inhibitor activity
## 2651 sodium channel inhibitor activity
## 2652 structural constituent of myelin sheath
## 2653 cyclin-dependent protein kinase activating kinase activity
## 2654 SUMO activating enzyme activity
## 2655 chemokine binding
## 2656 C-C chemokine binding
## 2657 C-X-C chemokine binding
## 2658 interleukin-8 binding
## 2659 C-X3-C chemokine binding
## 2660 type I interferon binding
## 2661 interleukin-1 binding
## 2662 interleukin-10 binding
## 2663 interleukin-11 binding
## 2664 interleukin-12 binding
## 2665 interleukin-2 binding
## 2666 interleukin-6 binding
## 2667 interleukin-9 binding
## 2668 diacylglycerol binding
## 2669 potassium ion symporter activity
## 2670 transmitter-gated ion channel activity
## 2671 acetylcholine-gated cation-selective channel activity
## 2672 glutamate-gated calcium ion channel activity
## 2673 serotonin-gated cation channel activity
## 2674 GABA-gated chloride ion channel activity
## 2675 glycine-gated chloride ion channel activity
## 2676 MHC protein complex binding
## 2677 MHC class I protein complex binding
## 2678 MHC class II protein complex binding
## 2679 MHC class Ib protein binding
## 2680 MHC class Ib protein binding, via antigen binding groove
## 2681 extracellular matrix structural constituent conferring tensile strength
## 2682 extracellular matrix constituent conferring elasticity
## 2683 L-malate dehydrogenase activity
## 2684 HLA-A specific activating MHC class I receptor activity
## 2685 HLA-B specific inhibitory MHC class I receptor activity
## 2686 alpha-1,6-mannosylglycoprotein 6-beta-N-acetylglucosaminyltransferase activity
## 2687 molybdenum ion binding
## 2688 benzodiazepine receptor binding
## 2689 protein xylosyltransferase activity
## 2690 receptor signaling complex scaffold activity
## 2691 GKAP/Homer scaffold activity
## 2692 low-density lipoprotein particle binding
## 2693 voltage-gated proton channel activity
## 2694 troponin C binding
## 2695 nitric oxide transmembrane transporter activity
## 2696 extracellular matrix constituent, lubricant activity
## 2697 semaphorin receptor binding
## 2698 apolipoprotein receptor activity
## 2699 lipoprotein particle receptor activity
## 2700 very-low-density lipoprotein particle receptor activity
## 2701 deoxynucleotide transmembrane transporter activity
## 2702 nitric-oxide synthase regulator activity
## 2703 polysaccharide binding
## 2704 guanylate cyclase regulator activity
## 2705 guanylate cyclase activator activity
## 2706 guanylate cyclase inhibitor activity
## 2707 glyoxylate reductase (NADP) activity
## 2708 5-formyltetrahydrofolate cyclo-ligase activity
## 2709 melanin-concentrating hormone receptor activity
## 2710 LIM domain binding
## 2711 LRR domain binding
## 2712 clathrin binding
## 2713 structural constituent of epidermis
## 2714 testosterone dehydrogenase [NAD(P)] activity
## 2715 estrogen receptor activity
## 2716 sphingolipid activator protein activity
## 2717 protein tyrosine kinase inhibitor activity
## 2718 receptor signaling protein tyrosine kinase inhibitor activity
## 2719 protein tyrosine kinase activator activity
## 2720 transmembrane receptor protein tyrosine kinase activator activity
## 2721 receptor signaling protein tyrosine kinase activator activity
## 2722 heparanase activity
## 2723 ADP-ribosylation factor binding
## 2724 cyclin binding
## 2725 DNA polymerase processivity factor activity
## 2726 1-alpha,25-dihydroxyvitamin D3 24-hydroxylase activity
## 2727 vitamin D3 25-hydroxylase activity
## 2728 structural constituent of tooth enamel
## 2729 syntaxin-3 binding
## 2730 iron-responsive element binding
## 2731 inositol-1,3,4,5,6-pentakisphosphate 3-phosphatase activity
## 2732 melanin-concentrating hormone activity
## 2733 molybdopterin synthase activity
## 2734 interleukin-17 receptor activity
## 2735 ICAM-3 receptor activity
## 2736 translation repressor activity
## 2737 thyroid hormone receptor coactivator activity
## 2738 urokinase plasminogen activator receptor activity
## 2739 serine racemase activity
## 2740 neurotensin receptor activity, non-G-protein coupled
## 2741 interleukin-17E receptor binding
## 2742 fructosamine-3-kinase activity
## 2743 lactose binding
## 2744 glutamate formimidoyltransferase activity
## 2745 formimidoyltetrahydrofolate cyclodeaminase activity
## 2746 kynureninase activity
## 2747 hemoglobin binding
## 2748 inorganic diphosphate transmembrane transporter activity
## 2749 receptor regulator activity
## 2750 receptor activator activity
## 2751 receptor inhibitor activity
## 2752 acetylcholine receptor regulator activity
## 2753 acetylcholine receptor activator activity
## 2754 acetylcholine receptor inhibitor activity
## 2755 cyclic nucleotide binding
## 2756 cAMP binding
## 2757 cGMP binding
## 2758 [methionine synthase] reductase activity
## 2759 neurotransmitter receptor activity
## 2760 oxidoreductase activity, acting on phosphorus or arsenic in donors, disulfide as acceptor
## 2761 transforming growth factor beta receptor, common-partner cytoplasmic mediator activity
## 2762 transforming growth factor beta receptor, inhibitory cytoplasmic mediator activity
## 2763 transforming growth factor beta receptor, pathway-specific cytoplasmic mediator activity
## 2764 U1 snRNA binding
## 2765 U4 snRNA binding
## 2766 U4atac snRNA binding
## 2767 U5 snRNA binding
## 2768 U6atac snRNA binding
## 2769 U12 snRNA binding
## 2770 pre-mRNA 5'-splice site binding
## 2771 pre-mRNA 3'-splice site binding
## 2772 U6 snRNA 3'-end binding
## 2773 Rac guanyl-nucleotide exchange factor activity
## 2774 S-adenosylmethionine-dependent tRNA (m5U54) methyltransferase activity
## 2775 acetoacetate-CoA ligase activity
## 2776 guanidinoacetate N-methyltransferase activity
## 2777 carnosine N-methyltransferase activity
## 2778 amine N-methyltransferase activity
## 2779 pyridine N-methyltransferase activity
## 2780 arsenite methyltransferase activity
## 2781 methylarsonite methyltransferase activity
## 2782 beta-2-microglobulin binding
## 2783 endogenous lipid antigen binding
## 2784 exogenous lipid antigen binding
## 2785 actin-dependent ATPase activity
## 2786 calcium-dependent ATPase activity
## 2787 TPR domain binding
## 2788 endoplasmic reticulum signal peptide binding
## 2789 Tat protein binding
## 2790 thiamine binding
## 2791 thiamine pyrophosphate binding
## 2792 taurine binding
## 2793 mismatched DNA binding
## 2794 kininogen binding
## 2795 filamin binding
## 2796 troponin I binding
## 2797 troponin T binding
## 2798 cysteine desulfurase activity
## 2799 histone methyltransferase activity (H3-K79 specific)
## 2800 phosphopantetheine binding
## 2801 POZ domain binding
## 2802 phosphatidylcholine binding
## 2803 denatured protein binding
## 2804 translation initiation factor binding
## 2805 eukaryotic initiation factor 4G binding
## 2806 protein tag
## 2807 lithium ion binding
## 2808 chloride ion binding
## 2809 telethonin binding
## 2810 mitogen-activated protein kinase kinase binding
## 2811 myosin V binding
## 2812 nucleosomal histone binding
## 2813 thyrotropin-releasing hormone receptor binding
## 2814 peptidyl-proline 4-dioxygenase activity
## 2815 ubiquitin conjugating enzyme binding
## 2816 beta-endorphin binding
## 2817 opioid receptor binding
## 2818 G-protein beta-subunit binding
## 2819 G-protein gamma-subunit binding
## 2820 G-protein beta/gamma-subunit complex binding
## 2821 adenosine receptor binding
## 2822 A1 adenosine receptor binding
## 2823 A2A adenosine receptor binding
## 2824 adrenergic receptor binding
## 2825 alpha-1A adrenergic receptor binding
## 2826 alpha-1B adrenergic receptor binding
## 2827 alpha-2A adrenergic receptor binding
## 2828 alpha-2B adrenergic receptor binding
## 2829 alpha-2C adrenergic receptor binding
## 2830 beta-1 adrenergic receptor binding
## 2831 beta-2 adrenergic receptor binding
## 2832 beta-3 adrenergic receptor binding
## 2833 adrenomedullin receptor binding
## 2834 angiotensin receptor binding
## 2835 type 1 angiotensin receptor binding
## 2836 type 2 angiotensin receptor binding
## 2837 apelin receptor binding
## 2838 bombesin receptor binding
## 2839 endothelin A receptor binding
## 2840 endothelin B receptor binding
## 2841 neuromedin B receptor binding
## 2842 bradykinin receptor binding
## 2843 C5L2 anaphylatoxin chemotactic receptor binding
## 2844 calcitonin receptor binding
## 2845 haptoglobin binding
## 2846 hemoglobin alpha binding
## 2847 CXCR5 chemokine receptor binding
## 2848 CCR1 chemokine receptor binding
## 2849 CCR2 chemokine receptor binding
## 2850 CCR3 chemokine receptor binding
## 2851 CCR4 chemokine receptor binding
## 2852 CCR5 chemokine receptor binding
## 2853 CCR6 chemokine receptor binding
## 2854 CCR7 chemokine receptor binding
## 2855 CCR10 chemokine receptor binding
## 2856 CX3C chemokine receptor binding
## 2857 type B gastrin/cholecystokinin receptor binding
## 2858 D1 dopamine receptor binding
## 2859 D2 dopamine receptor binding
## 2860 D3 dopamine receptor binding
## 2861 D4 dopamine receptor binding
## 2862 D5 dopamine receptor binding
## 2863 Edg-2 lysophosphatidic acid receptor binding
## 2864 follicle-stimulating hormone receptor binding
## 2865 type 1 galanin receptor binding
## 2866 type 2 galanin receptor binding
## 2867 type 3 galanin receptor binding
## 2868 ghrelin receptor binding
## 2869 glucagon receptor binding
## 2870 growth hormone-releasing hormone receptor binding
## 2871 type 1 hypocretin receptor binding
## 2872 type 2 hypocretin receptor binding
## 2873 kisspeptin receptor binding
## 2874 lutropin-choriogonadotropic hormone receptor binding
## 2875 corticotropin hormone receptor binding
## 2876 type 3 melanocortin receptor binding
## 2877 type 4 melanocortin receptor binding
## 2878 type 5 melanocortin receptor binding
## 2879 type 1 metabotropic glutamate receptor binding
## 2880 type 5 metabotropic glutamate receptor binding
## 2881 P2Y1 nucleotide receptor binding
## 2882 G-protein coupled serotonin receptor binding
## 2883 type 2A serotonin receptor binding
## 2884 substance P receptor binding
## 2885 substance K receptor binding
## 2886 olfactory receptor binding
## 2887 kappa-type opioid receptor binding
## 2888 mu-type opioid receptor binding
## 2889 orexigenic neuropeptide QRFP receptor binding
## 2890 oxytocin receptor binding
## 2891 type 1 parathyroid hormone receptor binding
## 2892 pituitary adenylate cyclase-activating polypeptide receptor binding
## 2893 platelet activating factor receptor binding
## 2894 prolactin-releasing peptide receptor binding
## 2895 prostanoid receptor binding
## 2896 EP4 subtype prostaglandin E2 receptor binding
## 2897 thromboxane A2 receptor binding
## 2898 proteinase activated receptor binding
## 2899 somatostatin receptor binding
## 2900 taste receptor binding
## 2901 vasopressin receptor binding
## 2902 V1A vasopressin receptor binding
## 2903 V1B vasopressin receptor binding
## 2904 V2 vasopressin receptor binding
## 2905 very long-chain fatty acid-CoA ligase activity
## 2906 mineralocorticoid receptor binding
## 2907 insulin-like growth factor I binding
## 2908 insulin-like growth factor II binding
## 2909 interleukin-28 receptor binding
## 2910 myosin light chain binding
## 2911 myosin head/neck binding
## 2912 myosin tail binding
## 2913 myosin heavy chain binding
## 2914 myosin II heavy chain binding
## 2915 NAD-dependent histone deacetylase activity (H3-K14 specific)
## 2916 clathrin heavy chain binding
## 2917 clathrin light chain binding
## 2918 bile acid binding
## 2919 NACHT domain binding
## 2920 Pyrin domain binding
## 2921 SAM domain binding
## 2922 DNA insertion or deletion binding
## 2923 guanine/thymine mispair binding
## 2924 single base insertion or deletion binding
## 2925 dinucleotide insertion or deletion binding
## 2926 single guanine insertion binding
## 2927 single thymine insertion binding
## 2928 succinate-semialdehyde dehydrogenase binding
## 2929 dinucleotide repeat insertion binding
## 2930 SUMO binding
## 2931 SUMO polymer binding
## 2932 acrosin binding
## 2933 riboflavin transporter activity
## 2934 oxidized DNA binding
## 2935 oxidized purine DNA binding
## 2936 oxidized pyrimidine DNA binding
## 2937 MHC class I receptor activity
## 2938 MHC class Ib receptor activity
## 2939 MHC class II receptor activity
## 2940 inhibitory MHC class I receptor activity
## 2941 HECT domain binding
## 2942 MutLalpha complex binding
## 2943 purine-rich negative regulatory element binding
## 2944 beta-N-acetylgalactosaminidase activity
## 2945 2-alkenal reductase [NAD(P)] activity
## 2946 DNA hairpin binding
## 2947 maltose alpha-glucosidase activity
## 2948 histone demethylase activity (H3-K9 specific)
## 2949 muramyl dipeptide binding
## 2950 sulfiredoxin activity
## 2951 deoxyribonucleotide binding
## 2952 purine deoxyribonucleotide binding
## 2953 pyrimidine deoxyribonucleotide binding
## 2954 pyrimidine ribonucleotide binding
## 2955 dATP binding
## 2956 dGTP binding
## 2957 ATP-dependent 5'-3' RNA helicase activity
## 2958 copper-dependent protein binding
## 2959 GTPase activating protein binding
## 2960 heterotrimeric G-protein binding
## 2961 sterol response element binding
## 2962 tumor necrosis factor receptor superfamily binding
## 2963 calcitonin binding
## 2964 sterol binding
## 2965 bitter taste receptor activity
## 2966 sour taste receptor activity
## 2967 sweet taste receptor activity
## 2968 acetylcholine receptor binding
## 2969 progesterone receptor binding
## 2970 FFAT motif binding
## 2971 sphingomyelin synthase activity
## 2972 calmodulin-dependent protein phosphatase activity
## 2973 ribonuclease P RNA binding
## 2974 cysteine transmembrane transporter activity
## 2975 choline binding
## 2976 protein deacetylase activity
## 2977 folate reductase activity
## 2978 transferrin transmembrane transporter activity
## 2979 RNA strand annealing activity
## 2980 formyl-CoA transferase activity
## 2981 receptor serine/threonine kinase binding
## 2982 double-stranded DNA-dependent ATPase activity
## 2983 ATP-dependent 5'-3' DNA/RNA helicase activity
## 2984 sialic acid binding
## 2985 DNA 5'-adenosine monophosphate hydrolase activity
## 2986 aspartate dehydrogenase activity
## 2987 1-pyrroline dehydrogenase activity
## 2988 peptide-methionine (R)-S-oxide reductase activity
## 2989 L-methionine-(R)-S-oxide reductase activity
## 2990 histone demethylase activity (H3-R2 specific)
## 2991 histone demethylase activity (H4-R3 specific)
## 2992 indoleamine 2,3-dioxygenase activity
## 2993 steroid dehydrogenase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor
## 2994 7alpha-hydroxycholest-4-en-3-one 12alpha-hydroxylase activity
## 2995 taurochenodeoxycholate 6alpha-hydroxylase activity
## 2996 cholesterol 24-hydroxylase activity
## 2997 3alpha,7alpha,12alpha-trihydroxy-5beta-cholestanoyl-CoA 24-hydroxylase activity
## 2998 thyroxine 5-deiodinase activity
## 2999 propanoyl-CoA C-acyltransferase activity
## 3000 lipoyl(octanoyl) transferase activity
## 3001 procollagen glucosyltransferase activity
## 3002 O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase activity
## 3003 N-acetyl-beta-glucosaminyl-glycoprotein 4-beta-N-acetylgalactosaminyltransferase activity
## 3004 diphosphoinositol-pentakisphosphate kinase activity
## 3005 N-acetylgalactosamine kinase activity
## 3006 UMP kinase activity
## 3007 Fas-activated serine/threonine kinase activity
## 3008 [heparan sulfate]-glucosamine 3-sulfotransferase 2 activity
## 3009 [heparan sulfate]-glucosamine 3-sulfotransferase 3 activity
## 3010 hormone-sensitive lipase activity
## 3011 choloyl-CoA hydrolase activity
## 3012 pyridoxal phosphatase activity
## 3013 10-hydroxy-9-(phosphonooxy)octadecanoate phosphatase activity
## 3014 ribonuclease T2 activity
## 3015 hyaluronoglucuronidase activity
## 3016 glucan 1,3-alpha-glucosidase activity
## 3017 mannosyl-glycoprotein endo-beta-N-acetylglucosaminidase activity
## 3018 cis-stilbene-oxide hydrolase activity
## 3019 D-dopachrome decarboxylase activity
## 3020 3alpha,7alpha,12alpha-trihydroxy-5beta-cholest-24-enoyl-CoA hydratase activity
## 3021 FAD-AMP lyase (cyclizing) activity
## 3022 deoxyhypusine synthase activity
## 3023 8-oxo-7,8-dihydroguanine DNA N-glycosylase activity
## 3024 lipid-transporting ATPase activity
## 3025 sterol-transporting ATPase activity
## 3026 estrogen response element binding
## 3027 RNA strand-exchange activity
## 3028 DNA polymerase activity
## 3029 apolipoprotein binding
## 3030 apolipoprotein A-I binding
## 3031 apolipoprotein A-I receptor activity
## 3032 very-low-density lipoprotein particle binding
## 3033 GTP-dependent protein kinase activity
## 3034 GPI anchor binding
## 3035 RNA pyrophosphohydrolase activity
## 3036 4-aminobutyrate:2-oxoglutarate transaminase activity
## 3037 bisphosphoglycerate phosphatase activity
## 3038 bisphosphoglycerate 3-phosphatase activity
## 3039 bis(5'-adenosyl)-hexaphosphatase activity
## 3040 bis(5'-adenosyl)-pentaphosphatase activity
## 3041 glycoprotein transporter activity
## 3042 ubiquitin-ubiquitin ligase activity
## 3043 dynactin binding
## 3044 chondroitin sulfotransferase activity
## 3045 heparan sulfate sulfotransferase activity
## 3046 phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## 3047 box C/D snoRNA binding
## 3048 box H/ACA snoRNA binding
## 3049 fumarylpyruvate hydrolase activity
## 3050 piRNA binding
## 3051 L-hydroxyproline transmembrane transporter activity
## 3052 phosphatidylinositol trisphosphate phosphatase activity
## 3053 phosphatidylinositol phosphate 4-phosphatase activity
## 3054 phosphatidylinositol-4,5-bisphosphate 4-phosphatase activity
## 3055 oxoglutarate dehydrogenase (NAD+) activity
## 3056 pyruvate dehydrogenase (NAD+) activity
## 3057 tetrahydrobiopterin binding
## 3058 arginine binding
## 3059 retinol transporter activity
## 3060 glutathione transmembrane transporter activity
## 3061 histone demethylase activity (H3-monomethyl-K4 specific)
## 3062 inhibin binding
## 3063 type I transforming growth factor beta receptor binding
## 3064 type III transforming growth factor beta receptor binding
## 3065 gamma-glutamyl-peptidase activity
## 3066 cholesterol O-acyltransferase activity
## 3067 histone deacetylase activity (H4-K16 specific)
## 3068 caffeine oxidase activity
## 3069 trimethylamine monooxygenase activity
## 3070 NAD-dependent protein deacetylase activity
## 3071 iron chaperone activity
## 3072 immunoglobulin receptor binding
## 3073 Fc-gamma receptor I complex binding
## 3074 phosphatidylinositol 3-kinase regulator activity
## 3075 histone acetyltransferase regulator activity
## 3076 histone kinase activity
## 3077 histone serine kinase activity
## 3078 histone kinase activity (H3-S10 specific)
## 3079 histone threonine kinase activity
## 3080 glutamate-cysteine ligase catalytic subunit binding
## 3081 dopamine binding
## 3082 protein-arginine omega-N monomethyltransferase activity
## 3083 protein-arginine omega-N asymmetric methyltransferase activity
## 3084 protein-arginine omega-N symmetric methyltransferase activity
## 3085 UDP-glucosyltransferase activity
## 3086 UDP-xylosyltransferase activity
## 3087 glutamate receptor binding
## 3088 ionotropic glutamate receptor binding
## 3089 G-protein coupled glutamate receptor binding
## 3090 glucocorticoid receptor binding
## 3091 ethanol binding
## 3092 inositol pentakisphosphate 2-kinase activity
## 3093 Toll-like receptor binding
## 3094 selenocysteine insertion sequence binding
## 3095 chondroitin sulfate proteoglycan binding
## 3096 chondroitin sulfate binding
## 3097 zymogen binding
## 3098 carbon dioxide transmembrane transporter activity
## 3099 histone kinase activity (H3-Y41 specific)
## 3100 histone kinase activity (H3-T11 specific)
## 3101 histone kinase activity (H3-T6 specific)
## 3102 dihydrotestosterone 17-beta-dehydrogenase activity
## 3103 cyclic-di-GMP binding
## 3104 choriogonadotropin hormone receptor activity
## 3105 lipase binding
## 3106 chylomicron binding
## 3107 MH2 domain binding
## 3108 MH1 domain binding
## 3109 DNA demethylase activity
## 3110 oxidative RNA demethylase activity
## 3111 oxidative DNA demethylase activity
## 3112 NADH pyrophosphatase activity
## 3113 carbohydrate response element binding
## 3114 8-oxo-7,8-dihydrodeoxyguanosine triphosphate pyrophosphatase activity
## 3115 histone demethylase activity (H4-K20 specific)
## 3116 purinergic receptor activity
## 3117 ganglioside binding
## 3118 methylthiotransferase activity
## 3119 N6-isopentenyladenosine methylthiotransferase activity
## 3120 N6-threonylcarbomyladenosine methylthiotransferase activity
## 3121 peptidyl-cysteine S-nitrosylase activity
## 3122 AP-2 adaptor complex binding
## 3123 snRNA stem-loop binding
## 3124 clathrin adaptor activity
## 3125 ceramide transporter activity
## 3126 histone methyltransferase activity (H3-R17 specific)
## 3127 L-DOPA receptor activity
## 3128 AP-1 adaptor complex binding
## 3129 AP-3 adaptor complex binding
## 3130 Toll-like receptor 4 binding
## 3131 Toll-like receptor 2 binding
## 3132 enone reductase activity
## 3133 oligopeptide transmembrane transporter activity
## 3134 chemokine (C-C motif) ligand 7 binding
## 3135 macrophage migration inhibitory factor binding
## 3136 lysophosphatidic acid binding
## 3137 S-nitrosoglutathione binding
## 3138 dinitrosyl-iron complex binding
## 3139 cardiolipin hydrolase activity
## 3140 chemokine (C-C motif) ligand 19 binding
## 3141 chemokine (C-C motif) ligand 21 binding
## 3142 deubiquitinase activator activity
## 3143 Krueppel-associated box domain binding
## 3144 dITP diphosphatase activity
## 3145 death effector domain binding
## 3146 mRNA 3'-UTR AU-rich region binding
## 3147 microsatellite binding
## 3148 GAF domain binding
## 3149 mediator complex binding
## 3150 long-chain fatty acid binding
## 3151 protein-malonyllysine demalonylase activity
## 3152 protein-succinyllysine desuccinylase activity
## 3153 peroxisome membrane class-1 targeting sequence binding
## 3154 prostaglandin H2 endoperoxidase reductase activity
## 3155 prostaglandin D2 11-ketoreductase activity
## 3156 13-prostaglandin reductase activity
## 3157 12-hydroxyheptadecatrienoic acid synthase activity
## 3158 peptidyl-histidine dioxygenase activity
## 3159 peptidyl-asparagine 3-dioxygenase activity
## 3160 kringle domain binding
## 3161 GTP diphosphatase activity
## 3162 ITP diphosphatase activity
## 3163 XTP diphosphatase activity
## 3164 phosphatidylinositol 3-kinase regulatory subunit binding
## 3165 phosphatidylinositol 3-kinase catalytic subunit binding
## 3166 tyrosyl-RNA phosphodiesterase activity
## 3167 VEGF-A-activated receptor activity
## 3168 VEGF-B-activated receptor activity
## 3169 VEGF-C-activated receptor activity
## 3170 placental growth factor-activated receptor activity
## 3171 glutathione hydrolase activity
## 3172 thiocyanate peroxidase activity
## 3173 proteasome-activating ATPase activity
## 3174 arachidonate 8(S)-lipoxygenase activity
## 3175 K48-linked polyubiquitin binding
## 3176 iron-sulfur transferase activity
## 3177 hepatocyte growth factor binding
## 3178 BLOC-2 complex binding
## 3179 L-dopa decarboxylase activity
## 3180 peroxidase inhibitor activity
## 3181 nitric-oxide synthase inhibitor activity
## 3182 cargo receptor activity
## 3183 reelin receptor activity
## 3184 sphingosine-1-phosphate receptor activity
## 3185 enkephalin receptor activity
## 3186 morphine receptor activity
## 3187 dynorphin receptor activity
## 3188 transcription factor activity, ligand-activated RNA polymerase II transcription factor binding
## 3189 glucocorticoid-activated RNA polymerase II transcription factor binding transcription factor activity
## 3190 RNA polymerase II transcription factor activity, estrogen-activated sequence-specific DNA binding
## 3191 protein tyrosine kinase collagen receptor activity
## 3192 collagen receptor activity
## 3193 vascular endothelial growth factor binding
## 3194 nodal binding
## 3195 choriogonadotropin hormone binding
## 3196 C-C motif chemokine 19 receptor activity
## 3197 C-C motif chemokine 21 receptor activity
## 3198 neuregulin receptor activity
## 3199 neuregulin binding
## 3200 thrombopoietin receptor activity
## 3201 bile acid receptor activity
## 3202 G-protein coupled bile acid receptor activity
## 3203 lithocholic acid receptor activity
## 3204 neuropilin binding
## 3205 RIG-I binding
## 3206 co-receptor binding
## 3207 interleukin-18 binding
## 3208 interleukin-18 receptor activity
## 3209 interleukin-16 binding
## 3210 interleukin-16 receptor activity
## 3211 interleukin-20 binding
## 3212 interleukin-22 binding
## 3213 interleukin-22 receptor activity
## 3214 interleukin-23 binding
## 3215 interleukin-23 receptor activity
## 3216 neurexin family protein binding
## 3217 chemoattractant activity
## 3218 thiamine phosphate phosphatase activity
## 3219 fructose 1,6-bisphosphate 1-phosphatase activity
## 3220 rRNA primary transcript binding
## 3221 interleukin-12 beta subunit binding
## 3222 interleukin-12 alpha subunit binding
## 3223 neurotransmitter binding
## 3224 acetylcholine binding
## 3225 SH2 domain binding
## 3226 dolichyl pyrophosphate Man9GlcNAc2 alpha-1,3-glucosyltransferase activity
## 3227 hydroxymethylglutaryl-CoA reductase activity
## 3228 MHC protein binding
## 3229 MHC class I protein binding
## 3230 MHC class II protein binding
## 3231 URM1 activating enzyme activity
## 3232 ISG15 transferase activity
## 3233 heparan sulfate N-acetylglucosaminyltransferase activity
## 3234 GDP-4-dehydro-D-rhamnose reductase activity
## 3235 chemokine receptor binding
## 3236 sphingosine-1-phosphate phosphatase activity
## 3237 triacyl lipopeptide binding
## 3238 lipid phosphatase activity
## 3239 peptide deformylase activity
## 3240 riboflavin reductase (NADPH) activity
## 3241 T cell receptor binding
## 3242 CD4 receptor binding
## 3243 CD8 receptor binding
## 3244 ATPase activity, uncoupled
## 3245 MHC class II protein binding, via antigen binding groove
## 3246 PH domain binding
## 3247 3'-tRNA processing endoribonuclease activity
## 3248 histone methyltransferase activity (H4-K20 specific)
## 3249 actinin binding
## 3250 fucose binding
## 3251 Wnt-activated receptor activity
## 3252 BRE binding
## 3253 tubulin deacetylase activity
## 3254 neuromedin U receptor binding
## 3255 neuropeptide binding
## 3256 neuromedin U binding
## 3257 enterobactin transporter activity
## 3258 peroxisome proliferator activated receptor binding
## 3259 ornithine decarboxylase activator activity
## 3260 ornithine decarboxylase regulator activity
## 3261 ATP-dependent protein binding
## 3262 alpha-tubulin binding
## 3263 gamma-tubulin binding
## 3264 ribosome binding
## 3265 ribosomal small subunit binding
## 3266 chromatin insulator sequence binding
## 3267 tumor necrosis factor binding
## 3268 ErbB-3 class receptor binding
## 3269 glycerol-3-phosphatase activity
## 3270 5'-3' DNA helicase activity
## 3271 ATP-dependent 5'-3' DNA helicase activity
## 3272 alcohol binding
## 3273 vascular endothelial growth factor receptor 1 binding
## 3274 vascular endothelial growth factor receptor 2 binding
## 3275 vascular endothelial growth factor receptor 3 binding
## 3276 glycosphingolipid binding
## 3277 SMC family protein binding
## 3278 ATPase-coupled anion transmembrane transporter activity
## 3279 laminin binding
## 3280 laminin-1 binding
## 3281 sodium-dependent organic anion transmembrane transporter activity
## 3282 adenosine-diphosphatase activity
## 3283 CTPase activity
## 3284 phosphatidylinositol-3,4-bisphosphate binding
## 3285 CDP-diacylglycerol-phosphatidylglycerol phosphatidyltransferase activity
## 3286 proteoglycan binding
## 3287 heparan sulfate proteoglycan binding
## 3288 HLH domain binding
## 3289 3-phosphoinositide-dependent protein kinase binding
## 3290 MRF binding
## 3291 protein anchor
## 3292 kinetochore binding
## 3293 leucine zipper domain binding
## 3294 inositol 1,3,4,5 tetrakisphosphate binding
## 3295 lipoamide binding
## 3296 molybdopterin cofactor binding
## 3297 insulin binding
## 3298 DNA-N1-methyladenine dioxygenase activity
## 3299 G/U mismatch-specific uracil-DNA glycosylase activity
## 3300 dihydrolipoyllysine-residue (2-methylpropanoyl)transferase activity
## 3301 oxidoreductase activity, oxidizing metal ions with flavin as acceptor
## 3302 glyceraldehyde oxidoreductase activity
## 3303 phosphatidylinositol-4-phosphate phosphatase activity
## 3304 phosphatidylinositol-3,5-bisphosphate 5-phosphatase activity
## 3305 ADP-specific glucokinase activity
## 3306 Ras palmitoyltransferase activity
## 3307 acireductone synthase activity
## 3308 N-acetylgalactosamine-6-sulfatase activity
## 3309 NADPH:sulfur oxidoreductase activity
## 3310 DNA-7-methylguanine glycosylase activity
## 3311 suramin binding
## 3312 histone acetyltransferase activity (H3-K23 specific)
## 3313 histone acetyltransferase activity (H4-K5 specific)
## 3314 histone acetyltransferase activity (H4-K8 specific)
## 3315 histone acetyltransferase activity (H4-K12 specific)
## 3316 H2A histone acetyltransferase activity
## 3317 histone methyltransferase activity (H4-R3 specific)
## 3318 retinoic acid-responsive element binding
## 3319 RNA polymerase II core promoter proximal region sequence-specific DNA binding, bending
## 3320 non-sequence-specific DNA binding, bending
## 3321 glucagon-like peptide 1 receptor activity
## 3322 DNA topoisomerase binding
## 3323 GTP cyclohydrolase binding
## 3324 17-beta-hydroxysteroid dehydrogenase (NAD+) activity
## 3325 decaprenyldihydroxybenzoate methyltransferase activity
## 3326 3-demethylubiquinone-10 3-O-methyltransferase activity
## 3327 FMN transmembrane transporter activity
## 3328 2-hydroxy-adenosine triphosphate pyrophosphatase activity
## 3329 2-hydroxy-(deoxy)adenosine-triphosphate pyrophosphatase activity
## 3330 8-oxo-dGDP phosphatase activity
## 3331 8-oxo-GDP phosphatase activity
## 3332 8-hydroxy-dADP phosphatase activity
## 3333 hemi-methylated DNA-binding
## 3334 bone sialoprotein binding
## 3335 acid-sensing ion channel activity
## 3336 DNA end binding
## 3337 G-protein coupled purinergic nucleotide receptor activity
## 3338 UDP-activated nucleotide receptor activity
## 3339 UTP-activated nucleotide receptor activity
## 3340 ATP-activated adenosine receptor activity
## 3341 ADP-activated adenosine receptor activity
## 3342 azole transporter activity
## 3343 bioactive lipid receptor activity
## 3344 N-acetylglucosamine kinase activity
## 3345 keratan sulfotransferase activity
## 3346 pre-mRNA branch point binding
## 3347 uridine-diphosphatase activity
## 3348 electron transporter, transferring electrons within CoQH2-cytochrome c reductase complex activity
## 3349 electron transporter, transferring electrons from CoQH2-cytochrome c reductase complex and cytochrome c oxidase complex activity
## 3350 myosin II binding
## 3351 glutathione dehydrogenase (ascorbate) activity
## 3352 translation regulator activity
## 3353 translation factor activity, non-nucleic acid binding
## 3354 CXCR chemokine receptor binding
## 3355 alpha-catenin binding
## 3356 gamma-catenin binding
## 3357 unmethylated CpG binding
## 3358 interleukin-1 Type I receptor antagonist activity
## 3359 interleukin-1 Type II receptor antagonist activity
## 3360 omega-6 fatty acid desaturase activity
## 3361 chemorepellent activity
## 3362 dynein heavy chain binding
## 3363 interleukin-27 receptor activity
## 3364 interleukin-27 binding
## 3365 interleukin-20 receptor binding
## 3366 interleukin-22 receptor binding
## 3367 interleukin-23 receptor binding
## 3368 interleukin-27 receptor binding
## 3369 syndecan binding
## 3370 geranylgeranyl reductase activity
## 3371 TRAIL binding
## 3372 ketoreductase activity
## 3373 gluconokinase activity
## 3374 polynucleotide 3'-phosphatase activity
## 3375 ATP-dependent polydeoxyribonucleotide 5'-hydroxyl-kinase activity
## 3376 S-methyl-5-thioribose-1-phosphate isomerase activity
## 3377 xylosylprotein 4-beta-galactosyltransferase activity
## 3378 D-xylulose reductase activity
## 3379 glucosyltransferase activity
## 3380 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase activity
## 3381 histamine N-methyltransferase activity
## 3382 malate dehydrogenase (NADP+) activity
## 3383 alpha-L-arabinofuranosidase activity
## 3384 methylthioribulose 1-phosphate dehydratase activity
## 3385 long-chain-alcohol oxidase activity
## 3386 polyamine oxidase activity
## 3387 sphingolipid-translocating ATPase activity
## 3388 sphingolipid transporter activity
## 3389 sphingolipid binding
## 3390 natural killer cell lectin-like receptor binding
## 3391 borate transmembrane transporter activity
## 3392 host cell surface receptor binding
## 3393 virion binding
## 3394 chemokine receptor antagonist activity
## 3395 hydroxyapatite binding
## 3396 cadmium ion binding
## 3397 calcium oxalate binding
## 3398 metal chelating activity
## 3399 transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer
## 3400 alpha-(1->3)-fucosyltransferase activity
## 3401 peptide-O-fucosyltransferase activity
## 3402 ER retention sequence binding
## 3403 proton-transporting ATP synthase activity, rotational mechanism
## 3404 1-phosphatidylinositol-3-kinase regulator activity
## 3405 3'-phosphoadenosine 5'-phosphosulfate transmembrane transporter activity
## 3406 retinoid X receptor binding
## 3407 NAD-dependent histone deacetylase activity (H3-K9 specific)
## 3408 NAD-dependent histone deacetylase activity (H4-K16 specific)
## 3409 histone acetyltransferase activity (H4-K16 specific)
## 3410 histone methyltransferase activity (H3-K9 specific)
## 3411 histone methyltransferase activity (H3-K36 specific)
## 3412 histone methyltransferase activity (H3-K27 specific)
## 3413 TAP1 binding
## 3414 TAP2 binding
## 3415 tapasin binding
## 3416 oxidoreductase activity, acting on the CH-NH group of donors, flavin as acceptor
## 3417 17-alpha,20-alpha-dihydroxypregn-4-en-3-one dehydrogenase activity
## 3418 sterol-4-alpha-carboxylate 3-dehydrogenase (decarboxylating) activity
## 3419 3-hydroxy-2-methylbutyryl-CoA dehydrogenase activity
## 3420 cholest-5-ene-3-beta,7-alpha-diol 3-beta-dehydrogenase activity
## 3421 prostaglandin-F synthase activity
## 3422 15-hydroxyprostaglandin-D dehydrogenase (NADP+) activity
## 3423 15-hydroxyprostaglandin dehydrogenase (NADP+) activity
## 3424 androsterone dehydrogenase activity
## 3425 3-oxoacyl-[acyl-carrier-protein] reductase (NADH) activity
## 3426 testosterone dehydrogenase (NAD+) activity
## 3427 androsterone dehydrogenase (B-specific) activity
## 3428 testosterone 17-beta-dehydrogenase (NADP+) activity
## 3429 vitamin-K-epoxide reductase (warfarin-sensitive) activity
## 3430 vitamin-K-epoxide reductase (warfarin-insensitive) activity
## 3431 phospholipid-hydroperoxide glutathione peroxidase activity
## 3432 ketosteroid monooxygenase activity
## 3433 4-trimethylammoniobutyraldehyde dehydrogenase activity
## 3434 trans-1,2-dihydrobenzene-1,2-diol dehydrogenase activity
## 3435 enoyl-[acyl-carrier-protein] reductase (NADPH, A-specific) activity
## 3436 thiomorpholine-carboxylate dehydrogenase activity
## 3437 saccharopine dehydrogenase (NADP+, L-lysine-forming) activity
## 3438 saccharopine dehydrogenase (NAD+, L-glutamate-forming) activity
## 3439 protein-disulfide reductase activity
## 3440 betaine-homocysteine S-methyltransferase activity
## 3441 1-alkenylglycerophosphocholine O-acyltransferase activity
## 3442 1-alkenylglycerophosphoethanolamine O-acyltransferase activity
## 3443 phosphatidylcholine-retinol O-acyltransferase activity
## 3444 platelet-activating factor acetyltransferase activity
## 3445 1-acylglycerophosphocholine O-acyltransferase activity
## 3446 N-acetylneuraminate 7-O(or 9-O)-acetyltransferase activity
## 3447 1-alkylglycerophosphocholine O-acyltransferase activity
## 3448 1-alkylglycerophosphocholine O-acetyltransferase activity
## 3449 long-chain-alcohol O-fatty-acyltransferase activity
## 3450 cysteine-S-conjugate N-acetyltransferase activity
## 3451 galactosylxylosylprotein 3-beta-galactosyltransferase activity
## 3452 beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,3-N-acetylglucosaminyltransferase activity
## 3453 acetylgalactosaminyl-O-glycosyl-glycoprotein beta-1,3-N-acetylglucosaminyltransferase activity
## 3454 acetylgalactosaminyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase activity
## 3455 glucuronosyl-N-acetylgalactosaminyl-proteoglycan 4-beta-N-acetylgalactosaminyltransferase activity
## 3456 lactosylceramide 1,3-N-acetyl-beta-D-glucosaminyltransferase activity
## 3457 N-acylsphingosine galactosyltransferase activity
## 3458 galactosylgalactosylglucosylceramide beta-D-acetylgalactosaminyltransferase activity
## 3459 glucosaminylgalactosylglucosylceramide beta-galactosyltransferase activity
## 3460 globoside alpha-N-acetylgalactosaminyltransferase activity
## 3461 nicotinamide phosphoribosyltransferase activity
## 3462 monosialoganglioside sialyltransferase activity
## 3463 (alpha-N-acetylneuraminyl-2,3-beta-galactosyl-1,3)-N-acetyl-galactosaminide 6-alpha-sialyltransferase activity
## 3464 lactosylceramide alpha-2,3-sialyltransferase activity
## 3465 4-hydroxybenzoate nonaprenyltransferase activity
## 3466 (S)-3-amino-2-methylpropionate transaminase activity
## 3467 (R)-3-amino-2-methylpropionate-pyruvate transaminase activity
## 3468 L-phenylalanine:pyruvate aminotransferase activity
## 3469 kynurenine-glyoxylate transaminase activity
## 3470 glutamine-phenylpyruvate transaminase activity
## 3471 [hydroxymethylglutaryl-CoA reductase (NADPH)] kinase activity
## 3472 [3-methyl-2-oxobutanoate dehydrogenase (acetyl-transferring)] kinase activity
## 3473 inositol tetrakisphosphate 1-kinase activity
## 3474 inositol tetrakisphosphate 5-kinase activity
## 3475 fucose-1-phosphate guanylyltransferase activity
## 3476 D-ribitol-5-phosphate cytidylyltransferase activity
## 3477 succinate-hydroxymethylglutarate CoA-transferase activity
## 3478 methylumbelliferyl-acetate deacetylase activity
## 3479 glycerophosphocholine phosphodiesterase activity
## 3480 glycerophosphocholine cholinephosphodiesterase activity
## 3481 alkylglycerophosphoethanolamine phosphodiesterase activity
## 3482 glycerophosphoinositol inositolphosphodiesterase activity
## 3483 glycerophosphoinositol glycerophosphodiesterase activity
## 3484 protein-glucosylgalactosylhydroxylysine glucosidase activity
## 3485 alkenylglycerophosphocholine hydrolase activity
## 3486 alkenylglycerophosphoethanolamine hydrolase activity
## 3487 17-alpha-hydroxyprogesterone aldolase activity
## 3488 N-acylneuraminate-9-phosphate synthase activity
## 3489 3-hydroxyoctanoyl-[acyl-carrier-protein] dehydratase activity
## 3490 ATP-dependent NAD(P)H-hydrate dehydratase activity
## 3491 heparosan-N-sulfate-glucuronate 5-epimerase activity
## 3492 ceramide cholinephosphotransferase activity
## 3493 calcium-dependent phospholipase A2 activity
## 3494 15-oxoprostaglandin 13-oxidase activity
## 3495 2-aminoadipate transaminase activity
## 3496 2-hydroxyglutarate dehydrogenase activity
## 3497 2-methylcitrate dehydratase activity
## 3498 3',5'-cyclic-GMP phosphodiesterase activity
## 3499 3-dehydrosphinganine reductase activity
## 3500 4-hydroxyglutamate transaminase activity
## 3501 7-dehydrocholesterol reductase activity
## 3502 aconitate decarboxylase activity
## 3503 acylglycerol kinase activity
## 3504 acylpyruvate hydrolase activity
## 3505 ADP-ribose diphosphatase activity
## 3506 albendazole monooxygenase activity
## 3507 alpha-amino-acid esterase activity
## 3508 arachidonate-CoA ligase activity
## 3509 amine sulfotransferase activity
## 3510 ATP diphosphatase activity
## 3511 beta-adrenergic receptor kinase activity
## 3512 bile-salt sulfotransferase activity
## 3513 biotinidase activity
## 3514 bis(5'-adenosyl)-triphosphatase activity
## 3515 indanol dehydrogenase activity
## 3516 iron-cytochrome-c reductase activity
## 3517 carnosine synthase activity
## 3518 CDP-glycerol diphosphatase activity
## 3519 chlordecone reductase activity
## 3520 cholate-CoA ligase activity
## 3521 cholestenol delta-isomerase activity
## 3522 cholestenone 5-alpha-reductase activity
## 3523 chondroitin 4-sulfotransferase activity
## 3524 chondroitin-glucuronate 5-epimerase activity
## 3525 butyrate-CoA ligase activity
## 3526 corticosterone 18-monooxygenase activity
## 3527 delta4-3-oxosteroid 5beta-reductase activity
## 3528 cysteamine dioxygenase activity
## 3529 L-cysteine:2-oxoglutarate aminotransferase activity
## 3530 cysteine-S-conjugate beta-lyase activity
## 3531 D-glutamate cyclase activity
## 3532 D-xylose 1-dehydrogenase (NADP+) activity
## 3533 dCTP diphosphatase activity
## 3534 deoxycytidine deaminase activity
## 3535 dihydrocoumarin hydrolase activity
## 3536 diiodophenylpyruvate reductase activity
## 3537 dimethylglycine dehydrogenase activity
## 3538 dolichyldiphosphatase activity
## 3539 fatty acid peroxidase activity
## 3540 flavonol 3-sulfotransferase activity
## 3541 ganglioside galactosyltransferase activity
## 3542 glucose-1,6-bisphosphate synthase activity
## 3543 glucose 1-dehydrogenase [NAD(P)] activity
## 3544 L-glucuronate reductase activity
## 3545 L-glutamine:pyruvate aminotransferase activity
## 3546 glutamine N-acyltransferase activity
## 3547 glycine N-acyltransferase activity
## 3548 glycine N-benzoyltransferase activity
## 3549 glycine N-choloyltransferase activity
## 3550 glyoxylate oxidase activity
## 3551 hepoxilin-epoxide hydrolase activity
## 3552 hydroxyacid-oxoacid transhydrogenase activity
## 3553 hydroxylysine kinase activity
## 3554 receptor agonist activity
## 3555 receptor antagonist activity
## 3556 CCR chemokine receptor binding
## 3557 disaccharide binding
## 3558 quinone binding
## 3559 ubiquinone binding
## 3560 UDP-glucuronate decarboxylase activity
## 3561 calcium- and calmodulin-regulated 3',5'-cyclic-GMP phosphodiesterase activity
## 3562 tau protein binding
## 3563 activin binding
## 3564 phytanoyl-CoA dioxygenase activity
## 3565 CXCR3 chemokine receptor binding
## 3566 3'-flap endonuclease activity
## 3567 methionine adenosyltransferase regulator activity
## 3568 brain-derived neurotrophic factor binding
## 3569 platelet-derived growth factor binding
## 3570 Roundabout binding
## 3571 beta-1,3-galactosyltransferase activity
## 3572 calcium-induced calcium release activity
## 3573 L-fuconate dehydratase activity
## 3574 L-pipecolate oxidase activity
## 3575 L-xylulose reductase (NADP+) activity
## 3576 lathosterol oxidase activity
## 3577 leukotriene-B4 20-monooxygenase activity
## 3578 m7G(5')pppN diphosphatase activity
## 3579 malonyl-CoA decarboxylase activity
## 3580 L-gulonate 3-dehydrogenase activity
## 3581 inositol oxygenase activity
## 3582 myosin-light-chain-phosphatase activity
## 3583 N-acetylglucosamine deacetylase activity
## 3584 N-acylglucosamine 2-epimerase activity
## 3585 N-acylneuraminate-9-phosphatase activity
## 3586 N-formylglutamate deformylase activity
## 3587 NAD(P)+ nucleosidase activity
## 3588 nucleoside deoxyribosyltransferase activity
## 3589 nucleoside phosphotransferase activity
## 3590 omega-amidase activity
## 3591 phenylpyruvate tautomerase activity
## 3592 phytanate-CoA ligase activity
## 3593 fucokinase activity
## 3594 procollagen galactosyltransferase activity
## 3595 prostaglandin-E synthase activity
## 3596 prostaglandin-E2 9-reductase activity
## 3597 retinol O-fatty-acyltransferase activity
## 3598 retinyl-palmitate esterase activity
## 3599 rhodopsin kinase activity
## 3600 ribosylnicotinamide kinase activity
## 3601 RNA uridylyltransferase activity
## 3602 sedoheptulokinase activity
## 3603 sphingomyelin phosphodiesterase D activity
## 3604 sphingosine N-acyltransferase activity
## 3605 steroid sulfotransferase activity
## 3606 sulfur dioxygenase activity
## 3607 tau-protein kinase activity
## 3608 thiamin-triphosphatase activity
## 3609 thiosulfate-thiol sulfurtransferase activity
## 3610 trans-L-3-hydroxyproline dehydratase activity
## 3611 trans-octaprenyltranstransferase activity
## 3612 trimethyllysine dioxygenase activity
## 3613 triokinase activity
## 3614 triphosphatase activity
## 3615 UDP-glucuronate 5'-epimerase activity
## 3616 [acetyl-CoA carboxylase] kinase activity
## 3617 nitrite reductase (NO-forming) activity
## 3618 calcium-dependent phospholipase C activity
## 3619 transforming growth factor beta binding
## 3620 microfibril binding
## 3621 aquacobalamin reductase (NADPH) activity
## 3622 ethanolamine-phosphate phospho-lyase activity
## 3623 N-acetylneuraminate synthase activity
## 3624 arachidonate 15-lipoxygenase activity
## 3625 glyceryl-ether monooxygenase activity
## 3626 imidazolonepropionase activity
## 3627 hyaluronan synthase activity
## 3628 glucuronosyl-N-acetylglucosaminyl-proteoglycan 4-alpha-N-acetylglucosaminyltransferase activity
## 3629 N-acetylglucosaminyl-proteoglycan 4-beta-glucuronosyltransferase activity
## 3630 N-acetylgalactosaminyl-proteoglycan 3-beta-glucuronosyltransferase activity
## 3631 lactosylceramide 4-alpha-galactosyltransferase activity
## 3632 acyloxyacyl hydrolase activity
## 3633 icosanoid binding
## 3634 icosatetraenoic acid binding
## 3635 arachidonic acid binding
## 3636 glutamate-tRNA(Gln) ligase activity
## 3637 glutaminyl-tRNA synthase (glutamine-hydrolyzing) activity
## 3638 1,5-anhydro-D-fructose reductase activity
## 3639 GDP-L-fucose synthase activity
## 3640 quinine 3-monooxygenase activity
## 3641 methylarsonate reductase activity
## 3642 propionyl-CoA C2-trimethyltridecanoyltransferase activity
## 3643 5-oxo-6E,8Z,11Z,14Z-icosatetraenoic acid binding
## 3644 5-hydroxy-6E,8Z,11Z,14Z-icosatetraenoic acid binding
## 3645 5(S)-hydroxyperoxy-6E,8Z,11Z,14Z-icosatetraenoic acid binding
## 3646 testosterone 6-beta-hydroxylase activity
## 3647 3'-phosphoadenosine 5'-phosphosulfate binding
## 3648 N-acetylgalactosamine 4-sulfate 6-O-sulfotransferase activity
## 3649 oxidoreductase activity, acting on NAD(P)H, oxygen as acceptor
## 3650 AF-2 domain binding
## 3651 AF-1 domain binding
## 3652 DBD domain binding
## 3653 LBD domain binding
## 3654 proteoglycan sulfotransferase activity
## 3655 WW domain binding
## 3656 CARD domain binding
## 3657 dopamine receptor binding
## 3658 advanced glycation end-product receptor activity
## 3659 RAGE receptor binding
## 3660 GABA receptor binding
## 3661 phosphoserine binding
## 3662 phosphothreonine binding
## 3663 pyruvate transmembrane transporter activity
## 3664 cobalt ion binding
## 3665 nitric-oxide synthase binding
## 3666 microtubule minus-end binding
## 3667 RNA transmembrane transporter activity
## 3668 hepoxilin A3 synthase activity
## 3669 metal ion:proton antiporter activity
## 3670 cofactor transporter activity
## 3671 coenzyme transporter activity
## 3672 mono-olein transacylation activity
## 3673 diolein transacylation activity
## 3674 CP2 mannose-ethanolamine phosphotransferase activity
## 3675 muscle alpha-actinin binding
## 3676 FATZ binding
## 3677 mannose-ethanolamine phosphotransferase activity
## 3678 serotonin binding
## 3679 epinephrine binding
## 3680 norepinephrine binding
## 3681 tRNA N-acetyltransferase activity
## 3682 alpha-actinin binding
## 3683 BH domain binding
## 3684 corticotropin-releasing hormone binding
## 3685 PTB domain binding
## 3686 corticotropin-releasing hormone receptor binding
## 3687 corticotropin-releasing hormone receptor 1 binding
## 3688 corticotropin-releasing hormone receptor 2 binding
## 3689 BH2 domain binding
## 3690 BH3 domain binding
## 3691 D-tyrosyl-tRNA(Tyr) deacylase activity
## 3692 NFAT protein binding
## 3693 2 iron, 2 sulfur cluster binding
## 3694 3 iron, 4 sulfur cluster binding
## 3695 5'-deoxyribose-5-phosphate lyase activity
## 3696 inositol-1,3,4,5-tetrakisphosphate 3-phosphatase activity
## 3697 protein C-terminal methylesterase activity
## 3698 NAD transporter activity
## 3699 polynucleotide 5'-hydroxyl-kinase activity
## 3700 ATP-dependent polyribonucleotide 5'-hydroxyl-kinase activity
## 3701 cytosine C-5 DNA demethylase activity
## 3702 inositol tetrakisphosphate kinase activity
## 3703 inositol trisphosphate kinase activity
## 3704 all-trans-retinol 13,14-reductase activity
## 3705 misfolded protein binding
## 3706 phosphatidylinositol-3,4-bisphosphate 3-phosphatase activity
## 3707 glycolipid binding
## 3708 histone demethylase activity (H3-K36 specific)
## 3709 methotrexate binding
## 3710 Hsp90 protein binding
## 3711 G-quadruplex DNA binding
## 3712 S-(hydroxymethyl)glutathione dehydrogenase activity
## 3713 granulocyte colony-stimulating factor binding
## 3714 lysophospholipid transporter activity
## 3715 (R)-2-hydroxyglutarate dehydrogenase activity
## 3716 squalene synthase activity
## 3717 protein carboxyl O-methyltransferase activity
## 3718 tRNA dimethylallyltransferase activity
## 3719 sn-glycerol-3-phosphate:ubiquinone-8 oxidoreductase activity
## 3720 tryptamine:oxygen oxidoreductase (deaminating) activity
## 3721 aminoacetone:oxygen oxidoreductase(deaminating) activity
## 3722 aliphatic-amine oxidase activity
## 3723 phenethylamine:oxygen oxidoreductase (deaminating) activity
## 3724 diamine oxidase activity
## 3725 histamine oxidase activity
## 3726 methylputrescine oxidase activity
## 3727 propane-1,3-diamine oxidase activity
## 3728 phosphatidylinositol-3,5-bisphosphate 3-phosphatase activity
## 3729 lysophosphatidic acid phosphatase activity
## 3730 L-leucine transaminase activity
## 3731 L-valine transaminase activity
## 3732 L-isoleucine transaminase activity
## 3733 guanine phosphoribosyltransferase activity
## 3734 tRNA (cytosine-2'-O-)-methyltransferase activity
## 3735 raffinose alpha-galactosidase activity
## 3736 tRNA-specific adenosine-34 deaminase activity
## 3737 inositol hexakisphosphate 1-kinase activity
## 3738 inositol hexakisphosphate 3-kinase activity
## 3739 inositol-1,3,4-trisphosphate 6-kinase activity
## 3740 inositol-1,3,4-trisphosphate 5-kinase activity
## 3741 phosphocholine phosphatase activity
## 3742 phosphoethanolamine phosphatase activity
## 3743 phosphatidylserine 1-acylhydrolase activity
## 3744 1-acyl-2-lysophosphatidylserine acylhydrolase activity
## 3745 exo-alpha-(2->3)-sialidase activity
## 3746 exo-alpha-(2->6)-sialidase activity
## 3747 exo-alpha-(2->8)-sialidase activity
## 3748 beta-galactoside alpha-2,3-sialyltransferase activity
## 3749 1-phosphatidylinositol-5-kinase activity
## 3750 1-phosphatidylinositol-3-phosphate 4-kinase activity
## 3751 phosphatidylinositol-3,4-bisphosphate 5-kinase activity
## 3752 medium-chain acyl-CoA hydrolase activity
## 3753 very long chain acyl-CoA hydrolase activity
## 3754 DNA-7-methyladenine glycosylase activity
## 3755 DNA-3-methylguanine glycosylase activity
## 3756 inositol-1,3,4,5,6-pentakisphosphate 1-phosphatase activity
## 3757 inositol hexakisphosphate 2-phosphatase activity
## 3758 inositol pentakisphosphate phosphatase activity
## 3759 inositol-3,4-bisphosphate 4-phosphatase activity
## 3760 inositol-1,3,4-trisphosphate 1-phosphatase activity
## 3761 inositol-1,3,4,6-tetrakisphosphate 6-phosphatase activity
## 3762 inositol-1,3,4,6-tetrakisphosphate 1-phosphatase activity
## 3763 inositol monophosphate 3-phosphatase activity
## 3764 inositol monophosphate 4-phosphatase activity
## 3765 inositol-3,4,6-trisphosphate 1-kinase activity
## 3766 inositol 5-diphosphate pentakisphosphate 5-kinase activity
## 3767 inositol diphosphate tetrakisphosphate kinase activity
## 3768 inositol diphosphate tetrakisphosphate diphosphatase activity
## 3769 inositol-1-diphosphate-2,3,4,5,6-pentakisphosphate diphosphatase activity
## 3770 inositol-3-diphosphate-1,2,4,5,6-pentakisphosphate diphosphatase activity
## 3771 inositol-5-diphosphate-1,2,3,4,6-pentakisphosphate diphosphatase activity
## 3772 inositol-1,5-bisdiphosphate-2,3,4,6-tetrakisphosphate 1-diphosphatase activity
## 3773 inositol-1,5-bisdiphosphate-2,3,4,6-tetrakisphosphate 5-diphosphatase activity
## 3774 inositol-3,5-bisdiphosphate-2,3,4,6-tetrakisphosphate 5-diphosphatase activity
## 3775 ferric-chelate reductase (NADPH) activity
## 3776 very-long-chain-(S)-2-hydroxy-acid oxidase activity
## 3777 long-chain-(S)-2-hydroxy-long-chain-acid oxidase activity
## 3778 medium-chain-(S)-2-hydroxy-acid oxidase activity
## 3779 ADP-dependent NAD(P)H-hydrate dehydratase activity
## 3780 peptidyl-lysine acetyltransferase activity
## 3781 arachidonic acid omega-hydroxylase activity
## 3782 alpha-tocopherol omega-hydroxylase activity
## 3783 tocotrienol omega-hydroxylase activity
## 3784 all-trans-retinyl-palmitate hydrolase, 11-cis retinol forming activity
## 3785 all-trans-retinyl-ester hydrolase, 11-cis retinol forming activity
## 3786 norspermine:oxygen oxidoreductase activity
## 3787 N1-acetylspermine:oxygen oxidoreductase (N1-acetylspermidine-forming) activity
## 3788 N(1),N(12)-diacetylspermine:oxygen oxidoreductase (3-acetamidopropanal-forming) activity
## 3789 spermine:oxygen oxidoreductase (spermidine-forming) activity
## 3790 spermidine:oxygen oxidoreductase (3-aminopropanal-forming) activity
## 3791 N1-acetylspermine:oxygen oxidoreductase (3-acetamidopropanal-forming) activity
## 3792 N1-acetylspermidine:oxygen oxidoreductase (3-acetamidopropanal-forming) activity
## 3793 tRNA (guanine(37)-N(1))-methyltransferase activity
## 3794 23S rRNA (adenine(1618)-N(6))-methyltransferase activity
## 3795 18S rRNA (adenine(1779)-N(6)/adenine(1780)-N(6))-dimethyltransferase activity
## 3796 dol-P-Man:Man(7)GlcNAc(2)-PP-Dol alpha-1,6-mannosyltransferase activity
## 3797 dol-P-Man:Man(8)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase activity
## 3798 dol-P-Man:Man(5)GlcNAc(2)-PP-Dol alpha-1,3-mannosyltransferase activity
## 3799 dol-P-Man:Man(6)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase activity
## 3800 CTP:tRNA cytidylyltransferase activity
## 3801 CTP:3'-cytidine-tRNA cytidylyltransferase activity
## 3802 ATP:3'-cytidine-cytidine-tRNA adenylyltransferase activity
## 3803 gap junction hemi-channel activity
## 3804 adiponectin binding
## 3805 lipase inhibitor activity
## 3806 ligase regulator activity
## 3807 minus-end directed microfilament motor activity
## 3808 plus-end directed microfilament motor activity
## 3809 large conductance calcium-activated potassium channel activity
## 3810 brain-derived neurotrophic factor-activated receptor activity
## 3811 phosphatidylcholine-sterol O-acyltransferase activator activity
## 3812 lipoprotein lipase activator activity
## 3813 peptidyl-dipeptidase inhibitor activity
## 3814 endoribonuclease inhibitor activity
## 3815 endopeptidase activator activity
## 3816 cyclic-GMP-AMP synthase activity
## 3817 cyclic-GMP-AMP binding
## 3818 glucose 6-phosphate:inorganic phosphate antiporter activity
## 3819 glycogen synthase activity, transferring glucose-1-phosphate
## 3820 molybdopterin adenylyltransferase activity
## 3821 molybdopterin molybdotransferase activity
## 3822 molybdopterin-synthase sulfurtransferase activity
## 3823 molybdopterin-synthase adenylyltransferase activity
## 3824 fructose-1-phosphate aldolase activity
## 3825 S-methylmethionine-homocysteine S-methyltransferase activity
## 3826 H3K27me3 modified histone binding
## 3827 RNA polymerase II sequence-specific DNA binding transcription factor binding
## 3828 ubiquitinated histone binding
## 3829 SUMO conjugating enzyme activity
## 3830 NEDD8 ligase activity
## 3831 SUMO ligase activity
## 3832 diphthine methylesterase activity
## 3833 lipoamidase activity
## 3834 protein-glutaryllysine deglutarylase activity
## 3835 N(6)-L-threonylcarbamoyladenine synthase
## 3836 tRNA (N(6)-L-threonylcarbamoyladenosine(37)-C(2))-methylthiotransferase
## 3837 folic acid receptor activity
## 3838 forked DNA-dependent helicase activity
## 3839 acid sphingomyelin phosphodiesterase activity
## 3840 telomeric repeat-containing RNA binding
## 3841 magnesium:sodium antiporter activity
## 3842 ribosylnicotinate kinase activity
## 3843 translation elongation factor binding
## 3844 peptidoglycan muralytic activity
## 3845 GTP 3',8'-cyclase activity
## 3846 cyclic pyranopterin monophosphate synthase activity
## 3847 NAD+ nucleotidase, cyclic ADP-ribose generating
## 3848 ADP-ribosyl cyclase activity
## 3849 cyclic ADP-ribose hydrolase
## 3850 telomeric D-loop binding
## 3851 glutamic-type peptidase activity
## 3852 metalloaminopeptidase activity
## 3853 serine-type exopeptidase activity
## 3854 serine-type aminopeptidase activity
## 3855 oligopeptidase activity
## 3856 armadillo repeat domain binding
## 3857 carbon monoxide binding
## 3858 nitric oxide binding
## 3859 rRNA (pseudouridine) methyltransferase activity
## 3860 fibrinogen binding
## 3861 collagen V binding
## 3862 thrombospondin receptor activity
## 3863 fructose binding
## 3864 proline-rich region binding
## 3865 titin Z domain binding
## 3866 fructose-6-phosphate binding
## 3867 delta-catenin binding
## 3868 ciliary neurotrophic factor binding
## 3869 transforming growth factor beta receptor activity, type III
## 3870 SUMO-specific endopeptidase activity
## 3871 SUMO-specific isopeptidase activity
## 3872 large ribosomal subunit rRNA binding
## 3873 DNA polymerase binding
## 3874 methionine-R-sulfoxide reductase activity
## 3875 sulfide:quinone oxidoreductase activity
## 3876 pristanate-CoA ligase activity
## 3877 tyrosyl-DNA phosphodiesterase activity
## 3878 5'-tyrosyl-DNA phosphodiesterase activity
## 3879 phosphatidylinositol-4-phosphate binding
## 3880 pyridoxal binding
## 3881 ferritin receptor activity
## 3882 N-acylphosphatidylethanolamine-specific phospholipase D activity
## 3883 phosphatidic acid binding
## 3884 inward rectifier potassium channel inhibitor activity
## 3885 thyroid hormone binding
## 3886 very-low-density lipoprotein particle receptor binding
## 3887 aromatase activity
## 3888 aspartate binding
## 3889 flap-structured DNA binding
## 3890 3'-flap-structured DNA binding
## 3891 mitochondrial light strand promoter anti-sense binding
## 3892 mitochondrial heavy strand promoter anti-sense binding
## 3893 mitochondrial light strand promoter sense binding
## 3894 NADP+ binding
## 3895 NADPH binding
## 3896 NAD+ binding
## 3897 NADH binding
## 3898 ammonium ion binding
## 3899 co-SMAD binding
## 3900 I-SMAD binding
## 3901 tubulin-dependent ATPase activity
## 3902 oligosaccharide binding
## 3903 high-density lipoprotein particle receptor activity
## 3904 death domain binding
## 3905 11-beta-hydroxysteroid dehydrogenase (NADP+) activity
## 3906 oleic acid binding
## 3907 linoleic acid binding
## 3908 L-phenylalanine aminotransferase activity
## 3909 L-glutamine aminotransferase activity
## 3910 endoribonuclease activity, cleaving siRNA-paired mRNA
## 3911 nicotinic acid receptor activity
## 3912 adenylyltransferase activity
## 3913 cytidylyltransferase activity
## 3914 guanylyltransferase activity
## 3915 metallodipeptidase activity
## 3916 vitamin D 24-hydroxylase activity
## 3917 lysine-acetylated histone binding
## 3918 methylcytosine dioxygenase activity
## 3919 histone methyltransferase activity (H3-R2 specific)
## 3920 histone methyltransferase activity (H2A-R3 specific)
## 3921 nucleosome-dependent ATPase activity
## 3922 (S)-2-(5-amino-1-(5-phospho-D-ribosyl)imidazole-4-carboxamido)succinate AMP-lyase (fumarate-forming) activity
## 3923 vitamin D response element binding
## 3924 high-density lipoprotein particle receptor binding
## 3925 inositol 1,4,5 trisphosphate binding
## 3926 deoxyribonucleoside 5'-monophosphate N-glycosidase activity
## 3927 transmembrane receptor protein serine/threonine kinase binding
## 3928 activin receptor binding
## 3929 type I activin receptor binding
## 3930 type II activin receptor binding
## 3931 BMP receptor binding
## 3932 leucine binding
## 3933 protein adenylyltransferase activity
## 3934 protein-glycine ligase activity
## 3935 protein-glycine ligase activity, initiating
## 3936 protein-glutamic acid ligase activity
## 3937 tubulin-glutamic acid ligase activity
## 3938 C2H2 zinc finger domain binding
## 3939 protein-N-terminal glutamine amidohydrolase activity
## 3940 phytoceramidase activity
## 3941 dihydrosphingosine-1-phosphate phosphatase activity
## 3942 peptidyl-lysine 5-dioxygenase activity
## 3943 dynein complex binding
## 3944 myosin VI binding
## 3945 myosin VI light chain binding
## 3946 primary miRNA binding
## 3947 pre-miRNA binding
## 3948 E-box binding
## 3949 sodium-dependent L-ascorbate transmembrane transporter activity
## 3950 lipoteichoic acid binding
## 3951 lipoteichoic acid receptor activity
## 3952 serine binding
## 3953 lysophosphatidic acid receptor activity
## 3954 POU domain binding
## 3955 FHA domain binding
## 3956 TIR domain binding
## 3957 SET domain binding
## 3958 snRNP binding
## 3959 medium-chain-acyl-CoA dehydrogenase activity
## 3960 type 1 melanocortin receptor binding
## 3961 eukaryotic initiation factor eIF2 binding
## 3962 RNA trimethylguanosine synthase activity
## 3963 histone pre-mRNA stem-loop binding
## 3964 rRNA (cytosine-N4-)-methyltransferase activity
## 3965 ankyrin repeat binding
## 3966 RING-like zinc finger domain binding
## 3967 histone demethylase activity (H3-K27 specific)
## 3968 UFM1 activating enzyme activity
## 3969 UFM1 hydrolase activity
## 3970 linoleic acid epoxygenase activity
## 3971 dihydroceramidase activity
## 3972 lipopeptide binding
## 3973 chemokine (C-C motif) ligand 5 binding
## 3974 K11-linked polyubiquitin binding
## 3975 K6-linked polyubiquitin binding
## 3976 lipoprotein particle binding
## 3977 N-box binding
## 3978 neuropeptide receptor binding
## 3979 N-terminal protein N-methyltransferase activity
## 3980 1-(4-iodo-2,5-dimethoxyphenyl)propan-2-amine binding
## 3981 Arp2/3 complex binding
## 3982 coreceptor activity involved in Wnt signaling pathway
## 3983 WD40-repeat domain binding
## 3984 volume-sensitive chloride channel activity
## 3985 modified amino acid transmembrane transporter activity
## 3986 histone kinase activity (H3-T3 specific)
## 3987 Rho-dependent protein serine/threonine kinase activity
## 3988 L-DOPA binding
## 3989 tyrosine binding
## 3990 17-beta-ketosteroid reductase activity
## 3991 ADP-D-ribose binding
## 3992 poly-ADP-D-ribose binding
## 3993 17-beta-hydroxysteroid dehydrogenase (NADP+) activity
## 3994 DNA topoisomerase (ATP-hydrolyzing) activator activity
## 3995 N-acetyl-L-aspartate-L-glutamate ligase activity
## 3996 citrate-L-glutamate ligase activity
## 3997 fatty-acyl-CoA reductase (alcohol-forming) activity
## 3998 3R-hydroxyacyl-CoA dehydratase activity
## 3999 phosphatidylinositol-3,5-bisphosphate binding
## 4000 GDP-D-glucose phosphorylase activity
## 4001 phosphatidyl-N-dimethylethanolamine N-methyltransferase activity
## 4002 AMP transmembrane transporter activity
## 4003 L-phenylalanine:2-oxoglutarate aminotransferase activity
## 4004 fatty acid alpha-hydroxylase activity
## 4005 voltage-gated sodium channel activity involved in cardiac muscle cell action potential
## 4006 voltage-gated calcium channel activity involved in cardiac muscle cell action potential
## 4007 voltage-gated potassium channel activity involved in cardiac muscle cell action potential repolarization
## 4008 gap junction channel activity involved in SA node cell-atrial cardiac muscle cell electrical coupling
## 4009 sodium:potassium-exchanging ATPase activity involved in regulation of cardiac muscle cell membrane potential
## 4010 calcium:sodium antiporter activity involved in regulation of cardiac muscle cell membrane potential
## 4011 calcium-transporting ATPase activity involved in regulation of cardiac muscle cell membrane potential
## 4012 voltage-gated potassium channel activity involved in SA node cell action potential depolarization
## 4013 voltage-gated calcium channel activity involved in AV node cell action potential
## 4014 voltage-gated calcium channel activity involved in bundle of His cell action potential
## 4015 voltage-gated calcium channel activity involved SA node cell action potential
## 4016 voltage-gated sodium channel activity involved in AV node cell action potential
## 4017 voltage-gated sodium channel activity involved in bundle of His cell action potential
## 4018 voltage-gated sodium channel activity involved in Purkinje myocyte action potential
## 4019 voltage-gated sodium channel activity involved in SA node cell action potential
## 4020 gap junction channel activity involved in cardiac conduction electrical coupling
## 4021 gap junction channel activity involved in atrial cardiac muscle cell-AV node cell electrical coupling
## 4022 gap junction channel activity involved in AV node cell-bundle of His cell electrical coupling
## 4023 gap junction channel activity involved in bundle of His cell-Purkinje myocyte electrical coupling
## 4024 gap junction channel activity involved in Purkinje myocyte-ventricular cardiac muscle cell electrical coupling
## 4025 protein binding involved in heterotypic cell-cell adhesion
## 4026 cell adhesive protein binding involved in AV node cell-bundle of His cell communication
## 4027 cell adhesive protein binding involved in bundle of His cell-Purkinje myocyte communication
## 4028 voltage-gated potassium channel activity involved in bundle of His cell action potential repolarization
## 4029 voltage-gated potassium channel activity involved in atrial cardiac muscle cell action potential repolarization
## 4030 voltage-gated potassium channel activity involved in SA node cell action potential repolarization
## 4031 caspase binding
## 4032 translation regulator activity, nucleic acid binding
## 4033 malonyl-CoA synthetase activity
## 4034 nicotinate transporter activity
## 4035 thiamine pyrophosphate transporter activity
## 4036 vitamin transmembrane transporter activity
## 4037 drug transporter activity
## 4038 MIT domain binding
## 4039 phosphatidylcholine-translocating ATPase activity
## 4040 phosphatidylethanolamine-translocating ATPase activity
## 4041 phosphatidylserine-translocating ATPase activity
## 4042 alpha-glucosidase activity
## 4043 endoribonuclease activity, cleaving miRNA-paired mRNA
## 4044 pre-miRNA transporter activity
## 4045 receptor-receptor interaction
## 4046 ceramide binding
## 4047 adipokinetic hormone receptor activity
## 4048 L27 domain binding
## 4049 COPII adaptor activity
## 4050 ubiquitin-protein transferase activator activity
## 4051 supercoiled DNA binding
## 4052 neuroligin family protein binding
## 4053 pre-mRNA intronic binding
## 4054 pre-mRNA intronic pyrimidine-rich binding
## 4055 polychlorinated biphenyl binding
## 4056 DH domain binding
## 4057 MADS box domain binding
## 4058 mitochondrial ribosome binding
## 4059 cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## 4060 20-hydroxy-leukotriene B4 omega oxidase activity
## 4061 20-aldehyde-leukotriene B4 20-monooxygenase activity
## 4062 eoxin A4 synthase activity
## 4063 7SK snRNA binding
## 4064 protein O-GlcNAc transferase activity
## 4065 MDM2/MDM4 family protein binding
## 4066 NAD-dependent histone deacetylase activity (H3-K18 specific)
## 4067 dIDP diphosphatase activity
## 4068 cyclin-dependent protein kinase activity
## 4069 structural molecule activity conferring elasticity
## 4070 glutathione oxidoreductase activity
## 4071 cullin family protein binding
## 4072 temperature-gated ion channel activity
## 4073 temperature-gated cation channel activity
## 4074 monoamine oxidase activity
## 4075 low-affinity L-arginine transmembrane transporter activity
## 4076 high-affinity L-ornithine transmembrane transporter activity
## 4077 calcitonin family receptor activity
## 4078 amylin receptor activity
## 4079 serpin family protein binding
## 4080 STAT family protein binding
## 4081 iron channel activity
## 4082 disordered domain specific binding
## 4083 LEM domain binding
## 4084 polynucleotide phosphatase activity
## 4085 nucleotide phosphatase activity, acting on free nucleotides
## 4086 selenomethionine adenosyltransferase activity
## 4087 selenocysteine-tRNA ligase activity
## 4088 phosphoseryl-selenocysteinyl-tRNA selenium transferase activity
## 4089 methylselenol reductase activity
## 4090 methylseleninic acid reductase activity
## 4091 collagen fibril binding
## 4092 protein binding involved in cell-matrix adhesion
## 4093 collagen binding involved in cell-matrix adhesion
## 4094 integrin binding involved in cell-matrix adhesion
## 4095 FBXO family protein binding
## 4096 mechanically-gated potassium channel activity
## 4097 mRNA cap binding
## 4098 postsynaptic neurotransmitter receptor activity
## 4099 structural constituent of postsynaptic actin cytoskeleton
## 4100 ceramide-translocating ATPase activity
## 4101 ligand-gated anion channel activity
## 4102 potassium channel activator activity
## 4103 G-protein coupled receptor activity involved in regulation of postsynaptic membrane potential
## 4104 ion antiporter activity involved in regulation of postsynaptic membrane potential
## 4105 neurotransmitter receptor activity involved in regulation of postsynaptic cytosolic calcium ion concentration
## 4106 serotonin receptor activity
## 4107 microtubule lateral binding
## 4108 protein histidine phosphatase activity
## 4109 estrogen 16-alpha-hydroxylase activity
## 4110 2-octaprenyl-6-methoxy-1,4-benzoquinone methylase activity
## 4111 acyl-L-homoserine-lactone lactonohydrolase activity
## 4112 cytosolic dipeptidase activity
## 4113 proline dipeptidase activity
## 4114 3-oxo-pimeloyl-[acp] methyl ester reductase activity
## 4115 lecithin:11-cis retinol acyltransferase activity
## 4116 1,8-cineole 2-exo-monooxygenase activity
## 4117 3-oxo-arachidoyl-CoA synthase activity
## 4118 3-oxo-cerotoyl-CoA synthase activity
## 4119 3-oxo-lignoceronyl-CoA synthase activity
## 4120 3-oxo-arachidoyl-CoA reductase activity
## 4121 3-oxo-behenoyl-CoA reductase activity
## 4122 3-oxo-lignoceroyl-CoA reductase activity
## 4123 3-oxo-cerotoyl-CoA reductase activity
## 4124 3-hydroxy-behenoyl-CoA dehydratase activity
## 4125 3-hydroxy-lignoceroyl-CoA dehydratase activity
## 4126 mycophenolic acid acyl-glucuronide esterase activity
## 4127 decanoate--CoA ligase activity
## 4128 scopolin beta-glucosidase activity
## 4129 8-oxo-dGTP phosphohydrolase activity
## 4130 tRNA 4-demethylwyosine alpha-amino-alpha-carboxypropyltransferase activity
## 4131 GDP-Man:Man2GlcNAc2-PP-dolichol alpha-1,6-mannosyltransferase activity
## 4132 1-ethyladenine demethylase activity
## 4133 wax ester synthase activity
## 4134 catecholamine binding
## 4135 azole transmembrane transporter activity
## 4136 phosphatidylglycerol binding
## 4137 cardiolipin binding
## 4138 XTP binding
## 4139 ITP binding
## 4140 phosphate transmembrane transporter activity
## 4141 sulfur compound transmembrane transporter activity
## 4142 calcitriol binding
## 4143 calcidiol binding
## 4144 lithocholic acid binding
## 4145 chenodeoxycholic acid binding
## 4146 D3 vitamins binding
## 4147 voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## 4148 chemoattractant activity involved in axon guidance
## 4149 ceramide 1-phosphate binding
## 4150 ceramide 1-phosphate transporter activity
## 4151 riboflavin binding
## 4152 estradiol binding
## 4153 platinum binding
## 4154 xenon atom binding
## 4155 S-adenosyl-L-methionine binding
## 4156 phosphatidylethanolamine transporter activity
## 4157 ubiquitin protein ligase activity involved in ERAD pathway
## 4158 BAT3 complex binding
## 4159 transmitter-gated ion channel activity involved in regulation of postsynaptic membrane potential
## 4160 heparan sulfate binding
## 4161 melatonin binding
## 4162 ubiquitin-specific protease activity involved in positive regulation of ERAD pathway
## 4163 Ac-Asp-Glu binding
## 4164 tetrahydrofolyl-poly(glutamate) polymer binding
## 4165 advanced glycation end-product binding
## 4166 peptide transmembrane transporter activity
## 4167 beta-catenin destruction complex binding
## 4168 all-trans-retinol binding
## 4169 proteasome core complex binding
## 4170 coreceptor activity involved in canonical Wnt signaling pathway
## 4171 coreceptor activity involved in Wnt signaling pathway, planar cell polarity pathway
## 4172 retromer complex binding
## 4173 ganglioside GM1 binding
## 4174 ganglioside GM2 binding
## 4175 ganglioside GM3 binding
## 4176 ganglioside GT1b binding
## 4177 ganglioside GP1c binding
## 4178 resveratrol binding
## 4179 8-hydroxy-2'-deoxyguanosine DNA binding
## 4180 IDP phosphatase activity
## 4181 phosphatidic acid transporter activity
## 4182 trimethylamine receptor activity
## 4183 linoleate 9S-lipoxygenase activity
## 4184 phosphodiesterase decapping endonuclease activity
## 4185 EH domain binding
## 4186 euchromatin binding
## 4187 peptide-serine-N-acetyltransferase activity
## 4188 peptide-glutamate-N-acetyltransferase activity
## 4189 histone methyltransferase binding
## 4190 histone kinase activity (H2A-T120 specific)
## 4191 N6-methyladenosine-containing RNA binding
## 4192 keratin filament binding
## 4193 histone-glutamine methyltransferase activity
## 4194 RNA polymerase II C-terminal domain phosphoserine binding
## 4195 anti-Mullerian hormone receptor activity
## 4196 preribosome binding
## 4197 protein antigen binding
## 4198 extracellular matrix protein binding
## 4199 MAP kinase threonine phosphatase activity
## 4200 F-box domain binding
## 4201 U1 snRNP binding
## 4202 linear polyubiquitin binding
## 4203 leptin receptor binding
## 4204 mast cell secretagogue receptor activity
## 4205 3' overhang single-stranded DNA endodeoxyribonuclease activity
## 4206 palmitoleoyltransferase activity
## 4207 palmitoleyl hydrolase activity
## 4208 mRNA CDS binding
## 4209 pseudouridine 5'-phosphatase activity
## 4210 protein binding, bridging involved in substrate recognition for ubiquitination
## 4211 arrestin family protein binding
## 4212 C-rich single-stranded DNA binding
## 4213 rRNA cytidine N-acetyltransferase activity
## 4214 H4K20me3 modified histone binding
## 4215 RNA N1-methyladenosine dioxygenase activity
## 4216 RNA N6-methyladenosine dioxygenase activity
## 4217 5.8S rRNA binding
## 4218 G-rich single-stranded DNA binding
## 4219 tRNA demethylase activity
## 4220 mannan binding
## 4221 glycogen binding
## 4222 starch binding
## Hyper_Total_Regions Hyper_Expected Hyper_Foreground_Region_Hits
## 1 33 7.1701190 15
## 2 33 7.1701190 15
## 3 8 1.7382110 6
## 4 6 1.3036580 5
## 5 47 10.2119900 19
## 6 34 7.3873950 15
## 7 34 7.3873950 15
## 8 25 5.4319080 12
## 9 15 3.2591450 8
## 10 355 77.1331000 95
## 11 3 0.6518290 3
## 12 3 0.6518290 3
## 13 3 0.6518290 3
## 14 3 0.6518290 3
## 15 3 0.6518290 3
## 16 3 0.6518290 3
## 17 3 0.6518290 3
## 18 13 2.8245920 7
## 19 13 2.8245920 7
## 20 26 5.6491850 11
## 21 30 6.5182900 12
## 22 14 3.0418690 7
## 23 14 3.0418690 7
## 24 14 3.0418690 7
## 25 6 1.3036580 4
## 26 6 1.3036580 4
## 27 9 1.9554870 5
## 28 15 3.2591450 7
## 29 15 3.2591450 7
## 30 15 3.2591450 7
## 31 25 5.4319080 10
## 32 25 5.4319080 10
## 33 4 0.8691053 3
## 34 4 0.8691053 3
## 35 4 0.8691053 3
## 36 4 0.8691053 3
## 37 4 0.8691053 3
## 38 4 0.8691053 3
## 39 4 0.8691053 3
## 40 4 0.8691053 3
## 41 40 8.6910530 14
## 42 16 3.4764210 7
## 43 13 2.8245920 6
## 44 13 2.8245920 6
## 45 7 1.5209340 4
## 46 10 2.1727630 5
## 47 10 2.1727630 5
## 48 2 0.4345527 2
## 49 2 0.4345527 2
## 50 2 0.4345527 2
## 51 2 0.4345527 2
## 52 2 0.4345527 2
## 53 2 0.4345527 2
## 54 2 0.4345527 2
## 55 2 0.4345527 2
## 56 2 0.4345527 2
## 57 2 0.4345527 2
## 58 2 0.4345527 2
## 59 2 0.4345527 2
## 60 2 0.4345527 2
## 61 2 0.4345527 2
## 62 2 0.4345527 2
## 63 2 0.4345527 2
## 64 2 0.4345527 2
## 65 2 0.4345527 2
## 66 2 0.4345527 2
## 67 2 0.4345527 2
## 68 2 0.4345527 2
## 69 2 0.4345527 2
## 70 2 0.4345527 2
## 71 2 0.4345527 2
## 72 27 5.8664610 10
## 73 794 172.5174000 188
## 74 14 3.0418690 6
## 75 21 4.5628030 8
## 76 11 2.3900400 5
## 77 59 12.8193000 18
## 78 5 1.0863820 3
## 79 5 1.0863820 3
## 80 5 1.0863820 3
## 81 5 1.0863820 3
## 82 5 1.0863820 3
## 83 5 1.0863820 3
## 84 5 1.0863820 3
## 85 5 1.0863820 3
## 86 5 1.0863820 3
## 87 5 1.0863820 3
## 88 5 1.0863820 3
## 89 5 1.0863820 3
## 90 5 1.0863820 3
## 91 8 1.7382110 4
## 92 8 1.7382110 4
## 93 8 1.7382110 4
## 94 18 3.9109740 7
## 95 33 7.1701190 11
## 96 41 8.9083300 13
## 97 45 9.7774350 14
## 98 19 4.1282500 7
## 99 12 2.6073160 5
## 100 12 2.6073160 5
## 101 12 2.6073160 5
## 102 12 2.6073160 5
## 103 50 10.8638200 15
## 104 9 1.9554870 4
## 105 9 1.9554870 4
## 106 9 1.9554870 4
## 107 9 1.9554870 4
## 108 9 1.9554870 4
## 109 9 1.9554870 4
## 110 6 1.3036580 3
## 111 6 1.3036580 3
## 112 6 1.3036580 3
## 113 3 0.6518290 2
## 114 3 0.6518290 2
## 115 3 0.6518290 2
## 116 3 0.6518290 2
## 117 3 0.6518290 2
## 118 3 0.6518290 2
## 119 3 0.6518290 2
## 120 3 0.6518290 2
## 121 3 0.6518290 2
## 122 3 0.6518290 2
## 123 3 0.6518290 2
## 124 3 0.6518290 2
## 125 3 0.6518290 2
## 126 3 0.6518290 2
## 127 3 0.6518290 2
## 128 3 0.6518290 2
## 129 3 0.6518290 2
## 130 3 0.6518290 2
## 131 3 0.6518290 2
## 132 3 0.6518290 2
## 133 3 0.6518290 2
## 134 3 0.6518290 2
## 135 3 0.6518290 2
## 136 3 0.6518290 2
## 137 3 0.6518290 2
## 138 3 0.6518290 2
## 139 3 0.6518290 2
## 140 3 0.6518290 2
## 141 3 0.6518290 2
## 142 3 0.6518290 2
## 143 3 0.6518290 2
## 144 3 0.6518290 2
## 145 3 0.6518290 2
## 146 3 0.6518290 2
## 147 3 0.6518290 2
## 148 3 0.6518290 2
## 149 84 18.2512100 23
## 150 84 18.2512100 23
## 151 32 6.9528430 10
## 152 40 8.6910530 12
## 153 40 8.6910530 12
## 154 17 3.6936980 6
## 155 17 3.6936980 6
## 156 17 3.6936980 6
## 157 21 4.5628030 7
## 158 10 2.1727630 4
## 159 10 2.1727630 4
## 160 10 2.1727630 4
## 161 10 2.1727630 4
## 162 137 29.7668600 35
## 163 25 5.4319080 8
## 164 29 6.3010140 9
## 165 1091 237.0485000 247
## 166 252 54.7536400 61
## 167 113 24.5522300 29
## 168 18 3.9109740 6
## 169 7 1.5209340 3
## 170 7 1.5209340 3
## 171 7 1.5209340 3
## 172 7 1.5209340 3
## 173 7 1.5209340 3
## 174 22 4.7800790 7
## 175 22 4.7800790 7
## 176 1103 239.6558000 249
## 177 34 7.3873950 10
## 178 131 28.4632000 33
## 179 11 2.3900400 4
## 180 11 2.3900400 4
## 181 11 2.3900400 4
## 182 4 0.8691053 2
## 183 4 0.8691053 2
## 184 4 0.8691053 2
## 185 4 0.8691053 2
## 186 4 0.8691053 2
## 187 4 0.8691053 2
## 188 4 0.8691053 2
## 189 4 0.8691053 2
## 190 4 0.8691053 2
## 191 4 0.8691053 2
## 192 4 0.8691053 2
## 193 4 0.8691053 2
## 194 4 0.8691053 2
## 195 4 0.8691053 2
## 196 4 0.8691053 2
## 197 4 0.8691053 2
## 198 4 0.8691053 2
## 199 4 0.8691053 2
## 200 4 0.8691053 2
## 201 4 0.8691053 2
## 202 4 0.8691053 2
## 203 4 0.8691053 2
## 204 4 0.8691053 2
## 205 4 0.8691053 2
## 206 4 0.8691053 2
## 207 229 49.7562800 55
## 208 15 3.2591450 5
## 209 31 6.7355660 9
## 210 19 4.1282500 6
## 211 23 4.9973560 7
## 212 1 0.2172763 1
## 213 1 0.2172763 1
## 214 1 0.2172763 1
## 215 1 0.2172763 1
## 216 1 0.2172763 1
## 217 1 0.2172763 1
## 218 1 0.2172763 1
## 219 1 0.2172763 1
## 220 1 0.2172763 1
## 221 1 0.2172763 1
## 222 1 0.2172763 1
## 223 1 0.2172763 1
## 224 1 0.2172763 1
## 225 1 0.2172763 1
## 226 1 0.2172763 1
## 227 1 0.2172763 1
## 228 1 0.2172763 1
## 229 1 0.2172763 1
## 230 1 0.2172763 1
## 231 1 0.2172763 1
## 232 1 0.2172763 1
## 233 1 0.2172763 1
## 234 1 0.2172763 1
## 235 1 0.2172763 1
## 236 1 0.2172763 1
## 237 1 0.2172763 1
## 238 1 0.2172763 1
## 239 1 0.2172763 1
## 240 1 0.2172763 1
## 241 1 0.2172763 1
## 242 1 0.2172763 1
## 243 1 0.2172763 1
## 244 1 0.2172763 1
## 245 1 0.2172763 1
## 246 1 0.2172763 1
## 247 1 0.2172763 1
## 248 1 0.2172763 1
## 249 1 0.2172763 1
## 250 1 0.2172763 1
## 251 1 0.2172763 1
## 252 1 0.2172763 1
## 253 1 0.2172763 1
## 254 1 0.2172763 1
## 255 1 0.2172763 1
## 256 1 0.2172763 1
## 257 1 0.2172763 1
## 258 1 0.2172763 1
## 259 1 0.2172763 1
## 260 1 0.2172763 1
## 261 1 0.2172763 1
## 262 1 0.2172763 1
## 263 1 0.2172763 1
## 264 1 0.2172763 1
## 265 1 0.2172763 1
## 266 1 0.2172763 1
## 267 44 9.5601590 12
## 268 8 1.7382110 3
## 269 8 1.7382110 3
## 270 8 1.7382110 3
## 271 8 1.7382110 3
## 272 8 1.7382110 3
## 273 8 1.7382110 3
## 274 83 18.0339400 21
## 275 28 6.0837370 8
## 276 12 2.6073160 4
## 277 12 2.6073160 4
## 278 12 2.6073160 4
## 279 12 2.6073160 4
## 280 12 2.6073160 4
## 281 45 9.7774350 12
## 282 172 37.3715300 41
## 283 42 9.1256060 11
## 284 21 4.5628030 6
## 285 5 1.0863820 2
## 286 5 1.0863820 2
## 287 5 1.0863820 2
## 288 5 1.0863820 2
## 289 5 1.0863820 2
## 290 5 1.0863820 2
## 291 5 1.0863820 2
## 292 5 1.0863820 2
## 293 5 1.0863820 2
## 294 5 1.0863820 2
## 295 5 1.0863820 2
## 296 5 1.0863820 2
## 297 5 1.0863820 2
## 298 5 1.0863820 2
## 299 5 1.0863820 2
## 300 5 1.0863820 2
## 301 5 1.0863820 2
## 302 17 3.6936980 5
## 303 13 2.8245920 4
## 304 13 2.8245920 4
## 305 13 2.8245920 4
## 306 13 2.8245920 4
## 307 9 1.9554870 3
## 308 9 1.9554870 3
## 309 9 1.9554870 3
## 310 9 1.9554870 3
## 311 9 1.9554870 3
## 312 69 14.9920700 17
## 313 65 14.1229600 16
## 314 39 8.4737770 10
## 315 150 32.5914500 35
## 316 186 40.4134000 43
## 317 204 44.3243700 47
## 318 18 3.9109740 5
## 319 18 3.9109740 5
## 320 18 3.9109740 5
## 321 14 3.0418690 4
## 322 14 3.0418690 4
## 323 14 3.0418690 4
## 324 10 2.1727630 3
## 325 10 2.1727630 3
## 326 10 2.1727630 3
## 327 10 2.1727630 3
## 328 10 2.1727630 3
## 329 10 2.1727630 3
## 330 10 2.1727630 3
## 331 10 2.1727630 3
## 332 10 2.1727630 3
## 333 116 25.2040500 27
## 334 23 4.9973560 6
## 335 45 9.7774350 11
## 336 6 1.3036580 2
## 337 6 1.3036580 2
## 338 6 1.3036580 2
## 339 6 1.3036580 2
## 340 6 1.3036580 2
## 341 6 1.3036580 2
## 342 6 1.3036580 2
## 343 6 1.3036580 2
## 344 6 1.3036580 2
## 345 6 1.3036580 2
## 346 6 1.3036580 2
## 347 6 1.3036580 2
## 348 2 0.4345527 1
## 349 2 0.4345527 1
## 350 2 0.4345527 1
## 351 2 0.4345527 1
## 352 2 0.4345527 1
## 353 2 0.4345527 1
## 354 2 0.4345527 1
## 355 2 0.4345527 1
## 356 2 0.4345527 1
## 357 2 0.4345527 1
## 358 2 0.4345527 1
## 359 2 0.4345527 1
## 360 2 0.4345527 1
## 361 2 0.4345527 1
## 362 2 0.4345527 1
## 363 2 0.4345527 1
## 364 2 0.4345527 1
## 365 2 0.4345527 1
## 366 2 0.4345527 1
## 367 2 0.4345527 1
## 368 2 0.4345527 1
## 369 2 0.4345527 1
## 370 2 0.4345527 1
## 371 2 0.4345527 1
## 372 2 0.4345527 1
## 373 2 0.4345527 1
## 374 2 0.4345527 1
## 375 2 0.4345527 1
## 376 2 0.4345527 1
## 377 2 0.4345527 1
## 378 2 0.4345527 1
## 379 2 0.4345527 1
## 380 2 0.4345527 1
## 381 2 0.4345527 1
## 382 2 0.4345527 1
## 383 2 0.4345527 1
## 384 2 0.4345527 1
## 385 2 0.4345527 1
## 386 19 4.1282500 5
## 387 19 4.1282500 5
## 388 50 10.8638200 12
## 389 50 10.8638200 12
## 390 431 93.6461000 96
## 391 59 12.8193000 14
## 392 95 20.6412500 22
## 393 15 3.2591450 4
## 394 15 3.2591450 4
## 395 73 15.8611700 17
## 396 78 16.9475500 18
## 397 11 2.3900400 3
## 398 115 24.9867800 26
## 399 115 24.9867800 26
## 400 115 24.9867800 26
## 401 56 12.1674700 13
## 402 20 4.3455270 5
## 403 29 6.3010140 7
## 404 29 6.3010140 7
## 405 88 19.1203200 20
## 406 120 26.0731600 27
## 407 111 24.1176700 25
## 408 52 11.2983700 12
## 409 34 7.3873950 8
## 410 66 14.3402400 15
## 411 7 1.5209340 2
## 412 7 1.5209340 2
## 413 7 1.5209340 2
## 414 7 1.5209340 2
## 415 7 1.5209340 2
## 416 7 1.5209340 2
## 417 7 1.5209340 2
## 418 7 1.5209340 2
## 419 7 1.5209340 2
## 420 7 1.5209340 2
## 421 217 47.1489600 48
## 422 16 3.4764210 4
## 423 16 3.4764210 4
## 424 16 3.4764210 4
## 425 553 120.1538000 121
## 426 39 8.4737770 9
## 427 30 6.5182900 7
## 428 21 4.5628030 5
## 429 12 2.6073160 3
## 430 12 2.6073160 3
## 431 12 2.6073160 3
## 432 12 2.6073160 3
## 433 12 2.6073160 3
## 434 12 2.6073160 3
## 435 3 0.6518290 1
## 436 3 0.6518290 1
## 437 3 0.6518290 1
## 438 3 0.6518290 1
## 439 3 0.6518290 1
## 440 3 0.6518290 1
## 441 3 0.6518290 1
## 442 3 0.6518290 1
## 443 3 0.6518290 1
## 444 3 0.6518290 1
## 445 3 0.6518290 1
## 446 3 0.6518290 1
## 447 3 0.6518290 1
## 448 3 0.6518290 1
## 449 3 0.6518290 1
## 450 3 0.6518290 1
## 451 3 0.6518290 1
## 452 3 0.6518290 1
## 453 3 0.6518290 1
## 454 3 0.6518290 1
## 455 3 0.6518290 1
## 456 3 0.6518290 1
## 457 3 0.6518290 1
## 458 3 0.6518290 1
## 459 3 0.6518290 1
## 460 3 0.6518290 1
## 461 3 0.6518290 1
## 462 3 0.6518290 1
## 463 3 0.6518290 1
## 464 3 0.6518290 1
## 465 3 0.6518290 1
## 466 3 0.6518290 1
## 467 3 0.6518290 1
## 468 3 0.6518290 1
## 469 3 0.6518290 1
## 470 3 0.6518290 1
## 471 3 0.6518290 1
## 472 3 0.6518290 1
## 473 3 0.6518290 1
## 474 3 0.6518290 1
## 475 3 0.6518290 1
## 476 3 0.6518290 1
## 477 3 0.6518290 1
## 478 3 0.6518290 1
## 479 3 0.6518290 1
## 480 3 0.6518290 1
## 481 17 3.6936980 4
## 482 17 3.6936980 4
## 483 17 3.6936980 4
## 484 8 1.7382110 2
## 485 8 1.7382110 2
## 486 8 1.7382110 2
## 487 8 1.7382110 2
## 488 8 1.7382110 2
## 489 8 1.7382110 2
## 490 8 1.7382110 2
## 491 8 1.7382110 2
## 492 8 1.7382110 2
## 493 27 5.8664610 6
## 494 27 5.8664610 6
## 495 60 13.0365800 13
## 496 13 2.8245920 3
## 497 13 2.8245920 3
## 498 13 2.8245920 3
## 499 13 2.8245920 3
## 500 13 2.8245920 3
## 501 13 2.8245920 3
## 502 13 2.8245920 3
## 503 13 2.8245920 3
## 504 13 2.8245920 3
## 505 32 6.9528430 7
## 506 32 6.9528430 7
## 507 32 6.9528430 7
## 508 65 14.1229600 14
## 509 37 8.0392240 8
## 510 18 3.9109740 4
## 511 18 3.9109740 4
## 512 18 3.9109740 4
## 513 18 3.9109740 4
## 514 18 3.9109740 4
## 515 23 4.9973560 5
## 516 108 23.4658400 23
## 517 28 6.0837370 6
## 518 28 6.0837370 6
## 519 38 8.2565010 8
## 520 2080 451.9348000 451
## 521 9 1.9554870 2
## 522 9 1.9554870 2
## 523 9 1.9554870 2
## 524 9 1.9554870 2
## 525 9 1.9554870 2
## 526 9 1.9554870 2
## 527 9 1.9554870 2
## 528 9 1.9554870 2
## 529 9 1.9554870 2
## 530 14 3.0418690 3
## 531 14 3.0418690 3
## 532 14 3.0418690 3
## 533 48 10.4292600 10
## 534 105 22.8140100 22
## 535 19 4.1282500 4
## 536 185 40.1961200 39
## 537 185 40.1961200 39
## 538 24 5.2146320 5
## 539 24 5.2146320 5
## 540 4 0.8691053 1
## 541 4 0.8691053 1
## 542 4 0.8691053 1
## 543 4 0.8691053 1
## 544 4 0.8691053 1
## 545 4 0.8691053 1
## 546 4 0.8691053 1
## 547 4 0.8691053 1
## 548 4 0.8691053 1
## 549 4 0.8691053 1
## 550 4 0.8691053 1
## 551 4 0.8691053 1
## 552 4 0.8691053 1
## 553 4 0.8691053 1
## 554 4 0.8691053 1
## 555 4 0.8691053 1
## 556 4 0.8691053 1
## 557 4 0.8691053 1
## 558 4 0.8691053 1
## 559 4 0.8691053 1
## 560 4 0.8691053 1
## 561 4 0.8691053 1
## 562 4 0.8691053 1
## 563 4 0.8691053 1
## 564 4 0.8691053 1
## 565 4 0.8691053 1
## 566 4 0.8691053 1
## 567 4 0.8691053 1
## 568 4 0.8691053 1
## 569 4 0.8691053 1
## 570 4 0.8691053 1
## 571 4 0.8691053 1
## 572 4 0.8691053 1
## 573 4 0.8691053 1
## 574 4 0.8691053 1
## 575 4 0.8691053 1
## 576 4 0.8691053 1
## 577 4 0.8691053 1
## 578 4 0.8691053 1
## 579 4 0.8691053 1
## 580 4 0.8691053 1
## 581 4 0.8691053 1
## 582 29 6.3010140 6
## 583 29 6.3010140 6
## 584 58 12.6020300 12
## 585 58 12.6020300 12
## 586 34 7.3873950 7
## 587 34 7.3873950 7
## 588 34 7.3873950 7
## 589 34 7.3873950 7
## 590 34 7.3873950 7
## 591 34 7.3873950 7
## 592 350 76.0467200 74
## 593 64 13.9056900 13
## 594 20 4.3455270 4
## 595 30 6.5182900 6
## 596 30 6.5182900 6
## 597 15 3.2591450 3
## 598 50 10.8638200 10
## 599 10 2.1727630 2
## 600 10 2.1727630 2
## 601 10 2.1727630 2
## 602 94 20.4239800 19
## 603 279 60.6201000 58
## 604 185 40.1961200 38
## 605 185 40.1961200 38
## 606 31 6.7355660 6
## 607 346 75.1776100 72
## 608 46 9.9947110 9
## 609 26 5.6491850 5
## 610 26 5.6491850 5
## 611 26 5.6491850 5
## 612 26 5.6491850 5
## 613 21 4.5628030 4
## 614 21 4.5628030 4
## 615 21 4.5628030 4
## 616 21 4.5628030 4
## 617 21 4.5628030 4
## 618 21 4.5628030 4
## 619 5 1.0863820 1
## 620 5 1.0863820 1
## 621 5 1.0863820 1
## 622 5 1.0863820 1
## 623 5 1.0863820 1
## 624 5 1.0863820 1
## 625 5 1.0863820 1
## 626 5 1.0863820 1
## 627 5 1.0863820 1
## 628 5 1.0863820 1
## 629 5 1.0863820 1
## 630 5 1.0863820 1
## 631 5 1.0863820 1
## 632 5 1.0863820 1
## 633 5 1.0863820 1
## 634 5 1.0863820 1
## 635 5 1.0863820 1
## 636 5 1.0863820 1
## 637 5 1.0863820 1
## 638 5 1.0863820 1
## 639 5 1.0863820 1
## 640 5 1.0863820 1
## 641 5 1.0863820 1
## 642 5 1.0863820 1
## 643 5 1.0863820 1
## 644 5 1.0863820 1
## 645 5 1.0863820 1
## 646 16 3.4764210 3
## 647 16 3.4764210 3
## 648 16 3.4764210 3
## 649 16 3.4764210 3
## 650 16 3.4764210 3
## 651 173 37.5888100 35
## 652 52 11.2983700 10
## 653 32 6.9528430 6
## 654 11 2.3900400 2
## 655 11 2.3900400 2
## 656 11 2.3900400 2
## 657 11 2.3900400 2
## 658 11 2.3900400 2
## 659 11 2.3900400 2
## 660 11 2.3900400 2
## 661 11 2.3900400 2
## 662 245 53.2327000 50
## 663 27 5.8664610 5
## 664 27 5.8664610 5
## 665 82 17.8166600 16
## 666 82 17.8166600 16
## 667 198 43.0207100 40
## 668 126 27.3768200 25
## 669 241 52.3636000 49
## 670 241 52.3636000 49
## 671 22 4.7800790 4
## 672 350 76.0467200 72
## 673 350 76.0467200 72
## 674 48 10.4292600 9
## 675 48 10.4292600 9
## 676 290 63.0101400 59
## 677 93 20.2067000 18
## 678 33 7.1701190 6
## 679 33 7.1701190 6
## 680 28 6.0837370 5
## 681 386 83.8686600 79
## 682 386 83.8686600 79
## 683 386 83.8686600 79
## 684 386 83.8686600 79
## 685 386 83.8686600 79
## 686 64 13.9056900 12
## 687 239 51.9290400 48
## 688 84 18.2512100 16
## 689 49 10.6465400 9
## 690 49 10.6465400 9
## 691 49 10.6465400 9
## 692 23 4.9973560 4
## 693 23 4.9973560 4
## 694 23 4.9973560 4
## 695 23 4.9973560 4
## 696 6 1.3036580 1
## 697 6 1.3036580 1
## 698 6 1.3036580 1
## 699 6 1.3036580 1
## 700 6 1.3036580 1
## 701 6 1.3036580 1
## 702 6 1.3036580 1
## 703 6 1.3036580 1
## 704 6 1.3036580 1
## 705 6 1.3036580 1
## 706 6 1.3036580 1
## 707 6 1.3036580 1
## 708 6 1.3036580 1
## 709 6 1.3036580 1
## 710 6 1.3036580 1
## 711 6 1.3036580 1
## 712 6 1.3036580 1
## 713 6 1.3036580 1
## 714 6 1.3036580 1
## 715 6 1.3036580 1
## 716 6 1.3036580 1
## 717 6 1.3036580 1
## 718 6 1.3036580 1
## 719 12 2.6073160 2
## 720 12 2.6073160 2
## 721 12 2.6073160 2
## 722 12 2.6073160 2
## 723 12 2.6073160 2
## 724 44 9.5601590 8
## 725 44 9.5601590 8
## 726 390 84.7377700 79
## 727 390 84.7377700 79
## 728 390 84.7377700 79
## 729 24 5.2146320 4
## 730 13 2.8245920 2
## 731 13 2.8245920 2
## 732 13 2.8245920 2
## 733 13 2.8245920 2
## 734 13 2.8245920 2
## 735 13 2.8245920 2
## 736 13 2.8245920 2
## 737 30 6.5182900 5
## 738 30 6.5182900 5
## 739 19 4.1282500 3
## 740 7 1.5209340 1
## 741 7 1.5209340 1
## 742 7 1.5209340 1
## 743 7 1.5209340 1
## 744 7 1.5209340 1
## 745 7 1.5209340 1
## 746 7 1.5209340 1
## 747 7 1.5209340 1
## 748 7 1.5209340 1
## 749 7 1.5209340 1
## 750 7 1.5209340 1
## 751 7 1.5209340 1
## 752 7 1.5209340 1
## 753 7 1.5209340 1
## 754 201 43.6725400 39
## 755 436 94.7324800 88
## 756 436 94.7324800 88
## 757 25 5.4319080 4
## 758 36 7.8219480 6
## 759 94 20.4239800 17
## 760 14 3.0418690 2
## 761 14 3.0418690 2
## 762 14 3.0418690 2
## 763 20 4.3455270 3
## 764 1033 224.4465000 215
## 765 425 92.3424400 85
## 766 37 8.0392240 6
## 767 26 5.6491850 4
## 768 26 5.6491850 4
## 769 26 5.6491850 4
## 770 8 1.7382110 1
## 771 8 1.7382110 1
## 772 8 1.7382110 1
## 773 8 1.7382110 1
## 774 8 1.7382110 1
## 775 8 1.7382110 1
## 776 8 1.7382110 1
## 777 8 1.7382110 1
## 778 8 1.7382110 1
## 779 8 1.7382110 1
## 780 8 1.7382110 1
## 781 8 1.7382110 1
## 782 8 1.7382110 1
## 783 8 1.7382110 1
## 784 141 30.6359600 26
## 785 196 42.5861600 37
## 786 91 19.7721500 16
## 787 27 5.8664610 4
## 788 167 36.2851500 31
## 789 1860 404.1340000 396
## 790 44 9.5601590 7
## 791 44 9.5601590 7
## 792 1011 219.6664000 209
## 793 76 16.5130000 13
## 794 92 19.9894200 16
## 795 39 8.4737770 6
## 796 531 115.3737000 106
## 797 22 4.7800790 3
## 798 28 6.0837370 4
## 799 28 6.0837370 4
## 800 28 6.0837370 4
## 801 144 31.2877900 26
## 802 144 31.2877900 26
## 803 144 31.2877900 26
## 804 9 1.9554870 1
## 805 9 1.9554870 1
## 806 9 1.9554870 1
## 807 9 1.9554870 1
## 808 9 1.9554870 1
## 809 9 1.9554870 1
## 810 9 1.9554870 1
## 811 9 1.9554870 1
## 812 9 1.9554870 1
## 813 9 1.9554870 1
## 814 9 1.9554870 1
## 815 9 1.9554870 1
## 816 9 1.9554870 1
## 817 9 1.9554870 1
## 818 9 1.9554870 1
## 819 9 1.9554870 1
## 820 9 1.9554870 1
## 821 9 1.9554870 1
## 822 9 1.9554870 1
## 823 9 1.9554870 1
## 824 124 26.9422700 22
## 825 727 157.9599000 147
## 826 155 33.6778300 28
## 827 29 6.3010140 4
## 828 23 4.9973560 3
## 829 23 4.9973560 3
## 830 58 12.6020300 9
## 831 17 3.6936980 2
## 832 17 3.6936980 2
## 833 10 2.1727630 1
## 834 10 2.1727630 1
## 835 10 2.1727630 1
## 836 10 2.1727630 1
## 837 248 53.8845300 46
## 838 91 19.7721500 15
## 839 30 6.5182900 4
## 840 30 6.5182900 4
## 841 30 6.5182900 4
## 842 733 159.2636000 147
## 843 36 7.8219480 5
## 844 48 10.4292600 7
## 845 416 90.3869500 80
## 846 54 11.7329200 8
## 847 484 105.1617000 94
## 848 18 3.9109740 2
## 849 18 3.9109740 2
## 850 145 31.5050700 25
## 851 43 9.3428820 6
## 852 11 2.3900400 1
## 853 11 2.3900400 1
## 854 11 2.3900400 1
## 855 11 2.3900400 1
## 856 11 2.3900400 1
## 857 11 2.3900400 1
## 858 11 2.3900400 1
## 859 11 2.3900400 1
## 860 25 5.4319080 3
## 861 55 11.9502000 8
## 862 50 10.8638200 7
## 863 50 10.8638200 7
## 864 26 5.6491850 3
## 865 26 5.6491850 3
## 866 84 18.2512100 13
## 867 106 23.0312900 17
## 868 12 2.6073160 1
## 869 12 2.6073160 1
## 870 12 2.6073160 1
## 871 12 2.6073160 1
## 872 12 2.6073160 1
## 873 12 2.6073160 1
## 874 39 8.4737770 5
## 875 476 103.4235000 91
## 876 33 7.1701190 4
## 877 33 7.1701190 4
## 878 27 5.8664610 3
## 879 27 5.8664610 3
## 880 27 5.8664610 3
## 881 298 64.7483500 54
## 882 64 13.9056900 9
## 883 13 2.8245920 1
## 884 13 2.8245920 1
## 885 13 2.8245920 1
## 886 13 2.8245920 1
## 887 13 2.8245920 1
## 888 13 2.8245920 1
## 889 13 2.8245920 1
## 890 13 2.8245920 1
## 891 13 2.8245920 1
## 892 13 2.8245920 1
## 893 109 23.6831200 17
## 894 21 4.5628030 2
## 895 225 48.8871700 39
## 896 14 3.0418690 1
## 897 14 3.0418690 1
## 898 14 3.0418690 1
## 899 36 7.8219480 4
## 900 197 42.8034400 33
## 901 23 4.9973560 2
## 902 23 4.9973560 2
## 903 23 4.9973560 2
## 904 15 3.2591450 1
## 905 15 3.2591450 1
## 906 15 3.2591450 1
## 907 15 3.2591450 1
## 908 15 3.2591450 1
## 909 24 5.2146320 2
## 910 16 3.4764210 1
## 911 64 13.9056900 8
## 912 64 13.9056900 8
## 913 25 5.4319080 2
## 914 25 5.4319080 2
## 915 203 44.1071000 33
## 916 100 21.7276300 14
## 917 100 21.7276300 14
## 918 17 3.6936980 1
## 919 17 3.6936980 1
## 920 107 23.2485700 15
## 921 153 33.2432800 23
## 922 159 34.5469400 24
## 923 27 5.8664610 2
## 924 19 4.1282500 1
## 925 75 16.2957200 9
## 926 36 7.8219480 3
## 927 44 9.5601590 4
## 928 83 18.0339400 10
## 929 65 14.1229600 7
## 930 131 28.4632000 18
## 931 30 6.5182900 2
## 932 22 4.7800790 1
## 933 74 16.0784500 8
## 934 23 4.9973560 1
## 935 23 4.9973560 1
## 936 69 14.9920700 7
## 937 226 49.1044500 34
## 938 34 7.3873950 2
## 939 58 12.6020300 5
## 940 72 15.6439000 7
## 941 241 52.3636000 36
## 942 51 11.0810900 4
## 943 263 57.1436800 40
## 944 176 38.2406300 24
## 945 74 16.0784500 7
## 946 288 62.5755800 44
## 947 27 5.8664610 1
## 948 179 38.8924600 24
## 949 185 40.1961200 25
## 950 51 11.0810900 3
## 951 189 41.0652300 24
## 952 60 13.0365800 4
## 953 34 7.3873950 1
## 954 250 54.3190800 33
## 955 246 53.4499800 32
## 956 40 8.6910530 1
## 957 239 51.9290400 30
## 958 78 16.9475500 5
## 959 67 14.5575100 3
## 960 0 0.0000000 0
## 961 0 0.0000000 0
## 962 0 0.0000000 0
## 963 0 0.0000000 0
## 964 9 1.9554870 0
## 965 0 0.0000000 0
## 966 0 0.0000000 0
## 967 0 0.0000000 0
## 968 0 0.0000000 0
## 969 0 0.0000000 0
## 970 0 0.0000000 0
## 971 0 0.0000000 0
## 972 0 0.0000000 0
## 973 0 0.0000000 0
## 974 0 0.0000000 0
## 975 3 0.6518290 0
## 976 0 0.0000000 0
## 977 0 0.0000000 0
## 978 1 0.2172763 0
## 979 0 0.0000000 0
## 980 1 0.2172763 0
## 981 0 0.0000000 0
## 982 0 0.0000000 0
## 983 0 0.0000000 0
## 984 0 0.0000000 0
## 985 0 0.0000000 0
## 986 0 0.0000000 0
## 987 0 0.0000000 0
## 988 0 0.0000000 0
## 989 2 0.4345527 0
## 990 0 0.0000000 0
## 991 1 0.2172763 0
## 992 0 0.0000000 0
## 993 0 0.0000000 0
## 994 0 0.0000000 0
## 995 2 0.4345527 0
## 996 0 0.0000000 0
## 997 2 0.4345527 0
## 998 0 0.0000000 0
## 999 3 0.6518290 0
## 1000 0 0.0000000 0
## 1001 0 0.0000000 0
## 1002 0 0.0000000 0
## 1003 0 0.0000000 0
## 1004 0 0.0000000 0
## 1005 0 0.0000000 0
## 1006 0 0.0000000 0
## 1007 0 0.0000000 0
## 1008 0 0.0000000 0
## 1009 0 0.0000000 0
## 1010 0 0.0000000 0
## 1011 0 0.0000000 0
## 1012 5 1.0863820 0
## 1013 0 0.0000000 0
## 1014 0 0.0000000 0
## 1015 0 0.0000000 0
## 1016 0 0.0000000 0
## 1017 0 0.0000000 0
## 1018 0 0.0000000 0
## 1019 0 0.0000000 0
## 1020 0 0.0000000 0
## 1021 0 0.0000000 0
## 1022 0 0.0000000 0
## 1023 0 0.0000000 0
## 1024 0 0.0000000 0
## 1025 0 0.0000000 0
## 1026 0 0.0000000 0
## 1027 0 0.0000000 0
## 1028 0 0.0000000 0
## 1029 0 0.0000000 0
## 1030 0 0.0000000 0
## 1031 0 0.0000000 0
## 1032 1 0.2172763 0
## 1033 1 0.2172763 0
## 1034 0 0.0000000 0
## 1035 1 0.2172763 0
## 1036 1 0.2172763 0
## 1037 1 0.2172763 0
## 1038 0 0.0000000 0
## 1039 0 0.0000000 0
## 1040 0 0.0000000 0
## 1041 0 0.0000000 0
## 1042 1 0.2172763 0
## 1043 0 0.0000000 0
## 1044 0 0.0000000 0
## 1045 0 0.0000000 0
## 1046 0 0.0000000 0
## 1047 1 0.2172763 0
## 1048 0 0.0000000 0
## 1049 5 1.0863820 0
## 1050 17 3.6936980 0
## 1051 0 0.0000000 0
## 1052 0 0.0000000 0
## 1053 0 0.0000000 0
## 1054 0 0.0000000 0
## 1055 0 0.0000000 0
## 1056 0 0.0000000 0
## 1057 1 0.2172763 0
## 1058 10 2.1727630 0
## 1059 10 2.1727630 0
## 1060 0 0.0000000 0
## 1061 0 0.0000000 0
## 1062 0 0.0000000 0
## 1063 0 0.0000000 0
## 1064 0 0.0000000 0
## 1065 0 0.0000000 0
## 1066 3 0.6518290 0
## 1067 0 0.0000000 0
## 1068 0 0.0000000 0
## 1069 0 0.0000000 0
## 1070 0 0.0000000 0
## 1071 0 0.0000000 0
## 1072 0 0.0000000 0
## 1073 2 0.4345527 0
## 1074 0 0.0000000 0
## 1075 0 0.0000000 0
## 1076 0 0.0000000 0
## 1077 0 0.0000000 0
## 1078 4 0.8691053 0
## 1079 0 0.0000000 0
## 1080 0 0.0000000 0
## 1081 0 0.0000000 0
## 1082 0 0.0000000 0
## 1083 0 0.0000000 0
## 1084 0 0.0000000 0
## 1085 0 0.0000000 0
## 1086 0 0.0000000 0
## 1087 2 0.4345527 0
## 1088 1 0.2172763 0
## 1089 0 0.0000000 0
## 1090 0 0.0000000 0
## 1091 0 0.0000000 0
## 1092 0 0.0000000 0
## 1093 0 0.0000000 0
## 1094 0 0.0000000 0
## 1095 5 1.0863820 0
## 1096 0 0.0000000 0
## 1097 0 0.0000000 0
## 1098 50 10.8638200 0
## 1099 0 0.0000000 0
## 1100 0 0.0000000 0
## 1101 0 0.0000000 0
## 1102 2 0.4345527 0
## 1103 0 0.0000000 0
## 1104 0 0.0000000 0
## 1105 0 0.0000000 0
## 1106 0 0.0000000 0
## 1107 0 0.0000000 0
## 1108 0 0.0000000 0
## 1109 0 0.0000000 0
## 1110 5 1.0863820 0
## 1111 0 0.0000000 0
## 1112 2 0.4345527 0
## 1113 4 0.8691053 0
## 1114 4 0.8691053 0
## 1115 0 0.0000000 0
## 1116 0 0.0000000 0
## 1117 4 0.8691053 0
## 1118 4 0.8691053 0
## 1119 0 0.0000000 0
## 1120 4 0.8691053 0
## 1121 0 0.0000000 0
## 1122 1 0.2172763 0
## 1123 0 0.0000000 0
## 1124 5 1.0863820 0
## 1125 7 1.5209340 0
## 1126 0 0.0000000 0
## 1127 1 0.2172763 0
## 1128 0 0.0000000 0
## 1129 0 0.0000000 0
## 1130 0 0.0000000 0
## 1131 0 0.0000000 0
## 1132 0 0.0000000 0
## 1133 0 0.0000000 0
## 1134 0 0.0000000 0
## 1135 0 0.0000000 0
## 1136 0 0.0000000 0
## 1137 0 0.0000000 0
## 1138 0 0.0000000 0
## 1139 2 0.4345527 0
## 1140 0 0.0000000 0
## 1141 4 0.8691053 0
## 1142 0 0.0000000 0
## 1143 0 0.0000000 0
## 1144 0 0.0000000 0
## 1145 0 0.0000000 0
## 1146 1 0.2172763 0
## 1147 0 0.0000000 0
## 1148 1 0.2172763 0
## 1149 8 1.7382110 0
## 1150 1 0.2172763 0
## 1151 0 0.0000000 0
## 1152 0 0.0000000 0
## 1153 1 0.2172763 0
## 1154 0 0.0000000 0
## 1155 0 0.0000000 0
## 1156 1 0.2172763 0
## 1157 0 0.0000000 0
## 1158 0 0.0000000 0
## 1159 0 0.0000000 0
## 1160 0 0.0000000 0
## 1161 0 0.0000000 0
## 1162 0 0.0000000 0
## 1163 0 0.0000000 0
## 1164 2 0.4345527 0
## 1165 0 0.0000000 0
## 1166 0 0.0000000 0
## 1167 0 0.0000000 0
## 1168 0 0.0000000 0
## 1169 1 0.2172763 0
## 1170 0 0.0000000 0
## 1171 1 0.2172763 0
## 1172 0 0.0000000 0
## 1173 2 0.4345527 0
## 1174 0 0.0000000 0
## 1175 0 0.0000000 0
## 1176 0 0.0000000 0
## 1177 0 0.0000000 0
## 1178 0 0.0000000 0
## 1179 0 0.0000000 0
## 1180 0 0.0000000 0
## 1181 0 0.0000000 0
## 1182 0 0.0000000 0
## 1183 0 0.0000000 0
## 1184 0 0.0000000 0
## 1185 0 0.0000000 0
## 1186 0 0.0000000 0
## 1187 2 0.4345527 0
## 1188 0 0.0000000 0
## 1189 0 0.0000000 0
## 1190 0 0.0000000 0
## 1191 0 0.0000000 0
## 1192 0 0.0000000 0
## 1193 0 0.0000000 0
## 1194 0 0.0000000 0
## 1195 0 0.0000000 0
## 1196 0 0.0000000 0
## 1197 0 0.0000000 0
## 1198 0 0.0000000 0
## 1199 0 0.0000000 0
## 1200 1 0.2172763 0
## 1201 0 0.0000000 0
## 1202 0 0.0000000 0
## 1203 0 0.0000000 0
## 1204 1 0.2172763 0
## 1205 0 0.0000000 0
## 1206 0 0.0000000 0
## 1207 0 0.0000000 0
## 1208 0 0.0000000 0
## 1209 0 0.0000000 0
## 1210 0 0.0000000 0
## 1211 0 0.0000000 0
## 1212 0 0.0000000 0
## 1213 2 0.4345527 0
## 1214 0 0.0000000 0
## 1215 0 0.0000000 0
## 1216 0 0.0000000 0
## 1217 0 0.0000000 0
## 1218 0 0.0000000 0
## 1219 0 0.0000000 0
## 1220 0 0.0000000 0
## 1221 0 0.0000000 0
## 1222 0 0.0000000 0
## 1223 1 0.2172763 0
## 1224 0 0.0000000 0
## 1225 0 0.0000000 0
## 1226 2 0.4345527 0
## 1227 0 0.0000000 0
## 1228 0 0.0000000 0
## 1229 2 0.4345527 0
## 1230 0 0.0000000 0
## 1231 0 0.0000000 0
## 1232 0 0.0000000 0
## 1233 0 0.0000000 0
## 1234 0 0.0000000 0
## 1235 0 0.0000000 0
## 1236 0 0.0000000 0
## 1237 0 0.0000000 0
## 1238 0 0.0000000 0
## 1239 2 0.4345527 0
## 1240 0 0.0000000 0
## 1241 2 0.4345527 0
## 1242 0 0.0000000 0
## 1243 0 0.0000000 0
## 1244 0 0.0000000 0
## 1245 0 0.0000000 0
## 1246 1 0.2172763 0
## 1247 0 0.0000000 0
## 1248 0 0.0000000 0
## 1249 0 0.0000000 0
## 1250 0 0.0000000 0
## 1251 0 0.0000000 0
## 1252 0 0.0000000 0
## 1253 0 0.0000000 0
## 1254 0 0.0000000 0
## 1255 0 0.0000000 0
## 1256 0 0.0000000 0
## 1257 0 0.0000000 0
## 1258 1 0.2172763 0
## 1259 0 0.0000000 0
## 1260 0 0.0000000 0
## 1261 0 0.0000000 0
## 1262 0 0.0000000 0
## 1263 0 0.0000000 0
## 1264 0 0.0000000 0
## 1265 0 0.0000000 0
## 1266 0 0.0000000 0
## 1267 0 0.0000000 0
## 1268 0 0.0000000 0
## 1269 0 0.0000000 0
## 1270 0 0.0000000 0
## 1271 0 0.0000000 0
## 1272 0 0.0000000 0
## 1273 0 0.0000000 0
## 1274 0 0.0000000 0
## 1275 0 0.0000000 0
## 1276 0 0.0000000 0
## 1277 0 0.0000000 0
## 1278 0 0.0000000 0
## 1279 0 0.0000000 0
## 1280 0 0.0000000 0
## 1281 0 0.0000000 0
## 1282 0 0.0000000 0
## 1283 0 0.0000000 0
## 1284 0 0.0000000 0
## 1285 0 0.0000000 0
## 1286 0 0.0000000 0
## 1287 0 0.0000000 0
## 1288 0 0.0000000 0
## 1289 0 0.0000000 0
## 1290 0 0.0000000 0
## 1291 0 0.0000000 0
## 1292 0 0.0000000 0
## 1293 0 0.0000000 0
## 1294 0 0.0000000 0
## 1295 0 0.0000000 0
## 1296 0 0.0000000 0
## 1297 0 0.0000000 0
## 1298 0 0.0000000 0
## 1299 1 0.2172763 0
## 1300 0 0.0000000 0
## 1301 0 0.0000000 0
## 1302 1 0.2172763 0
## 1303 0 0.0000000 0
## 1304 0 0.0000000 0
## 1305 0 0.0000000 0
## 1306 0 0.0000000 0
## 1307 0 0.0000000 0
## 1308 0 0.0000000 0
## 1309 0 0.0000000 0
## 1310 0 0.0000000 0
## 1311 0 0.0000000 0
## 1312 4 0.8691053 0
## 1313 0 0.0000000 0
## 1314 4 0.8691053 0
## 1315 4 0.8691053 0
## 1316 0 0.0000000 0
## 1317 0 0.0000000 0
## 1318 0 0.0000000 0
## 1319 0 0.0000000 0
## 1320 0 0.0000000 0
## 1321 1 0.2172763 0
## 1322 0 0.0000000 0
## 1323 0 0.0000000 0
## 1324 0 0.0000000 0
## 1325 2 0.4345527 0
## 1326 2 0.4345527 0
## 1327 0 0.0000000 0
## 1328 0 0.0000000 0
## 1329 0 0.0000000 0
## 1330 0 0.0000000 0
## 1331 0 0.0000000 0
## 1332 0 0.0000000 0
## 1333 0 0.0000000 0
## 1334 0 0.0000000 0
## 1335 0 0.0000000 0
## 1336 0 0.0000000 0
## 1337 0 0.0000000 0
## 1338 0 0.0000000 0
## 1339 0 0.0000000 0
## 1340 0 0.0000000 0
## 1341 0 0.0000000 0
## 1342 0 0.0000000 0
## 1343 2 0.4345527 0
## 1344 0 0.0000000 0
## 1345 0 0.0000000 0
## 1346 0 0.0000000 0
## 1347 0 0.0000000 0
## 1348 0 0.0000000 0
## 1349 0 0.0000000 0
## 1350 0 0.0000000 0
## 1351 0 0.0000000 0
## 1352 2 0.4345527 0
## 1353 0 0.0000000 0
## 1354 0 0.0000000 0
## 1355 3 0.6518290 0
## 1356 0 0.0000000 0
## 1357 2 0.4345527 0
## 1358 0 0.0000000 0
## 1359 0 0.0000000 0
## 1360 0 0.0000000 0
## 1361 0 0.0000000 0
## 1362 0 0.0000000 0
## 1363 0 0.0000000 0
## 1364 2 0.4345527 0
## 1365 1 0.2172763 0
## 1366 0 0.0000000 0
## 1367 0 0.0000000 0
## 1368 0 0.0000000 0
## 1369 0 0.0000000 0
## 1370 0 0.0000000 0
## 1371 0 0.0000000 0
## 1372 0 0.0000000 0
## 1373 0 0.0000000 0
## 1374 0 0.0000000 0
## 1375 0 0.0000000 0
## 1376 0 0.0000000 0
## 1377 0 0.0000000 0
## 1378 0 0.0000000 0
## 1379 0 0.0000000 0
## 1380 0 0.0000000 0
## 1381 0 0.0000000 0
## 1382 0 0.0000000 0
## 1383 0 0.0000000 0
## 1384 0 0.0000000 0
## 1385 0 0.0000000 0
## 1386 0 0.0000000 0
## 1387 0 0.0000000 0
## 1388 1 0.2172763 0
## 1389 0 0.0000000 0
## 1390 0 0.0000000 0
## 1391 4 0.8691053 0
## 1392 0 0.0000000 0
## 1393 0 0.0000000 0
## 1394 0 0.0000000 0
## 1395 0 0.0000000 0
## 1396 1 0.2172763 0
## 1397 0 0.0000000 0
## 1398 0 0.0000000 0
## 1399 0 0.0000000 0
## 1400 0 0.0000000 0
## 1401 0 0.0000000 0
## 1402 4 0.8691053 0
## 1403 0 0.0000000 0
## 1404 0 0.0000000 0
## 1405 0 0.0000000 0
## 1406 0 0.0000000 0
## 1407 0 0.0000000 0
## 1408 0 0.0000000 0
## 1409 0 0.0000000 0
## 1410 0 0.0000000 0
## 1411 0 0.0000000 0
## 1412 8 1.7382110 0
## 1413 0 0.0000000 0
## 1414 0 0.0000000 0
## 1415 0 0.0000000 0
## 1416 0 0.0000000 0
## 1417 0 0.0000000 0
## 1418 0 0.0000000 0
## 1419 0 0.0000000 0
## 1420 3 0.6518290 0
## 1421 0 0.0000000 0
## 1422 2 0.4345527 0
## 1423 0 0.0000000 0
## 1424 0 0.0000000 0
## 1425 0 0.0000000 0
## 1426 10 2.1727630 0
## 1427 0 0.0000000 0
## 1428 0 0.0000000 0
## 1429 0 0.0000000 0
## 1430 0 0.0000000 0
## 1431 0 0.0000000 0
## 1432 2 0.4345527 0
## 1433 0 0.0000000 0
## 1434 1 0.2172763 0
## 1435 0 0.0000000 0
## 1436 0 0.0000000 0
## 1437 1 0.2172763 0
## 1438 2 0.4345527 0
## 1439 0 0.0000000 0
## 1440 0 0.0000000 0
## 1441 0 0.0000000 0
## 1442 0 0.0000000 0
## 1443 0 0.0000000 0
## 1444 0 0.0000000 0
## 1445 0 0.0000000 0
## 1446 0 0.0000000 0
## 1447 0 0.0000000 0
## 1448 0 0.0000000 0
## 1449 0 0.0000000 0
## 1450 0 0.0000000 0
## 1451 0 0.0000000 0
## 1452 1 0.2172763 0
## 1453 0 0.0000000 0
## 1454 0 0.0000000 0
## 1455 2 0.4345527 0
## 1456 0 0.0000000 0
## 1457 0 0.0000000 0
## 1458 1 0.2172763 0
## 1459 0 0.0000000 0
## 1460 0 0.0000000 0
## 1461 0 0.0000000 0
## 1462 0 0.0000000 0
## 1463 0 0.0000000 0
## 1464 0 0.0000000 0
## 1465 0 0.0000000 0
## 1466 0 0.0000000 0
## 1467 0 0.0000000 0
## 1468 0 0.0000000 0
## 1469 0 0.0000000 0
## 1470 0 0.0000000 0
## 1471 0 0.0000000 0
## 1472 0 0.0000000 0
## 1473 0 0.0000000 0
## 1474 0 0.0000000 0
## 1475 0 0.0000000 0
## 1476 0 0.0000000 0
## 1477 0 0.0000000 0
## 1478 0 0.0000000 0
## 1479 0 0.0000000 0
## 1480 0 0.0000000 0
## 1481 0 0.0000000 0
## 1482 5 1.0863820 0
## 1483 0 0.0000000 0
## 1484 1 0.2172763 0
## 1485 0 0.0000000 0
## 1486 1 0.2172763 0
## 1487 0 0.0000000 0
## 1488 0 0.0000000 0
## 1489 0 0.0000000 0
## 1490 0 0.0000000 0
## 1491 0 0.0000000 0
## 1492 0 0.0000000 0
## 1493 0 0.0000000 0
## 1494 0 0.0000000 0
## 1495 0 0.0000000 0
## 1496 0 0.0000000 0
## 1497 0 0.0000000 0
## 1498 0 0.0000000 0
## 1499 2 0.4345527 0
## 1500 0 0.0000000 0
## 1501 0 0.0000000 0
## 1502 0 0.0000000 0
## 1503 0 0.0000000 0
## 1504 0 0.0000000 0
## 1505 0 0.0000000 0
## 1506 0 0.0000000 0
## 1507 1 0.2172763 0
## 1508 0 0.0000000 0
## 1509 1 0.2172763 0
## 1510 0 0.0000000 0
## 1511 0 0.0000000 0
## 1512 0 0.0000000 0
## 1513 0 0.0000000 0
## 1514 0 0.0000000 0
## 1515 0 0.0000000 0
## 1516 0 0.0000000 0
## 1517 0 0.0000000 0
## 1518 0 0.0000000 0
## 1519 0 0.0000000 0
## 1520 0 0.0000000 0
## 1521 0 0.0000000 0
## 1522 0 0.0000000 0
## 1523 0 0.0000000 0
## 1524 0 0.0000000 0
## 1525 0 0.0000000 0
## 1526 1 0.2172763 0
## 1527 0 0.0000000 0
## 1528 1 0.2172763 0
## 1529 0 0.0000000 0
## 1530 1 0.2172763 0
## 1531 1 0.2172763 0
## 1532 8 1.7382110 0
## 1533 0 0.0000000 0
## 1534 0 0.0000000 0
## 1535 0 0.0000000 0
## 1536 0 0.0000000 0
## 1537 0 0.0000000 0
## 1538 0 0.0000000 0
## 1539 1 0.2172763 0
## 1540 0 0.0000000 0
## 1541 0 0.0000000 0
## 1542 0 0.0000000 0
## 1543 0 0.0000000 0
## 1544 0 0.0000000 0
## 1545 0 0.0000000 0
## 1546 0 0.0000000 0
## 1547 0 0.0000000 0
## 1548 0 0.0000000 0
## 1549 0 0.0000000 0
## 1550 0 0.0000000 0
## 1551 0 0.0000000 0
## 1552 0 0.0000000 0
## 1553 2 0.4345527 0
## 1554 0 0.0000000 0
## 1555 0 0.0000000 0
## 1556 3 0.6518290 0
## 1557 0 0.0000000 0
## 1558 0 0.0000000 0
## 1559 2 0.4345527 0
## 1560 0 0.0000000 0
## 1561 0 0.0000000 0
## 1562 0 0.0000000 0
## 1563 0 0.0000000 0
## 1564 0 0.0000000 0
## 1565 0 0.0000000 0
## 1566 0 0.0000000 0
## 1567 0 0.0000000 0
## 1568 0 0.0000000 0
## 1569 0 0.0000000 0
## 1570 0 0.0000000 0
## 1571 0 0.0000000 0
## 1572 1 0.2172763 0
## 1573 0 0.0000000 0
## 1574 0 0.0000000 0
## 1575 0 0.0000000 0
## 1576 0 0.0000000 0
## 1577 0 0.0000000 0
## 1578 0 0.0000000 0
## 1579 0 0.0000000 0
## 1580 0 0.0000000 0
## 1581 0 0.0000000 0
## 1582 0 0.0000000 0
## 1583 0 0.0000000 0
## 1584 2 0.4345527 0
## 1585 3 0.6518290 0
## 1586 0 0.0000000 0
## 1587 0 0.0000000 0
## 1588 7 1.5209340 0
## 1589 0 0.0000000 0
## 1590 0 0.0000000 0
## 1591 0 0.0000000 0
## 1592 3 0.6518290 0
## 1593 3 0.6518290 0
## 1594 0 0.0000000 0
## 1595 2 0.4345527 0
## 1596 0 0.0000000 0
## 1597 0 0.0000000 0
## 1598 0 0.0000000 0
## 1599 2 0.4345527 0
## 1600 0 0.0000000 0
## 1601 0 0.0000000 0
## 1602 0 0.0000000 0
## 1603 0 0.0000000 0
## 1604 0 0.0000000 0
## 1605 0 0.0000000 0
## 1606 2 0.4345527 0
## 1607 0 0.0000000 0
## 1608 11 2.3900400 0
## 1609 0 0.0000000 0
## 1610 0 0.0000000 0
## 1611 0 0.0000000 0
## 1612 0 0.0000000 0
## 1613 0 0.0000000 0
## 1614 0 0.0000000 0
## 1615 0 0.0000000 0
## 1616 0 0.0000000 0
## 1617 0 0.0000000 0
## 1618 2 0.4345527 0
## 1619 0 0.0000000 0
## 1620 0 0.0000000 0
## 1621 0 0.0000000 0
## 1622 0 0.0000000 0
## 1623 0 0.0000000 0
## 1624 0 0.0000000 0
## 1625 0 0.0000000 0
## 1626 0 0.0000000 0
## 1627 0 0.0000000 0
## 1628 0 0.0000000 0
## 1629 0 0.0000000 0
## 1630 0 0.0000000 0
## 1631 0 0.0000000 0
## 1632 0 0.0000000 0
## 1633 0 0.0000000 0
## 1634 0 0.0000000 0
## 1635 0 0.0000000 0
## 1636 1 0.2172763 0
## 1637 0 0.0000000 0
## 1638 0 0.0000000 0
## 1639 0 0.0000000 0
## 1640 0 0.0000000 0
## 1641 0 0.0000000 0
## 1642 0 0.0000000 0
## 1643 0 0.0000000 0
## 1644 0 0.0000000 0
## 1645 0 0.0000000 0
## 1646 0 0.0000000 0
## 1647 0 0.0000000 0
## 1648 0 0.0000000 0
## 1649 0 0.0000000 0
## 1650 0 0.0000000 0
## 1651 0 0.0000000 0
## 1652 0 0.0000000 0
## 1653 0 0.0000000 0
## 1654 0 0.0000000 0
## 1655 0 0.0000000 0
## 1656 0 0.0000000 0
## 1657 0 0.0000000 0
## 1658 0 0.0000000 0
## 1659 0 0.0000000 0
## 1660 0 0.0000000 0
## 1661 0 0.0000000 0
## 1662 0 0.0000000 0
## 1663 0 0.0000000 0
## 1664 0 0.0000000 0
## 1665 1 0.2172763 0
## 1666 0 0.0000000 0
## 1667 0 0.0000000 0
## 1668 0 0.0000000 0
## 1669 0 0.0000000 0
## 1670 0 0.0000000 0
## 1671 0 0.0000000 0
## 1672 0 0.0000000 0
## 1673 1 0.2172763 0
## 1674 0 0.0000000 0
## 1675 0 0.0000000 0
## 1676 0 0.0000000 0
## 1677 0 0.0000000 0
## 1678 2 0.4345527 0
## 1679 2 0.4345527 0
## 1680 0 0.0000000 0
## 1681 0 0.0000000 0
## 1682 0 0.0000000 0
## 1683 0 0.0000000 0
## 1684 0 0.0000000 0
## 1685 0 0.0000000 0
## 1686 0 0.0000000 0
## 1687 0 0.0000000 0
## 1688 2 0.4345527 0
## 1689 0 0.0000000 0
## 1690 0 0.0000000 0
## 1691 0 0.0000000 0
## 1692 2 0.4345527 0
## 1693 0 0.0000000 0
## 1694 2 0.4345527 0
## 1695 0 0.0000000 0
## 1696 0 0.0000000 0
## 1697 1 0.2172763 0
## 1698 4 0.8691053 0
## 1699 0 0.0000000 0
## 1700 4 0.8691053 0
## 1701 0 0.0000000 0
## 1702 4 0.8691053 0
## 1703 1 0.2172763 0
## 1704 1 0.2172763 0
## 1705 1 0.2172763 0
## 1706 0 0.0000000 0
## 1707 3 0.6518290 0
## 1708 0 0.0000000 0
## 1709 0 0.0000000 0
## 1710 0 0.0000000 0
## 1711 0 0.0000000 0
## 1712 0 0.0000000 0
## 1713 0 0.0000000 0
## 1714 0 0.0000000 0
## 1715 0 0.0000000 0
## 1716 0 0.0000000 0
## 1717 0 0.0000000 0
## 1718 0 0.0000000 0
## 1719 3 0.6518290 0
## 1720 0 0.0000000 0
## 1721 0 0.0000000 0
## 1722 0 0.0000000 0
## 1723 0 0.0000000 0
## 1724 0 0.0000000 0
## 1725 0 0.0000000 0
## 1726 0 0.0000000 0
## 1727 0 0.0000000 0
## 1728 0 0.0000000 0
## 1729 0 0.0000000 0
## 1730 0 0.0000000 0
## 1731 0 0.0000000 0
## 1732 0 0.0000000 0
## 1733 0 0.0000000 0
## 1734 0 0.0000000 0
## 1735 0 0.0000000 0
## 1736 6 1.3036580 0
## 1737 0 0.0000000 0
## 1738 0 0.0000000 0
## 1739 0 0.0000000 0
## 1740 1 0.2172763 0
## 1741 0 0.0000000 0
## 1742 0 0.0000000 0
## 1743 4 0.8691053 0
## 1744 6 1.3036580 0
## 1745 6 1.3036580 0
## 1746 6 1.3036580 0
## 1747 0 0.0000000 0
## 1748 5 1.0863820 0
## 1749 1 0.2172763 0
## 1750 0 0.0000000 0
## 1751 0 0.0000000 0
## 1752 0 0.0000000 0
## 1753 0 0.0000000 0
## 1754 0 0.0000000 0
## 1755 0 0.0000000 0
## 1756 0 0.0000000 0
## 1757 0 0.0000000 0
## 1758 3 0.6518290 0
## 1759 5 1.0863820 0
## 1760 0 0.0000000 0
## 1761 0 0.0000000 0
## 1762 0 0.0000000 0
## 1763 0 0.0000000 0
## 1764 0 0.0000000 0
## 1765 0 0.0000000 0
## 1766 0 0.0000000 0
## 1767 0 0.0000000 0
## 1768 0 0.0000000 0
## 1769 0 0.0000000 0
## 1770 0 0.0000000 0
## 1771 0 0.0000000 0
## 1772 1 0.2172763 0
## 1773 3 0.6518290 0
## 1774 0 0.0000000 0
## 1775 0 0.0000000 0
## 1776 0 0.0000000 0
## 1777 0 0.0000000 0
## 1778 0 0.0000000 0
## 1779 0 0.0000000 0
## 1780 1 0.2172763 0
## 1781 3 0.6518290 0
## 1782 1 0.2172763 0
## 1783 5 1.0863820 0
## 1784 0 0.0000000 0
## 1785 0 0.0000000 0
## 1786 0 0.0000000 0
## 1787 0 0.0000000 0
## 1788 0 0.0000000 0
## 1789 0 0.0000000 0
## 1790 0 0.0000000 0
## 1791 0 0.0000000 0
## 1792 0 0.0000000 0
## 1793 0 0.0000000 0
## 1794 0 0.0000000 0
## 1795 9 1.9554870 0
## 1796 0 0.0000000 0
## 1797 0 0.0000000 0
## 1798 1 0.2172763 0
## 1799 0 0.0000000 0
## 1800 1 0.2172763 0
## 1801 0 0.0000000 0
## 1802 11 2.3900400 0
## 1803 0 0.0000000 0
## 1804 0 0.0000000 0
## 1805 0 0.0000000 0
## 1806 0 0.0000000 0
## 1807 0 0.0000000 0
## 1808 0 0.0000000 0
## 1809 0 0.0000000 0
## 1810 1 0.2172763 0
## 1811 0 0.0000000 0
## 1812 0 0.0000000 0
## 1813 9 1.9554870 0
## 1814 0 0.0000000 0
## 1815 0 0.0000000 0
## 1816 2 0.4345527 0
## 1817 0 0.0000000 0
## 1818 0 0.0000000 0
## 1819 5 1.0863820 0
## 1820 0 0.0000000 0
## 1821 0 0.0000000 0
## 1822 0 0.0000000 0
## 1823 0 0.0000000 0
## 1824 15 3.2591450 0
## 1825 0 0.0000000 0
## 1826 4 0.8691053 0
## 1827 0 0.0000000 0
## 1828 0 0.0000000 0
## 1829 0 0.0000000 0
## 1830 0 0.0000000 0
## 1831 0 0.0000000 0
## 1832 6 1.3036580 0
## 1833 0 0.0000000 0
## 1834 0 0.0000000 0
## 1835 0 0.0000000 0
## 1836 0 0.0000000 0
## 1837 0 0.0000000 0
## 1838 0 0.0000000 0
## 1839 3 0.6518290 0
## 1840 0 0.0000000 0
## 1841 0 0.0000000 0
## 1842 2 0.4345527 0
## 1843 0 0.0000000 0
## 1844 2 0.4345527 0
## 1845 0 0.0000000 0
## 1846 0 0.0000000 0
## 1847 0 0.0000000 0
## 1848 0 0.0000000 0
## 1849 0 0.0000000 0
## 1850 0 0.0000000 0
## 1851 0 0.0000000 0
## 1852 2 0.4345527 0
## 1853 9 1.9554870 0
## 1854 24 5.2146320 0
## 1855 0 0.0000000 0
## 1856 0 0.0000000 0
## 1857 6 1.3036580 0
## 1858 0 0.0000000 0
## 1859 0 0.0000000 0
## 1860 0 0.0000000 0
## 1861 1 0.2172763 0
## 1862 0 0.0000000 0
## 1863 0 0.0000000 0
## 1864 0 0.0000000 0
## 1865 0 0.0000000 0
## 1866 0 0.0000000 0
## 1867 0 0.0000000 0
## 1868 3 0.6518290 0
## 1869 0 0.0000000 0
## 1870 0 0.0000000 0
## 1871 0 0.0000000 0
## 1872 0 0.0000000 0
## 1873 0 0.0000000 0
## 1874 1 0.2172763 0
## 1875 0 0.0000000 0
## 1876 0 0.0000000 0
## 1877 2 0.4345527 0
## 1878 5 1.0863820 0
## 1879 5 1.0863820 0
## 1880 5 1.0863820 0
## 1881 0 0.0000000 0
## 1882 2 0.4345527 0
## 1883 2 0.4345527 0
## 1884 3 0.6518290 0
## 1885 0 0.0000000 0
## 1886 0 0.0000000 0
## 1887 0 0.0000000 0
## 1888 0 0.0000000 0
## 1889 0 0.0000000 0
## 1890 0 0.0000000 0
## 1891 0 0.0000000 0
## 1892 0 0.0000000 0
## 1893 0 0.0000000 0
## 1894 0 0.0000000 0
## 1895 0 0.0000000 0
## 1896 0 0.0000000 0
## 1897 0 0.0000000 0
## 1898 0 0.0000000 0
## 1899 2 0.4345527 0
## 1900 1 0.2172763 0
## 1901 1 0.2172763 0
## 1902 0 0.0000000 0
## 1903 0 0.0000000 0
## 1904 0 0.0000000 0
## 1905 0 0.0000000 0
## 1906 0 0.0000000 0
## 1907 0 0.0000000 0
## 1908 0 0.0000000 0
## 1909 0 0.0000000 0
## 1910 0 0.0000000 0
## 1911 0 0.0000000 0
## 1912 2 0.4345527 0
## 1913 4 0.8691053 0
## 1914 0 0.0000000 0
## 1915 0 0.0000000 0
## 1916 2 0.4345527 0
## 1917 2 0.4345527 0
## 1918 0 0.0000000 0
## 1919 3 0.6518290 0
## 1920 1 0.2172763 0
## 1921 1 0.2172763 0
## 1922 0 0.0000000 0
## 1923 0 0.0000000 0
## 1924 0 0.0000000 0
## 1925 0 0.0000000 0
## 1926 0 0.0000000 0
## 1927 0 0.0000000 0
## 1928 1 0.2172763 0
## 1929 6 1.3036580 0
## 1930 0 0.0000000 0
## 1931 1 0.2172763 0
## 1932 0 0.0000000 0
## 1933 0 0.0000000 0
## 1934 0 0.0000000 0
## 1935 0 0.0000000 0
## 1936 0 0.0000000 0
## 1937 0 0.0000000 0
## 1938 0 0.0000000 0
## 1939 0 0.0000000 0
## 1940 2 0.4345527 0
## 1941 2 0.4345527 0
## 1942 0 0.0000000 0
## 1943 0 0.0000000 0
## 1944 0 0.0000000 0
## 1945 0 0.0000000 0
## 1946 0 0.0000000 0
## 1947 0 0.0000000 0
## 1948 0 0.0000000 0
## 1949 1 0.2172763 0
## 1950 0 0.0000000 0
## 1951 0 0.0000000 0
## 1952 0 0.0000000 0
## 1953 0 0.0000000 0
## 1954 5 1.0863820 0
## 1955 0 0.0000000 0
## 1956 0 0.0000000 0
## 1957 0 0.0000000 0
## 1958 0 0.0000000 0
## 1959 0 0.0000000 0
## 1960 7 1.5209340 0
## 1961 1 0.2172763 0
## 1962 1 0.2172763 0
## 1963 0 0.0000000 0
## 1964 5 1.0863820 0
## 1965 1 0.2172763 0
## 1966 1 0.2172763 0
## 1967 0 0.0000000 0
## 1968 5 1.0863820 0
## 1969 0 0.0000000 0
## 1970 1 0.2172763 0
## 1971 9 1.9554870 0
## 1972 0 0.0000000 0
## 1973 0 0.0000000 0
## 1974 0 0.0000000 0
## 1975 0 0.0000000 0
## 1976 0 0.0000000 0
## 1977 0 0.0000000 0
## 1978 0 0.0000000 0
## 1979 0 0.0000000 0
## 1980 0 0.0000000 0
## 1981 0 0.0000000 0
## 1982 0 0.0000000 0
## 1983 0 0.0000000 0
## 1984 0 0.0000000 0
## 1985 0 0.0000000 0
## 1986 0 0.0000000 0
## 1987 0 0.0000000 0
## 1988 3 0.6518290 0
## 1989 2 0.4345527 0
## 1990 0 0.0000000 0
## 1991 2 0.4345527 0
## 1992 0 0.0000000 0
## 1993 0 0.0000000 0
## 1994 0 0.0000000 0
## 1995 0 0.0000000 0
## 1996 1 0.2172763 0
## 1997 0 0.0000000 0
## 1998 0 0.0000000 0
## 1999 0 0.0000000 0
## 2000 0 0.0000000 0
## 2001 0 0.0000000 0
## 2002 0 0.0000000 0
## 2003 3 0.6518290 0
## 2004 0 0.0000000 0
## 2005 0 0.0000000 0
## 2006 3 0.6518290 0
## 2007 0 0.0000000 0
## 2008 0 0.0000000 0
## 2009 0 0.0000000 0
## 2010 0 0.0000000 0
## 2011 0 0.0000000 0
## 2012 0 0.0000000 0
## 2013 0 0.0000000 0
## 2014 0 0.0000000 0
## 2015 0 0.0000000 0
## 2016 0 0.0000000 0
## 2017 0 0.0000000 0
## 2018 10 2.1727630 0
## 2019 0 0.0000000 0
## 2020 1 0.2172763 0
## 2021 0 0.0000000 0
## 2022 0 0.0000000 0
## 2023 0 0.0000000 0
## 2024 0 0.0000000 0
## 2025 0 0.0000000 0
## 2026 0 0.0000000 0
## 2027 0 0.0000000 0
## 2028 0 0.0000000 0
## 2029 2 0.4345527 0
## 2030 2 0.4345527 0
## 2031 0 0.0000000 0
## 2032 7 1.5209340 0
## 2033 0 0.0000000 0
## 2034 0 0.0000000 0
## 2035 0 0.0000000 0
## 2036 0 0.0000000 0
## 2037 0 0.0000000 0
## 2038 0 0.0000000 0
## 2039 0 0.0000000 0
## 2040 0 0.0000000 0
## 2041 0 0.0000000 0
## 2042 2 0.4345527 0
## 2043 0 0.0000000 0
## 2044 0 0.0000000 0
## 2045 0 0.0000000 0
## 2046 0 0.0000000 0
## 2047 0 0.0000000 0
## 2048 0 0.0000000 0
## 2049 1 0.2172763 0
## 2050 1 0.2172763 0
## 2051 0 0.0000000 0
## 2052 0 0.0000000 0
## 2053 0 0.0000000 0
## 2054 0 0.0000000 0
## 2055 0 0.0000000 0
## 2056 0 0.0000000 0
## 2057 0 0.0000000 0
## 2058 0 0.0000000 0
## 2059 0 0.0000000 0
## 2060 1 0.2172763 0
## 2061 0 0.0000000 0
## 2062 0 0.0000000 0
## 2063 0 0.0000000 0
## 2064 0 0.0000000 0
## 2065 0 0.0000000 0
## 2066 0 0.0000000 0
## 2067 5 1.0863820 0
## 2068 0 0.0000000 0
## 2069 0 0.0000000 0
## 2070 0 0.0000000 0
## 2071 0 0.0000000 0
## 2072 0 0.0000000 0
## 2073 0 0.0000000 0
## 2074 0 0.0000000 0
## 2075 0 0.0000000 0
## 2076 0 0.0000000 0
## 2077 0 0.0000000 0
## 2078 0 0.0000000 0
## 2079 0 0.0000000 0
## 2080 0 0.0000000 0
## 2081 0 0.0000000 0
## 2082 0 0.0000000 0
## 2083 0 0.0000000 0
## 2084 0 0.0000000 0
## 2085 0 0.0000000 0
## 2086 1 0.2172763 0
## 2087 0 0.0000000 0
## 2088 7 1.5209340 0
## 2089 1 0.2172763 0
## 2090 0 0.0000000 0
## 2091 0 0.0000000 0
## 2092 1 0.2172763 0
## 2093 0 0.0000000 0
## 2094 0 0.0000000 0
## 2095 0 0.0000000 0
## 2096 1 0.2172763 0
## 2097 0 0.0000000 0
## 2098 0 0.0000000 0
## 2099 0 0.0000000 0
## 2100 0 0.0000000 0
## 2101 0 0.0000000 0
## 2102 0 0.0000000 0
## 2103 0 0.0000000 0
## 2104 0 0.0000000 0
## 2105 1 0.2172763 0
## 2106 0 0.0000000 0
## 2107 0 0.0000000 0
## 2108 0 0.0000000 0
## 2109 1 0.2172763 0
## 2110 0 0.0000000 0
## 2111 0 0.0000000 0
## 2112 0 0.0000000 0
## 2113 0 0.0000000 0
## 2114 0 0.0000000 0
## 2115 2 0.4345527 0
## 2116 0 0.0000000 0
## 2117 12 2.6073160 0
## 2118 0 0.0000000 0
## 2119 0 0.0000000 0
## 2120 0 0.0000000 0
## 2121 0 0.0000000 0
## 2122 0 0.0000000 0
## 2123 2 0.4345527 0
## 2124 0 0.0000000 0
## 2125 0 0.0000000 0
## 2126 0 0.0000000 0
## 2127 0 0.0000000 0
## 2128 3 0.6518290 0
## 2129 0 0.0000000 0
## 2130 0 0.0000000 0
## 2131 0 0.0000000 0
## 2132 0 0.0000000 0
## 2133 4 0.8691053 0
## 2134 0 0.0000000 0
## 2135 1 0.2172763 0
## 2136 0 0.0000000 0
## 2137 0 0.0000000 0
## 2138 0 0.0000000 0
## 2139 0 0.0000000 0
## 2140 0 0.0000000 0
## 2141 0 0.0000000 0
## 2142 0 0.0000000 0
## 2143 0 0.0000000 0
## 2144 0 0.0000000 0
## 2145 0 0.0000000 0
## 2146 0 0.0000000 0
## 2147 0 0.0000000 0
## 2148 0 0.0000000 0
## 2149 1 0.2172763 0
## 2150 0 0.0000000 0
## 2151 1 0.2172763 0
## 2152 0 0.0000000 0
## 2153 0 0.0000000 0
## 2154 0 0.0000000 0
## 2155 0 0.0000000 0
## 2156 0 0.0000000 0
## 2157 0 0.0000000 0
## 2158 1 0.2172763 0
## 2159 0 0.0000000 0
## 2160 3 0.6518290 0
## 2161 3 0.6518290 0
## 2162 0 0.0000000 0
## 2163 0 0.0000000 0
## 2164 0 0.0000000 0
## 2165 0 0.0000000 0
## 2166 0 0.0000000 0
## 2167 0 0.0000000 0
## 2168 0 0.0000000 0
## 2169 0 0.0000000 0
## 2170 0 0.0000000 0
## 2171 0 0.0000000 0
## 2172 0 0.0000000 0
## 2173 0 0.0000000 0
## 2174 0 0.0000000 0
## 2175 0 0.0000000 0
## 2176 0 0.0000000 0
## 2177 0 0.0000000 0
## 2178 0 0.0000000 0
## 2179 0 0.0000000 0
## 2180 0 0.0000000 0
## 2181 0 0.0000000 0
## 2182 0 0.0000000 0
## 2183 0 0.0000000 0
## 2184 0 0.0000000 0
## 2185 0 0.0000000 0
## 2186 1 0.2172763 0
## 2187 0 0.0000000 0
## 2188 0 0.0000000 0
## 2189 0 0.0000000 0
## 2190 0 0.0000000 0
## 2191 0 0.0000000 0
## 2192 0 0.0000000 0
## 2193 0 0.0000000 0
## 2194 0 0.0000000 0
## 2195 0 0.0000000 0
## 2196 0 0.0000000 0
## 2197 0 0.0000000 0
## 2198 2 0.4345527 0
## 2199 0 0.0000000 0
## 2200 0 0.0000000 0
## 2201 0 0.0000000 0
## 2202 0 0.0000000 0
## 2203 0 0.0000000 0
## 2204 0 0.0000000 0
## 2205 0 0.0000000 0
## 2206 0 0.0000000 0
## 2207 0 0.0000000 0
## 2208 0 0.0000000 0
## 2209 0 0.0000000 0
## 2210 0 0.0000000 0
## 2211 0 0.0000000 0
## 2212 0 0.0000000 0
## 2213 0 0.0000000 0
## 2214 1 0.2172763 0
## 2215 7 1.5209340 0
## 2216 0 0.0000000 0
## 2217 0 0.0000000 0
## 2218 1 0.2172763 0
## 2219 0 0.0000000 0
## 2220 0 0.0000000 0
## 2221 0 0.0000000 0
## 2222 1 0.2172763 0
## 2223 0 0.0000000 0
## 2224 0 0.0000000 0
## 2225 0 0.0000000 0
## 2226 0 0.0000000 0
## 2227 0 0.0000000 0
## 2228 0 0.0000000 0
## 2229 0 0.0000000 0
## 2230 1 0.2172763 0
## 2231 0 0.0000000 0
## 2232 0 0.0000000 0
## 2233 0 0.0000000 0
## 2234 0 0.0000000 0
## 2235 0 0.0000000 0
## 2236 4 0.8691053 0
## 2237 3 0.6518290 0
## 2238 0 0.0000000 0
## 2239 0 0.0000000 0
## 2240 0 0.0000000 0
## 2241 0 0.0000000 0
## 2242 0 0.0000000 0
## 2243 0 0.0000000 0
## 2244 0 0.0000000 0
## 2245 0 0.0000000 0
## 2246 0 0.0000000 0
## 2247 0 0.0000000 0
## 2248 0 0.0000000 0
## 2249 0 0.0000000 0
## 2250 0 0.0000000 0
## 2251 0 0.0000000 0
## 2252 3 0.6518290 0
## 2253 0 0.0000000 0
## 2254 4 0.8691053 0
## 2255 0 0.0000000 0
## 2256 1 0.2172763 0
## 2257 0 0.0000000 0
## 2258 0 0.0000000 0
## 2259 5 1.0863820 0
## 2260 1 0.2172763 0
## 2261 0 0.0000000 0
## 2262 0 0.0000000 0
## 2263 0 0.0000000 0
## 2264 0 0.0000000 0
## 2265 0 0.0000000 0
## 2266 0 0.0000000 0
## 2267 0 0.0000000 0
## 2268 0 0.0000000 0
## 2269 0 0.0000000 0
## 2270 0 0.0000000 0
## 2271 0 0.0000000 0
## 2272 4 0.8691053 0
## 2273 0 0.0000000 0
## 2274 0 0.0000000 0
## 2275 0 0.0000000 0
## 2276 0 0.0000000 0
## 2277 0 0.0000000 0
## 2278 0 0.0000000 0
## 2279 0 0.0000000 0
## 2280 0 0.0000000 0
## 2281 0 0.0000000 0
## 2282 0 0.0000000 0
## 2283 7 1.5209340 0
## 2284 0 0.0000000 0
## 2285 0 0.0000000 0
## 2286 2 0.4345527 0
## 2287 0 0.0000000 0
## 2288 0 0.0000000 0
## 2289 0 0.0000000 0
## 2290 2 0.4345527 0
## 2291 8 1.7382110 0
## 2292 2 0.4345527 0
## 2293 2 0.4345527 0
## 2294 6 1.3036580 0
## 2295 5 1.0863820 0
## 2296 0 0.0000000 0
## 2297 0 0.0000000 0
## 2298 0 0.0000000 0
## 2299 0 0.0000000 0
## 2300 0 0.0000000 0
## 2301 2 0.4345527 0
## 2302 2 0.4345527 0
## 2303 0 0.0000000 0
## 2304 2 0.4345527 0
## 2305 0 0.0000000 0
## 2306 0 0.0000000 0
## 2307 0 0.0000000 0
## 2308 3 0.6518290 0
## 2309 4 0.8691053 0
## 2310 1 0.2172763 0
## 2311 0 0.0000000 0
## 2312 5 1.0863820 0
## 2313 0 0.0000000 0
## 2314 0 0.0000000 0
## 2315 0 0.0000000 0
## 2316 0 0.0000000 0
## 2317 3 0.6518290 0
## 2318 1 0.2172763 0
## 2319 0 0.0000000 0
## 2320 0 0.0000000 0
## 2321 0 0.0000000 0
## 2322 0 0.0000000 0
## 2323 0 0.0000000 0
## 2324 0 0.0000000 0
## 2325 0 0.0000000 0
## 2326 0 0.0000000 0
## 2327 0 0.0000000 0
## 2328 0 0.0000000 0
## 2329 0 0.0000000 0
## 2330 0 0.0000000 0
## 2331 0 0.0000000 0
## 2332 0 0.0000000 0
## 2333 0 0.0000000 0
## 2334 0 0.0000000 0
## 2335 0 0.0000000 0
## 2336 0 0.0000000 0
## 2337 0 0.0000000 0
## 2338 0 0.0000000 0
## 2339 2 0.4345527 0
## 2340 0 0.0000000 0
## 2341 0 0.0000000 0
## 2342 0 0.0000000 0
## 2343 0 0.0000000 0
## 2344 0 0.0000000 0
## 2345 0 0.0000000 0
## 2346 0 0.0000000 0
## 2347 0 0.0000000 0
## 2348 2 0.4345527 0
## 2349 1 0.2172763 0
## 2350 4 0.8691053 0
## 2351 4 0.8691053 0
## 2352 0 0.0000000 0
## 2353 0 0.0000000 0
## 2354 0 0.0000000 0
## 2355 0 0.0000000 0
## 2356 5 1.0863820 0
## 2357 2 0.4345527 0
## 2358 0 0.0000000 0
## 2359 8 1.7382110 0
## 2360 0 0.0000000 0
## 2361 0 0.0000000 0
## 2362 0 0.0000000 0
## 2363 0 0.0000000 0
## 2364 2 0.4345527 0
## 2365 1 0.2172763 0
## 2366 0 0.0000000 0
## 2367 0 0.0000000 0
## 2368 0 0.0000000 0
## 2369 0 0.0000000 0
## 2370 2 0.4345527 0
## 2371 0 0.0000000 0
## 2372 12 2.6073160 0
## 2373 0 0.0000000 0
## 2374 1 0.2172763 0
## 2375 1 0.2172763 0
## 2376 0 0.0000000 0
## 2377 0 0.0000000 0
## 2378 0 0.0000000 0
## 2379 0 0.0000000 0
## 2380 0 0.0000000 0
## 2381 0 0.0000000 0
## 2382 0 0.0000000 0
## 2383 0 0.0000000 0
## 2384 0 0.0000000 0
## 2385 1 0.2172763 0
## 2386 0 0.0000000 0
## 2387 0 0.0000000 0
## 2388 0 0.0000000 0
## 2389 0 0.0000000 0
## 2390 1 0.2172763 0
## 2391 0 0.0000000 0
## 2392 3 0.6518290 0
## 2393 0 0.0000000 0
## 2394 0 0.0000000 0
## 2395 0 0.0000000 0
## 2396 0 0.0000000 0
## 2397 0 0.0000000 0
## 2398 0 0.0000000 0
## 2399 2 0.4345527 0
## 2400 0 0.0000000 0
## 2401 2 0.4345527 0
## 2402 1 0.2172763 0
## 2403 0 0.0000000 0
## 2404 0 0.0000000 0
## 2405 0 0.0000000 0
## 2406 0 0.0000000 0
## 2407 0 0.0000000 0
## 2408 0 0.0000000 0
## 2409 0 0.0000000 0
## 2410 0 0.0000000 0
## 2411 0 0.0000000 0
## 2412 0 0.0000000 0
## 2413 0 0.0000000 0
## 2414 0 0.0000000 0
## 2415 0 0.0000000 0
## 2416 0 0.0000000 0
## 2417 0 0.0000000 0
## 2418 1 0.2172763 0
## 2419 1 0.2172763 0
## 2420 4 0.8691053 0
## 2421 0 0.0000000 0
## 2422 1 0.2172763 0
## 2423 1 0.2172763 0
## 2424 2 0.4345527 0
## 2425 0 0.0000000 0
## 2426 0 0.0000000 0
## 2427 0 0.0000000 0
## 2428 0 0.0000000 0
## 2429 0 0.0000000 0
## 2430 0 0.0000000 0
## 2431 0 0.0000000 0
## 2432 0 0.0000000 0
## 2433 0 0.0000000 0
## 2434 0 0.0000000 0
## 2435 0 0.0000000 0
## 2436 0 0.0000000 0
## 2437 0 0.0000000 0
## 2438 0 0.0000000 0
## 2439 0 0.0000000 0
## 2440 0 0.0000000 0
## 2441 2 0.4345527 0
## 2442 0 0.0000000 0
## 2443 0 0.0000000 0
## 2444 0 0.0000000 0
## 2445 0 0.0000000 0
## 2446 0 0.0000000 0
## 2447 0 0.0000000 0
## 2448 0 0.0000000 0
## 2449 0 0.0000000 0
## 2450 0 0.0000000 0
## 2451 0 0.0000000 0
## 2452 0 0.0000000 0
## 2453 2 0.4345527 0
## 2454 2 0.4345527 0
## 2455 0 0.0000000 0
## 2456 0 0.0000000 0
## 2457 2 0.4345527 0
## 2458 0 0.0000000 0
## 2459 1 0.2172763 0
## 2460 0 0.0000000 0
## 2461 0 0.0000000 0
## 2462 1 0.2172763 0
## 2463 0 0.0000000 0
## 2464 0 0.0000000 0
## 2465 0 0.0000000 0
## 2466 0 0.0000000 0
## 2467 1 0.2172763 0
## 2468 0 0.0000000 0
## 2469 0 0.0000000 0
## 2470 0 0.0000000 0
## 2471 0 0.0000000 0
## 2472 0 0.0000000 0
## 2473 0 0.0000000 0
## 2474 3 0.6518290 0
## 2475 0 0.0000000 0
## 2476 3 0.6518290 0
## 2477 1 0.2172763 0
## 2478 0 0.0000000 0
## 2479 0 0.0000000 0
## 2480 0 0.0000000 0
## 2481 0 0.0000000 0
## 2482 0 0.0000000 0
## 2483 0 0.0000000 0
## 2484 0 0.0000000 0
## 2485 0 0.0000000 0
## 2486 0 0.0000000 0
## 2487 0 0.0000000 0
## 2488 1 0.2172763 0
## 2489 0 0.0000000 0
## 2490 3 0.6518290 0
## 2491 0 0.0000000 0
## 2492 0 0.0000000 0
## 2493 2 0.4345527 0
## 2494 0 0.0000000 0
## 2495 0 0.0000000 0
## 2496 0 0.0000000 0
## 2497 2 0.4345527 0
## 2498 0 0.0000000 0
## 2499 0 0.0000000 0
## 2500 0 0.0000000 0
## 2501 3 0.6518290 0
## 2502 0 0.0000000 0
## 2503 0 0.0000000 0
## 2504 0 0.0000000 0
## 2505 0 0.0000000 0
## 2506 0 0.0000000 0
## 2507 2 0.4345527 0
## 2508 1 0.2172763 0
## 2509 0 0.0000000 0
## 2510 0 0.0000000 0
## 2511 1 0.2172763 0
## 2512 0 0.0000000 0
## 2513 9 1.9554870 0
## 2514 0 0.0000000 0
## 2515 0 0.0000000 0
## 2516 0 0.0000000 0
## 2517 0 0.0000000 0
## 2518 1 0.2172763 0
## 2519 0 0.0000000 0
## 2520 1 0.2172763 0
## 2521 2 0.4345527 0
## 2522 0 0.0000000 0
## 2523 1 0.2172763 0
## 2524 0 0.0000000 0
## 2525 0 0.0000000 0
## 2526 0 0.0000000 0
## 2527 1 0.2172763 0
## 2528 0 0.0000000 0
## 2529 0 0.0000000 0
## 2530 0 0.0000000 0
## 2531 0 0.0000000 0
## 2532 0 0.0000000 0
## 2533 0 0.0000000 0
## 2534 0 0.0000000 0
## 2535 2 0.4345527 0
## 2536 0 0.0000000 0
## 2537 0 0.0000000 0
## 2538 0 0.0000000 0
## 2539 0 0.0000000 0
## 2540 0 0.0000000 0
## 2541 4 0.8691053 0
## 2542 0 0.0000000 0
## 2543 1 0.2172763 0
## 2544 0 0.0000000 0
## 2545 0 0.0000000 0
## 2546 0 0.0000000 0
## 2547 3 0.6518290 0
## 2548 0 0.0000000 0
## 2549 0 0.0000000 0
## 2550 1 0.2172763 0
## 2551 0 0.0000000 0
## 2552 0 0.0000000 0
## 2553 0 0.0000000 0
## 2554 0 0.0000000 0
## 2555 8 1.7382110 0
## 2556 0 0.0000000 0
## 2557 6 1.3036580 0
## 2558 0 0.0000000 0
## 2559 0 0.0000000 0
## 2560 0 0.0000000 0
## 2561 0 0.0000000 0
## 2562 2 0.4345527 0
## 2563 0 0.0000000 0
## 2564 0 0.0000000 0
## 2565 0 0.0000000 0
## 2566 0 0.0000000 0
## 2567 0 0.0000000 0
## 2568 0 0.0000000 0
## 2569 0 0.0000000 0
## 2570 0 0.0000000 0
## 2571 0 0.0000000 0
## 2572 0 0.0000000 0
## 2573 0 0.0000000 0
## 2574 9 1.9554870 0
## 2575 2 0.4345527 0
## 2576 1 0.2172763 0
## 2577 0 0.0000000 0
## 2578 7 1.5209340 0
## 2579 0 0.0000000 0
## 2580 0 0.0000000 0
## 2581 0 0.0000000 0
## 2582 1 0.2172763 0
## 2583 0 0.0000000 0
## 2584 0 0.0000000 0
## 2585 0 0.0000000 0
## 2586 0 0.0000000 0
## 2587 0 0.0000000 0
## 2588 2 0.4345527 0
## 2589 0 0.0000000 0
## 2590 0 0.0000000 0
## 2591 0 0.0000000 0
## 2592 0 0.0000000 0
## 2593 0 0.0000000 0
## 2594 0 0.0000000 0
## 2595 0 0.0000000 0
## 2596 0 0.0000000 0
## 2597 0 0.0000000 0
## 2598 0 0.0000000 0
## 2599 2 0.4345527 0
## 2600 0 0.0000000 0
## 2601 1 0.2172763 0
## 2602 0 0.0000000 0
## 2603 0 0.0000000 0
## 2604 0 0.0000000 0
## 2605 0 0.0000000 0
## 2606 0 0.0000000 0
## 2607 0 0.0000000 0
## 2608 0 0.0000000 0
## 2609 0 0.0000000 0
## 2610 0 0.0000000 0
## 2611 0 0.0000000 0
## 2612 0 0.0000000 0
## 2613 1 0.2172763 0
## 2614 0 0.0000000 0
## 2615 2 0.4345527 0
## 2616 10 2.1727630 0
## 2617 0 0.0000000 0
## 2618 1 0.2172763 0
## 2619 0 0.0000000 0
## 2620 2 0.4345527 0
## 2621 4 0.8691053 0
## 2622 0 0.0000000 0
## 2623 0 0.0000000 0
## 2624 0 0.0000000 0
## 2625 0 0.0000000 0
## 2626 0 0.0000000 0
## 2627 0 0.0000000 0
## 2628 0 0.0000000 0
## 2629 0 0.0000000 0
## 2630 0 0.0000000 0
## 2631 0 0.0000000 0
## 2632 1 0.2172763 0
## 2633 0 0.0000000 0
## 2634 0 0.0000000 0
## 2635 1 0.2172763 0
## 2636 0 0.0000000 0
## 2637 0 0.0000000 0
## 2638 0 0.0000000 0
## 2639 0 0.0000000 0
## 2640 0 0.0000000 0
## 2641 0 0.0000000 0
## 2642 2 0.4345527 0
## 2643 0 0.0000000 0
## 2644 0 0.0000000 0
## 2645 0 0.0000000 0
## 2646 1 0.2172763 0
## 2647 1 0.2172763 0
## 2648 0 0.0000000 0
## 2649 0 0.0000000 0
## 2650 0 0.0000000 0
## 2651 1 0.2172763 0
## 2652 1 0.2172763 0
## 2653 0 0.0000000 0
## 2654 0 0.0000000 0
## 2655 1 0.2172763 0
## 2656 1 0.2172763 0
## 2657 0 0.0000000 0
## 2658 0 0.0000000 0
## 2659 0 0.0000000 0
## 2660 0 0.0000000 0
## 2661 1 0.2172763 0
## 2662 0 0.0000000 0
## 2663 0 0.0000000 0
## 2664 0 0.0000000 0
## 2665 0 0.0000000 0
## 2666 3 0.6518290 0
## 2667 0 0.0000000 0
## 2668 0 0.0000000 0
## 2669 0 0.0000000 0
## 2670 5 1.0863820 0
## 2671 0 0.0000000 0
## 2672 0 0.0000000 0
## 2673 0 0.0000000 0
## 2674 0 0.0000000 0
## 2675 0 0.0000000 0
## 2676 1 0.2172763 0
## 2677 0 0.0000000 0
## 2678 1 0.2172763 0
## 2679 0 0.0000000 0
## 2680 0 0.0000000 0
## 2681 0 0.0000000 0
## 2682 0 0.0000000 0
## 2683 2 0.4345527 0
## 2684 0 0.0000000 0
## 2685 0 0.0000000 0
## 2686 0 0.0000000 0
## 2687 0 0.0000000 0
## 2688 0 0.0000000 0
## 2689 0 0.0000000 0
## 2690 2 0.4345527 0
## 2691 0 0.0000000 0
## 2692 1 0.2172763 0
## 2693 0 0.0000000 0
## 2694 0 0.0000000 0
## 2695 0 0.0000000 0
## 2696 0 0.0000000 0
## 2697 0 0.0000000 0
## 2698 0 0.0000000 0
## 2699 1 0.2172763 0
## 2700 1 0.2172763 0
## 2701 0 0.0000000 0
## 2702 5 1.0863820 0
## 2703 13 2.8245920 0
## 2704 0 0.0000000 0
## 2705 0 0.0000000 0
## 2706 0 0.0000000 0
## 2707 0 0.0000000 0
## 2708 0 0.0000000 0
## 2709 0 0.0000000 0
## 2710 0 0.0000000 0
## 2711 1 0.2172763 0
## 2712 11 2.3900400 0
## 2713 0 0.0000000 0
## 2714 0 0.0000000 0
## 2715 0 0.0000000 0
## 2716 0 0.0000000 0
## 2717 0 0.0000000 0
## 2718 0 0.0000000 0
## 2719 0 0.0000000 0
## 2720 0 0.0000000 0
## 2721 0 0.0000000 0
## 2722 0 0.0000000 0
## 2723 0 0.0000000 0
## 2724 0 0.0000000 0
## 2725 0 0.0000000 0
## 2726 0 0.0000000 0
## 2727 0 0.0000000 0
## 2728 1 0.2172763 0
## 2729 0 0.0000000 0
## 2730 0 0.0000000 0
## 2731 0 0.0000000 0
## 2732 0 0.0000000 0
## 2733 0 0.0000000 0
## 2734 0 0.0000000 0
## 2735 0 0.0000000 0
## 2736 0 0.0000000 0
## 2737 0 0.0000000 0
## 2738 0 0.0000000 0
## 2739 0 0.0000000 0
## 2740 1 0.2172763 0
## 2741 0 0.0000000 0
## 2742 0 0.0000000 0
## 2743 0 0.0000000 0
## 2744 0 0.0000000 0
## 2745 0 0.0000000 0
## 2746 0 0.0000000 0
## 2747 0 0.0000000 0
## 2748 0 0.0000000 0
## 2749 4 0.8691053 0
## 2750 3 0.6518290 0
## 2751 1 0.2172763 0
## 2752 0 0.0000000 0
## 2753 0 0.0000000 0
## 2754 0 0.0000000 0
## 2755 6 1.3036580 0
## 2756 6 1.3036580 0
## 2757 0 0.0000000 0
## 2758 0 0.0000000 0
## 2759 14 3.0418690 0
## 2760 3 0.6518290 0
## 2761 0 0.0000000 0
## 2762 0 0.0000000 0
## 2763 0 0.0000000 0
## 2764 0 0.0000000 0
## 2765 0 0.0000000 0
## 2766 0 0.0000000 0
## 2767 0 0.0000000 0
## 2768 0 0.0000000 0
## 2769 1 0.2172763 0
## 2770 0 0.0000000 0
## 2771 1 0.2172763 0
## 2772 0 0.0000000 0
## 2773 3 0.6518290 0
## 2774 0 0.0000000 0
## 2775 0 0.0000000 0
## 2776 0 0.0000000 0
## 2777 0 0.0000000 0
## 2778 0 0.0000000 0
## 2779 0 0.0000000 0
## 2780 0 0.0000000 0
## 2781 0 0.0000000 0
## 2782 1 0.2172763 0
## 2783 1 0.2172763 0
## 2784 1 0.2172763 0
## 2785 0 0.0000000 0
## 2786 0 0.0000000 0
## 2787 0 0.0000000 0
## 2788 0 0.0000000 0
## 2789 0 0.0000000 0
## 2790 0 0.0000000 0
## 2791 0 0.0000000 0
## 2792 0 0.0000000 0
## 2793 0 0.0000000 0
## 2794 0 0.0000000 0
## 2795 2 0.4345527 0
## 2796 1 0.2172763 0
## 2797 0 0.0000000 0
## 2798 0 0.0000000 0
## 2799 0 0.0000000 0
## 2800 0 0.0000000 0
## 2801 2 0.4345527 0
## 2802 0 0.0000000 0
## 2803 0 0.0000000 0
## 2804 4 0.8691053 0
## 2805 0 0.0000000 0
## 2806 2 0.4345527 0
## 2807 0 0.0000000 0
## 2808 0 0.0000000 0
## 2809 0 0.0000000 0
## 2810 0 0.0000000 0
## 2811 0 0.0000000 0
## 2812 0 0.0000000 0
## 2813 0 0.0000000 0
## 2814 0 0.0000000 0
## 2815 4 0.8691053 0
## 2816 0 0.0000000 0
## 2817 0 0.0000000 0
## 2818 0 0.0000000 0
## 2819 0 0.0000000 0
## 2820 1 0.2172763 0
## 2821 0 0.0000000 0
## 2822 0 0.0000000 0
## 2823 0 0.0000000 0
## 2824 0 0.0000000 0
## 2825 0 0.0000000 0
## 2826 0 0.0000000 0
## 2827 0 0.0000000 0
## 2828 0 0.0000000 0
## 2829 0 0.0000000 0
## 2830 0 0.0000000 0
## 2831 0 0.0000000 0
## 2832 0 0.0000000 0
## 2833 0 0.0000000 0
## 2834 5 1.0863820 0
## 2835 5 1.0863820 0
## 2836 0 0.0000000 0
## 2837 0 0.0000000 0
## 2838 5 1.0863820 0
## 2839 0 0.0000000 0
## 2840 5 1.0863820 0
## 2841 0 0.0000000 0
## 2842 0 0.0000000 0
## 2843 0 0.0000000 0
## 2844 0 0.0000000 0
## 2845 0 0.0000000 0
## 2846 0 0.0000000 0
## 2847 0 0.0000000 0
## 2848 0 0.0000000 0
## 2849 0 0.0000000 0
## 2850 0 0.0000000 0
## 2851 0 0.0000000 0
## 2852 8 1.7382110 0
## 2853 0 0.0000000 0
## 2854 0 0.0000000 0
## 2855 0 0.0000000 0
## 2856 0 0.0000000 0
## 2857 0 0.0000000 0
## 2858 0 0.0000000 0
## 2859 0 0.0000000 0
## 2860 0 0.0000000 0
## 2861 0 0.0000000 0
## 2862 0 0.0000000 0
## 2863 0 0.0000000 0
## 2864 0 0.0000000 0
## 2865 0 0.0000000 0
## 2866 0 0.0000000 0
## 2867 0 0.0000000 0
## 2868 0 0.0000000 0
## 2869 0 0.0000000 0
## 2870 0 0.0000000 0
## 2871 0 0.0000000 0
## 2872 0 0.0000000 0
## 2873 2 0.4345527 0
## 2874 0 0.0000000 0
## 2875 0 0.0000000 0
## 2876 0 0.0000000 0
## 2877 0 0.0000000 0
## 2878 0 0.0000000 0
## 2879 0 0.0000000 0
## 2880 0 0.0000000 0
## 2881 0 0.0000000 0
## 2882 1 0.2172763 0
## 2883 0 0.0000000 0
## 2884 0 0.0000000 0
## 2885 0 0.0000000 0
## 2886 0 0.0000000 0
## 2887 0 0.0000000 0
## 2888 0 0.0000000 0
## 2889 0 0.0000000 0
## 2890 0 0.0000000 0
## 2891 0 0.0000000 0
## 2892 0 0.0000000 0
## 2893 0 0.0000000 0
## 2894 0 0.0000000 0
## 2895 0 0.0000000 0
## 2896 0 0.0000000 0
## 2897 0 0.0000000 0
## 2898 0 0.0000000 0
## 2899 0 0.0000000 0
## 2900 0 0.0000000 0
## 2901 0 0.0000000 0
## 2902 0 0.0000000 0
## 2903 0 0.0000000 0
## 2904 0 0.0000000 0
## 2905 1 0.2172763 0
## 2906 0 0.0000000 0
## 2907 0 0.0000000 0
## 2908 0 0.0000000 0
## 2909 0 0.0000000 0
## 2910 2 0.4345527 0
## 2911 0 0.0000000 0
## 2912 0 0.0000000 0
## 2913 0 0.0000000 0
## 2914 0 0.0000000 0
## 2915 2 0.4345527 0
## 2916 0 0.0000000 0
## 2917 0 0.0000000 0
## 2918 0 0.0000000 0
## 2919 0 0.0000000 0
## 2920 0 0.0000000 0
## 2921 0 0.0000000 0
## 2922 0 0.0000000 0
## 2923 0 0.0000000 0
## 2924 0 0.0000000 0
## 2925 0 0.0000000 0
## 2926 0 0.0000000 0
## 2927 0 0.0000000 0
## 2928 0 0.0000000 0
## 2929 0 0.0000000 0
## 2930 0 0.0000000 0
## 2931 0 0.0000000 0
## 2932 0 0.0000000 0
## 2933 0 0.0000000 0
## 2934 0 0.0000000 0
## 2935 0 0.0000000 0
## 2936 0 0.0000000 0
## 2937 2 0.4345527 0
## 2938 0 0.0000000 0
## 2939 0 0.0000000 0
## 2940 0 0.0000000 0
## 2941 0 0.0000000 0
## 2942 0 0.0000000 0
## 2943 0 0.0000000 0
## 2944 0 0.0000000 0
## 2945 0 0.0000000 0
## 2946 0 0.0000000 0
## 2947 0 0.0000000 0
## 2948 6 1.3036580 0
## 2949 0 0.0000000 0
## 2950 4 0.8691053 0
## 2951 0 0.0000000 0
## 2952 0 0.0000000 0
## 2953 0 0.0000000 0
## 2954 0 0.0000000 0
## 2955 0 0.0000000 0
## 2956 0 0.0000000 0
## 2957 0 0.0000000 0
## 2958 0 0.0000000 0
## 2959 1 0.2172763 0
## 2960 0 0.0000000 0
## 2961 0 0.0000000 0
## 2962 6 1.3036580 0
## 2963 0 0.0000000 0
## 2964 4 0.8691053 0
## 2965 0 0.0000000 0
## 2966 0 0.0000000 0
## 2967 1 0.2172763 0
## 2968 4 0.8691053 0
## 2969 0 0.0000000 0
## 2970 0 0.0000000 0
## 2971 0 0.0000000 0
## 2972 0 0.0000000 0
## 2973 0 0.0000000 0
## 2974 0 0.0000000 0
## 2975 0 0.0000000 0
## 2976 10 2.1727630 0
## 2977 0 0.0000000 0
## 2978 0 0.0000000 0
## 2979 0 0.0000000 0
## 2980 0 0.0000000 0
## 2981 8 1.7382110 0
## 2982 0 0.0000000 0
## 2983 0 0.0000000 0
## 2984 4 0.8691053 0
## 2985 0 0.0000000 0
## 2986 0 0.0000000 0
## 2987 0 0.0000000 0
## 2988 0 0.0000000 0
## 2989 0 0.0000000 0
## 2990 0 0.0000000 0
## 2991 0 0.0000000 0
## 2992 0 0.0000000 0
## 2993 3 0.6518290 0
## 2994 0 0.0000000 0
## 2995 0 0.0000000 0
## 2996 0 0.0000000 0
## 2997 0 0.0000000 0
## 2998 0 0.0000000 0
## 2999 1 0.2172763 0
## 3000 0 0.0000000 0
## 3001 0 0.0000000 0
## 3002 0 0.0000000 0
## 3003 0 0.0000000 0
## 3004 0 0.0000000 0
## 3005 0 0.0000000 0
## 3006 0 0.0000000 0
## 3007 0 0.0000000 0
## 3008 0 0.0000000 0
## 3009 0 0.0000000 0
## 3010 0 0.0000000 0
## 3011 0 0.0000000 0
## 3012 0 0.0000000 0
## 3013 0 0.0000000 0
## 3014 0 0.0000000 0
## 3015 0 0.0000000 0
## 3016 0 0.0000000 0
## 3017 0 0.0000000 0
## 3018 1 0.2172763 0
## 3019 0 0.0000000 0
## 3020 0 0.0000000 0
## 3021 0 0.0000000 0
## 3022 0 0.0000000 0
## 3023 0 0.0000000 0
## 3024 0 0.0000000 0
## 3025 0 0.0000000 0
## 3026 0 0.0000000 0
## 3027 0 0.0000000 0
## 3028 0 0.0000000 0
## 3029 2 0.4345527 0
## 3030 0 0.0000000 0
## 3031 0 0.0000000 0
## 3032 1 0.2172763 0
## 3033 0 0.0000000 0
## 3034 1 0.2172763 0
## 3035 0 0.0000000 0
## 3036 0 0.0000000 0
## 3037 0 0.0000000 0
## 3038 0 0.0000000 0
## 3039 0 0.0000000 0
## 3040 0 0.0000000 0
## 3041 0 0.0000000 0
## 3042 1 0.2172763 0
## 3043 0 0.0000000 0
## 3044 0 0.0000000 0
## 3045 2 0.4345527 0
## 3046 0 0.0000000 0
## 3047 0 0.0000000 0
## 3048 0 0.0000000 0
## 3049 0 0.0000000 0
## 3050 0 0.0000000 0
## 3051 0 0.0000000 0
## 3052 0 0.0000000 0
## 3053 0 0.0000000 0
## 3054 0 0.0000000 0
## 3055 0 0.0000000 0
## 3056 0 0.0000000 0
## 3057 0 0.0000000 0
## 3058 2 0.4345527 0
## 3059 0 0.0000000 0
## 3060 0 0.0000000 0
## 3061 0 0.0000000 0
## 3062 0 0.0000000 0
## 3063 0 0.0000000 0
## 3064 6 1.3036580 0
## 3065 0 0.0000000 0
## 3066 3 0.6518290 0
## 3067 0 0.0000000 0
## 3068 0 0.0000000 0
## 3069 0 0.0000000 0
## 3070 2 0.4345527 0
## 3071 0 0.0000000 0
## 3072 2 0.4345527 0
## 3073 2 0.4345527 0
## 3074 4 0.8691053 0
## 3075 1 0.2172763 0
## 3076 0 0.0000000 0
## 3077 0 0.0000000 0
## 3078 0 0.0000000 0
## 3079 0 0.0000000 0
## 3080 1 0.2172763 0
## 3081 0 0.0000000 0
## 3082 1 0.2172763 0
## 3083 1 0.2172763 0
## 3084 0 0.0000000 0
## 3085 0 0.0000000 0
## 3086 0 0.0000000 0
## 3087 1 0.2172763 0
## 3088 1 0.2172763 0
## 3089 0 0.0000000 0
## 3090 0 0.0000000 0
## 3091 0 0.0000000 0
## 3092 0 0.0000000 0
## 3093 1 0.2172763 0
## 3094 0 0.0000000 0
## 3095 1 0.2172763 0
## 3096 4 0.8691053 0
## 3097 0 0.0000000 0
## 3098 0 0.0000000 0
## 3099 0 0.0000000 0
## 3100 0 0.0000000 0
## 3101 0 0.0000000 0
## 3102 0 0.0000000 0
## 3103 0 0.0000000 0
## 3104 0 0.0000000 0
## 3105 0 0.0000000 0
## 3106 0 0.0000000 0
## 3107 0 0.0000000 0
## 3108 0 0.0000000 0
## 3109 0 0.0000000 0
## 3110 0 0.0000000 0
## 3111 0 0.0000000 0
## 3112 0 0.0000000 0
## 3113 0 0.0000000 0
## 3114 0 0.0000000 0
## 3115 0 0.0000000 0
## 3116 3 0.6518290 0
## 3117 0 0.0000000 0
## 3118 0 0.0000000 0
## 3119 0 0.0000000 0
## 3120 0 0.0000000 0
## 3121 0 0.0000000 0
## 3122 2 0.4345527 0
## 3123 0 0.0000000 0
## 3124 2 0.4345527 0
## 3125 0 0.0000000 0
## 3126 0 0.0000000 0
## 3127 0 0.0000000 0
## 3128 0 0.0000000 0
## 3129 0 0.0000000 0
## 3130 1 0.2172763 0
## 3131 0 0.0000000 0
## 3132 0 0.0000000 0
## 3133 0 0.0000000 0
## 3134 0 0.0000000 0
## 3135 0 0.0000000 0
## 3136 0 0.0000000 0
## 3137 0 0.0000000 0
## 3138 0 0.0000000 0
## 3139 0 0.0000000 0
## 3140 0 0.0000000 0
## 3141 0 0.0000000 0
## 3142 0 0.0000000 0
## 3143 0 0.0000000 0
## 3144 0 0.0000000 0
## 3145 0 0.0000000 0
## 3146 2 0.4345527 0
## 3147 1 0.2172763 0
## 3148 0 0.0000000 0
## 3149 0 0.0000000 0
## 3150 2 0.4345527 0
## 3151 0 0.0000000 0
## 3152 0 0.0000000 0
## 3153 0 0.0000000 0
## 3154 0 0.0000000 0
## 3155 0 0.0000000 0
## 3156 0 0.0000000 0
## 3157 0 0.0000000 0
## 3158 0 0.0000000 0
## 3159 0 0.0000000 0
## 3160 0 0.0000000 0
## 3161 0 0.0000000 0
## 3162 0 0.0000000 0
## 3163 0 0.0000000 0
## 3164 0 0.0000000 0
## 3165 0 0.0000000 0
## 3166 0 0.0000000 0
## 3167 0 0.0000000 0
## 3168 0 0.0000000 0
## 3169 0 0.0000000 0
## 3170 0 0.0000000 0
## 3171 0 0.0000000 0
## 3172 0 0.0000000 0
## 3173 0 0.0000000 0
## 3174 0 0.0000000 0
## 3175 2 0.4345527 0
## 3176 0 0.0000000 0
## 3177 0 0.0000000 0
## 3178 0 0.0000000 0
## 3179 0 0.0000000 0
## 3180 0 0.0000000 0
## 3181 5 1.0863820 0
## 3182 12 2.6073160 0
## 3183 1 0.2172763 0
## 3184 2 0.4345527 0
## 3185 0 0.0000000 0
## 3186 0 0.0000000 0
## 3187 0 0.0000000 0
## 3188 0 0.0000000 0
## 3189 0 0.0000000 0
## 3190 0 0.0000000 0
## 3191 1 0.2172763 0
## 3192 1 0.2172763 0
## 3193 0 0.0000000 0
## 3194 0 0.0000000 0
## 3195 0 0.0000000 0
## 3196 0 0.0000000 0
## 3197 0 0.0000000 0
## 3198 0 0.0000000 0
## 3199 0 0.0000000 0
## 3200 1 0.2172763 0
## 3201 0 0.0000000 0
## 3202 0 0.0000000 0
## 3203 0 0.0000000 0
## 3204 0 0.0000000 0
## 3205 0 0.0000000 0
## 3206 0 0.0000000 0
## 3207 0 0.0000000 0
## 3208 0 0.0000000 0
## 3209 0 0.0000000 0
## 3210 0 0.0000000 0
## 3211 0 0.0000000 0
## 3212 0 0.0000000 0
## 3213 0 0.0000000 0
## 3214 2 0.4345527 0
## 3215 2 0.4345527 0
## 3216 1 0.2172763 0
## 3217 0 0.0000000 0
## 3218 0 0.0000000 0
## 3219 0 0.0000000 0
## 3220 2 0.4345527 0
## 3221 0 0.0000000 0
## 3222 0 0.0000000 0
## 3223 0 0.0000000 0
## 3224 0 0.0000000 0
## 3225 7 1.5209340 0
## 3226 1 0.2172763 0
## 3227 0 0.0000000 0
## 3228 0 0.0000000 0
## 3229 0 0.0000000 0
## 3230 0 0.0000000 0
## 3231 0 0.0000000 0
## 3232 0 0.0000000 0
## 3233 0 0.0000000 0
## 3234 0 0.0000000 0
## 3235 15 3.2591450 0
## 3236 1 0.2172763 0
## 3237 0 0.0000000 0
## 3238 3 0.6518290 0
## 3239 0 0.0000000 0
## 3240 0 0.0000000 0
## 3241 2 0.4345527 0
## 3242 2 0.4345527 0
## 3243 2 0.4345527 0
## 3244 0 0.0000000 0
## 3245 0 0.0000000 0
## 3246 0 0.0000000 0
## 3247 0 0.0000000 0
## 3248 0 0.0000000 0
## 3249 2 0.4345527 0
## 3250 0 0.0000000 0
## 3251 0 0.0000000 0
## 3252 0 0.0000000 0
## 3253 0 0.0000000 0
## 3254 0 0.0000000 0
## 3255 0 0.0000000 0
## 3256 0 0.0000000 0
## 3257 0 0.0000000 0
## 3258 1 0.2172763 0
## 3259 3 0.6518290 0
## 3260 4 0.8691053 0
## 3261 0 0.0000000 0
## 3262 7 1.5209340 0
## 3263 4 0.8691053 0
## 3264 3 0.6518290 0
## 3265 0 0.0000000 0
## 3266 0 0.0000000 0
## 3267 0 0.0000000 0
## 3268 0 0.0000000 0
## 3269 0 0.0000000 0
## 3270 0 0.0000000 0
## 3271 0 0.0000000 0
## 3272 14 3.0418690 0
## 3273 0 0.0000000 0
## 3274 0 0.0000000 0
## 3275 0 0.0000000 0
## 3276 0 0.0000000 0
## 3277 0 0.0000000 0
## 3278 0 0.0000000 0
## 3279 11 2.3900400 0
## 3280 0 0.0000000 0
## 3281 0 0.0000000 0
## 3282 0 0.0000000 0
## 3283 0 0.0000000 0
## 3284 1 0.2172763 0
## 3285 0 0.0000000 0
## 3286 5 1.0863820 0
## 3287 4 0.8691053 0
## 3288 0 0.0000000 0
## 3289 0 0.0000000 0
## 3290 4 0.8691053 0
## 3291 0 0.0000000 0
## 3292 0 0.0000000 0
## 3293 1 0.2172763 0
## 3294 4 0.8691053 0
## 3295 0 0.0000000 0
## 3296 0 0.0000000 0
## 3297 0 0.0000000 0
## 3298 0 0.0000000 0
## 3299 0 0.0000000 0
## 3300 1 0.2172763 0
## 3301 0 0.0000000 0
## 3302 0 0.0000000 0
## 3303 0 0.0000000 0
## 3304 0 0.0000000 0
## 3305 0 0.0000000 0
## 3306 0 0.0000000 0
## 3307 0 0.0000000 0
## 3308 0 0.0000000 0
## 3309 0 0.0000000 0
## 3310 0 0.0000000 0
## 3311 0 0.0000000 0
## 3312 0 0.0000000 0
## 3313 0 0.0000000 0
## 3314 0 0.0000000 0
## 3315 0 0.0000000 0
## 3316 0 0.0000000 0
## 3317 1 0.2172763 0
## 3318 0 0.0000000 0
## 3319 0 0.0000000 0
## 3320 0 0.0000000 0
## 3321 0 0.0000000 0
## 3322 0 0.0000000 0
## 3323 0 0.0000000 0
## 3324 0 0.0000000 0
## 3325 0 0.0000000 0
## 3326 0 0.0000000 0
## 3327 0 0.0000000 0
## 3328 0 0.0000000 0
## 3329 0 0.0000000 0
## 3330 0 0.0000000 0
## 3331 0 0.0000000 0
## 3332 0 0.0000000 0
## 3333 0 0.0000000 0
## 3334 0 0.0000000 0
## 3335 0 0.0000000 0
## 3336 0 0.0000000 0
## 3337 1 0.2172763 0
## 3338 0 0.0000000 0
## 3339 0 0.0000000 0
## 3340 0 0.0000000 0
## 3341 0 0.0000000 0
## 3342 2 0.4345527 0
## 3343 2 0.4345527 0
## 3344 0 0.0000000 0
## 3345 0 0.0000000 0
## 3346 0 0.0000000 0
## 3347 0 0.0000000 0
## 3348 0 0.0000000 0
## 3349 0 0.0000000 0
## 3350 0 0.0000000 0
## 3351 0 0.0000000 0
## 3352 0 0.0000000 0
## 3353 0 0.0000000 0
## 3354 2 0.4345527 0
## 3355 0 0.0000000 0
## 3356 0 0.0000000 0
## 3357 0 0.0000000 0
## 3358 0 0.0000000 0
## 3359 0 0.0000000 0
## 3360 0 0.0000000 0
## 3361 0 0.0000000 0
## 3362 5 1.0863820 0
## 3363 0 0.0000000 0
## 3364 0 0.0000000 0
## 3365 1 0.2172763 0
## 3366 1 0.2172763 0
## 3367 0 0.0000000 0
## 3368 0 0.0000000 0
## 3369 0 0.0000000 0
## 3370 0 0.0000000 0
## 3371 0 0.0000000 0
## 3372 0 0.0000000 0
## 3373 0 0.0000000 0
## 3374 0 0.0000000 0
## 3375 0 0.0000000 0
## 3376 0 0.0000000 0
## 3377 0 0.0000000 0
## 3378 0 0.0000000 0
## 3379 1 0.2172763 0
## 3380 0 0.0000000 0
## 3381 0 0.0000000 0
## 3382 0 0.0000000 0
## 3383 0 0.0000000 0
## 3384 0 0.0000000 0
## 3385 0 0.0000000 0
## 3386 0 0.0000000 0
## 3387 0 0.0000000 0
## 3388 0 0.0000000 0
## 3389 2 0.4345527 0
## 3390 0 0.0000000 0
## 3391 0 0.0000000 0
## 3392 0 0.0000000 0
## 3393 0 0.0000000 0
## 3394 0 0.0000000 0
## 3395 0 0.0000000 0
## 3396 0 0.0000000 0
## 3397 0 0.0000000 0
## 3398 0 0.0000000 0
## 3399 1 0.2172763 0
## 3400 0 0.0000000 0
## 3401 0 0.0000000 0
## 3402 0 0.0000000 0
## 3403 1 0.2172763 0
## 3404 4 0.8691053 0
## 3405 0 0.0000000 0
## 3406 1 0.2172763 0
## 3407 0 0.0000000 0
## 3408 0 0.0000000 0
## 3409 0 0.0000000 0
## 3410 0 0.0000000 0
## 3411 5 1.0863820 0
## 3412 0 0.0000000 0
## 3413 0 0.0000000 0
## 3414 0 0.0000000 0
## 3415 0 0.0000000 0
## 3416 0 0.0000000 0
## 3417 0 0.0000000 0
## 3418 0 0.0000000 0
## 3419 0 0.0000000 0
## 3420 0 0.0000000 0
## 3421 1 0.2172763 0
## 3422 0 0.0000000 0
## 3423 0 0.0000000 0
## 3424 0 0.0000000 0
## 3425 0 0.0000000 0
## 3426 0 0.0000000 0
## 3427 0 0.0000000 0
## 3428 0 0.0000000 0
## 3429 0 0.0000000 0
## 3430 0 0.0000000 0
## 3431 0 0.0000000 0
## 3432 0 0.0000000 0
## 3433 0 0.0000000 0
## 3434 0 0.0000000 0
## 3435 0 0.0000000 0
## 3436 0 0.0000000 0
## 3437 0 0.0000000 0
## 3438 0 0.0000000 0
## 3439 0 0.0000000 0
## 3440 0 0.0000000 0
## 3441 0 0.0000000 0
## 3442 0 0.0000000 0
## 3443 0 0.0000000 0
## 3444 0 0.0000000 0
## 3445 0 0.0000000 0
## 3446 0 0.0000000 0
## 3447 0 0.0000000 0
## 3448 0 0.0000000 0
## 3449 0 0.0000000 0
## 3450 0 0.0000000 0
## 3451 1 0.2172763 0
## 3452 0 0.0000000 0
## 3453 0 0.0000000 0
## 3454 0 0.0000000 0
## 3455 0 0.0000000 0
## 3456 0 0.0000000 0
## 3457 0 0.0000000 0
## 3458 0 0.0000000 0
## 3459 0 0.0000000 0
## 3460 0 0.0000000 0
## 3461 0 0.0000000 0
## 3462 0 0.0000000 0
## 3463 0 0.0000000 0
## 3464 0 0.0000000 0
## 3465 0 0.0000000 0
## 3466 0 0.0000000 0
## 3467 0 0.0000000 0
## 3468 0 0.0000000 0
## 3469 1 0.2172763 0
## 3470 0 0.0000000 0
## 3471 0 0.0000000 0
## 3472 0 0.0000000 0
## 3473 0 0.0000000 0
## 3474 0 0.0000000 0
## 3475 0 0.0000000 0
## 3476 0 0.0000000 0
## 3477 0 0.0000000 0
## 3478 0 0.0000000 0
## 3479 0 0.0000000 0
## 3480 0 0.0000000 0
## 3481 5 1.0863820 0
## 3482 0 0.0000000 0
## 3483 0 0.0000000 0
## 3484 0 0.0000000 0
## 3485 0 0.0000000 0
## 3486 0 0.0000000 0
## 3487 0 0.0000000 0
## 3488 0 0.0000000 0
## 3489 0 0.0000000 0
## 3490 0 0.0000000 0
## 3491 0 0.0000000 0
## 3492 0 0.0000000 0
## 3493 1 0.2172763 0
## 3494 0 0.0000000 0
## 3495 0 0.0000000 0
## 3496 0 0.0000000 0
## 3497 0 0.0000000 0
## 3498 0 0.0000000 0
## 3499 0 0.0000000 0
## 3500 0 0.0000000 0
## 3501 0 0.0000000 0
## 3502 0 0.0000000 0
## 3503 0 0.0000000 0
## 3504 0 0.0000000 0
## 3505 0 0.0000000 0
## 3506 0 0.0000000 0
## 3507 0 0.0000000 0
## 3508 0 0.0000000 0
## 3509 0 0.0000000 0
## 3510 0 0.0000000 0
## 3511 0 0.0000000 0
## 3512 0 0.0000000 0
## 3513 0 0.0000000 0
## 3514 0 0.0000000 0
## 3515 0 0.0000000 0
## 3516 0 0.0000000 0
## 3517 0 0.0000000 0
## 3518 0 0.0000000 0
## 3519 0 0.0000000 0
## 3520 0 0.0000000 0
## 3521 0 0.0000000 0
## 3522 0 0.0000000 0
## 3523 0 0.0000000 0
## 3524 0 0.0000000 0
## 3525 0 0.0000000 0
## 3526 0 0.0000000 0
## 3527 0 0.0000000 0
## 3528 0 0.0000000 0
## 3529 0 0.0000000 0
## 3530 1 0.2172763 0
## 3531 0 0.0000000 0
## 3532 0 0.0000000 0
## 3533 0 0.0000000 0
## 3534 0 0.0000000 0
## 3535 0 0.0000000 0
## 3536 0 0.0000000 0
## 3537 0 0.0000000 0
## 3538 0 0.0000000 0
## 3539 0 0.0000000 0
## 3540 0 0.0000000 0
## 3541 0 0.0000000 0
## 3542 0 0.0000000 0
## 3543 1 0.2172763 0
## 3544 1 0.2172763 0
## 3545 0 0.0000000 0
## 3546 0 0.0000000 0
## 3547 0 0.0000000 0
## 3548 0 0.0000000 0
## 3549 0 0.0000000 0
## 3550 0 0.0000000 0
## 3551 0 0.0000000 0
## 3552 0 0.0000000 0
## 3553 0 0.0000000 0
## 3554 3 0.6518290 0
## 3555 0 0.0000000 0
## 3556 13 2.8245920 0
## 3557 0 0.0000000 0
## 3558 2 0.4345527 0
## 3559 1 0.2172763 0
## 3560 0 0.0000000 0
## 3561 0 0.0000000 0
## 3562 0 0.0000000 0
## 3563 9 1.9554870 0
## 3564 0 0.0000000 0
## 3565 0 0.0000000 0
## 3566 0 0.0000000 0
## 3567 0 0.0000000 0
## 3568 0 0.0000000 0
## 3569 0 0.0000000 0
## 3570 0 0.0000000 0
## 3571 1 0.2172763 0
## 3572 0 0.0000000 0
## 3573 0 0.0000000 0
## 3574 0 0.0000000 0
## 3575 0 0.0000000 0
## 3576 0 0.0000000 0
## 3577 1 0.2172763 0
## 3578 0 0.0000000 0
## 3579 0 0.0000000 0
## 3580 0 0.0000000 0
## 3581 0 0.0000000 0
## 3582 0 0.0000000 0
## 3583 0 0.0000000 0
## 3584 0 0.0000000 0
## 3585 0 0.0000000 0
## 3586 0 0.0000000 0
## 3587 0 0.0000000 0
## 3588 0 0.0000000 0
## 3589 0 0.0000000 0
## 3590 0 0.0000000 0
## 3591 0 0.0000000 0
## 3592 0 0.0000000 0
## 3593 0 0.0000000 0
## 3594 3 0.6518290 0
## 3595 0 0.0000000 0
## 3596 0 0.0000000 0
## 3597 0 0.0000000 0
## 3598 0 0.0000000 0
## 3599 0 0.0000000 0
## 3600 0 0.0000000 0
## 3601 1 0.2172763 0
## 3602 0 0.0000000 0
## 3603 0 0.0000000 0
## 3604 1 0.2172763 0
## 3605 0 0.0000000 0
## 3606 0 0.0000000 0
## 3607 1 0.2172763 0
## 3608 0 0.0000000 0
## 3609 0 0.0000000 0
## 3610 0 0.0000000 0
## 3611 0 0.0000000 0
## 3612 0 0.0000000 0
## 3613 0 0.0000000 0
## 3614 0 0.0000000 0
## 3615 0 0.0000000 0
## 3616 0 0.0000000 0
## 3617 0 0.0000000 0
## 3618 0 0.0000000 0
## 3619 9 1.9554870 0
## 3620 0 0.0000000 0
## 3621 0 0.0000000 0
## 3622 0 0.0000000 0
## 3623 0 0.0000000 0
## 3624 0 0.0000000 0
## 3625 0 0.0000000 0
## 3626 0 0.0000000 0
## 3627 0 0.0000000 0
## 3628 1 0.2172763 0
## 3629 0 0.0000000 0
## 3630 0 0.0000000 0
## 3631 0 0.0000000 0
## 3632 0 0.0000000 0
## 3633 1 0.2172763 0
## 3634 1 0.2172763 0
## 3635 1 0.2172763 0
## 3636 0 0.0000000 0
## 3637 0 0.0000000 0
## 3638 0 0.0000000 0
## 3639 0 0.0000000 0
## 3640 0 0.0000000 0
## 3641 0 0.0000000 0
## 3642 1 0.2172763 0
## 3643 0 0.0000000 0
## 3644 0 0.0000000 0
## 3645 0 0.0000000 0
## 3646 0 0.0000000 0
## 3647 0 0.0000000 0
## 3648 0 0.0000000 0
## 3649 1 0.2172763 0
## 3650 0 0.0000000 0
## 3651 1 0.2172763 0
## 3652 5 1.0863820 0
## 3653 5 1.0863820 0
## 3654 0 0.0000000 0
## 3655 4 0.8691053 0
## 3656 0 0.0000000 0
## 3657 0 0.0000000 0
## 3658 0 0.0000000 0
## 3659 3 0.6518290 0
## 3660 0 0.0000000 0
## 3661 0 0.0000000 0
## 3662 0 0.0000000 0
## 3663 1 0.2172763 0
## 3664 0 0.0000000 0
## 3665 7 1.5209340 0
## 3666 5 1.0863820 0
## 3667 0 0.0000000 0
## 3668 0 0.0000000 0
## 3669 0 0.0000000 0
## 3670 4 0.8691053 0
## 3671 0 0.0000000 0
## 3672 0 0.0000000 0
## 3673 0 0.0000000 0
## 3674 0 0.0000000 0
## 3675 2 0.4345527 0
## 3676 0 0.0000000 0
## 3677 0 0.0000000 0
## 3678 0 0.0000000 0
## 3679 0 0.0000000 0
## 3680 0 0.0000000 0
## 3681 0 0.0000000 0
## 3682 2 0.4345527 0
## 3683 2 0.4345527 0
## 3684 0 0.0000000 0
## 3685 0 0.0000000 0
## 3686 0 0.0000000 0
## 3687 0 0.0000000 0
## 3688 0 0.0000000 0
## 3689 0 0.0000000 0
## 3690 2 0.4345527 0
## 3691 0 0.0000000 0
## 3692 0 0.0000000 0
## 3693 4 0.8691053 0
## 3694 1 0.2172763 0
## 3695 0 0.0000000 0
## 3696 0 0.0000000 0
## 3697 0 0.0000000 0
## 3698 0 0.0000000 0
## 3699 1 0.2172763 0
## 3700 0 0.0000000 0
## 3701 0 0.0000000 0
## 3702 0 0.0000000 0
## 3703 5 1.0863820 0
## 3704 0 0.0000000 0
## 3705 0 0.0000000 0
## 3706 0 0.0000000 0
## 3707 1 0.2172763 0
## 3708 2 0.4345527 0
## 3709 0 0.0000000 0
## 3710 1 0.2172763 0
## 3711 0 0.0000000 0
## 3712 0 0.0000000 0
## 3713 4 0.8691053 0
## 3714 0 0.0000000 0
## 3715 0 0.0000000 0
## 3716 0 0.0000000 0
## 3717 2 0.4345527 0
## 3718 4 0.8691053 0
## 3719 0 0.0000000 0
## 3720 0 0.0000000 0
## 3721 0 0.0000000 0
## 3722 0 0.0000000 0
## 3723 0 0.0000000 0
## 3724 0 0.0000000 0
## 3725 0 0.0000000 0
## 3726 0 0.0000000 0
## 3727 0 0.0000000 0
## 3728 0 0.0000000 0
## 3729 2 0.4345527 0
## 3730 0 0.0000000 0
## 3731 0 0.0000000 0
## 3732 0 0.0000000 0
## 3733 0 0.0000000 0
## 3734 0 0.0000000 0
## 3735 0 0.0000000 0
## 3736 0 0.0000000 0
## 3737 0 0.0000000 0
## 3738 0 0.0000000 0
## 3739 0 0.0000000 0
## 3740 0 0.0000000 0
## 3741 0 0.0000000 0
## 3742 0 0.0000000 0
## 3743 0 0.0000000 0
## 3744 0 0.0000000 0
## 3745 0 0.0000000 0
## 3746 0 0.0000000 0
## 3747 0 0.0000000 0
## 3748 0 0.0000000 0
## 3749 0 0.0000000 0
## 3750 0 0.0000000 0
## 3751 0 0.0000000 0
## 3752 0 0.0000000 0
## 3753 0 0.0000000 0
## 3754 0 0.0000000 0
## 3755 0 0.0000000 0
## 3756 0 0.0000000 0
## 3757 0 0.0000000 0
## 3758 0 0.0000000 0
## 3759 0 0.0000000 0
## 3760 0 0.0000000 0
## 3761 0 0.0000000 0
## 3762 0 0.0000000 0
## 3763 0 0.0000000 0
## 3764 0 0.0000000 0
## 3765 0 0.0000000 0
## 3766 0 0.0000000 0
## 3767 0 0.0000000 0
## 3768 0 0.0000000 0
## 3769 0 0.0000000 0
## 3770 0 0.0000000 0
## 3771 0 0.0000000 0
## 3772 0 0.0000000 0
## 3773 0 0.0000000 0
## 3774 0 0.0000000 0
## 3775 0 0.0000000 0
## 3776 0 0.0000000 0
## 3777 0 0.0000000 0
## 3778 0 0.0000000 0
## 3779 0 0.0000000 0
## 3780 0 0.0000000 0
## 3781 0 0.0000000 0
## 3782 0 0.0000000 0
## 3783 0 0.0000000 0
## 3784 0 0.0000000 0
## 3785 0 0.0000000 0
## 3786 0 0.0000000 0
## 3787 0 0.0000000 0
## 3788 0 0.0000000 0
## 3789 0 0.0000000 0
## 3790 0 0.0000000 0
## 3791 0 0.0000000 0
## 3792 0 0.0000000 0
## 3793 0 0.0000000 0
## 3794 0 0.0000000 0
## 3795 0 0.0000000 0
## 3796 0 0.0000000 0
## 3797 0 0.0000000 0
## 3798 0 0.0000000 0
## 3799 0 0.0000000 0
## 3800 0 0.0000000 0
## 3801 0 0.0000000 0
## 3802 0 0.0000000 0
## 3803 0 0.0000000 0
## 3804 2 0.4345527 0
## 3805 2 0.4345527 0
## 3806 0 0.0000000 0
## 3807 0 0.0000000 0
## 3808 0 0.0000000 0
## 3809 0 0.0000000 0
## 3810 0 0.0000000 0
## 3811 0 0.0000000 0
## 3812 0 0.0000000 0
## 3813 0 0.0000000 0
## 3814 0 0.0000000 0
## 3815 0 0.0000000 0
## 3816 0 0.0000000 0
## 3817 0 0.0000000 0
## 3818 0 0.0000000 0
## 3819 0 0.0000000 0
## 3820 0 0.0000000 0
## 3821 0 0.0000000 0
## 3822 0 0.0000000 0
## 3823 0 0.0000000 0
## 3824 0 0.0000000 0
## 3825 0 0.0000000 0
## 3826 1 0.2172763 0
## 3827 0 0.0000000 0
## 3828 0 0.0000000 0
## 3829 0 0.0000000 0
## 3830 0 0.0000000 0
## 3831 0 0.0000000 0
## 3832 0 0.0000000 0
## 3833 0 0.0000000 0
## 3834 0 0.0000000 0
## 3835 0 0.0000000 0
## 3836 0 0.0000000 0
## 3837 0 0.0000000 0
## 3838 0 0.0000000 0
## 3839 0 0.0000000 0
## 3840 4 0.8691053 0
## 3841 0 0.0000000 0
## 3842 0 0.0000000 0
## 3843 0 0.0000000 0
## 3844 1 0.2172763 0
## 3845 0 0.0000000 0
## 3846 0 0.0000000 0
## 3847 0 0.0000000 0
## 3848 0 0.0000000 0
## 3849 0 0.0000000 0
## 3850 0 0.0000000 0
## 3851 0 0.0000000 0
## 3852 0 0.0000000 0
## 3853 0 0.0000000 0
## 3854 0 0.0000000 0
## 3855 0 0.0000000 0
## 3856 2 0.4345527 0
## 3857 0 0.0000000 0
## 3858 0 0.0000000 0
## 3859 0 0.0000000 0
## 3860 0 0.0000000 0
## 3861 0 0.0000000 0
## 3862 0 0.0000000 0
## 3863 1 0.2172763 0
## 3864 0 0.0000000 0
## 3865 0 0.0000000 0
## 3866 0 0.0000000 0
## 3867 0 0.0000000 0
## 3868 3 0.6518290 0
## 3869 9 1.9554870 0
## 3870 0 0.0000000 0
## 3871 0 0.0000000 0
## 3872 0 0.0000000 0
## 3873 2 0.4345527 0
## 3874 0 0.0000000 0
## 3875 0 0.0000000 0
## 3876 0 0.0000000 0
## 3877 0 0.0000000 0
## 3878 0 0.0000000 0
## 3879 2 0.4345527 0
## 3880 0 0.0000000 0
## 3881 0 0.0000000 0
## 3882 0 0.0000000 0
## 3883 2 0.4345527 0
## 3884 0 0.0000000 0
## 3885 0 0.0000000 0
## 3886 1 0.2172763 0
## 3887 3 0.6518290 0
## 3888 0 0.0000000 0
## 3889 0 0.0000000 0
## 3890 0 0.0000000 0
## 3891 0 0.0000000 0
## 3892 0 0.0000000 0
## 3893 0 0.0000000 0
## 3894 0 0.0000000 0
## 3895 0 0.0000000 0
## 3896 0 0.0000000 0
## 3897 0 0.0000000 0
## 3898 0 0.0000000 0
## 3899 3 0.6518290 0
## 3900 0 0.0000000 0
## 3901 0 0.0000000 0
## 3902 1 0.2172763 0
## 3903 0 0.0000000 0
## 3904 2 0.4345527 0
## 3905 1 0.2172763 0
## 3906 1 0.2172763 0
## 3907 0 0.0000000 0
## 3908 0 0.0000000 0
## 3909 0 0.0000000 0
## 3910 0 0.0000000 0
## 3911 0 0.0000000 0
## 3912 3 0.6518290 0
## 3913 0 0.0000000 0
## 3914 0 0.0000000 0
## 3915 0 0.0000000 0
## 3916 0 0.0000000 0
## 3917 0 0.0000000 0
## 3918 0 0.0000000 0
## 3919 1 0.2172763 0
## 3920 1 0.2172763 0
## 3921 0 0.0000000 0
## 3922 0 0.0000000 0
## 3923 0 0.0000000 0
## 3924 0 0.0000000 0
## 3925 0 0.0000000 0
## 3926 0 0.0000000 0
## 3927 8 1.7382110 0
## 3928 0 0.0000000 0
## 3929 0 0.0000000 0
## 3930 0 0.0000000 0
## 3931 8 1.7382110 0
## 3932 4 0.8691053 0
## 3933 0 0.0000000 0
## 3934 3 0.6518290 0
## 3935 0 0.0000000 0
## 3936 5 1.0863820 0
## 3937 5 1.0863820 0
## 3938 0 0.0000000 0
## 3939 0 0.0000000 0
## 3940 0 0.0000000 0
## 3941 0 0.0000000 0
## 3942 1 0.2172763 0
## 3943 6 1.3036580 0
## 3944 1 0.2172763 0
## 3945 1 0.2172763 0
## 3946 0 0.0000000 0
## 3947 0 0.0000000 0
## 3948 3 0.6518290 0
## 3949 0 0.0000000 0
## 3950 0 0.0000000 0
## 3951 0 0.0000000 0
## 3952 0 0.0000000 0
## 3953 0 0.0000000 0
## 3954 0 0.0000000 0
## 3955 0 0.0000000 0
## 3956 0 0.0000000 0
## 3957 0 0.0000000 0
## 3958 0 0.0000000 0
## 3959 2 0.4345527 0
## 3960 0 0.0000000 0
## 3961 0 0.0000000 0
## 3962 0 0.0000000 0
## 3963 0 0.0000000 0
## 3964 0 0.0000000 0
## 3965 0 0.0000000 0
## 3966 1 0.2172763 0
## 3967 0 0.0000000 0
## 3968 0 0.0000000 0
## 3969 0 0.0000000 0
## 3970 1 0.2172763 0
## 3971 0 0.0000000 0
## 3972 1 0.2172763 0
## 3973 0 0.0000000 0
## 3974 0 0.0000000 0
## 3975 0 0.0000000 0
## 3976 2 0.4345527 0
## 3977 0 0.0000000 0
## 3978 9 1.9554870 0
## 3979 0 0.0000000 0
## 3980 0 0.0000000 0
## 3981 0 0.0000000 0
## 3982 0 0.0000000 0
## 3983 0 0.0000000 0
## 3984 0 0.0000000 0
## 3985 0 0.0000000 0
## 3986 0 0.0000000 0
## 3987 0 0.0000000 0
## 3988 0 0.0000000 0
## 3989 0 0.0000000 0
## 3990 0 0.0000000 0
## 3991 0 0.0000000 0
## 3992 0 0.0000000 0
## 3993 0 0.0000000 0
## 3994 0 0.0000000 0
## 3995 0 0.0000000 0
## 3996 0 0.0000000 0
## 3997 0 0.0000000 0
## 3998 0 0.0000000 0
## 3999 2 0.4345527 0
## 4000 0 0.0000000 0
## 4001 0 0.0000000 0
## 4002 0 0.0000000 0
## 4003 0 0.0000000 0
## 4004 0 0.0000000 0
## 4005 0 0.0000000 0
## 4006 0 0.0000000 0
## 4007 2 0.4345527 0
## 4008 0 0.0000000 0
## 4009 0 0.0000000 0
## 4010 0 0.0000000 0
## 4011 0 0.0000000 0
## 4012 0 0.0000000 0
## 4013 0 0.0000000 0
## 4014 0 0.0000000 0
## 4015 0 0.0000000 0
## 4016 0 0.0000000 0
## 4017 0 0.0000000 0
## 4018 0 0.0000000 0
## 4019 0 0.0000000 0
## 4020 0 0.0000000 0
## 4021 0 0.0000000 0
## 4022 0 0.0000000 0
## 4023 0 0.0000000 0
## 4024 0 0.0000000 0
## 4025 4 0.8691053 0
## 4026 0 0.0000000 0
## 4027 0 0.0000000 0
## 4028 0 0.0000000 0
## 4029 0 0.0000000 0
## 4030 0 0.0000000 0
## 4031 0 0.0000000 0
## 4032 0 0.0000000 0
## 4033 0 0.0000000 0
## 4034 0 0.0000000 0
## 4035 0 0.0000000 0
## 4036 2 0.4345527 0
## 4037 2 0.4345527 0
## 4038 0 0.0000000 0
## 4039 0 0.0000000 0
## 4040 0 0.0000000 0
## 4041 0 0.0000000 0
## 4042 2 0.4345527 0
## 4043 0 0.0000000 0
## 4044 0 0.0000000 0
## 4045 0 0.0000000 0
## 4046 0 0.0000000 0
## 4047 2 0.4345527 0
## 4048 0 0.0000000 0
## 4049 0 0.0000000 0
## 4050 1 0.2172763 0
## 4051 0 0.0000000 0
## 4052 0 0.0000000 0
## 4053 1 0.2172763 0
## 4054 0 0.0000000 0
## 4055 0 0.0000000 0
## 4056 0 0.0000000 0
## 4057 0 0.0000000 0
## 4058 0 0.0000000 0
## 4059 0 0.0000000 0
## 4060 0 0.0000000 0
## 4061 0 0.0000000 0
## 4062 0 0.0000000 0
## 4063 0 0.0000000 0
## 4064 0 0.0000000 0
## 4065 2 0.4345527 0
## 4066 0 0.0000000 0
## 4067 0 0.0000000 0
## 4068 2 0.4345527 0
## 4069 2 0.4345527 0
## 4070 0 0.0000000 0
## 4071 0 0.0000000 0
## 4072 0 0.0000000 0
## 4073 0 0.0000000 0
## 4074 0 0.0000000 0
## 4075 0 0.0000000 0
## 4076 0 0.0000000 0
## 4077 0 0.0000000 0
## 4078 0 0.0000000 0
## 4079 0 0.0000000 0
## 4080 0 0.0000000 0
## 4081 0 0.0000000 0
## 4082 1 0.2172763 0
## 4083 0 0.0000000 0
## 4084 0 0.0000000 0
## 4085 3 0.6518290 0
## 4086 0 0.0000000 0
## 4087 2 0.4345527 0
## 4088 0 0.0000000 0
## 4089 0 0.0000000 0
## 4090 0 0.0000000 0
## 4091 0 0.0000000 0
## 4092 0 0.0000000 0
## 4093 0 0.0000000 0
## 4094 0 0.0000000 0
## 4095 0 0.0000000 0
## 4096 0 0.0000000 0
## 4097 0 0.0000000 0
## 4098 0 0.0000000 0
## 4099 0 0.0000000 0
## 4100 0 0.0000000 0
## 4101 0 0.0000000 0
## 4102 2 0.4345527 0
## 4103 0 0.0000000 0
## 4104 0 0.0000000 0
## 4105 0 0.0000000 0
## 4106 3 0.6518290 0
## 4107 0 0.0000000 0
## 4108 0 0.0000000 0
## 4109 0 0.0000000 0
## 4110 0 0.0000000 0
## 4111 0 0.0000000 0
## 4112 0 0.0000000 0
## 4113 0 0.0000000 0
## 4114 0 0.0000000 0
## 4115 0 0.0000000 0
## 4116 0 0.0000000 0
## 4117 1 0.2172763 0
## 4118 1 0.2172763 0
## 4119 1 0.2172763 0
## 4120 0 0.0000000 0
## 4121 0 0.0000000 0
## 4122 0 0.0000000 0
## 4123 0 0.0000000 0
## 4124 0 0.0000000 0
## 4125 0 0.0000000 0
## 4126 0 0.0000000 0
## 4127 0 0.0000000 0
## 4128 0 0.0000000 0
## 4129 0 0.0000000 0
## 4130 0 0.0000000 0
## 4131 0 0.0000000 0
## 4132 0 0.0000000 0
## 4133 0 0.0000000 0
## 4134 0 0.0000000 0
## 4135 2 0.4345527 0
## 4136 0 0.0000000 0
## 4137 0 0.0000000 0
## 4138 0 0.0000000 0
## 4139 0 0.0000000 0
## 4140 8 1.7382110 0
## 4141 3 0.6518290 0
## 4142 0 0.0000000 0
## 4143 0 0.0000000 0
## 4144 0 0.0000000 0
## 4145 0 0.0000000 0
## 4146 0 0.0000000 0
## 4147 2 0.4345527 0
## 4148 0 0.0000000 0
## 4149 0 0.0000000 0
## 4150 0 0.0000000 0
## 4151 0 0.0000000 0
## 4152 0 0.0000000 0
## 4153 0 0.0000000 0
## 4154 0 0.0000000 0
## 4155 0 0.0000000 0
## 4156 0 0.0000000 0
## 4157 0 0.0000000 0
## 4158 0 0.0000000 0
## 4159 0 0.0000000 0
## 4160 0 0.0000000 0
## 4161 0 0.0000000 0
## 4162 0 0.0000000 0
## 4163 0 0.0000000 0
## 4164 0 0.0000000 0
## 4165 0 0.0000000 0
## 4166 0 0.0000000 0
## 4167 0 0.0000000 0
## 4168 0 0.0000000 0
## 4169 0 0.0000000 0
## 4170 0 0.0000000 0
## 4171 0 0.0000000 0
## 4172 0 0.0000000 0
## 4173 0 0.0000000 0
## 4174 0 0.0000000 0
## 4175 0 0.0000000 0
## 4176 0 0.0000000 0
## 4177 0 0.0000000 0
## 4178 0 0.0000000 0
## 4179 0 0.0000000 0
## 4180 0 0.0000000 0
## 4181 0 0.0000000 0
## 4182 0 0.0000000 0
## 4183 0 0.0000000 0
## 4184 0 0.0000000 0
## 4185 0 0.0000000 0
## 4186 0 0.0000000 0
## 4187 0 0.0000000 0
## 4188 0 0.0000000 0
## 4189 0 0.0000000 0
## 4190 0 0.0000000 0
## 4191 1 0.2172763 0
## 4192 0 0.0000000 0
## 4193 0 0.0000000 0
## 4194 0 0.0000000 0
## 4195 0 0.0000000 0
## 4196 2 0.4345527 0
## 4197 0 0.0000000 0
## 4198 0 0.0000000 0
## 4199 0 0.0000000 0
## 4200 0 0.0000000 0
## 4201 0 0.0000000 0
## 4202 0 0.0000000 0
## 4203 0 0.0000000 0
## 4204 0 0.0000000 0
## 4205 0 0.0000000 0
## 4206 0 0.0000000 0
## 4207 0 0.0000000 0
## 4208 0 0.0000000 0
## 4209 0 0.0000000 0
## 4210 0 0.0000000 0
## 4211 0 0.0000000 0
## 4212 0 0.0000000 0
## 4213 0 0.0000000 0
## 4214 0 0.0000000 0
## 4215 0 0.0000000 0
## 4216 0 0.0000000 0
## 4217 0 0.0000000 0
## 4218 0 0.0000000 0
## 4219 0 0.0000000 0
## 4220 0 0.0000000 0
## 4221 0 0.0000000 0
## 4222 0 0.0000000 0
## Hyper_Fold_Enrichment Hyper_Region_Set_Coverage Hyper_Term_Region_Coverage
## 1 2.0920150 0.030425960 0.45454550
## 2 2.0920150 0.030425960 0.45454550
## 3 3.4518260 0.012170390 0.75000000
## 4 3.8353620 0.010141990 0.83333330
## 5 1.8605580 0.038539550 0.40425530
## 6 2.0304860 0.030425960 0.44117650
## 7 2.0304860 0.030425960 0.44117650
## 8 2.2091680 0.024340770 0.48000000
## 9 2.4546320 0.016227180 0.53333330
## 10 1.2316370 0.192697800 0.26760560
## 11 4.6024340 0.006085193 1.00000000
## 12 4.6024340 0.006085193 1.00000000
## 13 4.6024340 0.006085193 1.00000000
## 14 4.6024340 0.006085193 1.00000000
## 15 4.6024340 0.006085193 1.00000000
## 16 4.6024340 0.006085193 1.00000000
## 17 4.6024340 0.006085193 1.00000000
## 18 2.4782340 0.014198780 0.53846150
## 19 2.4782340 0.014198780 0.53846150
## 20 1.9471840 0.022312370 0.42307690
## 21 1.8409740 0.024340770 0.40000000
## 22 2.3012170 0.014198780 0.50000000
## 23 2.3012170 0.014198780 0.50000000
## 24 2.3012170 0.014198780 0.50000000
## 25 3.0682890 0.008113590 0.66666670
## 26 3.0682890 0.008113590 0.66666670
## 27 2.5569080 0.010141990 0.55555560
## 28 2.1478030 0.014198780 0.46666670
## 29 2.1478030 0.014198780 0.46666670
## 30 2.1478030 0.014198780 0.46666670
## 31 1.8409740 0.020283980 0.40000000
## 32 1.8409740 0.020283980 0.40000000
## 33 3.4518260 0.006085193 0.75000000
## 34 3.4518260 0.006085193 0.75000000
## 35 3.4518260 0.006085193 0.75000000
## 36 3.4518260 0.006085193 0.75000000
## 37 3.4518260 0.006085193 0.75000000
## 38 3.4518260 0.006085193 0.75000000
## 39 3.4518260 0.006085193 0.75000000
## 40 3.4518260 0.006085193 0.75000000
## 41 1.6108520 0.028397570 0.35000000
## 42 2.0135650 0.014198780 0.43750000
## 43 2.1242000 0.012170390 0.46153850
## 44 2.1242000 0.012170390 0.46153850
## 45 2.6299620 0.008113590 0.57142860
## 46 2.3012170 0.010141990 0.50000000
## 47 2.3012170 0.010141990 0.50000000
## 48 4.6024340 0.004056795 1.00000000
## 49 4.6024340 0.004056795 1.00000000
## 50 4.6024340 0.004056795 1.00000000
## 51 4.6024340 0.004056795 1.00000000
## 52 4.6024340 0.004056795 1.00000000
## 53 4.6024340 0.004056795 1.00000000
## 54 4.6024340 0.004056795 1.00000000
## 55 4.6024340 0.004056795 1.00000000
## 56 4.6024340 0.004056795 1.00000000
## 57 4.6024340 0.004056795 1.00000000
## 58 4.6024340 0.004056795 1.00000000
## 59 4.6024340 0.004056795 1.00000000
## 60 4.6024340 0.004056795 1.00000000
## 61 4.6024340 0.004056795 1.00000000
## 62 4.6024340 0.004056795 1.00000000
## 63 4.6024340 0.004056795 1.00000000
## 64 4.6024340 0.004056795 1.00000000
## 65 4.6024340 0.004056795 1.00000000
## 66 4.6024340 0.004056795 1.00000000
## 67 4.6024340 0.004056795 1.00000000
## 68 4.6024340 0.004056795 1.00000000
## 69 4.6024340 0.004056795 1.00000000
## 70 4.6024340 0.004056795 1.00000000
## 71 4.6024340 0.004056795 1.00000000
## 72 1.7046050 0.020283980 0.37037040
## 73 1.0897450 0.381338700 0.23677580
## 74 1.9724720 0.012170390 0.42857140
## 75 1.7533080 0.016227180 0.38095240
## 76 2.0920150 0.010141990 0.45454550
## 77 1.4041320 0.036511160 0.30508470
## 78 2.7614600 0.006085193 0.60000000
## 79 2.7614600 0.006085193 0.60000000
## 80 2.7614600 0.006085193 0.60000000
## 81 2.7614600 0.006085193 0.60000000
## 82 2.7614600 0.006085193 0.60000000
## 83 2.7614600 0.006085193 0.60000000
## 84 2.7614600 0.006085193 0.60000000
## 85 2.7614600 0.006085193 0.60000000
## 86 2.7614600 0.006085193 0.60000000
## 87 2.7614600 0.006085193 0.60000000
## 88 2.7614600 0.006085193 0.60000000
## 89 2.7614600 0.006085193 0.60000000
## 90 2.7614600 0.006085193 0.60000000
## 91 2.3012170 0.008113590 0.50000000
## 92 2.3012170 0.008113590 0.50000000
## 93 2.3012170 0.008113590 0.50000000
## 94 1.7898350 0.014198780 0.38888890
## 95 1.5341450 0.022312370 0.33333330
## 96 1.4593080 0.026369170 0.31707320
## 97 1.4318680 0.028397570 0.31111110
## 98 1.6956340 0.014198780 0.36842110
## 99 1.9176810 0.010141990 0.41666670
## 100 1.9176810 0.010141990 0.41666670
## 101 1.9176810 0.010141990 0.41666670
## 102 1.9176810 0.010141990 0.41666670
## 103 1.3807300 0.030425960 0.30000000
## 104 2.0455260 0.008113590 0.44444440
## 105 2.0455260 0.008113590 0.44444440
## 106 2.0455260 0.008113590 0.44444440
## 107 2.0455260 0.008113590 0.44444440
## 108 2.0455260 0.008113590 0.44444440
## 109 2.0455260 0.008113590 0.44444440
## 110 2.3012170 0.006085193 0.50000000
## 111 2.3012170 0.006085193 0.50000000
## 112 2.3012170 0.006085193 0.50000000
## 113 3.0682890 0.004056795 0.66666670
## 114 3.0682890 0.004056795 0.66666670
## 115 3.0682890 0.004056795 0.66666670
## 116 3.0682890 0.004056795 0.66666670
## 117 3.0682890 0.004056795 0.66666670
## 118 3.0682890 0.004056795 0.66666670
## 119 3.0682890 0.004056795 0.66666670
## 120 3.0682890 0.004056795 0.66666670
## 121 3.0682890 0.004056795 0.66666670
## 122 3.0682890 0.004056795 0.66666670
## 123 3.0682890 0.004056795 0.66666670
## 124 3.0682890 0.004056795 0.66666670
## 125 3.0682890 0.004056795 0.66666670
## 126 3.0682890 0.004056795 0.66666670
## 127 3.0682890 0.004056795 0.66666670
## 128 3.0682890 0.004056795 0.66666670
## 129 3.0682890 0.004056795 0.66666670
## 130 3.0682890 0.004056795 0.66666670
## 131 3.0682890 0.004056795 0.66666670
## 132 3.0682890 0.004056795 0.66666670
## 133 3.0682890 0.004056795 0.66666670
## 134 3.0682890 0.004056795 0.66666670
## 135 3.0682890 0.004056795 0.66666670
## 136 3.0682890 0.004056795 0.66666670
## 137 3.0682890 0.004056795 0.66666670
## 138 3.0682890 0.004056795 0.66666670
## 139 3.0682890 0.004056795 0.66666670
## 140 3.0682890 0.004056795 0.66666670
## 141 3.0682890 0.004056795 0.66666670
## 142 3.0682890 0.004056795 0.66666670
## 143 3.0682890 0.004056795 0.66666670
## 144 3.0682890 0.004056795 0.66666670
## 145 3.0682890 0.004056795 0.66666670
## 146 3.0682890 0.004056795 0.66666670
## 147 3.0682890 0.004056795 0.66666670
## 148 3.0682890 0.004056795 0.66666670
## 149 1.2601900 0.046653140 0.27380950
## 150 1.2601900 0.046653140 0.27380950
## 151 1.4382610 0.020283980 0.31250000
## 152 1.3807300 0.024340770 0.30000000
## 153 1.3807300 0.024340770 0.30000000
## 154 1.6243880 0.012170390 0.35294120
## 155 1.6243880 0.012170390 0.35294120
## 156 1.6243880 0.012170390 0.35294120
## 157 1.5341450 0.014198780 0.33333330
## 158 1.8409740 0.008113590 0.40000000
## 159 1.8409740 0.008113590 0.40000000
## 160 1.8409740 0.008113590 0.40000000
## 161 1.8409740 0.008113590 0.40000000
## 162 1.1758040 0.070993910 0.25547450
## 163 1.4727790 0.016227180 0.32000000
## 164 1.4283420 0.018255580 0.31034480
## 165 1.0419810 0.501014200 0.22639780
## 166 1.1140810 0.123732300 0.24206350
## 167 1.1811560 0.058823530 0.25663720
## 168 1.5341450 0.012170390 0.33333330
## 169 1.9724720 0.006085193 0.42857140
## 170 1.9724720 0.006085193 0.42857140
## 171 1.9724720 0.006085193 0.42857140
## 172 1.9724720 0.006085193 0.42857140
## 173 1.9724720 0.006085193 0.42857140
## 174 1.4644110 0.014198780 0.31818180
## 175 1.4644110 0.014198780 0.31818180
## 176 1.0389900 0.505071000 0.22574800
## 177 1.3536570 0.020283980 0.29411760
## 178 1.1593920 0.066937120 0.25190840
## 179 1.6736120 0.008113590 0.36363640
## 180 1.6736120 0.008113590 0.36363640
## 181 1.6736120 0.008113590 0.36363640
## 182 2.3012170 0.004056795 0.50000000
## 183 2.3012170 0.004056795 0.50000000
## 184 2.3012170 0.004056795 0.50000000
## 185 2.3012170 0.004056795 0.50000000
## 186 2.3012170 0.004056795 0.50000000
## 187 2.3012170 0.004056795 0.50000000
## 188 2.3012170 0.004056795 0.50000000
## 189 2.3012170 0.004056795 0.50000000
## 190 2.3012170 0.004056795 0.50000000
## 191 2.3012170 0.004056795 0.50000000
## 192 2.3012170 0.004056795 0.50000000
## 193 2.3012170 0.004056795 0.50000000
## 194 2.3012170 0.004056795 0.50000000
## 195 2.3012170 0.004056795 0.50000000
## 196 2.3012170 0.004056795 0.50000000
## 197 2.3012170 0.004056795 0.50000000
## 198 2.3012170 0.004056795 0.50000000
## 199 2.3012170 0.004056795 0.50000000
## 200 2.3012170 0.004056795 0.50000000
## 201 2.3012170 0.004056795 0.50000000
## 202 2.3012170 0.004056795 0.50000000
## 203 2.3012170 0.004056795 0.50000000
## 204 2.3012170 0.004056795 0.50000000
## 205 2.3012170 0.004056795 0.50000000
## 206 2.3012170 0.004056795 0.50000000
## 207 1.1053880 0.111561900 0.24017470
## 208 1.5341450 0.010141990 0.33333330
## 209 1.3361910 0.018255580 0.29032260
## 210 1.4534000 0.012170390 0.31578950
## 211 1.4007410 0.014198780 0.30434780
## 212 4.6024340 0.002028398 1.00000000
## 213 4.6024340 0.002028398 1.00000000
## 214 4.6024340 0.002028398 1.00000000
## 215 4.6024340 0.002028398 1.00000000
## 216 4.6024340 0.002028398 1.00000000
## 217 4.6024340 0.002028398 1.00000000
## 218 4.6024340 0.002028398 1.00000000
## 219 4.6024340 0.002028398 1.00000000
## 220 4.6024340 0.002028398 1.00000000
## 221 4.6024340 0.002028398 1.00000000
## 222 4.6024340 0.002028398 1.00000000
## 223 4.6024340 0.002028398 1.00000000
## 224 4.6024340 0.002028398 1.00000000
## 225 4.6024340 0.002028398 1.00000000
## 226 4.6024340 0.002028398 1.00000000
## 227 4.6024340 0.002028398 1.00000000
## 228 4.6024340 0.002028398 1.00000000
## 229 4.6024340 0.002028398 1.00000000
## 230 4.6024340 0.002028398 1.00000000
## 231 4.6024340 0.002028398 1.00000000
## 232 4.6024340 0.002028398 1.00000000
## 233 4.6024340 0.002028398 1.00000000
## 234 4.6024340 0.002028398 1.00000000
## 235 4.6024340 0.002028398 1.00000000
## 236 4.6024340 0.002028398 1.00000000
## 237 4.6024340 0.002028398 1.00000000
## 238 4.6024340 0.002028398 1.00000000
## 239 4.6024340 0.002028398 1.00000000
## 240 4.6024340 0.002028398 1.00000000
## 241 4.6024340 0.002028398 1.00000000
## 242 4.6024340 0.002028398 1.00000000
## 243 4.6024340 0.002028398 1.00000000
## 244 4.6024340 0.002028398 1.00000000
## 245 4.6024340 0.002028398 1.00000000
## 246 4.6024340 0.002028398 1.00000000
## 247 4.6024340 0.002028398 1.00000000
## 248 4.6024340 0.002028398 1.00000000
## 249 4.6024340 0.002028398 1.00000000
## 250 4.6024340 0.002028398 1.00000000
## 251 4.6024340 0.002028398 1.00000000
## 252 4.6024340 0.002028398 1.00000000
## 253 4.6024340 0.002028398 1.00000000
## 254 4.6024340 0.002028398 1.00000000
## 255 4.6024340 0.002028398 1.00000000
## 256 4.6024340 0.002028398 1.00000000
## 257 4.6024340 0.002028398 1.00000000
## 258 4.6024340 0.002028398 1.00000000
## 259 4.6024340 0.002028398 1.00000000
## 260 4.6024340 0.002028398 1.00000000
## 261 4.6024340 0.002028398 1.00000000
## 262 4.6024340 0.002028398 1.00000000
## 263 4.6024340 0.002028398 1.00000000
## 264 4.6024340 0.002028398 1.00000000
## 265 4.6024340 0.002028398 1.00000000
## 266 4.6024340 0.002028398 1.00000000
## 267 1.2552090 0.024340770 0.27272730
## 268 1.7259130 0.006085193 0.37500000
## 269 1.7259130 0.006085193 0.37500000
## 270 1.7259130 0.006085193 0.37500000
## 271 1.7259130 0.006085193 0.37500000
## 272 1.7259130 0.006085193 0.37500000
## 273 1.7259130 0.006085193 0.37500000
## 274 1.1644710 0.042596350 0.25301200
## 275 1.3149810 0.016227180 0.28571430
## 276 1.5341450 0.008113590 0.33333330
## 277 1.5341450 0.008113590 0.33333330
## 278 1.5341450 0.008113590 0.33333330
## 279 1.5341450 0.008113590 0.33333330
## 280 1.5341450 0.008113590 0.33333330
## 281 1.2273160 0.024340770 0.26666670
## 282 1.0970920 0.083164300 0.23837210
## 283 1.2053990 0.022312370 0.26190480
## 284 1.3149810 0.012170390 0.28571430
## 285 1.8409740 0.004056795 0.40000000
## 286 1.8409740 0.004056795 0.40000000
## 287 1.8409740 0.004056795 0.40000000
## 288 1.8409740 0.004056795 0.40000000
## 289 1.8409740 0.004056795 0.40000000
## 290 1.8409740 0.004056795 0.40000000
## 291 1.8409740 0.004056795 0.40000000
## 292 1.8409740 0.004056795 0.40000000
## 293 1.8409740 0.004056795 0.40000000
## 294 1.8409740 0.004056795 0.40000000
## 295 1.8409740 0.004056795 0.40000000
## 296 1.8409740 0.004056795 0.40000000
## 297 1.8409740 0.004056795 0.40000000
## 298 1.8409740 0.004056795 0.40000000
## 299 1.8409740 0.004056795 0.40000000
## 300 1.8409740 0.004056795 0.40000000
## 301 1.8409740 0.004056795 0.40000000
## 302 1.3536570 0.010141990 0.29411760
## 303 1.4161340 0.008113590 0.30769230
## 304 1.4161340 0.008113590 0.30769230
## 305 1.4161340 0.008113590 0.30769230
## 306 1.4161340 0.008113590 0.30769230
## 307 1.5341450 0.006085193 0.33333330
## 308 1.5341450 0.006085193 0.33333330
## 309 1.5341450 0.006085193 0.33333330
## 310 1.5341450 0.006085193 0.33333330
## 311 1.5341450 0.006085193 0.33333330
## 312 1.1339330 0.034482760 0.24637680
## 313 1.1329070 0.032454360 0.24615380
## 314 1.1801110 0.020283980 0.25641030
## 315 1.0739010 0.070993910 0.23333330
## 316 1.0640040 0.087221100 0.23118280
## 317 1.0603650 0.095334690 0.23039220
## 318 1.2784540 0.010141990 0.27777780
## 319 1.2784540 0.010141990 0.27777780
## 320 1.2784540 0.010141990 0.27777780
## 321 1.3149810 0.008113590 0.28571430
## 322 1.3149810 0.008113590 0.28571430
## 323 1.3149810 0.008113590 0.28571430
## 324 1.3807300 0.006085193 0.30000000
## 325 1.3807300 0.006085193 0.30000000
## 326 1.3807300 0.006085193 0.30000000
## 327 1.3807300 0.006085193 0.30000000
## 328 1.3807300 0.006085193 0.30000000
## 329 1.3807300 0.006085193 0.30000000
## 330 1.3807300 0.006085193 0.30000000
## 331 1.3807300 0.006085193 0.30000000
## 332 1.3807300 0.006085193 0.30000000
## 333 1.0712560 0.054766730 0.23275860
## 334 1.2006350 0.012170390 0.26086960
## 335 1.1250390 0.022312370 0.24444440
## 336 1.5341450 0.004056795 0.33333330
## 337 1.5341450 0.004056795 0.33333330
## 338 1.5341450 0.004056795 0.33333330
## 339 1.5341450 0.004056795 0.33333330
## 340 1.5341450 0.004056795 0.33333330
## 341 1.5341450 0.004056795 0.33333330
## 342 1.5341450 0.004056795 0.33333330
## 343 1.5341450 0.004056795 0.33333330
## 344 1.5341450 0.004056795 0.33333330
## 345 1.5341450 0.004056795 0.33333330
## 346 1.5341450 0.004056795 0.33333330
## 347 1.5341450 0.004056795 0.33333330
## 348 2.3012170 0.002028398 0.50000000
## 349 2.3012170 0.002028398 0.50000000
## 350 2.3012170 0.002028398 0.50000000
## 351 2.3012170 0.002028398 0.50000000
## 352 2.3012170 0.002028398 0.50000000
## 353 2.3012170 0.002028398 0.50000000
## 354 2.3012170 0.002028398 0.50000000
## 355 2.3012170 0.002028398 0.50000000
## 356 2.3012170 0.002028398 0.50000000
## 357 2.3012170 0.002028398 0.50000000
## 358 2.3012170 0.002028398 0.50000000
## 359 2.3012170 0.002028398 0.50000000
## 360 2.3012170 0.002028398 0.50000000
## 361 2.3012170 0.002028398 0.50000000
## 362 2.3012170 0.002028398 0.50000000
## 363 2.3012170 0.002028398 0.50000000
## 364 2.3012170 0.002028398 0.50000000
## 365 2.3012170 0.002028398 0.50000000
## 366 2.3012170 0.002028398 0.50000000
## 367 2.3012170 0.002028398 0.50000000
## 368 2.3012170 0.002028398 0.50000000
## 369 2.3012170 0.002028398 0.50000000
## 370 2.3012170 0.002028398 0.50000000
## 371 2.3012170 0.002028398 0.50000000
## 372 2.3012170 0.002028398 0.50000000
## 373 2.3012170 0.002028398 0.50000000
## 374 2.3012170 0.002028398 0.50000000
## 375 2.3012170 0.002028398 0.50000000
## 376 2.3012170 0.002028398 0.50000000
## 377 2.3012170 0.002028398 0.50000000
## 378 2.3012170 0.002028398 0.50000000
## 379 2.3012170 0.002028398 0.50000000
## 380 2.3012170 0.002028398 0.50000000
## 381 2.3012170 0.002028398 0.50000000
## 382 2.3012170 0.002028398 0.50000000
## 383 2.3012170 0.002028398 0.50000000
## 384 2.3012170 0.002028398 0.50000000
## 385 2.3012170 0.002028398 0.50000000
## 386 1.2111670 0.010141990 0.26315790
## 387 1.2111670 0.010141990 0.26315790
## 388 1.1045840 0.024340770 0.24000000
## 389 1.1045840 0.024340770 0.24000000
## 390 1.0251360 0.194726200 0.22273780
## 391 1.0921030 0.028397570 0.23728810
## 392 1.0658270 0.044624750 0.23157890
## 393 1.2273160 0.008113590 0.26666670
## 394 1.2273160 0.008113590 0.26666670
## 395 1.0718000 0.034482760 0.23287670
## 396 1.0621000 0.036511160 0.23076920
## 397 1.2552090 0.006085193 0.27272730
## 398 1.0405500 0.052738340 0.22608700
## 399 1.0405500 0.052738340 0.22608700
## 400 1.0405500 0.052738340 0.22608700
## 401 1.0684220 0.026369170 0.23214290
## 402 1.1506090 0.010141990 0.25000000
## 403 1.1109320 0.014198780 0.24137930
## 404 1.1109320 0.014198780 0.24137930
## 405 1.0460080 0.040567950 0.22727270
## 406 1.0355480 0.054766730 0.22500000
## 407 1.0365840 0.050709940 0.22522520
## 408 1.0621000 0.024340770 0.23076920
## 409 1.0829260 0.016227180 0.23529410
## 410 1.0460080 0.030425960 0.22727270
## 411 1.3149810 0.004056795 0.28571430
## 412 1.3149810 0.004056795 0.28571430
## 413 1.3149810 0.004056795 0.28571430
## 414 1.3149810 0.004056795 0.28571430
## 415 1.3149810 0.004056795 0.28571430
## 416 1.3149810 0.004056795 0.28571430
## 417 1.3149810 0.004056795 0.28571430
## 418 1.3149810 0.004056795 0.28571430
## 419 1.3149810 0.004056795 0.28571430
## 420 1.3149810 0.004056795 0.28571430
## 421 1.0180500 0.097363080 0.22119820
## 422 1.1506090 0.008113590 0.25000000
## 423 1.1506090 0.008113590 0.25000000
## 424 1.1506090 0.008113590 0.25000000
## 425 1.0070430 0.245436100 0.21880650
## 426 1.0621000 0.018255580 0.23076920
## 427 1.0739010 0.014198780 0.23333330
## 428 1.0958180 0.010141990 0.23809520
## 429 1.1506090 0.006085193 0.25000000
## 430 1.1506090 0.006085193 0.25000000
## 431 1.1506090 0.006085193 0.25000000
## 432 1.1506090 0.006085193 0.25000000
## 433 1.1506090 0.006085193 0.25000000
## 434 1.1506090 0.006085193 0.25000000
## 435 1.5341450 0.002028398 0.33333330
## 436 1.5341450 0.002028398 0.33333330
## 437 1.5341450 0.002028398 0.33333330
## 438 1.5341450 0.002028398 0.33333330
## 439 1.5341450 0.002028398 0.33333330
## 440 1.5341450 0.002028398 0.33333330
## 441 1.5341450 0.002028398 0.33333330
## 442 1.5341450 0.002028398 0.33333330
## 443 1.5341450 0.002028398 0.33333330
## 444 1.5341450 0.002028398 0.33333330
## 445 1.5341450 0.002028398 0.33333330
## 446 1.5341450 0.002028398 0.33333330
## 447 1.5341450 0.002028398 0.33333330
## 448 1.5341450 0.002028398 0.33333330
## 449 1.5341450 0.002028398 0.33333330
## 450 1.5341450 0.002028398 0.33333330
## 451 1.5341450 0.002028398 0.33333330
## 452 1.5341450 0.002028398 0.33333330
## 453 1.5341450 0.002028398 0.33333330
## 454 1.5341450 0.002028398 0.33333330
## 455 1.5341450 0.002028398 0.33333330
## 456 1.5341450 0.002028398 0.33333330
## 457 1.5341450 0.002028398 0.33333330
## 458 1.5341450 0.002028398 0.33333330
## 459 1.5341450 0.002028398 0.33333330
## 460 1.5341450 0.002028398 0.33333330
## 461 1.5341450 0.002028398 0.33333330
## 462 1.5341450 0.002028398 0.33333330
## 463 1.5341450 0.002028398 0.33333330
## 464 1.5341450 0.002028398 0.33333330
## 465 1.5341450 0.002028398 0.33333330
## 466 1.5341450 0.002028398 0.33333330
## 467 1.5341450 0.002028398 0.33333330
## 468 1.5341450 0.002028398 0.33333330
## 469 1.5341450 0.002028398 0.33333330
## 470 1.5341450 0.002028398 0.33333330
## 471 1.5341450 0.002028398 0.33333330
## 472 1.5341450 0.002028398 0.33333330
## 473 1.5341450 0.002028398 0.33333330
## 474 1.5341450 0.002028398 0.33333330
## 475 1.5341450 0.002028398 0.33333330
## 476 1.5341450 0.002028398 0.33333330
## 477 1.5341450 0.002028398 0.33333330
## 478 1.5341450 0.002028398 0.33333330
## 479 1.5341450 0.002028398 0.33333330
## 480 1.5341450 0.002028398 0.33333330
## 481 1.0829260 0.008113590 0.23529410
## 482 1.0829260 0.008113590 0.23529410
## 483 1.0829260 0.008113590 0.23529410
## 484 1.1506090 0.004056795 0.25000000
## 485 1.1506090 0.004056795 0.25000000
## 486 1.1506090 0.004056795 0.25000000
## 487 1.1506090 0.004056795 0.25000000
## 488 1.1506090 0.004056795 0.25000000
## 489 1.1506090 0.004056795 0.25000000
## 490 1.1506090 0.004056795 0.25000000
## 491 1.1506090 0.004056795 0.25000000
## 492 1.1506090 0.004056795 0.25000000
## 493 1.0227630 0.012170390 0.22222220
## 494 1.0227630 0.012170390 0.22222220
## 495 0.9971941 0.026369170 0.21666670
## 496 1.0621000 0.006085193 0.23076920
## 497 1.0621000 0.006085193 0.23076920
## 498 1.0621000 0.006085193 0.23076920
## 499 1.0621000 0.006085193 0.23076920
## 500 1.0621000 0.006085193 0.23076920
## 501 1.0621000 0.006085193 0.23076920
## 502 1.0621000 0.006085193 0.23076920
## 503 1.0621000 0.006085193 0.23076920
## 504 1.0621000 0.006085193 0.23076920
## 505 1.0067820 0.014198780 0.21875000
## 506 1.0067820 0.014198780 0.21875000
## 507 1.0067820 0.014198780 0.21875000
## 508 0.9912935 0.028397570 0.21538460
## 509 0.9951209 0.016227180 0.21621620
## 510 1.0227630 0.008113590 0.22222220
## 511 1.0227630 0.008113590 0.22222220
## 512 1.0227630 0.008113590 0.22222220
## 513 1.0227630 0.008113590 0.22222220
## 514 1.0227630 0.008113590 0.22222220
## 515 1.0005290 0.010141990 0.21739130
## 516 0.9801480 0.046653140 0.21296300
## 517 0.9862359 0.012170390 0.21428570
## 518 0.9862359 0.012170390 0.21428570
## 519 0.9689335 0.016227180 0.21052630
## 520 0.9979316 0.914807300 0.21682690
## 521 1.0227630 0.004056795 0.22222220
## 522 1.0227630 0.004056795 0.22222220
## 523 1.0227630 0.004056795 0.22222220
## 524 1.0227630 0.004056795 0.22222220
## 525 1.0227630 0.004056795 0.22222220
## 526 1.0227630 0.004056795 0.22222220
## 527 1.0227630 0.004056795 0.22222220
## 528 1.0227630 0.004056795 0.22222220
## 529 1.0227630 0.004056795 0.22222220
## 530 0.9862359 0.006085193 0.21428570
## 531 0.9862359 0.006085193 0.21428570
## 532 0.9862359 0.006085193 0.21428570
## 533 0.9588404 0.020283980 0.20833330
## 534 0.9643195 0.044624750 0.20952380
## 535 0.9689335 0.008113590 0.21052630
## 536 0.9702429 0.079107510 0.21081080
## 537 0.9702429 0.079107510 0.21081080
## 538 0.9588404 0.010141990 0.20833330
## 539 0.9588404 0.010141990 0.20833330
## 540 1.1506090 0.002028398 0.25000000
## 541 1.1506090 0.002028398 0.25000000
## 542 1.1506090 0.002028398 0.25000000
## 543 1.1506090 0.002028398 0.25000000
## 544 1.1506090 0.002028398 0.25000000
## 545 1.1506090 0.002028398 0.25000000
## 546 1.1506090 0.002028398 0.25000000
## 547 1.1506090 0.002028398 0.25000000
## 548 1.1506090 0.002028398 0.25000000
## 549 1.1506090 0.002028398 0.25000000
## 550 1.1506090 0.002028398 0.25000000
## 551 1.1506090 0.002028398 0.25000000
## 552 1.1506090 0.002028398 0.25000000
## 553 1.1506090 0.002028398 0.25000000
## 554 1.1506090 0.002028398 0.25000000
## 555 1.1506090 0.002028398 0.25000000
## 556 1.1506090 0.002028398 0.25000000
## 557 1.1506090 0.002028398 0.25000000
## 558 1.1506090 0.002028398 0.25000000
## 559 1.1506090 0.002028398 0.25000000
## 560 1.1506090 0.002028398 0.25000000
## 561 1.1506090 0.002028398 0.25000000
## 562 1.1506090 0.002028398 0.25000000
## 563 1.1506090 0.002028398 0.25000000
## 564 1.1506090 0.002028398 0.25000000
## 565 1.1506090 0.002028398 0.25000000
## 566 1.1506090 0.002028398 0.25000000
## 567 1.1506090 0.002028398 0.25000000
## 568 1.1506090 0.002028398 0.25000000
## 569 1.1506090 0.002028398 0.25000000
## 570 1.1506090 0.002028398 0.25000000
## 571 1.1506090 0.002028398 0.25000000
## 572 1.1506090 0.002028398 0.25000000
## 573 1.1506090 0.002028398 0.25000000
## 574 1.1506090 0.002028398 0.25000000
## 575 1.1506090 0.002028398 0.25000000
## 576 1.1506090 0.002028398 0.25000000
## 577 1.1506090 0.002028398 0.25000000
## 578 1.1506090 0.002028398 0.25000000
## 579 1.1506090 0.002028398 0.25000000
## 580 1.1506090 0.002028398 0.25000000
## 581 1.1506090 0.002028398 0.25000000
## 582 0.9522277 0.012170390 0.20689660
## 583 0.9522277 0.012170390 0.20689660
## 584 0.9522277 0.024340770 0.20689660
## 585 0.9522277 0.024340770 0.20689660
## 586 0.9475600 0.014198780 0.20588240
## 587 0.9475600 0.014198780 0.20588240
## 588 0.9475600 0.014198780 0.20588240
## 589 0.9475600 0.014198780 0.20588240
## 590 0.9475600 0.014198780 0.20588240
## 591 0.9475600 0.014198780 0.20588240
## 592 0.9730861 0.150101400 0.21142860
## 593 0.9348694 0.026369170 0.20312500
## 594 0.9204868 0.008113590 0.20000000
## 595 0.9204868 0.012170390 0.20000000
## 596 0.9204868 0.012170390 0.20000000
## 597 0.9204868 0.006085193 0.20000000
## 598 0.9204868 0.020283980 0.20000000
## 599 0.9204868 0.004056795 0.20000000
## 600 0.9204868 0.004056795 0.20000000
## 601 0.9204868 0.004056795 0.20000000
## 602 0.9302792 0.038539550 0.20212770
## 603 0.9567784 0.117647100 0.20788530
## 604 0.9453648 0.077079110 0.20540540
## 605 0.9453648 0.077079110 0.20540540
## 606 0.8907937 0.012170390 0.19354840
## 607 0.9577319 0.146044600 0.20809250
## 608 0.9004762 0.018255580 0.19565220
## 609 0.8850835 0.010141990 0.19230770
## 610 0.8850835 0.010141990 0.19230770
## 611 0.8850835 0.010141990 0.19230770
## 612 0.8850835 0.010141990 0.19230770
## 613 0.8766541 0.008113590 0.19047620
## 614 0.8766541 0.008113590 0.19047620
## 615 0.8766541 0.008113590 0.19047620
## 616 0.8766541 0.008113590 0.19047620
## 617 0.8766541 0.008113590 0.19047620
## 618 0.8766541 0.008113590 0.19047620
## 619 0.9204868 0.002028398 0.20000000
## 620 0.9204868 0.002028398 0.20000000
## 621 0.9204868 0.002028398 0.20000000
## 622 0.9204868 0.002028398 0.20000000
## 623 0.9204868 0.002028398 0.20000000
## 624 0.9204868 0.002028398 0.20000000
## 625 0.9204868 0.002028398 0.20000000
## 626 0.9204868 0.002028398 0.20000000
## 627 0.9204868 0.002028398 0.20000000
## 628 0.9204868 0.002028398 0.20000000
## 629 0.9204868 0.002028398 0.20000000
## 630 0.9204868 0.002028398 0.20000000
## 631 0.9204868 0.002028398 0.20000000
## 632 0.9204868 0.002028398 0.20000000
## 633 0.9204868 0.002028398 0.20000000
## 634 0.9204868 0.002028398 0.20000000
## 635 0.9204868 0.002028398 0.20000000
## 636 0.9204868 0.002028398 0.20000000
## 637 0.9204868 0.002028398 0.20000000
## 638 0.9204868 0.002028398 0.20000000
## 639 0.9204868 0.002028398 0.20000000
## 640 0.9204868 0.002028398 0.20000000
## 641 0.9204868 0.002028398 0.20000000
## 642 0.9204868 0.002028398 0.20000000
## 643 0.9204868 0.002028398 0.20000000
## 644 0.9204868 0.002028398 0.20000000
## 645 0.9204868 0.002028398 0.20000000
## 646 0.8629564 0.006085193 0.18750000
## 647 0.8629564 0.006085193 0.18750000
## 648 0.8629564 0.006085193 0.18750000
## 649 0.8629564 0.006085193 0.18750000
## 650 0.8629564 0.006085193 0.18750000
## 651 0.9311283 0.070993910 0.20231210
## 652 0.8850835 0.020283980 0.19230770
## 653 0.8629564 0.012170390 0.18750000
## 654 0.8368062 0.004056795 0.18181820
## 655 0.8368062 0.004056795 0.18181820
## 656 0.8368062 0.004056795 0.18181820
## 657 0.8368062 0.004056795 0.18181820
## 658 0.8368062 0.004056795 0.18181820
## 659 0.8368062 0.004056795 0.18181820
## 660 0.8368062 0.004056795 0.18181820
## 661 0.8368062 0.004056795 0.18181820
## 662 0.9392723 0.101419900 0.20408160
## 663 0.8523026 0.010141990 0.18518520
## 664 0.8523026 0.010141990 0.18518520
## 665 0.8980359 0.032454360 0.19512200
## 666 0.8980359 0.032454360 0.19512200
## 667 0.9297847 0.081135900 0.20202020
## 668 0.9131814 0.050709940 0.19841270
## 669 0.9357646 0.099391480 0.20331950
## 670 0.9357646 0.099391480 0.20331950
## 671 0.8368062 0.008113590 0.18181820
## 672 0.9467864 0.146044600 0.20571430
## 673 0.9467864 0.146044600 0.20571430
## 674 0.8629564 0.018255580 0.18750000
## 675 0.8629564 0.018255580 0.18750000
## 676 0.9363573 0.119675500 0.20344830
## 677 0.8907937 0.036511160 0.19354840
## 678 0.8368062 0.012170390 0.18181820
## 679 0.8368062 0.012170390 0.18181820
## 680 0.8218632 0.010141990 0.17857140
## 681 0.9419489 0.160243400 0.20466320
## 682 0.9419489 0.160243400 0.20466320
## 683 0.9419489 0.160243400 0.20466320
## 684 0.9419489 0.160243400 0.20466320
## 685 0.9419489 0.160243400 0.20466320
## 686 0.8629564 0.024340770 0.18750000
## 687 0.9243382 0.097363080 0.20083680
## 688 0.8766541 0.032454360 0.19047620
## 689 0.8453450 0.018255580 0.18367350
## 690 0.8453450 0.018255580 0.18367350
## 691 0.8453450 0.018255580 0.18367350
## 692 0.8004233 0.008113590 0.17391300
## 693 0.8004233 0.008113590 0.17391300
## 694 0.8004233 0.008113590 0.17391300
## 695 0.8004233 0.008113590 0.17391300
## 696 0.7670723 0.002028398 0.16666670
## 697 0.7670723 0.002028398 0.16666670
## 698 0.7670723 0.002028398 0.16666670
## 699 0.7670723 0.002028398 0.16666670
## 700 0.7670723 0.002028398 0.16666670
## 701 0.7670723 0.002028398 0.16666670
## 702 0.7670723 0.002028398 0.16666670
## 703 0.7670723 0.002028398 0.16666670
## 704 0.7670723 0.002028398 0.16666670
## 705 0.7670723 0.002028398 0.16666670
## 706 0.7670723 0.002028398 0.16666670
## 707 0.7670723 0.002028398 0.16666670
## 708 0.7670723 0.002028398 0.16666670
## 709 0.7670723 0.002028398 0.16666670
## 710 0.7670723 0.002028398 0.16666670
## 711 0.7670723 0.002028398 0.16666670
## 712 0.7670723 0.002028398 0.16666670
## 713 0.7670723 0.002028398 0.16666670
## 714 0.7670723 0.002028398 0.16666670
## 715 0.7670723 0.002028398 0.16666670
## 716 0.7670723 0.002028398 0.16666670
## 717 0.7670723 0.002028398 0.16666670
## 718 0.7670723 0.002028398 0.16666670
## 719 0.7670723 0.004056795 0.16666670
## 720 0.7670723 0.004056795 0.16666670
## 721 0.7670723 0.004056795 0.16666670
## 722 0.7670723 0.004056795 0.16666670
## 723 0.7670723 0.004056795 0.16666670
## 724 0.8368062 0.016227180 0.18181820
## 725 0.8368062 0.016227180 0.18181820
## 726 0.9322879 0.160243400 0.20256410
## 727 0.9322879 0.160243400 0.20256410
## 728 0.9322879 0.160243400 0.20256410
## 729 0.7670723 0.008113590 0.16666670
## 730 0.7080668 0.004056795 0.15384620
## 731 0.7080668 0.004056795 0.15384620
## 732 0.7080668 0.004056795 0.15384620
## 733 0.7080668 0.004056795 0.15384620
## 734 0.7080668 0.004056795 0.15384620
## 735 0.7080668 0.004056795 0.15384620
## 736 0.7080668 0.004056795 0.15384620
## 737 0.7670723 0.010141990 0.16666670
## 738 0.7670723 0.010141990 0.16666670
## 739 0.7267001 0.006085193 0.15789470
## 740 0.6574906 0.002028398 0.14285710
## 741 0.6574906 0.002028398 0.14285710
## 742 0.6574906 0.002028398 0.14285710
## 743 0.6574906 0.002028398 0.14285710
## 744 0.6574906 0.002028398 0.14285710
## 745 0.6574906 0.002028398 0.14285710
## 746 0.6574906 0.002028398 0.14285710
## 747 0.6574906 0.002028398 0.14285710
## 748 0.6574906 0.002028398 0.14285710
## 749 0.6574906 0.002028398 0.14285710
## 750 0.6574906 0.002028398 0.14285710
## 751 0.6574906 0.002028398 0.14285710
## 752 0.6574906 0.002028398 0.14285710
## 753 0.6574906 0.002028398 0.14285710
## 754 0.8930096 0.079107510 0.19402990
## 755 0.9289316 0.178499000 0.20183490
## 756 0.9289316 0.178499000 0.20183490
## 757 0.7363895 0.008113590 0.16000000
## 758 0.7670723 0.012170390 0.16666670
## 759 0.8323551 0.034482760 0.18085110
## 760 0.6574906 0.004056795 0.14285710
## 761 0.6574906 0.004056795 0.14285710
## 762 0.6574906 0.004056795 0.14285710
## 763 0.6903651 0.006085193 0.15000000
## 764 0.9579122 0.436105500 0.20813170
## 765 0.9204868 0.172413800 0.20000000
## 766 0.7463407 0.012170390 0.16216220
## 767 0.7080668 0.008113590 0.15384620
## 768 0.7080668 0.008113590 0.15384620
## 769 0.7080668 0.008113590 0.15384620
## 770 0.5753043 0.002028398 0.12500000
## 771 0.5753043 0.002028398 0.12500000
## 772 0.5753043 0.002028398 0.12500000
## 773 0.5753043 0.002028398 0.12500000
## 774 0.5753043 0.002028398 0.12500000
## 775 0.5753043 0.002028398 0.12500000
## 776 0.5753043 0.002028398 0.12500000
## 777 0.5753043 0.002028398 0.12500000
## 778 0.5753043 0.002028398 0.12500000
## 779 0.5753043 0.002028398 0.12500000
## 780 0.5753043 0.002028398 0.12500000
## 781 0.5753043 0.002028398 0.12500000
## 782 0.5753043 0.002028398 0.12500000
## 783 0.5753043 0.002028398 0.12500000
## 784 0.8486758 0.052738340 0.18439720
## 785 0.8688268 0.075050710 0.18877550
## 786 0.8092192 0.032454360 0.17582420
## 787 0.6818421 0.008113590 0.14814810
## 788 0.8543441 0.062880320 0.18562870
## 789 0.9798731 0.803245400 0.21290320
## 790 0.7322054 0.014198780 0.15909090
## 791 0.7322054 0.014198780 0.15909090
## 792 0.9514429 0.423935100 0.20672600
## 793 0.7872585 0.026369170 0.17105260
## 794 0.8004233 0.032454360 0.17391300
## 795 0.7080668 0.012170390 0.15384620
## 796 0.9187533 0.215010100 0.19962340
## 797 0.6276046 0.006085193 0.13636360
## 798 0.6574906 0.008113590 0.14285710
## 799 0.6574906 0.008113590 0.14285710
## 800 0.6574906 0.008113590 0.14285710
## 801 0.8309950 0.052738340 0.18055560
## 802 0.8309950 0.052738340 0.18055560
## 803 0.8309950 0.052738340 0.18055560
## 804 0.5113816 0.002028398 0.11111110
## 805 0.5113816 0.002028398 0.11111110
## 806 0.5113816 0.002028398 0.11111110
## 807 0.5113816 0.002028398 0.11111110
## 808 0.5113816 0.002028398 0.11111110
## 809 0.5113816 0.002028398 0.11111110
## 810 0.5113816 0.002028398 0.11111110
## 811 0.5113816 0.002028398 0.11111110
## 812 0.5113816 0.002028398 0.11111110
## 813 0.5113816 0.002028398 0.11111110
## 814 0.5113816 0.002028398 0.11111110
## 815 0.5113816 0.002028398 0.11111110
## 816 0.5113816 0.002028398 0.11111110
## 817 0.5113816 0.002028398 0.11111110
## 818 0.5113816 0.002028398 0.11111110
## 819 0.5113816 0.002028398 0.11111110
## 820 0.5113816 0.002028398 0.11111110
## 821 0.5113816 0.002028398 0.11111110
## 822 0.5113816 0.002028398 0.11111110
## 823 0.5113816 0.002028398 0.11111110
## 824 0.8165609 0.044624750 0.17741940
## 825 0.9306160 0.298174400 0.20220080
## 826 0.8314074 0.056795130 0.18064520
## 827 0.6348185 0.008113590 0.13793100
## 828 0.6003175 0.006085193 0.13043480
## 829 0.6003175 0.006085193 0.13043480
## 830 0.7141708 0.018255580 0.15517240
## 831 0.5414628 0.004056795 0.11764710
## 832 0.5414628 0.004056795 0.11764710
## 833 0.4602434 0.002028398 0.10000000
## 834 0.4602434 0.002028398 0.10000000
## 835 0.4602434 0.002028398 0.10000000
## 836 0.4602434 0.002028398 0.10000000
## 837 0.8536773 0.093306290 0.18548390
## 838 0.7586430 0.030425960 0.16483520
## 839 0.6136579 0.008113590 0.13333330
## 840 0.6136579 0.008113590 0.13333330
## 841 0.6136579 0.008113590 0.13333330
## 842 0.9229984 0.298174400 0.20054570
## 843 0.6392270 0.010141990 0.13888890
## 844 0.6711883 0.014198780 0.14583330
## 845 0.8850835 0.162271800 0.19230770
## 846 0.6818421 0.016227180 0.14814810
## 847 0.8938612 0.190669400 0.19421490
## 848 0.5113816 0.004056795 0.11111110
## 849 0.5113816 0.004056795 0.11111110
## 850 0.7935231 0.050709940 0.17241380
## 851 0.6422001 0.012170390 0.13953490
## 852 0.4184031 0.002028398 0.09090909
## 853 0.4184031 0.002028398 0.09090909
## 854 0.4184031 0.002028398 0.09090909
## 855 0.4184031 0.002028398 0.09090909
## 856 0.4184031 0.002028398 0.09090909
## 857 0.4184031 0.002028398 0.09090909
## 858 0.4184031 0.002028398 0.09090909
## 859 0.4184031 0.002028398 0.09090909
## 860 0.5522921 0.006085193 0.12000000
## 861 0.6694450 0.016227180 0.14545450
## 862 0.6443408 0.014198780 0.14000000
## 863 0.6443408 0.014198780 0.14000000
## 864 0.5310501 0.006085193 0.11538460
## 865 0.5310501 0.006085193 0.11538460
## 866 0.7122815 0.026369170 0.15476190
## 867 0.7381262 0.034482760 0.16037740
## 868 0.3835362 0.002028398 0.08333333
## 869 0.3835362 0.002028398 0.08333333
## 870 0.3835362 0.002028398 0.08333333
## 871 0.3835362 0.002028398 0.08333333
## 872 0.3835362 0.002028398 0.08333333
## 873 0.3835362 0.002028398 0.08333333
## 874 0.5900557 0.010141990 0.12820510
## 875 0.8798771 0.184584200 0.19117650
## 876 0.5578708 0.008113590 0.12121210
## 877 0.5578708 0.008113590 0.12121210
## 878 0.5113816 0.006085193 0.11111110
## 879 0.5113816 0.006085193 0.11111110
## 880 0.5113816 0.006085193 0.11111110
## 881 0.8339981 0.109533500 0.18120810
## 882 0.6472173 0.018255580 0.14062500
## 883 0.3540334 0.002028398 0.07692308
## 884 0.3540334 0.002028398 0.07692308
## 885 0.3540334 0.002028398 0.07692308
## 886 0.3540334 0.002028398 0.07692308
## 887 0.3540334 0.002028398 0.07692308
## 888 0.3540334 0.002028398 0.07692308
## 889 0.3540334 0.002028398 0.07692308
## 890 0.3540334 0.002028398 0.07692308
## 891 0.3540334 0.002028398 0.07692308
## 892 0.3540334 0.002028398 0.07692308
## 893 0.7178108 0.034482760 0.15596330
## 894 0.4383271 0.004056795 0.09523810
## 895 0.7977552 0.079107510 0.17333330
## 896 0.3287453 0.002028398 0.07142857
## 897 0.3287453 0.002028398 0.07142857
## 898 0.3287453 0.002028398 0.07142857
## 899 0.5113816 0.008113590 0.11111110
## 900 0.7709661 0.066937120 0.16751270
## 901 0.4002117 0.004056795 0.08695652
## 902 0.4002117 0.004056795 0.08695652
## 903 0.4002117 0.004056795 0.08695652
## 904 0.3068289 0.002028398 0.06666667
## 905 0.3068289 0.002028398 0.06666667
## 906 0.3068289 0.002028398 0.06666667
## 907 0.3068289 0.002028398 0.06666667
## 908 0.3068289 0.002028398 0.06666667
## 909 0.3835362 0.004056795 0.08333333
## 910 0.2876521 0.002028398 0.06250000
## 911 0.5753043 0.016227180 0.12500000
## 912 0.5753043 0.016227180 0.12500000
## 913 0.3681947 0.004056795 0.08000000
## 914 0.3681947 0.004056795 0.08000000
## 915 0.7481789 0.066937120 0.16256160
## 916 0.6443408 0.028397570 0.14000000
## 917 0.6443408 0.028397570 0.14000000
## 918 0.2707314 0.002028398 0.05882353
## 919 0.2707314 0.002028398 0.05882353
## 920 0.6452010 0.030425960 0.14018690
## 921 0.6918692 0.046653140 0.15032680
## 922 0.6947070 0.048681540 0.15094340
## 923 0.3409210 0.004056795 0.07407407
## 924 0.2422334 0.002028398 0.05263158
## 925 0.5522921 0.018255580 0.12000000
## 926 0.3835362 0.006085193 0.08333333
## 927 0.4184031 0.008113590 0.09090909
## 928 0.5545101 0.020283980 0.12048190
## 929 0.4956467 0.014198780 0.10769230
## 930 0.6323955 0.036511160 0.13740460
## 931 0.3068289 0.004056795 0.06666667
## 932 0.2092015 0.002028398 0.04545455
## 933 0.4975604 0.016227180 0.10810810
## 934 0.2001058 0.002028398 0.04347826
## 935 0.2001058 0.002028398 0.04347826
## 936 0.4669136 0.014198780 0.10144930
## 937 0.6924016 0.068965520 0.15044250
## 938 0.2707314 0.004056795 0.05882353
## 939 0.3967616 0.010141990 0.08620690
## 940 0.4474589 0.014198780 0.09722222
## 941 0.6875005 0.073022310 0.14937760
## 942 0.3609752 0.008113590 0.07843137
## 943 0.6999900 0.081135900 0.15209130
## 944 0.6276046 0.048681540 0.13636360
## 945 0.4353654 0.014198780 0.09459459
## 946 0.7031497 0.089249490 0.15277780
## 947 0.1704605 0.002028398 0.03703704
## 948 0.6170861 0.048681540 0.13407820
## 949 0.6219506 0.050709940 0.13513510
## 950 0.2707314 0.006085193 0.05882353
## 951 0.5844361 0.048681540 0.12698410
## 952 0.3068289 0.008113590 0.06666667
## 953 0.1353657 0.002028398 0.02941176
## 954 0.6075213 0.066937120 0.13200000
## 955 0.5986906 0.064908720 0.13008130
## 956 0.1150609 0.002028398 0.02500000
## 957 0.5777114 0.060851930 0.12552300
## 958 0.2950278 0.010141990 0.06410256
## 959 0.2060791 0.006085193 0.04477612
## 960 0.0000000 0.000000000 0.00000000
## 961 0.0000000 0.000000000 0.00000000
## 962 0.0000000 0.000000000 0.00000000
## 963 0.0000000 0.000000000 0.00000000
## 964 0.0000000 0.000000000 0.00000000
## 965 0.0000000 0.000000000 0.00000000
## 966 0.0000000 0.000000000 0.00000000
## 967 0.0000000 0.000000000 0.00000000
## 968 0.0000000 0.000000000 0.00000000
## 969 0.0000000 0.000000000 0.00000000
## 970 0.0000000 0.000000000 0.00000000
## 971 0.0000000 0.000000000 0.00000000
## 972 0.0000000 0.000000000 0.00000000
## 973 0.0000000 0.000000000 0.00000000
## 974 0.0000000 0.000000000 0.00000000
## 975 0.0000000 0.000000000 0.00000000
## 976 0.0000000 0.000000000 0.00000000
## 977 0.0000000 0.000000000 0.00000000
## 978 0.0000000 0.000000000 0.00000000
## 979 0.0000000 0.000000000 0.00000000
## 980 0.0000000 0.000000000 0.00000000
## 981 0.0000000 0.000000000 0.00000000
## 982 0.0000000 0.000000000 0.00000000
## 983 0.0000000 0.000000000 0.00000000
## 984 0.0000000 0.000000000 0.00000000
## 985 0.0000000 0.000000000 0.00000000
## 986 0.0000000 0.000000000 0.00000000
## 987 0.0000000 0.000000000 0.00000000
## 988 0.0000000 0.000000000 0.00000000
## 989 0.0000000 0.000000000 0.00000000
## 990 0.0000000 0.000000000 0.00000000
## 991 0.0000000 0.000000000 0.00000000
## 992 0.0000000 0.000000000 0.00000000
## 993 0.0000000 0.000000000 0.00000000
## 994 0.0000000 0.000000000 0.00000000
## 995 0.0000000 0.000000000 0.00000000
## 996 0.0000000 0.000000000 0.00000000
## 997 0.0000000 0.000000000 0.00000000
## 998 0.0000000 0.000000000 0.00000000
## 999 0.0000000 0.000000000 0.00000000
## 1000 0.0000000 0.000000000 0.00000000
## 1001 0.0000000 0.000000000 0.00000000
## 1002 0.0000000 0.000000000 0.00000000
## 1003 0.0000000 0.000000000 0.00000000
## 1004 0.0000000 0.000000000 0.00000000
## 1005 0.0000000 0.000000000 0.00000000
## 1006 0.0000000 0.000000000 0.00000000
## 1007 0.0000000 0.000000000 0.00000000
## 1008 0.0000000 0.000000000 0.00000000
## 1009 0.0000000 0.000000000 0.00000000
## 1010 0.0000000 0.000000000 0.00000000
## 1011 0.0000000 0.000000000 0.00000000
## 1012 0.0000000 0.000000000 0.00000000
## 1013 0.0000000 0.000000000 0.00000000
## 1014 0.0000000 0.000000000 0.00000000
## 1015 0.0000000 0.000000000 0.00000000
## 1016 0.0000000 0.000000000 0.00000000
## 1017 0.0000000 0.000000000 0.00000000
## 1018 0.0000000 0.000000000 0.00000000
## 1019 0.0000000 0.000000000 0.00000000
## 1020 0.0000000 0.000000000 0.00000000
## 1021 0.0000000 0.000000000 0.00000000
## 1022 0.0000000 0.000000000 0.00000000
## 1023 0.0000000 0.000000000 0.00000000
## 1024 0.0000000 0.000000000 0.00000000
## 1025 0.0000000 0.000000000 0.00000000
## 1026 0.0000000 0.000000000 0.00000000
## 1027 0.0000000 0.000000000 0.00000000
## 1028 0.0000000 0.000000000 0.00000000
## 1029 0.0000000 0.000000000 0.00000000
## 1030 0.0000000 0.000000000 0.00000000
## 1031 0.0000000 0.000000000 0.00000000
## 1032 0.0000000 0.000000000 0.00000000
## 1033 0.0000000 0.000000000 0.00000000
## 1034 0.0000000 0.000000000 0.00000000
## 1035 0.0000000 0.000000000 0.00000000
## 1036 0.0000000 0.000000000 0.00000000
## 1037 0.0000000 0.000000000 0.00000000
## 1038 0.0000000 0.000000000 0.00000000
## 1039 0.0000000 0.000000000 0.00000000
## 1040 0.0000000 0.000000000 0.00000000
## 1041 0.0000000 0.000000000 0.00000000
## 1042 0.0000000 0.000000000 0.00000000
## 1043 0.0000000 0.000000000 0.00000000
## 1044 0.0000000 0.000000000 0.00000000
## 1045 0.0000000 0.000000000 0.00000000
## 1046 0.0000000 0.000000000 0.00000000
## 1047 0.0000000 0.000000000 0.00000000
## 1048 0.0000000 0.000000000 0.00000000
## 1049 0.0000000 0.000000000 0.00000000
## 1050 0.0000000 0.000000000 0.00000000
## 1051 0.0000000 0.000000000 0.00000000
## 1052 0.0000000 0.000000000 0.00000000
## 1053 0.0000000 0.000000000 0.00000000
## 1054 0.0000000 0.000000000 0.00000000
## 1055 0.0000000 0.000000000 0.00000000
## 1056 0.0000000 0.000000000 0.00000000
## 1057 0.0000000 0.000000000 0.00000000
## 1058 0.0000000 0.000000000 0.00000000
## 1059 0.0000000 0.000000000 0.00000000
## 1060 0.0000000 0.000000000 0.00000000
## 1061 0.0000000 0.000000000 0.00000000
## 1062 0.0000000 0.000000000 0.00000000
## 1063 0.0000000 0.000000000 0.00000000
## 1064 0.0000000 0.000000000 0.00000000
## 1065 0.0000000 0.000000000 0.00000000
## 1066 0.0000000 0.000000000 0.00000000
## 1067 0.0000000 0.000000000 0.00000000
## 1068 0.0000000 0.000000000 0.00000000
## 1069 0.0000000 0.000000000 0.00000000
## 1070 0.0000000 0.000000000 0.00000000
## 1071 0.0000000 0.000000000 0.00000000
## 1072 0.0000000 0.000000000 0.00000000
## 1073 0.0000000 0.000000000 0.00000000
## 1074 0.0000000 0.000000000 0.00000000
## 1075 0.0000000 0.000000000 0.00000000
## 1076 0.0000000 0.000000000 0.00000000
## 1077 0.0000000 0.000000000 0.00000000
## 1078 0.0000000 0.000000000 0.00000000
## 1079 0.0000000 0.000000000 0.00000000
## 1080 0.0000000 0.000000000 0.00000000
## 1081 0.0000000 0.000000000 0.00000000
## 1082 0.0000000 0.000000000 0.00000000
## 1083 0.0000000 0.000000000 0.00000000
## 1084 0.0000000 0.000000000 0.00000000
## 1085 0.0000000 0.000000000 0.00000000
## 1086 0.0000000 0.000000000 0.00000000
## 1087 0.0000000 0.000000000 0.00000000
## 1088 0.0000000 0.000000000 0.00000000
## 1089 0.0000000 0.000000000 0.00000000
## 1090 0.0000000 0.000000000 0.00000000
## 1091 0.0000000 0.000000000 0.00000000
## 1092 0.0000000 0.000000000 0.00000000
## 1093 0.0000000 0.000000000 0.00000000
## 1094 0.0000000 0.000000000 0.00000000
## 1095 0.0000000 0.000000000 0.00000000
## 1096 0.0000000 0.000000000 0.00000000
## 1097 0.0000000 0.000000000 0.00000000
## 1098 0.0000000 0.000000000 0.00000000
## 1099 0.0000000 0.000000000 0.00000000
## 1100 0.0000000 0.000000000 0.00000000
## 1101 0.0000000 0.000000000 0.00000000
## 1102 0.0000000 0.000000000 0.00000000
## 1103 0.0000000 0.000000000 0.00000000
## 1104 0.0000000 0.000000000 0.00000000
## 1105 0.0000000 0.000000000 0.00000000
## 1106 0.0000000 0.000000000 0.00000000
## 1107 0.0000000 0.000000000 0.00000000
## 1108 0.0000000 0.000000000 0.00000000
## 1109 0.0000000 0.000000000 0.00000000
## 1110 0.0000000 0.000000000 0.00000000
## 1111 0.0000000 0.000000000 0.00000000
## 1112 0.0000000 0.000000000 0.00000000
## 1113 0.0000000 0.000000000 0.00000000
## 1114 0.0000000 0.000000000 0.00000000
## 1115 0.0000000 0.000000000 0.00000000
## 1116 0.0000000 0.000000000 0.00000000
## 1117 0.0000000 0.000000000 0.00000000
## 1118 0.0000000 0.000000000 0.00000000
## 1119 0.0000000 0.000000000 0.00000000
## 1120 0.0000000 0.000000000 0.00000000
## 1121 0.0000000 0.000000000 0.00000000
## 1122 0.0000000 0.000000000 0.00000000
## 1123 0.0000000 0.000000000 0.00000000
## 1124 0.0000000 0.000000000 0.00000000
## 1125 0.0000000 0.000000000 0.00000000
## 1126 0.0000000 0.000000000 0.00000000
## 1127 0.0000000 0.000000000 0.00000000
## 1128 0.0000000 0.000000000 0.00000000
## 1129 0.0000000 0.000000000 0.00000000
## 1130 0.0000000 0.000000000 0.00000000
## 1131 0.0000000 0.000000000 0.00000000
## 1132 0.0000000 0.000000000 0.00000000
## 1133 0.0000000 0.000000000 0.00000000
## 1134 0.0000000 0.000000000 0.00000000
## 1135 0.0000000 0.000000000 0.00000000
## 1136 0.0000000 0.000000000 0.00000000
## 1137 0.0000000 0.000000000 0.00000000
## 1138 0.0000000 0.000000000 0.00000000
## 1139 0.0000000 0.000000000 0.00000000
## 1140 0.0000000 0.000000000 0.00000000
## 1141 0.0000000 0.000000000 0.00000000
## 1142 0.0000000 0.000000000 0.00000000
## 1143 0.0000000 0.000000000 0.00000000
## 1144 0.0000000 0.000000000 0.00000000
## 1145 0.0000000 0.000000000 0.00000000
## 1146 0.0000000 0.000000000 0.00000000
## 1147 0.0000000 0.000000000 0.00000000
## 1148 0.0000000 0.000000000 0.00000000
## 1149 0.0000000 0.000000000 0.00000000
## 1150 0.0000000 0.000000000 0.00000000
## 1151 0.0000000 0.000000000 0.00000000
## 1152 0.0000000 0.000000000 0.00000000
## 1153 0.0000000 0.000000000 0.00000000
## 1154 0.0000000 0.000000000 0.00000000
## 1155 0.0000000 0.000000000 0.00000000
## 1156 0.0000000 0.000000000 0.00000000
## 1157 0.0000000 0.000000000 0.00000000
## 1158 0.0000000 0.000000000 0.00000000
## 1159 0.0000000 0.000000000 0.00000000
## 1160 0.0000000 0.000000000 0.00000000
## 1161 0.0000000 0.000000000 0.00000000
## 1162 0.0000000 0.000000000 0.00000000
## 1163 0.0000000 0.000000000 0.00000000
## 1164 0.0000000 0.000000000 0.00000000
## 1165 0.0000000 0.000000000 0.00000000
## 1166 0.0000000 0.000000000 0.00000000
## 1167 0.0000000 0.000000000 0.00000000
## 1168 0.0000000 0.000000000 0.00000000
## 1169 0.0000000 0.000000000 0.00000000
## 1170 0.0000000 0.000000000 0.00000000
## 1171 0.0000000 0.000000000 0.00000000
## 1172 0.0000000 0.000000000 0.00000000
## 1173 0.0000000 0.000000000 0.00000000
## 1174 0.0000000 0.000000000 0.00000000
## 1175 0.0000000 0.000000000 0.00000000
## 1176 0.0000000 0.000000000 0.00000000
## 1177 0.0000000 0.000000000 0.00000000
## 1178 0.0000000 0.000000000 0.00000000
## 1179 0.0000000 0.000000000 0.00000000
## 1180 0.0000000 0.000000000 0.00000000
## 1181 0.0000000 0.000000000 0.00000000
## 1182 0.0000000 0.000000000 0.00000000
## 1183 0.0000000 0.000000000 0.00000000
## 1184 0.0000000 0.000000000 0.00000000
## 1185 0.0000000 0.000000000 0.00000000
## 1186 0.0000000 0.000000000 0.00000000
## 1187 0.0000000 0.000000000 0.00000000
## 1188 0.0000000 0.000000000 0.00000000
## 1189 0.0000000 0.000000000 0.00000000
## 1190 0.0000000 0.000000000 0.00000000
## 1191 0.0000000 0.000000000 0.00000000
## 1192 0.0000000 0.000000000 0.00000000
## 1193 0.0000000 0.000000000 0.00000000
## 1194 0.0000000 0.000000000 0.00000000
## 1195 0.0000000 0.000000000 0.00000000
## 1196 0.0000000 0.000000000 0.00000000
## 1197 0.0000000 0.000000000 0.00000000
## 1198 0.0000000 0.000000000 0.00000000
## 1199 0.0000000 0.000000000 0.00000000
## 1200 0.0000000 0.000000000 0.00000000
## 1201 0.0000000 0.000000000 0.00000000
## 1202 0.0000000 0.000000000 0.00000000
## 1203 0.0000000 0.000000000 0.00000000
## 1204 0.0000000 0.000000000 0.00000000
## 1205 0.0000000 0.000000000 0.00000000
## 1206 0.0000000 0.000000000 0.00000000
## 1207 0.0000000 0.000000000 0.00000000
## 1208 0.0000000 0.000000000 0.00000000
## 1209 0.0000000 0.000000000 0.00000000
## 1210 0.0000000 0.000000000 0.00000000
## 1211 0.0000000 0.000000000 0.00000000
## 1212 0.0000000 0.000000000 0.00000000
## 1213 0.0000000 0.000000000 0.00000000
## 1214 0.0000000 0.000000000 0.00000000
## 1215 0.0000000 0.000000000 0.00000000
## 1216 0.0000000 0.000000000 0.00000000
## 1217 0.0000000 0.000000000 0.00000000
## 1218 0.0000000 0.000000000 0.00000000
## 1219 0.0000000 0.000000000 0.00000000
## 1220 0.0000000 0.000000000 0.00000000
## 1221 0.0000000 0.000000000 0.00000000
## 1222 0.0000000 0.000000000 0.00000000
## 1223 0.0000000 0.000000000 0.00000000
## 1224 0.0000000 0.000000000 0.00000000
## 1225 0.0000000 0.000000000 0.00000000
## 1226 0.0000000 0.000000000 0.00000000
## 1227 0.0000000 0.000000000 0.00000000
## 1228 0.0000000 0.000000000 0.00000000
## 1229 0.0000000 0.000000000 0.00000000
## 1230 0.0000000 0.000000000 0.00000000
## 1231 0.0000000 0.000000000 0.00000000
## 1232 0.0000000 0.000000000 0.00000000
## 1233 0.0000000 0.000000000 0.00000000
## 1234 0.0000000 0.000000000 0.00000000
## 1235 0.0000000 0.000000000 0.00000000
## 1236 0.0000000 0.000000000 0.00000000
## 1237 0.0000000 0.000000000 0.00000000
## 1238 0.0000000 0.000000000 0.00000000
## 1239 0.0000000 0.000000000 0.00000000
## 1240 0.0000000 0.000000000 0.00000000
## 1241 0.0000000 0.000000000 0.00000000
## 1242 0.0000000 0.000000000 0.00000000
## 1243 0.0000000 0.000000000 0.00000000
## 1244 0.0000000 0.000000000 0.00000000
## 1245 0.0000000 0.000000000 0.00000000
## 1246 0.0000000 0.000000000 0.00000000
## 1247 0.0000000 0.000000000 0.00000000
## 1248 0.0000000 0.000000000 0.00000000
## 1249 0.0000000 0.000000000 0.00000000
## 1250 0.0000000 0.000000000 0.00000000
## 1251 0.0000000 0.000000000 0.00000000
## 1252 0.0000000 0.000000000 0.00000000
## 1253 0.0000000 0.000000000 0.00000000
## 1254 0.0000000 0.000000000 0.00000000
## 1255 0.0000000 0.000000000 0.00000000
## 1256 0.0000000 0.000000000 0.00000000
## 1257 0.0000000 0.000000000 0.00000000
## 1258 0.0000000 0.000000000 0.00000000
## 1259 0.0000000 0.000000000 0.00000000
## 1260 0.0000000 0.000000000 0.00000000
## 1261 0.0000000 0.000000000 0.00000000
## 1262 0.0000000 0.000000000 0.00000000
## 1263 0.0000000 0.000000000 0.00000000
## 1264 0.0000000 0.000000000 0.00000000
## 1265 0.0000000 0.000000000 0.00000000
## 1266 0.0000000 0.000000000 0.00000000
## 1267 0.0000000 0.000000000 0.00000000
## 1268 0.0000000 0.000000000 0.00000000
## 1269 0.0000000 0.000000000 0.00000000
## 1270 0.0000000 0.000000000 0.00000000
## 1271 0.0000000 0.000000000 0.00000000
## 1272 0.0000000 0.000000000 0.00000000
## 1273 0.0000000 0.000000000 0.00000000
## 1274 0.0000000 0.000000000 0.00000000
## 1275 0.0000000 0.000000000 0.00000000
## 1276 0.0000000 0.000000000 0.00000000
## 1277 0.0000000 0.000000000 0.00000000
## 1278 0.0000000 0.000000000 0.00000000
## 1279 0.0000000 0.000000000 0.00000000
## 1280 0.0000000 0.000000000 0.00000000
## 1281 0.0000000 0.000000000 0.00000000
## 1282 0.0000000 0.000000000 0.00000000
## 1283 0.0000000 0.000000000 0.00000000
## 1284 0.0000000 0.000000000 0.00000000
## 1285 0.0000000 0.000000000 0.00000000
## 1286 0.0000000 0.000000000 0.00000000
## 1287 0.0000000 0.000000000 0.00000000
## 1288 0.0000000 0.000000000 0.00000000
## 1289 0.0000000 0.000000000 0.00000000
## 1290 0.0000000 0.000000000 0.00000000
## 1291 0.0000000 0.000000000 0.00000000
## 1292 0.0000000 0.000000000 0.00000000
## 1293 0.0000000 0.000000000 0.00000000
## 1294 0.0000000 0.000000000 0.00000000
## 1295 0.0000000 0.000000000 0.00000000
## 1296 0.0000000 0.000000000 0.00000000
## 1297 0.0000000 0.000000000 0.00000000
## 1298 0.0000000 0.000000000 0.00000000
## 1299 0.0000000 0.000000000 0.00000000
## 1300 0.0000000 0.000000000 0.00000000
## 1301 0.0000000 0.000000000 0.00000000
## 1302 0.0000000 0.000000000 0.00000000
## 1303 0.0000000 0.000000000 0.00000000
## 1304 0.0000000 0.000000000 0.00000000
## 1305 0.0000000 0.000000000 0.00000000
## 1306 0.0000000 0.000000000 0.00000000
## 1307 0.0000000 0.000000000 0.00000000
## 1308 0.0000000 0.000000000 0.00000000
## 1309 0.0000000 0.000000000 0.00000000
## 1310 0.0000000 0.000000000 0.00000000
## 1311 0.0000000 0.000000000 0.00000000
## 1312 0.0000000 0.000000000 0.00000000
## 1313 0.0000000 0.000000000 0.00000000
## 1314 0.0000000 0.000000000 0.00000000
## 1315 0.0000000 0.000000000 0.00000000
## 1316 0.0000000 0.000000000 0.00000000
## 1317 0.0000000 0.000000000 0.00000000
## 1318 0.0000000 0.000000000 0.00000000
## 1319 0.0000000 0.000000000 0.00000000
## 1320 0.0000000 0.000000000 0.00000000
## 1321 0.0000000 0.000000000 0.00000000
## 1322 0.0000000 0.000000000 0.00000000
## 1323 0.0000000 0.000000000 0.00000000
## 1324 0.0000000 0.000000000 0.00000000
## 1325 0.0000000 0.000000000 0.00000000
## 1326 0.0000000 0.000000000 0.00000000
## 1327 0.0000000 0.000000000 0.00000000
## 1328 0.0000000 0.000000000 0.00000000
## 1329 0.0000000 0.000000000 0.00000000
## 1330 0.0000000 0.000000000 0.00000000
## 1331 0.0000000 0.000000000 0.00000000
## 1332 0.0000000 0.000000000 0.00000000
## 1333 0.0000000 0.000000000 0.00000000
## 1334 0.0000000 0.000000000 0.00000000
## 1335 0.0000000 0.000000000 0.00000000
## 1336 0.0000000 0.000000000 0.00000000
## 1337 0.0000000 0.000000000 0.00000000
## 1338 0.0000000 0.000000000 0.00000000
## 1339 0.0000000 0.000000000 0.00000000
## 1340 0.0000000 0.000000000 0.00000000
## 1341 0.0000000 0.000000000 0.00000000
## 1342 0.0000000 0.000000000 0.00000000
## 1343 0.0000000 0.000000000 0.00000000
## 1344 0.0000000 0.000000000 0.00000000
## 1345 0.0000000 0.000000000 0.00000000
## 1346 0.0000000 0.000000000 0.00000000
## 1347 0.0000000 0.000000000 0.00000000
## 1348 0.0000000 0.000000000 0.00000000
## 1349 0.0000000 0.000000000 0.00000000
## 1350 0.0000000 0.000000000 0.00000000
## 1351 0.0000000 0.000000000 0.00000000
## 1352 0.0000000 0.000000000 0.00000000
## 1353 0.0000000 0.000000000 0.00000000
## 1354 0.0000000 0.000000000 0.00000000
## 1355 0.0000000 0.000000000 0.00000000
## 1356 0.0000000 0.000000000 0.00000000
## 1357 0.0000000 0.000000000 0.00000000
## 1358 0.0000000 0.000000000 0.00000000
## 1359 0.0000000 0.000000000 0.00000000
## 1360 0.0000000 0.000000000 0.00000000
## 1361 0.0000000 0.000000000 0.00000000
## 1362 0.0000000 0.000000000 0.00000000
## 1363 0.0000000 0.000000000 0.00000000
## 1364 0.0000000 0.000000000 0.00000000
## 1365 0.0000000 0.000000000 0.00000000
## 1366 0.0000000 0.000000000 0.00000000
## 1367 0.0000000 0.000000000 0.00000000
## 1368 0.0000000 0.000000000 0.00000000
## 1369 0.0000000 0.000000000 0.00000000
## 1370 0.0000000 0.000000000 0.00000000
## 1371 0.0000000 0.000000000 0.00000000
## 1372 0.0000000 0.000000000 0.00000000
## 1373 0.0000000 0.000000000 0.00000000
## 1374 0.0000000 0.000000000 0.00000000
## 1375 0.0000000 0.000000000 0.00000000
## 1376 0.0000000 0.000000000 0.00000000
## 1377 0.0000000 0.000000000 0.00000000
## 1378 0.0000000 0.000000000 0.00000000
## 1379 0.0000000 0.000000000 0.00000000
## 1380 0.0000000 0.000000000 0.00000000
## 1381 0.0000000 0.000000000 0.00000000
## 1382 0.0000000 0.000000000 0.00000000
## 1383 0.0000000 0.000000000 0.00000000
## 1384 0.0000000 0.000000000 0.00000000
## 1385 0.0000000 0.000000000 0.00000000
## 1386 0.0000000 0.000000000 0.00000000
## 1387 0.0000000 0.000000000 0.00000000
## 1388 0.0000000 0.000000000 0.00000000
## 1389 0.0000000 0.000000000 0.00000000
## 1390 0.0000000 0.000000000 0.00000000
## 1391 0.0000000 0.000000000 0.00000000
## 1392 0.0000000 0.000000000 0.00000000
## 1393 0.0000000 0.000000000 0.00000000
## 1394 0.0000000 0.000000000 0.00000000
## 1395 0.0000000 0.000000000 0.00000000
## 1396 0.0000000 0.000000000 0.00000000
## 1397 0.0000000 0.000000000 0.00000000
## 1398 0.0000000 0.000000000 0.00000000
## 1399 0.0000000 0.000000000 0.00000000
## 1400 0.0000000 0.000000000 0.00000000
## 1401 0.0000000 0.000000000 0.00000000
## 1402 0.0000000 0.000000000 0.00000000
## 1403 0.0000000 0.000000000 0.00000000
## 1404 0.0000000 0.000000000 0.00000000
## 1405 0.0000000 0.000000000 0.00000000
## 1406 0.0000000 0.000000000 0.00000000
## 1407 0.0000000 0.000000000 0.00000000
## 1408 0.0000000 0.000000000 0.00000000
## 1409 0.0000000 0.000000000 0.00000000
## 1410 0.0000000 0.000000000 0.00000000
## 1411 0.0000000 0.000000000 0.00000000
## 1412 0.0000000 0.000000000 0.00000000
## 1413 0.0000000 0.000000000 0.00000000
## 1414 0.0000000 0.000000000 0.00000000
## 1415 0.0000000 0.000000000 0.00000000
## 1416 0.0000000 0.000000000 0.00000000
## 1417 0.0000000 0.000000000 0.00000000
## 1418 0.0000000 0.000000000 0.00000000
## 1419 0.0000000 0.000000000 0.00000000
## 1420 0.0000000 0.000000000 0.00000000
## 1421 0.0000000 0.000000000 0.00000000
## 1422 0.0000000 0.000000000 0.00000000
## 1423 0.0000000 0.000000000 0.00000000
## 1424 0.0000000 0.000000000 0.00000000
## 1425 0.0000000 0.000000000 0.00000000
## 1426 0.0000000 0.000000000 0.00000000
## 1427 0.0000000 0.000000000 0.00000000
## 1428 0.0000000 0.000000000 0.00000000
## 1429 0.0000000 0.000000000 0.00000000
## 1430 0.0000000 0.000000000 0.00000000
## 1431 0.0000000 0.000000000 0.00000000
## 1432 0.0000000 0.000000000 0.00000000
## 1433 0.0000000 0.000000000 0.00000000
## 1434 0.0000000 0.000000000 0.00000000
## 1435 0.0000000 0.000000000 0.00000000
## 1436 0.0000000 0.000000000 0.00000000
## 1437 0.0000000 0.000000000 0.00000000
## 1438 0.0000000 0.000000000 0.00000000
## 1439 0.0000000 0.000000000 0.00000000
## 1440 0.0000000 0.000000000 0.00000000
## 1441 0.0000000 0.000000000 0.00000000
## 1442 0.0000000 0.000000000 0.00000000
## 1443 0.0000000 0.000000000 0.00000000
## 1444 0.0000000 0.000000000 0.00000000
## 1445 0.0000000 0.000000000 0.00000000
## 1446 0.0000000 0.000000000 0.00000000
## 1447 0.0000000 0.000000000 0.00000000
## 1448 0.0000000 0.000000000 0.00000000
## 1449 0.0000000 0.000000000 0.00000000
## 1450 0.0000000 0.000000000 0.00000000
## 1451 0.0000000 0.000000000 0.00000000
## 1452 0.0000000 0.000000000 0.00000000
## 1453 0.0000000 0.000000000 0.00000000
## 1454 0.0000000 0.000000000 0.00000000
## 1455 0.0000000 0.000000000 0.00000000
## 1456 0.0000000 0.000000000 0.00000000
## 1457 0.0000000 0.000000000 0.00000000
## 1458 0.0000000 0.000000000 0.00000000
## 1459 0.0000000 0.000000000 0.00000000
## 1460 0.0000000 0.000000000 0.00000000
## 1461 0.0000000 0.000000000 0.00000000
## 1462 0.0000000 0.000000000 0.00000000
## 1463 0.0000000 0.000000000 0.00000000
## 1464 0.0000000 0.000000000 0.00000000
## 1465 0.0000000 0.000000000 0.00000000
## 1466 0.0000000 0.000000000 0.00000000
## 1467 0.0000000 0.000000000 0.00000000
## 1468 0.0000000 0.000000000 0.00000000
## 1469 0.0000000 0.000000000 0.00000000
## 1470 0.0000000 0.000000000 0.00000000
## 1471 0.0000000 0.000000000 0.00000000
## 1472 0.0000000 0.000000000 0.00000000
## 1473 0.0000000 0.000000000 0.00000000
## 1474 0.0000000 0.000000000 0.00000000
## 1475 0.0000000 0.000000000 0.00000000
## 1476 0.0000000 0.000000000 0.00000000
## 1477 0.0000000 0.000000000 0.00000000
## 1478 0.0000000 0.000000000 0.00000000
## 1479 0.0000000 0.000000000 0.00000000
## 1480 0.0000000 0.000000000 0.00000000
## 1481 0.0000000 0.000000000 0.00000000
## 1482 0.0000000 0.000000000 0.00000000
## 1483 0.0000000 0.000000000 0.00000000
## 1484 0.0000000 0.000000000 0.00000000
## 1485 0.0000000 0.000000000 0.00000000
## 1486 0.0000000 0.000000000 0.00000000
## 1487 0.0000000 0.000000000 0.00000000
## 1488 0.0000000 0.000000000 0.00000000
## 1489 0.0000000 0.000000000 0.00000000
## 1490 0.0000000 0.000000000 0.00000000
## 1491 0.0000000 0.000000000 0.00000000
## 1492 0.0000000 0.000000000 0.00000000
## 1493 0.0000000 0.000000000 0.00000000
## 1494 0.0000000 0.000000000 0.00000000
## 1495 0.0000000 0.000000000 0.00000000
## 1496 0.0000000 0.000000000 0.00000000
## 1497 0.0000000 0.000000000 0.00000000
## 1498 0.0000000 0.000000000 0.00000000
## 1499 0.0000000 0.000000000 0.00000000
## 1500 0.0000000 0.000000000 0.00000000
## 1501 0.0000000 0.000000000 0.00000000
## 1502 0.0000000 0.000000000 0.00000000
## 1503 0.0000000 0.000000000 0.00000000
## 1504 0.0000000 0.000000000 0.00000000
## 1505 0.0000000 0.000000000 0.00000000
## 1506 0.0000000 0.000000000 0.00000000
## 1507 0.0000000 0.000000000 0.00000000
## 1508 0.0000000 0.000000000 0.00000000
## 1509 0.0000000 0.000000000 0.00000000
## 1510 0.0000000 0.000000000 0.00000000
## 1511 0.0000000 0.000000000 0.00000000
## 1512 0.0000000 0.000000000 0.00000000
## 1513 0.0000000 0.000000000 0.00000000
## 1514 0.0000000 0.000000000 0.00000000
## 1515 0.0000000 0.000000000 0.00000000
## 1516 0.0000000 0.000000000 0.00000000
## 1517 0.0000000 0.000000000 0.00000000
## 1518 0.0000000 0.000000000 0.00000000
## 1519 0.0000000 0.000000000 0.00000000
## 1520 0.0000000 0.000000000 0.00000000
## 1521 0.0000000 0.000000000 0.00000000
## 1522 0.0000000 0.000000000 0.00000000
## 1523 0.0000000 0.000000000 0.00000000
## 1524 0.0000000 0.000000000 0.00000000
## 1525 0.0000000 0.000000000 0.00000000
## 1526 0.0000000 0.000000000 0.00000000
## 1527 0.0000000 0.000000000 0.00000000
## 1528 0.0000000 0.000000000 0.00000000
## 1529 0.0000000 0.000000000 0.00000000
## 1530 0.0000000 0.000000000 0.00000000
## 1531 0.0000000 0.000000000 0.00000000
## 1532 0.0000000 0.000000000 0.00000000
## 1533 0.0000000 0.000000000 0.00000000
## 1534 0.0000000 0.000000000 0.00000000
## 1535 0.0000000 0.000000000 0.00000000
## 1536 0.0000000 0.000000000 0.00000000
## 1537 0.0000000 0.000000000 0.00000000
## 1538 0.0000000 0.000000000 0.00000000
## 1539 0.0000000 0.000000000 0.00000000
## 1540 0.0000000 0.000000000 0.00000000
## 1541 0.0000000 0.000000000 0.00000000
## 1542 0.0000000 0.000000000 0.00000000
## 1543 0.0000000 0.000000000 0.00000000
## 1544 0.0000000 0.000000000 0.00000000
## 1545 0.0000000 0.000000000 0.00000000
## 1546 0.0000000 0.000000000 0.00000000
## 1547 0.0000000 0.000000000 0.00000000
## 1548 0.0000000 0.000000000 0.00000000
## 1549 0.0000000 0.000000000 0.00000000
## 1550 0.0000000 0.000000000 0.00000000
## 1551 0.0000000 0.000000000 0.00000000
## 1552 0.0000000 0.000000000 0.00000000
## 1553 0.0000000 0.000000000 0.00000000
## 1554 0.0000000 0.000000000 0.00000000
## 1555 0.0000000 0.000000000 0.00000000
## 1556 0.0000000 0.000000000 0.00000000
## 1557 0.0000000 0.000000000 0.00000000
## 1558 0.0000000 0.000000000 0.00000000
## 1559 0.0000000 0.000000000 0.00000000
## 1560 0.0000000 0.000000000 0.00000000
## 1561 0.0000000 0.000000000 0.00000000
## 1562 0.0000000 0.000000000 0.00000000
## 1563 0.0000000 0.000000000 0.00000000
## 1564 0.0000000 0.000000000 0.00000000
## 1565 0.0000000 0.000000000 0.00000000
## 1566 0.0000000 0.000000000 0.00000000
## 1567 0.0000000 0.000000000 0.00000000
## 1568 0.0000000 0.000000000 0.00000000
## 1569 0.0000000 0.000000000 0.00000000
## 1570 0.0000000 0.000000000 0.00000000
## 1571 0.0000000 0.000000000 0.00000000
## 1572 0.0000000 0.000000000 0.00000000
## 1573 0.0000000 0.000000000 0.00000000
## 1574 0.0000000 0.000000000 0.00000000
## 1575 0.0000000 0.000000000 0.00000000
## 1576 0.0000000 0.000000000 0.00000000
## 1577 0.0000000 0.000000000 0.00000000
## 1578 0.0000000 0.000000000 0.00000000
## 1579 0.0000000 0.000000000 0.00000000
## 1580 0.0000000 0.000000000 0.00000000
## 1581 0.0000000 0.000000000 0.00000000
## 1582 0.0000000 0.000000000 0.00000000
## 1583 0.0000000 0.000000000 0.00000000
## 1584 0.0000000 0.000000000 0.00000000
## 1585 0.0000000 0.000000000 0.00000000
## 1586 0.0000000 0.000000000 0.00000000
## 1587 0.0000000 0.000000000 0.00000000
## 1588 0.0000000 0.000000000 0.00000000
## 1589 0.0000000 0.000000000 0.00000000
## 1590 0.0000000 0.000000000 0.00000000
## 1591 0.0000000 0.000000000 0.00000000
## 1592 0.0000000 0.000000000 0.00000000
## 1593 0.0000000 0.000000000 0.00000000
## 1594 0.0000000 0.000000000 0.00000000
## 1595 0.0000000 0.000000000 0.00000000
## 1596 0.0000000 0.000000000 0.00000000
## 1597 0.0000000 0.000000000 0.00000000
## 1598 0.0000000 0.000000000 0.00000000
## 1599 0.0000000 0.000000000 0.00000000
## 1600 0.0000000 0.000000000 0.00000000
## 1601 0.0000000 0.000000000 0.00000000
## 1602 0.0000000 0.000000000 0.00000000
## 1603 0.0000000 0.000000000 0.00000000
## 1604 0.0000000 0.000000000 0.00000000
## 1605 0.0000000 0.000000000 0.00000000
## 1606 0.0000000 0.000000000 0.00000000
## 1607 0.0000000 0.000000000 0.00000000
## 1608 0.0000000 0.000000000 0.00000000
## 1609 0.0000000 0.000000000 0.00000000
## 1610 0.0000000 0.000000000 0.00000000
## 1611 0.0000000 0.000000000 0.00000000
## 1612 0.0000000 0.000000000 0.00000000
## 1613 0.0000000 0.000000000 0.00000000
## 1614 0.0000000 0.000000000 0.00000000
## 1615 0.0000000 0.000000000 0.00000000
## 1616 0.0000000 0.000000000 0.00000000
## 1617 0.0000000 0.000000000 0.00000000
## 1618 0.0000000 0.000000000 0.00000000
## 1619 0.0000000 0.000000000 0.00000000
## 1620 0.0000000 0.000000000 0.00000000
## 1621 0.0000000 0.000000000 0.00000000
## 1622 0.0000000 0.000000000 0.00000000
## 1623 0.0000000 0.000000000 0.00000000
## 1624 0.0000000 0.000000000 0.00000000
## 1625 0.0000000 0.000000000 0.00000000
## 1626 0.0000000 0.000000000 0.00000000
## 1627 0.0000000 0.000000000 0.00000000
## 1628 0.0000000 0.000000000 0.00000000
## 1629 0.0000000 0.000000000 0.00000000
## 1630 0.0000000 0.000000000 0.00000000
## 1631 0.0000000 0.000000000 0.00000000
## 1632 0.0000000 0.000000000 0.00000000
## 1633 0.0000000 0.000000000 0.00000000
## 1634 0.0000000 0.000000000 0.00000000
## 1635 0.0000000 0.000000000 0.00000000
## 1636 0.0000000 0.000000000 0.00000000
## 1637 0.0000000 0.000000000 0.00000000
## 1638 0.0000000 0.000000000 0.00000000
## 1639 0.0000000 0.000000000 0.00000000
## 1640 0.0000000 0.000000000 0.00000000
## 1641 0.0000000 0.000000000 0.00000000
## 1642 0.0000000 0.000000000 0.00000000
## 1643 0.0000000 0.000000000 0.00000000
## 1644 0.0000000 0.000000000 0.00000000
## 1645 0.0000000 0.000000000 0.00000000
## 1646 0.0000000 0.000000000 0.00000000
## 1647 0.0000000 0.000000000 0.00000000
## 1648 0.0000000 0.000000000 0.00000000
## 1649 0.0000000 0.000000000 0.00000000
## 1650 0.0000000 0.000000000 0.00000000
## 1651 0.0000000 0.000000000 0.00000000
## 1652 0.0000000 0.000000000 0.00000000
## 1653 0.0000000 0.000000000 0.00000000
## 1654 0.0000000 0.000000000 0.00000000
## 1655 0.0000000 0.000000000 0.00000000
## 1656 0.0000000 0.000000000 0.00000000
## 1657 0.0000000 0.000000000 0.00000000
## 1658 0.0000000 0.000000000 0.00000000
## 1659 0.0000000 0.000000000 0.00000000
## 1660 0.0000000 0.000000000 0.00000000
## 1661 0.0000000 0.000000000 0.00000000
## 1662 0.0000000 0.000000000 0.00000000
## 1663 0.0000000 0.000000000 0.00000000
## 1664 0.0000000 0.000000000 0.00000000
## 1665 0.0000000 0.000000000 0.00000000
## 1666 0.0000000 0.000000000 0.00000000
## 1667 0.0000000 0.000000000 0.00000000
## 1668 0.0000000 0.000000000 0.00000000
## 1669 0.0000000 0.000000000 0.00000000
## 1670 0.0000000 0.000000000 0.00000000
## 1671 0.0000000 0.000000000 0.00000000
## 1672 0.0000000 0.000000000 0.00000000
## 1673 0.0000000 0.000000000 0.00000000
## 1674 0.0000000 0.000000000 0.00000000
## 1675 0.0000000 0.000000000 0.00000000
## 1676 0.0000000 0.000000000 0.00000000
## 1677 0.0000000 0.000000000 0.00000000
## 1678 0.0000000 0.000000000 0.00000000
## 1679 0.0000000 0.000000000 0.00000000
## 1680 0.0000000 0.000000000 0.00000000
## 1681 0.0000000 0.000000000 0.00000000
## 1682 0.0000000 0.000000000 0.00000000
## 1683 0.0000000 0.000000000 0.00000000
## 1684 0.0000000 0.000000000 0.00000000
## 1685 0.0000000 0.000000000 0.00000000
## 1686 0.0000000 0.000000000 0.00000000
## 1687 0.0000000 0.000000000 0.00000000
## 1688 0.0000000 0.000000000 0.00000000
## 1689 0.0000000 0.000000000 0.00000000
## 1690 0.0000000 0.000000000 0.00000000
## 1691 0.0000000 0.000000000 0.00000000
## 1692 0.0000000 0.000000000 0.00000000
## 1693 0.0000000 0.000000000 0.00000000
## 1694 0.0000000 0.000000000 0.00000000
## 1695 0.0000000 0.000000000 0.00000000
## 1696 0.0000000 0.000000000 0.00000000
## 1697 0.0000000 0.000000000 0.00000000
## 1698 0.0000000 0.000000000 0.00000000
## 1699 0.0000000 0.000000000 0.00000000
## 1700 0.0000000 0.000000000 0.00000000
## 1701 0.0000000 0.000000000 0.00000000
## 1702 0.0000000 0.000000000 0.00000000
## 1703 0.0000000 0.000000000 0.00000000
## 1704 0.0000000 0.000000000 0.00000000
## 1705 0.0000000 0.000000000 0.00000000
## 1706 0.0000000 0.000000000 0.00000000
## 1707 0.0000000 0.000000000 0.00000000
## 1708 0.0000000 0.000000000 0.00000000
## 1709 0.0000000 0.000000000 0.00000000
## 1710 0.0000000 0.000000000 0.00000000
## 1711 0.0000000 0.000000000 0.00000000
## 1712 0.0000000 0.000000000 0.00000000
## 1713 0.0000000 0.000000000 0.00000000
## 1714 0.0000000 0.000000000 0.00000000
## 1715 0.0000000 0.000000000 0.00000000
## 1716 0.0000000 0.000000000 0.00000000
## 1717 0.0000000 0.000000000 0.00000000
## 1718 0.0000000 0.000000000 0.00000000
## 1719 0.0000000 0.000000000 0.00000000
## 1720 0.0000000 0.000000000 0.00000000
## 1721 0.0000000 0.000000000 0.00000000
## 1722 0.0000000 0.000000000 0.00000000
## 1723 0.0000000 0.000000000 0.00000000
## 1724 0.0000000 0.000000000 0.00000000
## 1725 0.0000000 0.000000000 0.00000000
## 1726 0.0000000 0.000000000 0.00000000
## 1727 0.0000000 0.000000000 0.00000000
## 1728 0.0000000 0.000000000 0.00000000
## 1729 0.0000000 0.000000000 0.00000000
## 1730 0.0000000 0.000000000 0.00000000
## 1731 0.0000000 0.000000000 0.00000000
## 1732 0.0000000 0.000000000 0.00000000
## 1733 0.0000000 0.000000000 0.00000000
## 1734 0.0000000 0.000000000 0.00000000
## 1735 0.0000000 0.000000000 0.00000000
## 1736 0.0000000 0.000000000 0.00000000
## 1737 0.0000000 0.000000000 0.00000000
## 1738 0.0000000 0.000000000 0.00000000
## 1739 0.0000000 0.000000000 0.00000000
## 1740 0.0000000 0.000000000 0.00000000
## 1741 0.0000000 0.000000000 0.00000000
## 1742 0.0000000 0.000000000 0.00000000
## 1743 0.0000000 0.000000000 0.00000000
## 1744 0.0000000 0.000000000 0.00000000
## 1745 0.0000000 0.000000000 0.00000000
## 1746 0.0000000 0.000000000 0.00000000
## 1747 0.0000000 0.000000000 0.00000000
## 1748 0.0000000 0.000000000 0.00000000
## 1749 0.0000000 0.000000000 0.00000000
## 1750 0.0000000 0.000000000 0.00000000
## 1751 0.0000000 0.000000000 0.00000000
## 1752 0.0000000 0.000000000 0.00000000
## 1753 0.0000000 0.000000000 0.00000000
## 1754 0.0000000 0.000000000 0.00000000
## 1755 0.0000000 0.000000000 0.00000000
## 1756 0.0000000 0.000000000 0.00000000
## 1757 0.0000000 0.000000000 0.00000000
## 1758 0.0000000 0.000000000 0.00000000
## 1759 0.0000000 0.000000000 0.00000000
## 1760 0.0000000 0.000000000 0.00000000
## 1761 0.0000000 0.000000000 0.00000000
## 1762 0.0000000 0.000000000 0.00000000
## 1763 0.0000000 0.000000000 0.00000000
## 1764 0.0000000 0.000000000 0.00000000
## 1765 0.0000000 0.000000000 0.00000000
## 1766 0.0000000 0.000000000 0.00000000
## 1767 0.0000000 0.000000000 0.00000000
## 1768 0.0000000 0.000000000 0.00000000
## 1769 0.0000000 0.000000000 0.00000000
## 1770 0.0000000 0.000000000 0.00000000
## 1771 0.0000000 0.000000000 0.00000000
## 1772 0.0000000 0.000000000 0.00000000
## 1773 0.0000000 0.000000000 0.00000000
## 1774 0.0000000 0.000000000 0.00000000
## 1775 0.0000000 0.000000000 0.00000000
## 1776 0.0000000 0.000000000 0.00000000
## 1777 0.0000000 0.000000000 0.00000000
## 1778 0.0000000 0.000000000 0.00000000
## 1779 0.0000000 0.000000000 0.00000000
## 1780 0.0000000 0.000000000 0.00000000
## 1781 0.0000000 0.000000000 0.00000000
## 1782 0.0000000 0.000000000 0.00000000
## 1783 0.0000000 0.000000000 0.00000000
## 1784 0.0000000 0.000000000 0.00000000
## 1785 0.0000000 0.000000000 0.00000000
## 1786 0.0000000 0.000000000 0.00000000
## 1787 0.0000000 0.000000000 0.00000000
## 1788 0.0000000 0.000000000 0.00000000
## 1789 0.0000000 0.000000000 0.00000000
## 1790 0.0000000 0.000000000 0.00000000
## 1791 0.0000000 0.000000000 0.00000000
## 1792 0.0000000 0.000000000 0.00000000
## 1793 0.0000000 0.000000000 0.00000000
## 1794 0.0000000 0.000000000 0.00000000
## 1795 0.0000000 0.000000000 0.00000000
## 1796 0.0000000 0.000000000 0.00000000
## 1797 0.0000000 0.000000000 0.00000000
## 1798 0.0000000 0.000000000 0.00000000
## 1799 0.0000000 0.000000000 0.00000000
## 1800 0.0000000 0.000000000 0.00000000
## 1801 0.0000000 0.000000000 0.00000000
## 1802 0.0000000 0.000000000 0.00000000
## 1803 0.0000000 0.000000000 0.00000000
## 1804 0.0000000 0.000000000 0.00000000
## 1805 0.0000000 0.000000000 0.00000000
## 1806 0.0000000 0.000000000 0.00000000
## 1807 0.0000000 0.000000000 0.00000000
## 1808 0.0000000 0.000000000 0.00000000
## 1809 0.0000000 0.000000000 0.00000000
## 1810 0.0000000 0.000000000 0.00000000
## 1811 0.0000000 0.000000000 0.00000000
## 1812 0.0000000 0.000000000 0.00000000
## 1813 0.0000000 0.000000000 0.00000000
## 1814 0.0000000 0.000000000 0.00000000
## 1815 0.0000000 0.000000000 0.00000000
## 1816 0.0000000 0.000000000 0.00000000
## 1817 0.0000000 0.000000000 0.00000000
## 1818 0.0000000 0.000000000 0.00000000
## 1819 0.0000000 0.000000000 0.00000000
## 1820 0.0000000 0.000000000 0.00000000
## 1821 0.0000000 0.000000000 0.00000000
## 1822 0.0000000 0.000000000 0.00000000
## 1823 0.0000000 0.000000000 0.00000000
## 1824 0.0000000 0.000000000 0.00000000
## 1825 0.0000000 0.000000000 0.00000000
## 1826 0.0000000 0.000000000 0.00000000
## 1827 0.0000000 0.000000000 0.00000000
## 1828 0.0000000 0.000000000 0.00000000
## 1829 0.0000000 0.000000000 0.00000000
## 1830 0.0000000 0.000000000 0.00000000
## 1831 0.0000000 0.000000000 0.00000000
## 1832 0.0000000 0.000000000 0.00000000
## 1833 0.0000000 0.000000000 0.00000000
## 1834 0.0000000 0.000000000 0.00000000
## 1835 0.0000000 0.000000000 0.00000000
## 1836 0.0000000 0.000000000 0.00000000
## 1837 0.0000000 0.000000000 0.00000000
## 1838 0.0000000 0.000000000 0.00000000
## 1839 0.0000000 0.000000000 0.00000000
## 1840 0.0000000 0.000000000 0.00000000
## 1841 0.0000000 0.000000000 0.00000000
## 1842 0.0000000 0.000000000 0.00000000
## 1843 0.0000000 0.000000000 0.00000000
## 1844 0.0000000 0.000000000 0.00000000
## 1845 0.0000000 0.000000000 0.00000000
## 1846 0.0000000 0.000000000 0.00000000
## 1847 0.0000000 0.000000000 0.00000000
## 1848 0.0000000 0.000000000 0.00000000
## 1849 0.0000000 0.000000000 0.00000000
## 1850 0.0000000 0.000000000 0.00000000
## 1851 0.0000000 0.000000000 0.00000000
## 1852 0.0000000 0.000000000 0.00000000
## 1853 0.0000000 0.000000000 0.00000000
## 1854 0.0000000 0.000000000 0.00000000
## 1855 0.0000000 0.000000000 0.00000000
## 1856 0.0000000 0.000000000 0.00000000
## 1857 0.0000000 0.000000000 0.00000000
## 1858 0.0000000 0.000000000 0.00000000
## 1859 0.0000000 0.000000000 0.00000000
## 1860 0.0000000 0.000000000 0.00000000
## 1861 0.0000000 0.000000000 0.00000000
## 1862 0.0000000 0.000000000 0.00000000
## 1863 0.0000000 0.000000000 0.00000000
## 1864 0.0000000 0.000000000 0.00000000
## 1865 0.0000000 0.000000000 0.00000000
## 1866 0.0000000 0.000000000 0.00000000
## 1867 0.0000000 0.000000000 0.00000000
## 1868 0.0000000 0.000000000 0.00000000
## 1869 0.0000000 0.000000000 0.00000000
## 1870 0.0000000 0.000000000 0.00000000
## 1871 0.0000000 0.000000000 0.00000000
## 1872 0.0000000 0.000000000 0.00000000
## 1873 0.0000000 0.000000000 0.00000000
## 1874 0.0000000 0.000000000 0.00000000
## 1875 0.0000000 0.000000000 0.00000000
## 1876 0.0000000 0.000000000 0.00000000
## 1877 0.0000000 0.000000000 0.00000000
## 1878 0.0000000 0.000000000 0.00000000
## 1879 0.0000000 0.000000000 0.00000000
## 1880 0.0000000 0.000000000 0.00000000
## 1881 0.0000000 0.000000000 0.00000000
## 1882 0.0000000 0.000000000 0.00000000
## 1883 0.0000000 0.000000000 0.00000000
## 1884 0.0000000 0.000000000 0.00000000
## 1885 0.0000000 0.000000000 0.00000000
## 1886 0.0000000 0.000000000 0.00000000
## 1887 0.0000000 0.000000000 0.00000000
## 1888 0.0000000 0.000000000 0.00000000
## 1889 0.0000000 0.000000000 0.00000000
## 1890 0.0000000 0.000000000 0.00000000
## 1891 0.0000000 0.000000000 0.00000000
## 1892 0.0000000 0.000000000 0.00000000
## 1893 0.0000000 0.000000000 0.00000000
## 1894 0.0000000 0.000000000 0.00000000
## 1895 0.0000000 0.000000000 0.00000000
## 1896 0.0000000 0.000000000 0.00000000
## 1897 0.0000000 0.000000000 0.00000000
## 1898 0.0000000 0.000000000 0.00000000
## 1899 0.0000000 0.000000000 0.00000000
## 1900 0.0000000 0.000000000 0.00000000
## 1901 0.0000000 0.000000000 0.00000000
## 1902 0.0000000 0.000000000 0.00000000
## 1903 0.0000000 0.000000000 0.00000000
## 1904 0.0000000 0.000000000 0.00000000
## 1905 0.0000000 0.000000000 0.00000000
## 1906 0.0000000 0.000000000 0.00000000
## 1907 0.0000000 0.000000000 0.00000000
## 1908 0.0000000 0.000000000 0.00000000
## 1909 0.0000000 0.000000000 0.00000000
## 1910 0.0000000 0.000000000 0.00000000
## 1911 0.0000000 0.000000000 0.00000000
## 1912 0.0000000 0.000000000 0.00000000
## 1913 0.0000000 0.000000000 0.00000000
## 1914 0.0000000 0.000000000 0.00000000
## 1915 0.0000000 0.000000000 0.00000000
## 1916 0.0000000 0.000000000 0.00000000
## 1917 0.0000000 0.000000000 0.00000000
## 1918 0.0000000 0.000000000 0.00000000
## 1919 0.0000000 0.000000000 0.00000000
## 1920 0.0000000 0.000000000 0.00000000
## 1921 0.0000000 0.000000000 0.00000000
## 1922 0.0000000 0.000000000 0.00000000
## 1923 0.0000000 0.000000000 0.00000000
## 1924 0.0000000 0.000000000 0.00000000
## 1925 0.0000000 0.000000000 0.00000000
## 1926 0.0000000 0.000000000 0.00000000
## 1927 0.0000000 0.000000000 0.00000000
## 1928 0.0000000 0.000000000 0.00000000
## 1929 0.0000000 0.000000000 0.00000000
## 1930 0.0000000 0.000000000 0.00000000
## 1931 0.0000000 0.000000000 0.00000000
## 1932 0.0000000 0.000000000 0.00000000
## 1933 0.0000000 0.000000000 0.00000000
## 1934 0.0000000 0.000000000 0.00000000
## 1935 0.0000000 0.000000000 0.00000000
## 1936 0.0000000 0.000000000 0.00000000
## 1937 0.0000000 0.000000000 0.00000000
## 1938 0.0000000 0.000000000 0.00000000
## 1939 0.0000000 0.000000000 0.00000000
## 1940 0.0000000 0.000000000 0.00000000
## 1941 0.0000000 0.000000000 0.00000000
## 1942 0.0000000 0.000000000 0.00000000
## 1943 0.0000000 0.000000000 0.00000000
## 1944 0.0000000 0.000000000 0.00000000
## 1945 0.0000000 0.000000000 0.00000000
## 1946 0.0000000 0.000000000 0.00000000
## 1947 0.0000000 0.000000000 0.00000000
## 1948 0.0000000 0.000000000 0.00000000
## 1949 0.0000000 0.000000000 0.00000000
## 1950 0.0000000 0.000000000 0.00000000
## 1951 0.0000000 0.000000000 0.00000000
## 1952 0.0000000 0.000000000 0.00000000
## 1953 0.0000000 0.000000000 0.00000000
## 1954 0.0000000 0.000000000 0.00000000
## 1955 0.0000000 0.000000000 0.00000000
## 1956 0.0000000 0.000000000 0.00000000
## 1957 0.0000000 0.000000000 0.00000000
## 1958 0.0000000 0.000000000 0.00000000
## 1959 0.0000000 0.000000000 0.00000000
## 1960 0.0000000 0.000000000 0.00000000
## 1961 0.0000000 0.000000000 0.00000000
## 1962 0.0000000 0.000000000 0.00000000
## 1963 0.0000000 0.000000000 0.00000000
## 1964 0.0000000 0.000000000 0.00000000
## 1965 0.0000000 0.000000000 0.00000000
## 1966 0.0000000 0.000000000 0.00000000
## 1967 0.0000000 0.000000000 0.00000000
## 1968 0.0000000 0.000000000 0.00000000
## 1969 0.0000000 0.000000000 0.00000000
## 1970 0.0000000 0.000000000 0.00000000
## 1971 0.0000000 0.000000000 0.00000000
## 1972 0.0000000 0.000000000 0.00000000
## 1973 0.0000000 0.000000000 0.00000000
## 1974 0.0000000 0.000000000 0.00000000
## 1975 0.0000000 0.000000000 0.00000000
## 1976 0.0000000 0.000000000 0.00000000
## 1977 0.0000000 0.000000000 0.00000000
## 1978 0.0000000 0.000000000 0.00000000
## 1979 0.0000000 0.000000000 0.00000000
## 1980 0.0000000 0.000000000 0.00000000
## 1981 0.0000000 0.000000000 0.00000000
## 1982 0.0000000 0.000000000 0.00000000
## 1983 0.0000000 0.000000000 0.00000000
## 1984 0.0000000 0.000000000 0.00000000
## 1985 0.0000000 0.000000000 0.00000000
## 1986 0.0000000 0.000000000 0.00000000
## 1987 0.0000000 0.000000000 0.00000000
## 1988 0.0000000 0.000000000 0.00000000
## 1989 0.0000000 0.000000000 0.00000000
## 1990 0.0000000 0.000000000 0.00000000
## 1991 0.0000000 0.000000000 0.00000000
## 1992 0.0000000 0.000000000 0.00000000
## 1993 0.0000000 0.000000000 0.00000000
## 1994 0.0000000 0.000000000 0.00000000
## 1995 0.0000000 0.000000000 0.00000000
## 1996 0.0000000 0.000000000 0.00000000
## 1997 0.0000000 0.000000000 0.00000000
## 1998 0.0000000 0.000000000 0.00000000
## 1999 0.0000000 0.000000000 0.00000000
## 2000 0.0000000 0.000000000 0.00000000
## 2001 0.0000000 0.000000000 0.00000000
## 2002 0.0000000 0.000000000 0.00000000
## 2003 0.0000000 0.000000000 0.00000000
## 2004 0.0000000 0.000000000 0.00000000
## 2005 0.0000000 0.000000000 0.00000000
## 2006 0.0000000 0.000000000 0.00000000
## 2007 0.0000000 0.000000000 0.00000000
## 2008 0.0000000 0.000000000 0.00000000
## 2009 0.0000000 0.000000000 0.00000000
## 2010 0.0000000 0.000000000 0.00000000
## 2011 0.0000000 0.000000000 0.00000000
## 2012 0.0000000 0.000000000 0.00000000
## 2013 0.0000000 0.000000000 0.00000000
## 2014 0.0000000 0.000000000 0.00000000
## 2015 0.0000000 0.000000000 0.00000000
## 2016 0.0000000 0.000000000 0.00000000
## 2017 0.0000000 0.000000000 0.00000000
## 2018 0.0000000 0.000000000 0.00000000
## 2019 0.0000000 0.000000000 0.00000000
## 2020 0.0000000 0.000000000 0.00000000
## 2021 0.0000000 0.000000000 0.00000000
## 2022 0.0000000 0.000000000 0.00000000
## 2023 0.0000000 0.000000000 0.00000000
## 2024 0.0000000 0.000000000 0.00000000
## 2025 0.0000000 0.000000000 0.00000000
## 2026 0.0000000 0.000000000 0.00000000
## 2027 0.0000000 0.000000000 0.00000000
## 2028 0.0000000 0.000000000 0.00000000
## 2029 0.0000000 0.000000000 0.00000000
## 2030 0.0000000 0.000000000 0.00000000
## 2031 0.0000000 0.000000000 0.00000000
## 2032 0.0000000 0.000000000 0.00000000
## 2033 0.0000000 0.000000000 0.00000000
## 2034 0.0000000 0.000000000 0.00000000
## 2035 0.0000000 0.000000000 0.00000000
## 2036 0.0000000 0.000000000 0.00000000
## 2037 0.0000000 0.000000000 0.00000000
## 2038 0.0000000 0.000000000 0.00000000
## 2039 0.0000000 0.000000000 0.00000000
## 2040 0.0000000 0.000000000 0.00000000
## 2041 0.0000000 0.000000000 0.00000000
## 2042 0.0000000 0.000000000 0.00000000
## 2043 0.0000000 0.000000000 0.00000000
## 2044 0.0000000 0.000000000 0.00000000
## 2045 0.0000000 0.000000000 0.00000000
## 2046 0.0000000 0.000000000 0.00000000
## 2047 0.0000000 0.000000000 0.00000000
## 2048 0.0000000 0.000000000 0.00000000
## 2049 0.0000000 0.000000000 0.00000000
## 2050 0.0000000 0.000000000 0.00000000
## 2051 0.0000000 0.000000000 0.00000000
## 2052 0.0000000 0.000000000 0.00000000
## 2053 0.0000000 0.000000000 0.00000000
## 2054 0.0000000 0.000000000 0.00000000
## 2055 0.0000000 0.000000000 0.00000000
## 2056 0.0000000 0.000000000 0.00000000
## 2057 0.0000000 0.000000000 0.00000000
## 2058 0.0000000 0.000000000 0.00000000
## 2059 0.0000000 0.000000000 0.00000000
## 2060 0.0000000 0.000000000 0.00000000
## 2061 0.0000000 0.000000000 0.00000000
## 2062 0.0000000 0.000000000 0.00000000
## 2063 0.0000000 0.000000000 0.00000000
## 2064 0.0000000 0.000000000 0.00000000
## 2065 0.0000000 0.000000000 0.00000000
## 2066 0.0000000 0.000000000 0.00000000
## 2067 0.0000000 0.000000000 0.00000000
## 2068 0.0000000 0.000000000 0.00000000
## 2069 0.0000000 0.000000000 0.00000000
## 2070 0.0000000 0.000000000 0.00000000
## 2071 0.0000000 0.000000000 0.00000000
## 2072 0.0000000 0.000000000 0.00000000
## 2073 0.0000000 0.000000000 0.00000000
## 2074 0.0000000 0.000000000 0.00000000
## 2075 0.0000000 0.000000000 0.00000000
## 2076 0.0000000 0.000000000 0.00000000
## 2077 0.0000000 0.000000000 0.00000000
## 2078 0.0000000 0.000000000 0.00000000
## 2079 0.0000000 0.000000000 0.00000000
## 2080 0.0000000 0.000000000 0.00000000
## 2081 0.0000000 0.000000000 0.00000000
## 2082 0.0000000 0.000000000 0.00000000
## 2083 0.0000000 0.000000000 0.00000000
## 2084 0.0000000 0.000000000 0.00000000
## 2085 0.0000000 0.000000000 0.00000000
## 2086 0.0000000 0.000000000 0.00000000
## 2087 0.0000000 0.000000000 0.00000000
## 2088 0.0000000 0.000000000 0.00000000
## 2089 0.0000000 0.000000000 0.00000000
## 2090 0.0000000 0.000000000 0.00000000
## 2091 0.0000000 0.000000000 0.00000000
## 2092 0.0000000 0.000000000 0.00000000
## 2093 0.0000000 0.000000000 0.00000000
## 2094 0.0000000 0.000000000 0.00000000
## 2095 0.0000000 0.000000000 0.00000000
## 2096 0.0000000 0.000000000 0.00000000
## 2097 0.0000000 0.000000000 0.00000000
## 2098 0.0000000 0.000000000 0.00000000
## 2099 0.0000000 0.000000000 0.00000000
## 2100 0.0000000 0.000000000 0.00000000
## 2101 0.0000000 0.000000000 0.00000000
## 2102 0.0000000 0.000000000 0.00000000
## 2103 0.0000000 0.000000000 0.00000000
## 2104 0.0000000 0.000000000 0.00000000
## 2105 0.0000000 0.000000000 0.00000000
## 2106 0.0000000 0.000000000 0.00000000
## 2107 0.0000000 0.000000000 0.00000000
## 2108 0.0000000 0.000000000 0.00000000
## 2109 0.0000000 0.000000000 0.00000000
## 2110 0.0000000 0.000000000 0.00000000
## 2111 0.0000000 0.000000000 0.00000000
## 2112 0.0000000 0.000000000 0.00000000
## 2113 0.0000000 0.000000000 0.00000000
## 2114 0.0000000 0.000000000 0.00000000
## 2115 0.0000000 0.000000000 0.00000000
## 2116 0.0000000 0.000000000 0.00000000
## 2117 0.0000000 0.000000000 0.00000000
## 2118 0.0000000 0.000000000 0.00000000
## 2119 0.0000000 0.000000000 0.00000000
## 2120 0.0000000 0.000000000 0.00000000
## 2121 0.0000000 0.000000000 0.00000000
## 2122 0.0000000 0.000000000 0.00000000
## 2123 0.0000000 0.000000000 0.00000000
## 2124 0.0000000 0.000000000 0.00000000
## 2125 0.0000000 0.000000000 0.00000000
## 2126 0.0000000 0.000000000 0.00000000
## 2127 0.0000000 0.000000000 0.00000000
## 2128 0.0000000 0.000000000 0.00000000
## 2129 0.0000000 0.000000000 0.00000000
## 2130 0.0000000 0.000000000 0.00000000
## 2131 0.0000000 0.000000000 0.00000000
## 2132 0.0000000 0.000000000 0.00000000
## 2133 0.0000000 0.000000000 0.00000000
## 2134 0.0000000 0.000000000 0.00000000
## 2135 0.0000000 0.000000000 0.00000000
## 2136 0.0000000 0.000000000 0.00000000
## 2137 0.0000000 0.000000000 0.00000000
## 2138 0.0000000 0.000000000 0.00000000
## 2139 0.0000000 0.000000000 0.00000000
## 2140 0.0000000 0.000000000 0.00000000
## 2141 0.0000000 0.000000000 0.00000000
## 2142 0.0000000 0.000000000 0.00000000
## 2143 0.0000000 0.000000000 0.00000000
## 2144 0.0000000 0.000000000 0.00000000
## 2145 0.0000000 0.000000000 0.00000000
## 2146 0.0000000 0.000000000 0.00000000
## 2147 0.0000000 0.000000000 0.00000000
## 2148 0.0000000 0.000000000 0.00000000
## 2149 0.0000000 0.000000000 0.00000000
## 2150 0.0000000 0.000000000 0.00000000
## 2151 0.0000000 0.000000000 0.00000000
## 2152 0.0000000 0.000000000 0.00000000
## 2153 0.0000000 0.000000000 0.00000000
## 2154 0.0000000 0.000000000 0.00000000
## 2155 0.0000000 0.000000000 0.00000000
## 2156 0.0000000 0.000000000 0.00000000
## 2157 0.0000000 0.000000000 0.00000000
## 2158 0.0000000 0.000000000 0.00000000
## 2159 0.0000000 0.000000000 0.00000000
## 2160 0.0000000 0.000000000 0.00000000
## 2161 0.0000000 0.000000000 0.00000000
## 2162 0.0000000 0.000000000 0.00000000
## 2163 0.0000000 0.000000000 0.00000000
## 2164 0.0000000 0.000000000 0.00000000
## 2165 0.0000000 0.000000000 0.00000000
## 2166 0.0000000 0.000000000 0.00000000
## 2167 0.0000000 0.000000000 0.00000000
## 2168 0.0000000 0.000000000 0.00000000
## 2169 0.0000000 0.000000000 0.00000000
## 2170 0.0000000 0.000000000 0.00000000
## 2171 0.0000000 0.000000000 0.00000000
## 2172 0.0000000 0.000000000 0.00000000
## 2173 0.0000000 0.000000000 0.00000000
## 2174 0.0000000 0.000000000 0.00000000
## 2175 0.0000000 0.000000000 0.00000000
## 2176 0.0000000 0.000000000 0.00000000
## 2177 0.0000000 0.000000000 0.00000000
## 2178 0.0000000 0.000000000 0.00000000
## 2179 0.0000000 0.000000000 0.00000000
## 2180 0.0000000 0.000000000 0.00000000
## 2181 0.0000000 0.000000000 0.00000000
## 2182 0.0000000 0.000000000 0.00000000
## 2183 0.0000000 0.000000000 0.00000000
## 2184 0.0000000 0.000000000 0.00000000
## 2185 0.0000000 0.000000000 0.00000000
## 2186 0.0000000 0.000000000 0.00000000
## 2187 0.0000000 0.000000000 0.00000000
## 2188 0.0000000 0.000000000 0.00000000
## 2189 0.0000000 0.000000000 0.00000000
## 2190 0.0000000 0.000000000 0.00000000
## 2191 0.0000000 0.000000000 0.00000000
## 2192 0.0000000 0.000000000 0.00000000
## 2193 0.0000000 0.000000000 0.00000000
## 2194 0.0000000 0.000000000 0.00000000
## 2195 0.0000000 0.000000000 0.00000000
## 2196 0.0000000 0.000000000 0.00000000
## 2197 0.0000000 0.000000000 0.00000000
## 2198 0.0000000 0.000000000 0.00000000
## 2199 0.0000000 0.000000000 0.00000000
## 2200 0.0000000 0.000000000 0.00000000
## 2201 0.0000000 0.000000000 0.00000000
## 2202 0.0000000 0.000000000 0.00000000
## 2203 0.0000000 0.000000000 0.00000000
## 2204 0.0000000 0.000000000 0.00000000
## 2205 0.0000000 0.000000000 0.00000000
## 2206 0.0000000 0.000000000 0.00000000
## 2207 0.0000000 0.000000000 0.00000000
## 2208 0.0000000 0.000000000 0.00000000
## 2209 0.0000000 0.000000000 0.00000000
## 2210 0.0000000 0.000000000 0.00000000
## 2211 0.0000000 0.000000000 0.00000000
## 2212 0.0000000 0.000000000 0.00000000
## 2213 0.0000000 0.000000000 0.00000000
## 2214 0.0000000 0.000000000 0.00000000
## 2215 0.0000000 0.000000000 0.00000000
## 2216 0.0000000 0.000000000 0.00000000
## 2217 0.0000000 0.000000000 0.00000000
## 2218 0.0000000 0.000000000 0.00000000
## 2219 0.0000000 0.000000000 0.00000000
## 2220 0.0000000 0.000000000 0.00000000
## 2221 0.0000000 0.000000000 0.00000000
## 2222 0.0000000 0.000000000 0.00000000
## 2223 0.0000000 0.000000000 0.00000000
## 2224 0.0000000 0.000000000 0.00000000
## 2225 0.0000000 0.000000000 0.00000000
## 2226 0.0000000 0.000000000 0.00000000
## 2227 0.0000000 0.000000000 0.00000000
## 2228 0.0000000 0.000000000 0.00000000
## 2229 0.0000000 0.000000000 0.00000000
## 2230 0.0000000 0.000000000 0.00000000
## 2231 0.0000000 0.000000000 0.00000000
## 2232 0.0000000 0.000000000 0.00000000
## 2233 0.0000000 0.000000000 0.00000000
## 2234 0.0000000 0.000000000 0.00000000
## 2235 0.0000000 0.000000000 0.00000000
## 2236 0.0000000 0.000000000 0.00000000
## 2237 0.0000000 0.000000000 0.00000000
## 2238 0.0000000 0.000000000 0.00000000
## 2239 0.0000000 0.000000000 0.00000000
## 2240 0.0000000 0.000000000 0.00000000
## 2241 0.0000000 0.000000000 0.00000000
## 2242 0.0000000 0.000000000 0.00000000
## 2243 0.0000000 0.000000000 0.00000000
## 2244 0.0000000 0.000000000 0.00000000
## 2245 0.0000000 0.000000000 0.00000000
## 2246 0.0000000 0.000000000 0.00000000
## 2247 0.0000000 0.000000000 0.00000000
## 2248 0.0000000 0.000000000 0.00000000
## 2249 0.0000000 0.000000000 0.00000000
## 2250 0.0000000 0.000000000 0.00000000
## 2251 0.0000000 0.000000000 0.00000000
## 2252 0.0000000 0.000000000 0.00000000
## 2253 0.0000000 0.000000000 0.00000000
## 2254 0.0000000 0.000000000 0.00000000
## 2255 0.0000000 0.000000000 0.00000000
## 2256 0.0000000 0.000000000 0.00000000
## 2257 0.0000000 0.000000000 0.00000000
## 2258 0.0000000 0.000000000 0.00000000
## 2259 0.0000000 0.000000000 0.00000000
## 2260 0.0000000 0.000000000 0.00000000
## 2261 0.0000000 0.000000000 0.00000000
## 2262 0.0000000 0.000000000 0.00000000
## 2263 0.0000000 0.000000000 0.00000000
## 2264 0.0000000 0.000000000 0.00000000
## 2265 0.0000000 0.000000000 0.00000000
## 2266 0.0000000 0.000000000 0.00000000
## 2267 0.0000000 0.000000000 0.00000000
## 2268 0.0000000 0.000000000 0.00000000
## 2269 0.0000000 0.000000000 0.00000000
## 2270 0.0000000 0.000000000 0.00000000
## 2271 0.0000000 0.000000000 0.00000000
## 2272 0.0000000 0.000000000 0.00000000
## 2273 0.0000000 0.000000000 0.00000000
## 2274 0.0000000 0.000000000 0.00000000
## 2275 0.0000000 0.000000000 0.00000000
## 2276 0.0000000 0.000000000 0.00000000
## 2277 0.0000000 0.000000000 0.00000000
## 2278 0.0000000 0.000000000 0.00000000
## 2279 0.0000000 0.000000000 0.00000000
## 2280 0.0000000 0.000000000 0.00000000
## 2281 0.0000000 0.000000000 0.00000000
## 2282 0.0000000 0.000000000 0.00000000
## 2283 0.0000000 0.000000000 0.00000000
## 2284 0.0000000 0.000000000 0.00000000
## 2285 0.0000000 0.000000000 0.00000000
## 2286 0.0000000 0.000000000 0.00000000
## 2287 0.0000000 0.000000000 0.00000000
## 2288 0.0000000 0.000000000 0.00000000
## 2289 0.0000000 0.000000000 0.00000000
## 2290 0.0000000 0.000000000 0.00000000
## 2291 0.0000000 0.000000000 0.00000000
## 2292 0.0000000 0.000000000 0.00000000
## 2293 0.0000000 0.000000000 0.00000000
## 2294 0.0000000 0.000000000 0.00000000
## 2295 0.0000000 0.000000000 0.00000000
## 2296 0.0000000 0.000000000 0.00000000
## 2297 0.0000000 0.000000000 0.00000000
## 2298 0.0000000 0.000000000 0.00000000
## 2299 0.0000000 0.000000000 0.00000000
## 2300 0.0000000 0.000000000 0.00000000
## 2301 0.0000000 0.000000000 0.00000000
## 2302 0.0000000 0.000000000 0.00000000
## 2303 0.0000000 0.000000000 0.00000000
## 2304 0.0000000 0.000000000 0.00000000
## 2305 0.0000000 0.000000000 0.00000000
## 2306 0.0000000 0.000000000 0.00000000
## 2307 0.0000000 0.000000000 0.00000000
## 2308 0.0000000 0.000000000 0.00000000
## 2309 0.0000000 0.000000000 0.00000000
## 2310 0.0000000 0.000000000 0.00000000
## 2311 0.0000000 0.000000000 0.00000000
## 2312 0.0000000 0.000000000 0.00000000
## 2313 0.0000000 0.000000000 0.00000000
## 2314 0.0000000 0.000000000 0.00000000
## 2315 0.0000000 0.000000000 0.00000000
## 2316 0.0000000 0.000000000 0.00000000
## 2317 0.0000000 0.000000000 0.00000000
## 2318 0.0000000 0.000000000 0.00000000
## 2319 0.0000000 0.000000000 0.00000000
## 2320 0.0000000 0.000000000 0.00000000
## 2321 0.0000000 0.000000000 0.00000000
## 2322 0.0000000 0.000000000 0.00000000
## 2323 0.0000000 0.000000000 0.00000000
## 2324 0.0000000 0.000000000 0.00000000
## 2325 0.0000000 0.000000000 0.00000000
## 2326 0.0000000 0.000000000 0.00000000
## 2327 0.0000000 0.000000000 0.00000000
## 2328 0.0000000 0.000000000 0.00000000
## 2329 0.0000000 0.000000000 0.00000000
## 2330 0.0000000 0.000000000 0.00000000
## 2331 0.0000000 0.000000000 0.00000000
## 2332 0.0000000 0.000000000 0.00000000
## 2333 0.0000000 0.000000000 0.00000000
## 2334 0.0000000 0.000000000 0.00000000
## 2335 0.0000000 0.000000000 0.00000000
## 2336 0.0000000 0.000000000 0.00000000
## 2337 0.0000000 0.000000000 0.00000000
## 2338 0.0000000 0.000000000 0.00000000
## 2339 0.0000000 0.000000000 0.00000000
## 2340 0.0000000 0.000000000 0.00000000
## 2341 0.0000000 0.000000000 0.00000000
## 2342 0.0000000 0.000000000 0.00000000
## 2343 0.0000000 0.000000000 0.00000000
## 2344 0.0000000 0.000000000 0.00000000
## 2345 0.0000000 0.000000000 0.00000000
## 2346 0.0000000 0.000000000 0.00000000
## 2347 0.0000000 0.000000000 0.00000000
## 2348 0.0000000 0.000000000 0.00000000
## 2349 0.0000000 0.000000000 0.00000000
## 2350 0.0000000 0.000000000 0.00000000
## 2351 0.0000000 0.000000000 0.00000000
## 2352 0.0000000 0.000000000 0.00000000
## 2353 0.0000000 0.000000000 0.00000000
## 2354 0.0000000 0.000000000 0.00000000
## 2355 0.0000000 0.000000000 0.00000000
## 2356 0.0000000 0.000000000 0.00000000
## 2357 0.0000000 0.000000000 0.00000000
## 2358 0.0000000 0.000000000 0.00000000
## 2359 0.0000000 0.000000000 0.00000000
## 2360 0.0000000 0.000000000 0.00000000
## 2361 0.0000000 0.000000000 0.00000000
## 2362 0.0000000 0.000000000 0.00000000
## 2363 0.0000000 0.000000000 0.00000000
## 2364 0.0000000 0.000000000 0.00000000
## 2365 0.0000000 0.000000000 0.00000000
## 2366 0.0000000 0.000000000 0.00000000
## 2367 0.0000000 0.000000000 0.00000000
## 2368 0.0000000 0.000000000 0.00000000
## 2369 0.0000000 0.000000000 0.00000000
## 2370 0.0000000 0.000000000 0.00000000
## 2371 0.0000000 0.000000000 0.00000000
## 2372 0.0000000 0.000000000 0.00000000
## 2373 0.0000000 0.000000000 0.00000000
## 2374 0.0000000 0.000000000 0.00000000
## 2375 0.0000000 0.000000000 0.00000000
## 2376 0.0000000 0.000000000 0.00000000
## 2377 0.0000000 0.000000000 0.00000000
## 2378 0.0000000 0.000000000 0.00000000
## 2379 0.0000000 0.000000000 0.00000000
## 2380 0.0000000 0.000000000 0.00000000
## 2381 0.0000000 0.000000000 0.00000000
## 2382 0.0000000 0.000000000 0.00000000
## 2383 0.0000000 0.000000000 0.00000000
## 2384 0.0000000 0.000000000 0.00000000
## 2385 0.0000000 0.000000000 0.00000000
## 2386 0.0000000 0.000000000 0.00000000
## 2387 0.0000000 0.000000000 0.00000000
## 2388 0.0000000 0.000000000 0.00000000
## 2389 0.0000000 0.000000000 0.00000000
## 2390 0.0000000 0.000000000 0.00000000
## 2391 0.0000000 0.000000000 0.00000000
## 2392 0.0000000 0.000000000 0.00000000
## 2393 0.0000000 0.000000000 0.00000000
## 2394 0.0000000 0.000000000 0.00000000
## 2395 0.0000000 0.000000000 0.00000000
## 2396 0.0000000 0.000000000 0.00000000
## 2397 0.0000000 0.000000000 0.00000000
## 2398 0.0000000 0.000000000 0.00000000
## 2399 0.0000000 0.000000000 0.00000000
## 2400 0.0000000 0.000000000 0.00000000
## 2401 0.0000000 0.000000000 0.00000000
## 2402 0.0000000 0.000000000 0.00000000
## 2403 0.0000000 0.000000000 0.00000000
## 2404 0.0000000 0.000000000 0.00000000
## 2405 0.0000000 0.000000000 0.00000000
## 2406 0.0000000 0.000000000 0.00000000
## 2407 0.0000000 0.000000000 0.00000000
## 2408 0.0000000 0.000000000 0.00000000
## 2409 0.0000000 0.000000000 0.00000000
## 2410 0.0000000 0.000000000 0.00000000
## 2411 0.0000000 0.000000000 0.00000000
## 2412 0.0000000 0.000000000 0.00000000
## 2413 0.0000000 0.000000000 0.00000000
## 2414 0.0000000 0.000000000 0.00000000
## 2415 0.0000000 0.000000000 0.00000000
## 2416 0.0000000 0.000000000 0.00000000
## 2417 0.0000000 0.000000000 0.00000000
## 2418 0.0000000 0.000000000 0.00000000
## 2419 0.0000000 0.000000000 0.00000000
## 2420 0.0000000 0.000000000 0.00000000
## 2421 0.0000000 0.000000000 0.00000000
## 2422 0.0000000 0.000000000 0.00000000
## 2423 0.0000000 0.000000000 0.00000000
## 2424 0.0000000 0.000000000 0.00000000
## 2425 0.0000000 0.000000000 0.00000000
## 2426 0.0000000 0.000000000 0.00000000
## 2427 0.0000000 0.000000000 0.00000000
## 2428 0.0000000 0.000000000 0.00000000
## 2429 0.0000000 0.000000000 0.00000000
## 2430 0.0000000 0.000000000 0.00000000
## 2431 0.0000000 0.000000000 0.00000000
## 2432 0.0000000 0.000000000 0.00000000
## 2433 0.0000000 0.000000000 0.00000000
## 2434 0.0000000 0.000000000 0.00000000
## 2435 0.0000000 0.000000000 0.00000000
## 2436 0.0000000 0.000000000 0.00000000
## 2437 0.0000000 0.000000000 0.00000000
## 2438 0.0000000 0.000000000 0.00000000
## 2439 0.0000000 0.000000000 0.00000000
## 2440 0.0000000 0.000000000 0.00000000
## 2441 0.0000000 0.000000000 0.00000000
## 2442 0.0000000 0.000000000 0.00000000
## 2443 0.0000000 0.000000000 0.00000000
## 2444 0.0000000 0.000000000 0.00000000
## 2445 0.0000000 0.000000000 0.00000000
## 2446 0.0000000 0.000000000 0.00000000
## 2447 0.0000000 0.000000000 0.00000000
## 2448 0.0000000 0.000000000 0.00000000
## 2449 0.0000000 0.000000000 0.00000000
## 2450 0.0000000 0.000000000 0.00000000
## 2451 0.0000000 0.000000000 0.00000000
## 2452 0.0000000 0.000000000 0.00000000
## 2453 0.0000000 0.000000000 0.00000000
## 2454 0.0000000 0.000000000 0.00000000
## 2455 0.0000000 0.000000000 0.00000000
## 2456 0.0000000 0.000000000 0.00000000
## 2457 0.0000000 0.000000000 0.00000000
## 2458 0.0000000 0.000000000 0.00000000
## 2459 0.0000000 0.000000000 0.00000000
## 2460 0.0000000 0.000000000 0.00000000
## 2461 0.0000000 0.000000000 0.00000000
## 2462 0.0000000 0.000000000 0.00000000
## 2463 0.0000000 0.000000000 0.00000000
## 2464 0.0000000 0.000000000 0.00000000
## 2465 0.0000000 0.000000000 0.00000000
## 2466 0.0000000 0.000000000 0.00000000
## 2467 0.0000000 0.000000000 0.00000000
## 2468 0.0000000 0.000000000 0.00000000
## 2469 0.0000000 0.000000000 0.00000000
## 2470 0.0000000 0.000000000 0.00000000
## 2471 0.0000000 0.000000000 0.00000000
## 2472 0.0000000 0.000000000 0.00000000
## 2473 0.0000000 0.000000000 0.00000000
## 2474 0.0000000 0.000000000 0.00000000
## 2475 0.0000000 0.000000000 0.00000000
## 2476 0.0000000 0.000000000 0.00000000
## 2477 0.0000000 0.000000000 0.00000000
## 2478 0.0000000 0.000000000 0.00000000
## 2479 0.0000000 0.000000000 0.00000000
## 2480 0.0000000 0.000000000 0.00000000
## 2481 0.0000000 0.000000000 0.00000000
## 2482 0.0000000 0.000000000 0.00000000
## 2483 0.0000000 0.000000000 0.00000000
## 2484 0.0000000 0.000000000 0.00000000
## 2485 0.0000000 0.000000000 0.00000000
## 2486 0.0000000 0.000000000 0.00000000
## 2487 0.0000000 0.000000000 0.00000000
## 2488 0.0000000 0.000000000 0.00000000
## 2489 0.0000000 0.000000000 0.00000000
## 2490 0.0000000 0.000000000 0.00000000
## 2491 0.0000000 0.000000000 0.00000000
## 2492 0.0000000 0.000000000 0.00000000
## 2493 0.0000000 0.000000000 0.00000000
## 2494 0.0000000 0.000000000 0.00000000
## 2495 0.0000000 0.000000000 0.00000000
## 2496 0.0000000 0.000000000 0.00000000
## 2497 0.0000000 0.000000000 0.00000000
## 2498 0.0000000 0.000000000 0.00000000
## 2499 0.0000000 0.000000000 0.00000000
## 2500 0.0000000 0.000000000 0.00000000
## 2501 0.0000000 0.000000000 0.00000000
## 2502 0.0000000 0.000000000 0.00000000
## 2503 0.0000000 0.000000000 0.00000000
## 2504 0.0000000 0.000000000 0.00000000
## 2505 0.0000000 0.000000000 0.00000000
## 2506 0.0000000 0.000000000 0.00000000
## 2507 0.0000000 0.000000000 0.00000000
## 2508 0.0000000 0.000000000 0.00000000
## 2509 0.0000000 0.000000000 0.00000000
## 2510 0.0000000 0.000000000 0.00000000
## 2511 0.0000000 0.000000000 0.00000000
## 2512 0.0000000 0.000000000 0.00000000
## 2513 0.0000000 0.000000000 0.00000000
## 2514 0.0000000 0.000000000 0.00000000
## 2515 0.0000000 0.000000000 0.00000000
## 2516 0.0000000 0.000000000 0.00000000
## 2517 0.0000000 0.000000000 0.00000000
## 2518 0.0000000 0.000000000 0.00000000
## 2519 0.0000000 0.000000000 0.00000000
## 2520 0.0000000 0.000000000 0.00000000
## 2521 0.0000000 0.000000000 0.00000000
## 2522 0.0000000 0.000000000 0.00000000
## 2523 0.0000000 0.000000000 0.00000000
## 2524 0.0000000 0.000000000 0.00000000
## 2525 0.0000000 0.000000000 0.00000000
## 2526 0.0000000 0.000000000 0.00000000
## 2527 0.0000000 0.000000000 0.00000000
## 2528 0.0000000 0.000000000 0.00000000
## 2529 0.0000000 0.000000000 0.00000000
## 2530 0.0000000 0.000000000 0.00000000
## 2531 0.0000000 0.000000000 0.00000000
## 2532 0.0000000 0.000000000 0.00000000
## 2533 0.0000000 0.000000000 0.00000000
## 2534 0.0000000 0.000000000 0.00000000
## 2535 0.0000000 0.000000000 0.00000000
## 2536 0.0000000 0.000000000 0.00000000
## 2537 0.0000000 0.000000000 0.00000000
## 2538 0.0000000 0.000000000 0.00000000
## 2539 0.0000000 0.000000000 0.00000000
## 2540 0.0000000 0.000000000 0.00000000
## 2541 0.0000000 0.000000000 0.00000000
## 2542 0.0000000 0.000000000 0.00000000
## 2543 0.0000000 0.000000000 0.00000000
## 2544 0.0000000 0.000000000 0.00000000
## 2545 0.0000000 0.000000000 0.00000000
## 2546 0.0000000 0.000000000 0.00000000
## 2547 0.0000000 0.000000000 0.00000000
## 2548 0.0000000 0.000000000 0.00000000
## 2549 0.0000000 0.000000000 0.00000000
## 2550 0.0000000 0.000000000 0.00000000
## 2551 0.0000000 0.000000000 0.00000000
## 2552 0.0000000 0.000000000 0.00000000
## 2553 0.0000000 0.000000000 0.00000000
## 2554 0.0000000 0.000000000 0.00000000
## 2555 0.0000000 0.000000000 0.00000000
## 2556 0.0000000 0.000000000 0.00000000
## 2557 0.0000000 0.000000000 0.00000000
## 2558 0.0000000 0.000000000 0.00000000
## 2559 0.0000000 0.000000000 0.00000000
## 2560 0.0000000 0.000000000 0.00000000
## 2561 0.0000000 0.000000000 0.00000000
## 2562 0.0000000 0.000000000 0.00000000
## 2563 0.0000000 0.000000000 0.00000000
## 2564 0.0000000 0.000000000 0.00000000
## 2565 0.0000000 0.000000000 0.00000000
## 2566 0.0000000 0.000000000 0.00000000
## 2567 0.0000000 0.000000000 0.00000000
## 2568 0.0000000 0.000000000 0.00000000
## 2569 0.0000000 0.000000000 0.00000000
## 2570 0.0000000 0.000000000 0.00000000
## 2571 0.0000000 0.000000000 0.00000000
## 2572 0.0000000 0.000000000 0.00000000
## 2573 0.0000000 0.000000000 0.00000000
## 2574 0.0000000 0.000000000 0.00000000
## 2575 0.0000000 0.000000000 0.00000000
## 2576 0.0000000 0.000000000 0.00000000
## 2577 0.0000000 0.000000000 0.00000000
## 2578 0.0000000 0.000000000 0.00000000
## 2579 0.0000000 0.000000000 0.00000000
## 2580 0.0000000 0.000000000 0.00000000
## 2581 0.0000000 0.000000000 0.00000000
## 2582 0.0000000 0.000000000 0.00000000
## 2583 0.0000000 0.000000000 0.00000000
## 2584 0.0000000 0.000000000 0.00000000
## 2585 0.0000000 0.000000000 0.00000000
## 2586 0.0000000 0.000000000 0.00000000
## 2587 0.0000000 0.000000000 0.00000000
## 2588 0.0000000 0.000000000 0.00000000
## 2589 0.0000000 0.000000000 0.00000000
## 2590 0.0000000 0.000000000 0.00000000
## 2591 0.0000000 0.000000000 0.00000000
## 2592 0.0000000 0.000000000 0.00000000
## 2593 0.0000000 0.000000000 0.00000000
## 2594 0.0000000 0.000000000 0.00000000
## 2595 0.0000000 0.000000000 0.00000000
## 2596 0.0000000 0.000000000 0.00000000
## 2597 0.0000000 0.000000000 0.00000000
## 2598 0.0000000 0.000000000 0.00000000
## 2599 0.0000000 0.000000000 0.00000000
## 2600 0.0000000 0.000000000 0.00000000
## 2601 0.0000000 0.000000000 0.00000000
## 2602 0.0000000 0.000000000 0.00000000
## 2603 0.0000000 0.000000000 0.00000000
## 2604 0.0000000 0.000000000 0.00000000
## 2605 0.0000000 0.000000000 0.00000000
## 2606 0.0000000 0.000000000 0.00000000
## 2607 0.0000000 0.000000000 0.00000000
## 2608 0.0000000 0.000000000 0.00000000
## 2609 0.0000000 0.000000000 0.00000000
## 2610 0.0000000 0.000000000 0.00000000
## 2611 0.0000000 0.000000000 0.00000000
## 2612 0.0000000 0.000000000 0.00000000
## 2613 0.0000000 0.000000000 0.00000000
## 2614 0.0000000 0.000000000 0.00000000
## 2615 0.0000000 0.000000000 0.00000000
## 2616 0.0000000 0.000000000 0.00000000
## 2617 0.0000000 0.000000000 0.00000000
## 2618 0.0000000 0.000000000 0.00000000
## 2619 0.0000000 0.000000000 0.00000000
## 2620 0.0000000 0.000000000 0.00000000
## 2621 0.0000000 0.000000000 0.00000000
## 2622 0.0000000 0.000000000 0.00000000
## 2623 0.0000000 0.000000000 0.00000000
## 2624 0.0000000 0.000000000 0.00000000
## 2625 0.0000000 0.000000000 0.00000000
## 2626 0.0000000 0.000000000 0.00000000
## 2627 0.0000000 0.000000000 0.00000000
## 2628 0.0000000 0.000000000 0.00000000
## 2629 0.0000000 0.000000000 0.00000000
## 2630 0.0000000 0.000000000 0.00000000
## 2631 0.0000000 0.000000000 0.00000000
## 2632 0.0000000 0.000000000 0.00000000
## 2633 0.0000000 0.000000000 0.00000000
## 2634 0.0000000 0.000000000 0.00000000
## 2635 0.0000000 0.000000000 0.00000000
## 2636 0.0000000 0.000000000 0.00000000
## 2637 0.0000000 0.000000000 0.00000000
## 2638 0.0000000 0.000000000 0.00000000
## 2639 0.0000000 0.000000000 0.00000000
## 2640 0.0000000 0.000000000 0.00000000
## 2641 0.0000000 0.000000000 0.00000000
## 2642 0.0000000 0.000000000 0.00000000
## 2643 0.0000000 0.000000000 0.00000000
## 2644 0.0000000 0.000000000 0.00000000
## 2645 0.0000000 0.000000000 0.00000000
## 2646 0.0000000 0.000000000 0.00000000
## 2647 0.0000000 0.000000000 0.00000000
## 2648 0.0000000 0.000000000 0.00000000
## 2649 0.0000000 0.000000000 0.00000000
## 2650 0.0000000 0.000000000 0.00000000
## 2651 0.0000000 0.000000000 0.00000000
## 2652 0.0000000 0.000000000 0.00000000
## 2653 0.0000000 0.000000000 0.00000000
## 2654 0.0000000 0.000000000 0.00000000
## 2655 0.0000000 0.000000000 0.00000000
## 2656 0.0000000 0.000000000 0.00000000
## 2657 0.0000000 0.000000000 0.00000000
## 2658 0.0000000 0.000000000 0.00000000
## 2659 0.0000000 0.000000000 0.00000000
## 2660 0.0000000 0.000000000 0.00000000
## 2661 0.0000000 0.000000000 0.00000000
## 2662 0.0000000 0.000000000 0.00000000
## 2663 0.0000000 0.000000000 0.00000000
## 2664 0.0000000 0.000000000 0.00000000
## 2665 0.0000000 0.000000000 0.00000000
## 2666 0.0000000 0.000000000 0.00000000
## 2667 0.0000000 0.000000000 0.00000000
## 2668 0.0000000 0.000000000 0.00000000
## 2669 0.0000000 0.000000000 0.00000000
## 2670 0.0000000 0.000000000 0.00000000
## 2671 0.0000000 0.000000000 0.00000000
## 2672 0.0000000 0.000000000 0.00000000
## 2673 0.0000000 0.000000000 0.00000000
## 2674 0.0000000 0.000000000 0.00000000
## 2675 0.0000000 0.000000000 0.00000000
## 2676 0.0000000 0.000000000 0.00000000
## 2677 0.0000000 0.000000000 0.00000000
## 2678 0.0000000 0.000000000 0.00000000
## 2679 0.0000000 0.000000000 0.00000000
## 2680 0.0000000 0.000000000 0.00000000
## 2681 0.0000000 0.000000000 0.00000000
## 2682 0.0000000 0.000000000 0.00000000
## 2683 0.0000000 0.000000000 0.00000000
## 2684 0.0000000 0.000000000 0.00000000
## 2685 0.0000000 0.000000000 0.00000000
## 2686 0.0000000 0.000000000 0.00000000
## 2687 0.0000000 0.000000000 0.00000000
## 2688 0.0000000 0.000000000 0.00000000
## 2689 0.0000000 0.000000000 0.00000000
## 2690 0.0000000 0.000000000 0.00000000
## 2691 0.0000000 0.000000000 0.00000000
## 2692 0.0000000 0.000000000 0.00000000
## 2693 0.0000000 0.000000000 0.00000000
## 2694 0.0000000 0.000000000 0.00000000
## 2695 0.0000000 0.000000000 0.00000000
## 2696 0.0000000 0.000000000 0.00000000
## 2697 0.0000000 0.000000000 0.00000000
## 2698 0.0000000 0.000000000 0.00000000
## 2699 0.0000000 0.000000000 0.00000000
## 2700 0.0000000 0.000000000 0.00000000
## 2701 0.0000000 0.000000000 0.00000000
## 2702 0.0000000 0.000000000 0.00000000
## 2703 0.0000000 0.000000000 0.00000000
## 2704 0.0000000 0.000000000 0.00000000
## 2705 0.0000000 0.000000000 0.00000000
## 2706 0.0000000 0.000000000 0.00000000
## 2707 0.0000000 0.000000000 0.00000000
## 2708 0.0000000 0.000000000 0.00000000
## 2709 0.0000000 0.000000000 0.00000000
## 2710 0.0000000 0.000000000 0.00000000
## 2711 0.0000000 0.000000000 0.00000000
## 2712 0.0000000 0.000000000 0.00000000
## 2713 0.0000000 0.000000000 0.00000000
## 2714 0.0000000 0.000000000 0.00000000
## 2715 0.0000000 0.000000000 0.00000000
## 2716 0.0000000 0.000000000 0.00000000
## 2717 0.0000000 0.000000000 0.00000000
## 2718 0.0000000 0.000000000 0.00000000
## 2719 0.0000000 0.000000000 0.00000000
## 2720 0.0000000 0.000000000 0.00000000
## 2721 0.0000000 0.000000000 0.00000000
## 2722 0.0000000 0.000000000 0.00000000
## 2723 0.0000000 0.000000000 0.00000000
## 2724 0.0000000 0.000000000 0.00000000
## 2725 0.0000000 0.000000000 0.00000000
## 2726 0.0000000 0.000000000 0.00000000
## 2727 0.0000000 0.000000000 0.00000000
## 2728 0.0000000 0.000000000 0.00000000
## 2729 0.0000000 0.000000000 0.00000000
## 2730 0.0000000 0.000000000 0.00000000
## 2731 0.0000000 0.000000000 0.00000000
## 2732 0.0000000 0.000000000 0.00000000
## 2733 0.0000000 0.000000000 0.00000000
## 2734 0.0000000 0.000000000 0.00000000
## 2735 0.0000000 0.000000000 0.00000000
## 2736 0.0000000 0.000000000 0.00000000
## 2737 0.0000000 0.000000000 0.00000000
## 2738 0.0000000 0.000000000 0.00000000
## 2739 0.0000000 0.000000000 0.00000000
## 2740 0.0000000 0.000000000 0.00000000
## 2741 0.0000000 0.000000000 0.00000000
## 2742 0.0000000 0.000000000 0.00000000
## 2743 0.0000000 0.000000000 0.00000000
## 2744 0.0000000 0.000000000 0.00000000
## 2745 0.0000000 0.000000000 0.00000000
## 2746 0.0000000 0.000000000 0.00000000
## 2747 0.0000000 0.000000000 0.00000000
## 2748 0.0000000 0.000000000 0.00000000
## 2749 0.0000000 0.000000000 0.00000000
## 2750 0.0000000 0.000000000 0.00000000
## 2751 0.0000000 0.000000000 0.00000000
## 2752 0.0000000 0.000000000 0.00000000
## 2753 0.0000000 0.000000000 0.00000000
## 2754 0.0000000 0.000000000 0.00000000
## 2755 0.0000000 0.000000000 0.00000000
## 2756 0.0000000 0.000000000 0.00000000
## 2757 0.0000000 0.000000000 0.00000000
## 2758 0.0000000 0.000000000 0.00000000
## 2759 0.0000000 0.000000000 0.00000000
## 2760 0.0000000 0.000000000 0.00000000
## 2761 0.0000000 0.000000000 0.00000000
## 2762 0.0000000 0.000000000 0.00000000
## 2763 0.0000000 0.000000000 0.00000000
## 2764 0.0000000 0.000000000 0.00000000
## 2765 0.0000000 0.000000000 0.00000000
## 2766 0.0000000 0.000000000 0.00000000
## 2767 0.0000000 0.000000000 0.00000000
## 2768 0.0000000 0.000000000 0.00000000
## 2769 0.0000000 0.000000000 0.00000000
## 2770 0.0000000 0.000000000 0.00000000
## 2771 0.0000000 0.000000000 0.00000000
## 2772 0.0000000 0.000000000 0.00000000
## 2773 0.0000000 0.000000000 0.00000000
## 2774 0.0000000 0.000000000 0.00000000
## 2775 0.0000000 0.000000000 0.00000000
## 2776 0.0000000 0.000000000 0.00000000
## 2777 0.0000000 0.000000000 0.00000000
## 2778 0.0000000 0.000000000 0.00000000
## 2779 0.0000000 0.000000000 0.00000000
## 2780 0.0000000 0.000000000 0.00000000
## 2781 0.0000000 0.000000000 0.00000000
## 2782 0.0000000 0.000000000 0.00000000
## 2783 0.0000000 0.000000000 0.00000000
## 2784 0.0000000 0.000000000 0.00000000
## 2785 0.0000000 0.000000000 0.00000000
## 2786 0.0000000 0.000000000 0.00000000
## 2787 0.0000000 0.000000000 0.00000000
## 2788 0.0000000 0.000000000 0.00000000
## 2789 0.0000000 0.000000000 0.00000000
## 2790 0.0000000 0.000000000 0.00000000
## 2791 0.0000000 0.000000000 0.00000000
## 2792 0.0000000 0.000000000 0.00000000
## 2793 0.0000000 0.000000000 0.00000000
## 2794 0.0000000 0.000000000 0.00000000
## 2795 0.0000000 0.000000000 0.00000000
## 2796 0.0000000 0.000000000 0.00000000
## 2797 0.0000000 0.000000000 0.00000000
## 2798 0.0000000 0.000000000 0.00000000
## 2799 0.0000000 0.000000000 0.00000000
## 2800 0.0000000 0.000000000 0.00000000
## 2801 0.0000000 0.000000000 0.00000000
## 2802 0.0000000 0.000000000 0.00000000
## 2803 0.0000000 0.000000000 0.00000000
## 2804 0.0000000 0.000000000 0.00000000
## 2805 0.0000000 0.000000000 0.00000000
## 2806 0.0000000 0.000000000 0.00000000
## 2807 0.0000000 0.000000000 0.00000000
## 2808 0.0000000 0.000000000 0.00000000
## 2809 0.0000000 0.000000000 0.00000000
## 2810 0.0000000 0.000000000 0.00000000
## 2811 0.0000000 0.000000000 0.00000000
## 2812 0.0000000 0.000000000 0.00000000
## 2813 0.0000000 0.000000000 0.00000000
## 2814 0.0000000 0.000000000 0.00000000
## 2815 0.0000000 0.000000000 0.00000000
## 2816 0.0000000 0.000000000 0.00000000
## 2817 0.0000000 0.000000000 0.00000000
## 2818 0.0000000 0.000000000 0.00000000
## 2819 0.0000000 0.000000000 0.00000000
## 2820 0.0000000 0.000000000 0.00000000
## 2821 0.0000000 0.000000000 0.00000000
## 2822 0.0000000 0.000000000 0.00000000
## 2823 0.0000000 0.000000000 0.00000000
## 2824 0.0000000 0.000000000 0.00000000
## 2825 0.0000000 0.000000000 0.00000000
## 2826 0.0000000 0.000000000 0.00000000
## 2827 0.0000000 0.000000000 0.00000000
## 2828 0.0000000 0.000000000 0.00000000
## 2829 0.0000000 0.000000000 0.00000000
## 2830 0.0000000 0.000000000 0.00000000
## 2831 0.0000000 0.000000000 0.00000000
## 2832 0.0000000 0.000000000 0.00000000
## 2833 0.0000000 0.000000000 0.00000000
## 2834 0.0000000 0.000000000 0.00000000
## 2835 0.0000000 0.000000000 0.00000000
## 2836 0.0000000 0.000000000 0.00000000
## 2837 0.0000000 0.000000000 0.00000000
## 2838 0.0000000 0.000000000 0.00000000
## 2839 0.0000000 0.000000000 0.00000000
## 2840 0.0000000 0.000000000 0.00000000
## 2841 0.0000000 0.000000000 0.00000000
## 2842 0.0000000 0.000000000 0.00000000
## 2843 0.0000000 0.000000000 0.00000000
## 2844 0.0000000 0.000000000 0.00000000
## 2845 0.0000000 0.000000000 0.00000000
## 2846 0.0000000 0.000000000 0.00000000
## 2847 0.0000000 0.000000000 0.00000000
## 2848 0.0000000 0.000000000 0.00000000
## 2849 0.0000000 0.000000000 0.00000000
## 2850 0.0000000 0.000000000 0.00000000
## 2851 0.0000000 0.000000000 0.00000000
## 2852 0.0000000 0.000000000 0.00000000
## 2853 0.0000000 0.000000000 0.00000000
## 2854 0.0000000 0.000000000 0.00000000
## 2855 0.0000000 0.000000000 0.00000000
## 2856 0.0000000 0.000000000 0.00000000
## 2857 0.0000000 0.000000000 0.00000000
## 2858 0.0000000 0.000000000 0.00000000
## 2859 0.0000000 0.000000000 0.00000000
## 2860 0.0000000 0.000000000 0.00000000
## 2861 0.0000000 0.000000000 0.00000000
## 2862 0.0000000 0.000000000 0.00000000
## 2863 0.0000000 0.000000000 0.00000000
## 2864 0.0000000 0.000000000 0.00000000
## 2865 0.0000000 0.000000000 0.00000000
## 2866 0.0000000 0.000000000 0.00000000
## 2867 0.0000000 0.000000000 0.00000000
## 2868 0.0000000 0.000000000 0.00000000
## 2869 0.0000000 0.000000000 0.00000000
## 2870 0.0000000 0.000000000 0.00000000
## 2871 0.0000000 0.000000000 0.00000000
## 2872 0.0000000 0.000000000 0.00000000
## 2873 0.0000000 0.000000000 0.00000000
## 2874 0.0000000 0.000000000 0.00000000
## 2875 0.0000000 0.000000000 0.00000000
## 2876 0.0000000 0.000000000 0.00000000
## 2877 0.0000000 0.000000000 0.00000000
## 2878 0.0000000 0.000000000 0.00000000
## 2879 0.0000000 0.000000000 0.00000000
## 2880 0.0000000 0.000000000 0.00000000
## 2881 0.0000000 0.000000000 0.00000000
## 2882 0.0000000 0.000000000 0.00000000
## 2883 0.0000000 0.000000000 0.00000000
## 2884 0.0000000 0.000000000 0.00000000
## 2885 0.0000000 0.000000000 0.00000000
## 2886 0.0000000 0.000000000 0.00000000
## 2887 0.0000000 0.000000000 0.00000000
## 2888 0.0000000 0.000000000 0.00000000
## 2889 0.0000000 0.000000000 0.00000000
## 2890 0.0000000 0.000000000 0.00000000
## 2891 0.0000000 0.000000000 0.00000000
## 2892 0.0000000 0.000000000 0.00000000
## 2893 0.0000000 0.000000000 0.00000000
## 2894 0.0000000 0.000000000 0.00000000
## 2895 0.0000000 0.000000000 0.00000000
## 2896 0.0000000 0.000000000 0.00000000
## 2897 0.0000000 0.000000000 0.00000000
## 2898 0.0000000 0.000000000 0.00000000
## 2899 0.0000000 0.000000000 0.00000000
## 2900 0.0000000 0.000000000 0.00000000
## 2901 0.0000000 0.000000000 0.00000000
## 2902 0.0000000 0.000000000 0.00000000
## 2903 0.0000000 0.000000000 0.00000000
## 2904 0.0000000 0.000000000 0.00000000
## 2905 0.0000000 0.000000000 0.00000000
## 2906 0.0000000 0.000000000 0.00000000
## 2907 0.0000000 0.000000000 0.00000000
## 2908 0.0000000 0.000000000 0.00000000
## 2909 0.0000000 0.000000000 0.00000000
## 2910 0.0000000 0.000000000 0.00000000
## 2911 0.0000000 0.000000000 0.00000000
## 2912 0.0000000 0.000000000 0.00000000
## 2913 0.0000000 0.000000000 0.00000000
## 2914 0.0000000 0.000000000 0.00000000
## 2915 0.0000000 0.000000000 0.00000000
## 2916 0.0000000 0.000000000 0.00000000
## 2917 0.0000000 0.000000000 0.00000000
## 2918 0.0000000 0.000000000 0.00000000
## 2919 0.0000000 0.000000000 0.00000000
## 2920 0.0000000 0.000000000 0.00000000
## 2921 0.0000000 0.000000000 0.00000000
## 2922 0.0000000 0.000000000 0.00000000
## 2923 0.0000000 0.000000000 0.00000000
## 2924 0.0000000 0.000000000 0.00000000
## 2925 0.0000000 0.000000000 0.00000000
## 2926 0.0000000 0.000000000 0.00000000
## 2927 0.0000000 0.000000000 0.00000000
## 2928 0.0000000 0.000000000 0.00000000
## 2929 0.0000000 0.000000000 0.00000000
## 2930 0.0000000 0.000000000 0.00000000
## 2931 0.0000000 0.000000000 0.00000000
## 2932 0.0000000 0.000000000 0.00000000
## 2933 0.0000000 0.000000000 0.00000000
## 2934 0.0000000 0.000000000 0.00000000
## 2935 0.0000000 0.000000000 0.00000000
## 2936 0.0000000 0.000000000 0.00000000
## 2937 0.0000000 0.000000000 0.00000000
## 2938 0.0000000 0.000000000 0.00000000
## 2939 0.0000000 0.000000000 0.00000000
## 2940 0.0000000 0.000000000 0.00000000
## 2941 0.0000000 0.000000000 0.00000000
## 2942 0.0000000 0.000000000 0.00000000
## 2943 0.0000000 0.000000000 0.00000000
## 2944 0.0000000 0.000000000 0.00000000
## 2945 0.0000000 0.000000000 0.00000000
## 2946 0.0000000 0.000000000 0.00000000
## 2947 0.0000000 0.000000000 0.00000000
## 2948 0.0000000 0.000000000 0.00000000
## 2949 0.0000000 0.000000000 0.00000000
## 2950 0.0000000 0.000000000 0.00000000
## 2951 0.0000000 0.000000000 0.00000000
## 2952 0.0000000 0.000000000 0.00000000
## 2953 0.0000000 0.000000000 0.00000000
## 2954 0.0000000 0.000000000 0.00000000
## 2955 0.0000000 0.000000000 0.00000000
## 2956 0.0000000 0.000000000 0.00000000
## 2957 0.0000000 0.000000000 0.00000000
## 2958 0.0000000 0.000000000 0.00000000
## 2959 0.0000000 0.000000000 0.00000000
## 2960 0.0000000 0.000000000 0.00000000
## 2961 0.0000000 0.000000000 0.00000000
## 2962 0.0000000 0.000000000 0.00000000
## 2963 0.0000000 0.000000000 0.00000000
## 2964 0.0000000 0.000000000 0.00000000
## 2965 0.0000000 0.000000000 0.00000000
## 2966 0.0000000 0.000000000 0.00000000
## 2967 0.0000000 0.000000000 0.00000000
## 2968 0.0000000 0.000000000 0.00000000
## 2969 0.0000000 0.000000000 0.00000000
## 2970 0.0000000 0.000000000 0.00000000
## 2971 0.0000000 0.000000000 0.00000000
## 2972 0.0000000 0.000000000 0.00000000
## 2973 0.0000000 0.000000000 0.00000000
## 2974 0.0000000 0.000000000 0.00000000
## 2975 0.0000000 0.000000000 0.00000000
## 2976 0.0000000 0.000000000 0.00000000
## 2977 0.0000000 0.000000000 0.00000000
## 2978 0.0000000 0.000000000 0.00000000
## 2979 0.0000000 0.000000000 0.00000000
## 2980 0.0000000 0.000000000 0.00000000
## 2981 0.0000000 0.000000000 0.00000000
## 2982 0.0000000 0.000000000 0.00000000
## 2983 0.0000000 0.000000000 0.00000000
## 2984 0.0000000 0.000000000 0.00000000
## 2985 0.0000000 0.000000000 0.00000000
## 2986 0.0000000 0.000000000 0.00000000
## 2987 0.0000000 0.000000000 0.00000000
## 2988 0.0000000 0.000000000 0.00000000
## 2989 0.0000000 0.000000000 0.00000000
## 2990 0.0000000 0.000000000 0.00000000
## 2991 0.0000000 0.000000000 0.00000000
## 2992 0.0000000 0.000000000 0.00000000
## 2993 0.0000000 0.000000000 0.00000000
## 2994 0.0000000 0.000000000 0.00000000
## 2995 0.0000000 0.000000000 0.00000000
## 2996 0.0000000 0.000000000 0.00000000
## 2997 0.0000000 0.000000000 0.00000000
## 2998 0.0000000 0.000000000 0.00000000
## 2999 0.0000000 0.000000000 0.00000000
## 3000 0.0000000 0.000000000 0.00000000
## 3001 0.0000000 0.000000000 0.00000000
## 3002 0.0000000 0.000000000 0.00000000
## 3003 0.0000000 0.000000000 0.00000000
## 3004 0.0000000 0.000000000 0.00000000
## 3005 0.0000000 0.000000000 0.00000000
## 3006 0.0000000 0.000000000 0.00000000
## 3007 0.0000000 0.000000000 0.00000000
## 3008 0.0000000 0.000000000 0.00000000
## 3009 0.0000000 0.000000000 0.00000000
## 3010 0.0000000 0.000000000 0.00000000
## 3011 0.0000000 0.000000000 0.00000000
## 3012 0.0000000 0.000000000 0.00000000
## 3013 0.0000000 0.000000000 0.00000000
## 3014 0.0000000 0.000000000 0.00000000
## 3015 0.0000000 0.000000000 0.00000000
## 3016 0.0000000 0.000000000 0.00000000
## 3017 0.0000000 0.000000000 0.00000000
## 3018 0.0000000 0.000000000 0.00000000
## 3019 0.0000000 0.000000000 0.00000000
## 3020 0.0000000 0.000000000 0.00000000
## 3021 0.0000000 0.000000000 0.00000000
## 3022 0.0000000 0.000000000 0.00000000
## 3023 0.0000000 0.000000000 0.00000000
## 3024 0.0000000 0.000000000 0.00000000
## 3025 0.0000000 0.000000000 0.00000000
## 3026 0.0000000 0.000000000 0.00000000
## 3027 0.0000000 0.000000000 0.00000000
## 3028 0.0000000 0.000000000 0.00000000
## 3029 0.0000000 0.000000000 0.00000000
## 3030 0.0000000 0.000000000 0.00000000
## 3031 0.0000000 0.000000000 0.00000000
## 3032 0.0000000 0.000000000 0.00000000
## 3033 0.0000000 0.000000000 0.00000000
## 3034 0.0000000 0.000000000 0.00000000
## 3035 0.0000000 0.000000000 0.00000000
## 3036 0.0000000 0.000000000 0.00000000
## 3037 0.0000000 0.000000000 0.00000000
## 3038 0.0000000 0.000000000 0.00000000
## 3039 0.0000000 0.000000000 0.00000000
## 3040 0.0000000 0.000000000 0.00000000
## 3041 0.0000000 0.000000000 0.00000000
## 3042 0.0000000 0.000000000 0.00000000
## 3043 0.0000000 0.000000000 0.00000000
## 3044 0.0000000 0.000000000 0.00000000
## 3045 0.0000000 0.000000000 0.00000000
## 3046 0.0000000 0.000000000 0.00000000
## 3047 0.0000000 0.000000000 0.00000000
## 3048 0.0000000 0.000000000 0.00000000
## 3049 0.0000000 0.000000000 0.00000000
## 3050 0.0000000 0.000000000 0.00000000
## 3051 0.0000000 0.000000000 0.00000000
## 3052 0.0000000 0.000000000 0.00000000
## 3053 0.0000000 0.000000000 0.00000000
## 3054 0.0000000 0.000000000 0.00000000
## 3055 0.0000000 0.000000000 0.00000000
## 3056 0.0000000 0.000000000 0.00000000
## 3057 0.0000000 0.000000000 0.00000000
## 3058 0.0000000 0.000000000 0.00000000
## 3059 0.0000000 0.000000000 0.00000000
## 3060 0.0000000 0.000000000 0.00000000
## 3061 0.0000000 0.000000000 0.00000000
## 3062 0.0000000 0.000000000 0.00000000
## 3063 0.0000000 0.000000000 0.00000000
## 3064 0.0000000 0.000000000 0.00000000
## 3065 0.0000000 0.000000000 0.00000000
## 3066 0.0000000 0.000000000 0.00000000
## 3067 0.0000000 0.000000000 0.00000000
## 3068 0.0000000 0.000000000 0.00000000
## 3069 0.0000000 0.000000000 0.00000000
## 3070 0.0000000 0.000000000 0.00000000
## 3071 0.0000000 0.000000000 0.00000000
## 3072 0.0000000 0.000000000 0.00000000
## 3073 0.0000000 0.000000000 0.00000000
## 3074 0.0000000 0.000000000 0.00000000
## 3075 0.0000000 0.000000000 0.00000000
## 3076 0.0000000 0.000000000 0.00000000
## 3077 0.0000000 0.000000000 0.00000000
## 3078 0.0000000 0.000000000 0.00000000
## 3079 0.0000000 0.000000000 0.00000000
## 3080 0.0000000 0.000000000 0.00000000
## 3081 0.0000000 0.000000000 0.00000000
## 3082 0.0000000 0.000000000 0.00000000
## 3083 0.0000000 0.000000000 0.00000000
## 3084 0.0000000 0.000000000 0.00000000
## 3085 0.0000000 0.000000000 0.00000000
## 3086 0.0000000 0.000000000 0.00000000
## 3087 0.0000000 0.000000000 0.00000000
## 3088 0.0000000 0.000000000 0.00000000
## 3089 0.0000000 0.000000000 0.00000000
## 3090 0.0000000 0.000000000 0.00000000
## 3091 0.0000000 0.000000000 0.00000000
## 3092 0.0000000 0.000000000 0.00000000
## 3093 0.0000000 0.000000000 0.00000000
## 3094 0.0000000 0.000000000 0.00000000
## 3095 0.0000000 0.000000000 0.00000000
## 3096 0.0000000 0.000000000 0.00000000
## 3097 0.0000000 0.000000000 0.00000000
## 3098 0.0000000 0.000000000 0.00000000
## 3099 0.0000000 0.000000000 0.00000000
## 3100 0.0000000 0.000000000 0.00000000
## 3101 0.0000000 0.000000000 0.00000000
## 3102 0.0000000 0.000000000 0.00000000
## 3103 0.0000000 0.000000000 0.00000000
## 3104 0.0000000 0.000000000 0.00000000
## 3105 0.0000000 0.000000000 0.00000000
## 3106 0.0000000 0.000000000 0.00000000
## 3107 0.0000000 0.000000000 0.00000000
## 3108 0.0000000 0.000000000 0.00000000
## 3109 0.0000000 0.000000000 0.00000000
## 3110 0.0000000 0.000000000 0.00000000
## 3111 0.0000000 0.000000000 0.00000000
## 3112 0.0000000 0.000000000 0.00000000
## 3113 0.0000000 0.000000000 0.00000000
## 3114 0.0000000 0.000000000 0.00000000
## 3115 0.0000000 0.000000000 0.00000000
## 3116 0.0000000 0.000000000 0.00000000
## 3117 0.0000000 0.000000000 0.00000000
## 3118 0.0000000 0.000000000 0.00000000
## 3119 0.0000000 0.000000000 0.00000000
## 3120 0.0000000 0.000000000 0.00000000
## 3121 0.0000000 0.000000000 0.00000000
## 3122 0.0000000 0.000000000 0.00000000
## 3123 0.0000000 0.000000000 0.00000000
## 3124 0.0000000 0.000000000 0.00000000
## 3125 0.0000000 0.000000000 0.00000000
## 3126 0.0000000 0.000000000 0.00000000
## 3127 0.0000000 0.000000000 0.00000000
## 3128 0.0000000 0.000000000 0.00000000
## 3129 0.0000000 0.000000000 0.00000000
## 3130 0.0000000 0.000000000 0.00000000
## 3131 0.0000000 0.000000000 0.00000000
## 3132 0.0000000 0.000000000 0.00000000
## 3133 0.0000000 0.000000000 0.00000000
## 3134 0.0000000 0.000000000 0.00000000
## 3135 0.0000000 0.000000000 0.00000000
## 3136 0.0000000 0.000000000 0.00000000
## 3137 0.0000000 0.000000000 0.00000000
## 3138 0.0000000 0.000000000 0.00000000
## 3139 0.0000000 0.000000000 0.00000000
## 3140 0.0000000 0.000000000 0.00000000
## 3141 0.0000000 0.000000000 0.00000000
## 3142 0.0000000 0.000000000 0.00000000
## 3143 0.0000000 0.000000000 0.00000000
## 3144 0.0000000 0.000000000 0.00000000
## 3145 0.0000000 0.000000000 0.00000000
## 3146 0.0000000 0.000000000 0.00000000
## 3147 0.0000000 0.000000000 0.00000000
## 3148 0.0000000 0.000000000 0.00000000
## 3149 0.0000000 0.000000000 0.00000000
## 3150 0.0000000 0.000000000 0.00000000
## 3151 0.0000000 0.000000000 0.00000000
## 3152 0.0000000 0.000000000 0.00000000
## 3153 0.0000000 0.000000000 0.00000000
## 3154 0.0000000 0.000000000 0.00000000
## 3155 0.0000000 0.000000000 0.00000000
## 3156 0.0000000 0.000000000 0.00000000
## 3157 0.0000000 0.000000000 0.00000000
## 3158 0.0000000 0.000000000 0.00000000
## 3159 0.0000000 0.000000000 0.00000000
## 3160 0.0000000 0.000000000 0.00000000
## 3161 0.0000000 0.000000000 0.00000000
## 3162 0.0000000 0.000000000 0.00000000
## 3163 0.0000000 0.000000000 0.00000000
## 3164 0.0000000 0.000000000 0.00000000
## 3165 0.0000000 0.000000000 0.00000000
## 3166 0.0000000 0.000000000 0.00000000
## 3167 0.0000000 0.000000000 0.00000000
## 3168 0.0000000 0.000000000 0.00000000
## 3169 0.0000000 0.000000000 0.00000000
## 3170 0.0000000 0.000000000 0.00000000
## 3171 0.0000000 0.000000000 0.00000000
## 3172 0.0000000 0.000000000 0.00000000
## 3173 0.0000000 0.000000000 0.00000000
## 3174 0.0000000 0.000000000 0.00000000
## 3175 0.0000000 0.000000000 0.00000000
## 3176 0.0000000 0.000000000 0.00000000
## 3177 0.0000000 0.000000000 0.00000000
## 3178 0.0000000 0.000000000 0.00000000
## 3179 0.0000000 0.000000000 0.00000000
## 3180 0.0000000 0.000000000 0.00000000
## 3181 0.0000000 0.000000000 0.00000000
## 3182 0.0000000 0.000000000 0.00000000
## 3183 0.0000000 0.000000000 0.00000000
## 3184 0.0000000 0.000000000 0.00000000
## 3185 0.0000000 0.000000000 0.00000000
## 3186 0.0000000 0.000000000 0.00000000
## 3187 0.0000000 0.000000000 0.00000000
## 3188 0.0000000 0.000000000 0.00000000
## 3189 0.0000000 0.000000000 0.00000000
## 3190 0.0000000 0.000000000 0.00000000
## 3191 0.0000000 0.000000000 0.00000000
## 3192 0.0000000 0.000000000 0.00000000
## 3193 0.0000000 0.000000000 0.00000000
## 3194 0.0000000 0.000000000 0.00000000
## 3195 0.0000000 0.000000000 0.00000000
## 3196 0.0000000 0.000000000 0.00000000
## 3197 0.0000000 0.000000000 0.00000000
## 3198 0.0000000 0.000000000 0.00000000
## 3199 0.0000000 0.000000000 0.00000000
## 3200 0.0000000 0.000000000 0.00000000
## 3201 0.0000000 0.000000000 0.00000000
## 3202 0.0000000 0.000000000 0.00000000
## 3203 0.0000000 0.000000000 0.00000000
## 3204 0.0000000 0.000000000 0.00000000
## 3205 0.0000000 0.000000000 0.00000000
## 3206 0.0000000 0.000000000 0.00000000
## 3207 0.0000000 0.000000000 0.00000000
## 3208 0.0000000 0.000000000 0.00000000
## 3209 0.0000000 0.000000000 0.00000000
## 3210 0.0000000 0.000000000 0.00000000
## 3211 0.0000000 0.000000000 0.00000000
## 3212 0.0000000 0.000000000 0.00000000
## 3213 0.0000000 0.000000000 0.00000000
## 3214 0.0000000 0.000000000 0.00000000
## 3215 0.0000000 0.000000000 0.00000000
## 3216 0.0000000 0.000000000 0.00000000
## 3217 0.0000000 0.000000000 0.00000000
## 3218 0.0000000 0.000000000 0.00000000
## 3219 0.0000000 0.000000000 0.00000000
## 3220 0.0000000 0.000000000 0.00000000
## 3221 0.0000000 0.000000000 0.00000000
## 3222 0.0000000 0.000000000 0.00000000
## 3223 0.0000000 0.000000000 0.00000000
## 3224 0.0000000 0.000000000 0.00000000
## 3225 0.0000000 0.000000000 0.00000000
## 3226 0.0000000 0.000000000 0.00000000
## 3227 0.0000000 0.000000000 0.00000000
## 3228 0.0000000 0.000000000 0.00000000
## 3229 0.0000000 0.000000000 0.00000000
## 3230 0.0000000 0.000000000 0.00000000
## 3231 0.0000000 0.000000000 0.00000000
## 3232 0.0000000 0.000000000 0.00000000
## 3233 0.0000000 0.000000000 0.00000000
## 3234 0.0000000 0.000000000 0.00000000
## 3235 0.0000000 0.000000000 0.00000000
## 3236 0.0000000 0.000000000 0.00000000
## 3237 0.0000000 0.000000000 0.00000000
## 3238 0.0000000 0.000000000 0.00000000
## 3239 0.0000000 0.000000000 0.00000000
## 3240 0.0000000 0.000000000 0.00000000
## 3241 0.0000000 0.000000000 0.00000000
## 3242 0.0000000 0.000000000 0.00000000
## 3243 0.0000000 0.000000000 0.00000000
## 3244 0.0000000 0.000000000 0.00000000
## 3245 0.0000000 0.000000000 0.00000000
## 3246 0.0000000 0.000000000 0.00000000
## 3247 0.0000000 0.000000000 0.00000000
## 3248 0.0000000 0.000000000 0.00000000
## 3249 0.0000000 0.000000000 0.00000000
## 3250 0.0000000 0.000000000 0.00000000
## 3251 0.0000000 0.000000000 0.00000000
## 3252 0.0000000 0.000000000 0.00000000
## 3253 0.0000000 0.000000000 0.00000000
## 3254 0.0000000 0.000000000 0.00000000
## 3255 0.0000000 0.000000000 0.00000000
## 3256 0.0000000 0.000000000 0.00000000
## 3257 0.0000000 0.000000000 0.00000000
## 3258 0.0000000 0.000000000 0.00000000
## 3259 0.0000000 0.000000000 0.00000000
## 3260 0.0000000 0.000000000 0.00000000
## 3261 0.0000000 0.000000000 0.00000000
## 3262 0.0000000 0.000000000 0.00000000
## 3263 0.0000000 0.000000000 0.00000000
## 3264 0.0000000 0.000000000 0.00000000
## 3265 0.0000000 0.000000000 0.00000000
## 3266 0.0000000 0.000000000 0.00000000
## 3267 0.0000000 0.000000000 0.00000000
## 3268 0.0000000 0.000000000 0.00000000
## 3269 0.0000000 0.000000000 0.00000000
## 3270 0.0000000 0.000000000 0.00000000
## 3271 0.0000000 0.000000000 0.00000000
## 3272 0.0000000 0.000000000 0.00000000
## 3273 0.0000000 0.000000000 0.00000000
## 3274 0.0000000 0.000000000 0.00000000
## 3275 0.0000000 0.000000000 0.00000000
## 3276 0.0000000 0.000000000 0.00000000
## 3277 0.0000000 0.000000000 0.00000000
## 3278 0.0000000 0.000000000 0.00000000
## 3279 0.0000000 0.000000000 0.00000000
## 3280 0.0000000 0.000000000 0.00000000
## 3281 0.0000000 0.000000000 0.00000000
## 3282 0.0000000 0.000000000 0.00000000
## 3283 0.0000000 0.000000000 0.00000000
## 3284 0.0000000 0.000000000 0.00000000
## 3285 0.0000000 0.000000000 0.00000000
## 3286 0.0000000 0.000000000 0.00000000
## 3287 0.0000000 0.000000000 0.00000000
## 3288 0.0000000 0.000000000 0.00000000
## 3289 0.0000000 0.000000000 0.00000000
## 3290 0.0000000 0.000000000 0.00000000
## 3291 0.0000000 0.000000000 0.00000000
## 3292 0.0000000 0.000000000 0.00000000
## 3293 0.0000000 0.000000000 0.00000000
## 3294 0.0000000 0.000000000 0.00000000
## 3295 0.0000000 0.000000000 0.00000000
## 3296 0.0000000 0.000000000 0.00000000
## 3297 0.0000000 0.000000000 0.00000000
## 3298 0.0000000 0.000000000 0.00000000
## 3299 0.0000000 0.000000000 0.00000000
## 3300 0.0000000 0.000000000 0.00000000
## 3301 0.0000000 0.000000000 0.00000000
## 3302 0.0000000 0.000000000 0.00000000
## 3303 0.0000000 0.000000000 0.00000000
## 3304 0.0000000 0.000000000 0.00000000
## 3305 0.0000000 0.000000000 0.00000000
## 3306 0.0000000 0.000000000 0.00000000
## 3307 0.0000000 0.000000000 0.00000000
## 3308 0.0000000 0.000000000 0.00000000
## 3309 0.0000000 0.000000000 0.00000000
## 3310 0.0000000 0.000000000 0.00000000
## 3311 0.0000000 0.000000000 0.00000000
## 3312 0.0000000 0.000000000 0.00000000
## 3313 0.0000000 0.000000000 0.00000000
## 3314 0.0000000 0.000000000 0.00000000
## 3315 0.0000000 0.000000000 0.00000000
## 3316 0.0000000 0.000000000 0.00000000
## 3317 0.0000000 0.000000000 0.00000000
## 3318 0.0000000 0.000000000 0.00000000
## 3319 0.0000000 0.000000000 0.00000000
## 3320 0.0000000 0.000000000 0.00000000
## 3321 0.0000000 0.000000000 0.00000000
## 3322 0.0000000 0.000000000 0.00000000
## 3323 0.0000000 0.000000000 0.00000000
## 3324 0.0000000 0.000000000 0.00000000
## 3325 0.0000000 0.000000000 0.00000000
## 3326 0.0000000 0.000000000 0.00000000
## 3327 0.0000000 0.000000000 0.00000000
## 3328 0.0000000 0.000000000 0.00000000
## 3329 0.0000000 0.000000000 0.00000000
## 3330 0.0000000 0.000000000 0.00000000
## 3331 0.0000000 0.000000000 0.00000000
## 3332 0.0000000 0.000000000 0.00000000
## 3333 0.0000000 0.000000000 0.00000000
## 3334 0.0000000 0.000000000 0.00000000
## 3335 0.0000000 0.000000000 0.00000000
## 3336 0.0000000 0.000000000 0.00000000
## 3337 0.0000000 0.000000000 0.00000000
## 3338 0.0000000 0.000000000 0.00000000
## 3339 0.0000000 0.000000000 0.00000000
## 3340 0.0000000 0.000000000 0.00000000
## 3341 0.0000000 0.000000000 0.00000000
## 3342 0.0000000 0.000000000 0.00000000
## 3343 0.0000000 0.000000000 0.00000000
## 3344 0.0000000 0.000000000 0.00000000
## 3345 0.0000000 0.000000000 0.00000000
## 3346 0.0000000 0.000000000 0.00000000
## 3347 0.0000000 0.000000000 0.00000000
## 3348 0.0000000 0.000000000 0.00000000
## 3349 0.0000000 0.000000000 0.00000000
## 3350 0.0000000 0.000000000 0.00000000
## 3351 0.0000000 0.000000000 0.00000000
## 3352 0.0000000 0.000000000 0.00000000
## 3353 0.0000000 0.000000000 0.00000000
## 3354 0.0000000 0.000000000 0.00000000
## 3355 0.0000000 0.000000000 0.00000000
## 3356 0.0000000 0.000000000 0.00000000
## 3357 0.0000000 0.000000000 0.00000000
## 3358 0.0000000 0.000000000 0.00000000
## 3359 0.0000000 0.000000000 0.00000000
## 3360 0.0000000 0.000000000 0.00000000
## 3361 0.0000000 0.000000000 0.00000000
## 3362 0.0000000 0.000000000 0.00000000
## 3363 0.0000000 0.000000000 0.00000000
## 3364 0.0000000 0.000000000 0.00000000
## 3365 0.0000000 0.000000000 0.00000000
## 3366 0.0000000 0.000000000 0.00000000
## 3367 0.0000000 0.000000000 0.00000000
## 3368 0.0000000 0.000000000 0.00000000
## 3369 0.0000000 0.000000000 0.00000000
## 3370 0.0000000 0.000000000 0.00000000
## 3371 0.0000000 0.000000000 0.00000000
## 3372 0.0000000 0.000000000 0.00000000
## 3373 0.0000000 0.000000000 0.00000000
## 3374 0.0000000 0.000000000 0.00000000
## 3375 0.0000000 0.000000000 0.00000000
## 3376 0.0000000 0.000000000 0.00000000
## 3377 0.0000000 0.000000000 0.00000000
## 3378 0.0000000 0.000000000 0.00000000
## 3379 0.0000000 0.000000000 0.00000000
## 3380 0.0000000 0.000000000 0.00000000
## 3381 0.0000000 0.000000000 0.00000000
## 3382 0.0000000 0.000000000 0.00000000
## 3383 0.0000000 0.000000000 0.00000000
## 3384 0.0000000 0.000000000 0.00000000
## 3385 0.0000000 0.000000000 0.00000000
## 3386 0.0000000 0.000000000 0.00000000
## 3387 0.0000000 0.000000000 0.00000000
## 3388 0.0000000 0.000000000 0.00000000
## 3389 0.0000000 0.000000000 0.00000000
## 3390 0.0000000 0.000000000 0.00000000
## 3391 0.0000000 0.000000000 0.00000000
## 3392 0.0000000 0.000000000 0.00000000
## 3393 0.0000000 0.000000000 0.00000000
## 3394 0.0000000 0.000000000 0.00000000
## 3395 0.0000000 0.000000000 0.00000000
## 3396 0.0000000 0.000000000 0.00000000
## 3397 0.0000000 0.000000000 0.00000000
## 3398 0.0000000 0.000000000 0.00000000
## 3399 0.0000000 0.000000000 0.00000000
## 3400 0.0000000 0.000000000 0.00000000
## 3401 0.0000000 0.000000000 0.00000000
## 3402 0.0000000 0.000000000 0.00000000
## 3403 0.0000000 0.000000000 0.00000000
## 3404 0.0000000 0.000000000 0.00000000
## 3405 0.0000000 0.000000000 0.00000000
## 3406 0.0000000 0.000000000 0.00000000
## 3407 0.0000000 0.000000000 0.00000000
## 3408 0.0000000 0.000000000 0.00000000
## 3409 0.0000000 0.000000000 0.00000000
## 3410 0.0000000 0.000000000 0.00000000
## 3411 0.0000000 0.000000000 0.00000000
## 3412 0.0000000 0.000000000 0.00000000
## 3413 0.0000000 0.000000000 0.00000000
## 3414 0.0000000 0.000000000 0.00000000
## 3415 0.0000000 0.000000000 0.00000000
## 3416 0.0000000 0.000000000 0.00000000
## 3417 0.0000000 0.000000000 0.00000000
## 3418 0.0000000 0.000000000 0.00000000
## 3419 0.0000000 0.000000000 0.00000000
## 3420 0.0000000 0.000000000 0.00000000
## 3421 0.0000000 0.000000000 0.00000000
## 3422 0.0000000 0.000000000 0.00000000
## 3423 0.0000000 0.000000000 0.00000000
## 3424 0.0000000 0.000000000 0.00000000
## 3425 0.0000000 0.000000000 0.00000000
## 3426 0.0000000 0.000000000 0.00000000
## 3427 0.0000000 0.000000000 0.00000000
## 3428 0.0000000 0.000000000 0.00000000
## 3429 0.0000000 0.000000000 0.00000000
## 3430 0.0000000 0.000000000 0.00000000
## 3431 0.0000000 0.000000000 0.00000000
## 3432 0.0000000 0.000000000 0.00000000
## 3433 0.0000000 0.000000000 0.00000000
## 3434 0.0000000 0.000000000 0.00000000
## 3435 0.0000000 0.000000000 0.00000000
## 3436 0.0000000 0.000000000 0.00000000
## 3437 0.0000000 0.000000000 0.00000000
## 3438 0.0000000 0.000000000 0.00000000
## 3439 0.0000000 0.000000000 0.00000000
## 3440 0.0000000 0.000000000 0.00000000
## 3441 0.0000000 0.000000000 0.00000000
## 3442 0.0000000 0.000000000 0.00000000
## 3443 0.0000000 0.000000000 0.00000000
## 3444 0.0000000 0.000000000 0.00000000
## 3445 0.0000000 0.000000000 0.00000000
## 3446 0.0000000 0.000000000 0.00000000
## 3447 0.0000000 0.000000000 0.00000000
## 3448 0.0000000 0.000000000 0.00000000
## 3449 0.0000000 0.000000000 0.00000000
## 3450 0.0000000 0.000000000 0.00000000
## 3451 0.0000000 0.000000000 0.00000000
## 3452 0.0000000 0.000000000 0.00000000
## 3453 0.0000000 0.000000000 0.00000000
## 3454 0.0000000 0.000000000 0.00000000
## 3455 0.0000000 0.000000000 0.00000000
## 3456 0.0000000 0.000000000 0.00000000
## 3457 0.0000000 0.000000000 0.00000000
## 3458 0.0000000 0.000000000 0.00000000
## 3459 0.0000000 0.000000000 0.00000000
## 3460 0.0000000 0.000000000 0.00000000
## 3461 0.0000000 0.000000000 0.00000000
## 3462 0.0000000 0.000000000 0.00000000
## 3463 0.0000000 0.000000000 0.00000000
## 3464 0.0000000 0.000000000 0.00000000
## 3465 0.0000000 0.000000000 0.00000000
## 3466 0.0000000 0.000000000 0.00000000
## 3467 0.0000000 0.000000000 0.00000000
## 3468 0.0000000 0.000000000 0.00000000
## 3469 0.0000000 0.000000000 0.00000000
## 3470 0.0000000 0.000000000 0.00000000
## 3471 0.0000000 0.000000000 0.00000000
## 3472 0.0000000 0.000000000 0.00000000
## 3473 0.0000000 0.000000000 0.00000000
## 3474 0.0000000 0.000000000 0.00000000
## 3475 0.0000000 0.000000000 0.00000000
## 3476 0.0000000 0.000000000 0.00000000
## 3477 0.0000000 0.000000000 0.00000000
## 3478 0.0000000 0.000000000 0.00000000
## 3479 0.0000000 0.000000000 0.00000000
## 3480 0.0000000 0.000000000 0.00000000
## 3481 0.0000000 0.000000000 0.00000000
## 3482 0.0000000 0.000000000 0.00000000
## 3483 0.0000000 0.000000000 0.00000000
## 3484 0.0000000 0.000000000 0.00000000
## 3485 0.0000000 0.000000000 0.00000000
## 3486 0.0000000 0.000000000 0.00000000
## 3487 0.0000000 0.000000000 0.00000000
## 3488 0.0000000 0.000000000 0.00000000
## 3489 0.0000000 0.000000000 0.00000000
## 3490 0.0000000 0.000000000 0.00000000
## 3491 0.0000000 0.000000000 0.00000000
## 3492 0.0000000 0.000000000 0.00000000
## 3493 0.0000000 0.000000000 0.00000000
## 3494 0.0000000 0.000000000 0.00000000
## 3495 0.0000000 0.000000000 0.00000000
## 3496 0.0000000 0.000000000 0.00000000
## 3497 0.0000000 0.000000000 0.00000000
## 3498 0.0000000 0.000000000 0.00000000
## 3499 0.0000000 0.000000000 0.00000000
## 3500 0.0000000 0.000000000 0.00000000
## 3501 0.0000000 0.000000000 0.00000000
## 3502 0.0000000 0.000000000 0.00000000
## 3503 0.0000000 0.000000000 0.00000000
## 3504 0.0000000 0.000000000 0.00000000
## 3505 0.0000000 0.000000000 0.00000000
## 3506 0.0000000 0.000000000 0.00000000
## 3507 0.0000000 0.000000000 0.00000000
## 3508 0.0000000 0.000000000 0.00000000
## 3509 0.0000000 0.000000000 0.00000000
## 3510 0.0000000 0.000000000 0.00000000
## 3511 0.0000000 0.000000000 0.00000000
## 3512 0.0000000 0.000000000 0.00000000
## 3513 0.0000000 0.000000000 0.00000000
## 3514 0.0000000 0.000000000 0.00000000
## 3515 0.0000000 0.000000000 0.00000000
## 3516 0.0000000 0.000000000 0.00000000
## 3517 0.0000000 0.000000000 0.00000000
## 3518 0.0000000 0.000000000 0.00000000
## 3519 0.0000000 0.000000000 0.00000000
## 3520 0.0000000 0.000000000 0.00000000
## 3521 0.0000000 0.000000000 0.00000000
## 3522 0.0000000 0.000000000 0.00000000
## 3523 0.0000000 0.000000000 0.00000000
## 3524 0.0000000 0.000000000 0.00000000
## 3525 0.0000000 0.000000000 0.00000000
## 3526 0.0000000 0.000000000 0.00000000
## 3527 0.0000000 0.000000000 0.00000000
## 3528 0.0000000 0.000000000 0.00000000
## 3529 0.0000000 0.000000000 0.00000000
## 3530 0.0000000 0.000000000 0.00000000
## 3531 0.0000000 0.000000000 0.00000000
## 3532 0.0000000 0.000000000 0.00000000
## 3533 0.0000000 0.000000000 0.00000000
## 3534 0.0000000 0.000000000 0.00000000
## 3535 0.0000000 0.000000000 0.00000000
## 3536 0.0000000 0.000000000 0.00000000
## 3537 0.0000000 0.000000000 0.00000000
## 3538 0.0000000 0.000000000 0.00000000
## 3539 0.0000000 0.000000000 0.00000000
## 3540 0.0000000 0.000000000 0.00000000
## 3541 0.0000000 0.000000000 0.00000000
## 3542 0.0000000 0.000000000 0.00000000
## 3543 0.0000000 0.000000000 0.00000000
## 3544 0.0000000 0.000000000 0.00000000
## 3545 0.0000000 0.000000000 0.00000000
## 3546 0.0000000 0.000000000 0.00000000
## 3547 0.0000000 0.000000000 0.00000000
## 3548 0.0000000 0.000000000 0.00000000
## 3549 0.0000000 0.000000000 0.00000000
## 3550 0.0000000 0.000000000 0.00000000
## 3551 0.0000000 0.000000000 0.00000000
## 3552 0.0000000 0.000000000 0.00000000
## 3553 0.0000000 0.000000000 0.00000000
## 3554 0.0000000 0.000000000 0.00000000
## 3555 0.0000000 0.000000000 0.00000000
## 3556 0.0000000 0.000000000 0.00000000
## 3557 0.0000000 0.000000000 0.00000000
## 3558 0.0000000 0.000000000 0.00000000
## 3559 0.0000000 0.000000000 0.00000000
## 3560 0.0000000 0.000000000 0.00000000
## 3561 0.0000000 0.000000000 0.00000000
## 3562 0.0000000 0.000000000 0.00000000
## 3563 0.0000000 0.000000000 0.00000000
## 3564 0.0000000 0.000000000 0.00000000
## 3565 0.0000000 0.000000000 0.00000000
## 3566 0.0000000 0.000000000 0.00000000
## 3567 0.0000000 0.000000000 0.00000000
## 3568 0.0000000 0.000000000 0.00000000
## 3569 0.0000000 0.000000000 0.00000000
## 3570 0.0000000 0.000000000 0.00000000
## 3571 0.0000000 0.000000000 0.00000000
## 3572 0.0000000 0.000000000 0.00000000
## 3573 0.0000000 0.000000000 0.00000000
## 3574 0.0000000 0.000000000 0.00000000
## 3575 0.0000000 0.000000000 0.00000000
## 3576 0.0000000 0.000000000 0.00000000
## 3577 0.0000000 0.000000000 0.00000000
## 3578 0.0000000 0.000000000 0.00000000
## 3579 0.0000000 0.000000000 0.00000000
## 3580 0.0000000 0.000000000 0.00000000
## 3581 0.0000000 0.000000000 0.00000000
## 3582 0.0000000 0.000000000 0.00000000
## 3583 0.0000000 0.000000000 0.00000000
## 3584 0.0000000 0.000000000 0.00000000
## 3585 0.0000000 0.000000000 0.00000000
## 3586 0.0000000 0.000000000 0.00000000
## 3587 0.0000000 0.000000000 0.00000000
## 3588 0.0000000 0.000000000 0.00000000
## 3589 0.0000000 0.000000000 0.00000000
## 3590 0.0000000 0.000000000 0.00000000
## 3591 0.0000000 0.000000000 0.00000000
## 3592 0.0000000 0.000000000 0.00000000
## 3593 0.0000000 0.000000000 0.00000000
## 3594 0.0000000 0.000000000 0.00000000
## 3595 0.0000000 0.000000000 0.00000000
## 3596 0.0000000 0.000000000 0.00000000
## 3597 0.0000000 0.000000000 0.00000000
## 3598 0.0000000 0.000000000 0.00000000
## 3599 0.0000000 0.000000000 0.00000000
## 3600 0.0000000 0.000000000 0.00000000
## 3601 0.0000000 0.000000000 0.00000000
## 3602 0.0000000 0.000000000 0.00000000
## 3603 0.0000000 0.000000000 0.00000000
## 3604 0.0000000 0.000000000 0.00000000
## 3605 0.0000000 0.000000000 0.00000000
## 3606 0.0000000 0.000000000 0.00000000
## 3607 0.0000000 0.000000000 0.00000000
## 3608 0.0000000 0.000000000 0.00000000
## 3609 0.0000000 0.000000000 0.00000000
## 3610 0.0000000 0.000000000 0.00000000
## 3611 0.0000000 0.000000000 0.00000000
## 3612 0.0000000 0.000000000 0.00000000
## 3613 0.0000000 0.000000000 0.00000000
## 3614 0.0000000 0.000000000 0.00000000
## 3615 0.0000000 0.000000000 0.00000000
## 3616 0.0000000 0.000000000 0.00000000
## 3617 0.0000000 0.000000000 0.00000000
## 3618 0.0000000 0.000000000 0.00000000
## 3619 0.0000000 0.000000000 0.00000000
## 3620 0.0000000 0.000000000 0.00000000
## 3621 0.0000000 0.000000000 0.00000000
## 3622 0.0000000 0.000000000 0.00000000
## 3623 0.0000000 0.000000000 0.00000000
## 3624 0.0000000 0.000000000 0.00000000
## 3625 0.0000000 0.000000000 0.00000000
## 3626 0.0000000 0.000000000 0.00000000
## 3627 0.0000000 0.000000000 0.00000000
## 3628 0.0000000 0.000000000 0.00000000
## 3629 0.0000000 0.000000000 0.00000000
## 3630 0.0000000 0.000000000 0.00000000
## 3631 0.0000000 0.000000000 0.00000000
## 3632 0.0000000 0.000000000 0.00000000
## 3633 0.0000000 0.000000000 0.00000000
## 3634 0.0000000 0.000000000 0.00000000
## 3635 0.0000000 0.000000000 0.00000000
## 3636 0.0000000 0.000000000 0.00000000
## 3637 0.0000000 0.000000000 0.00000000
## 3638 0.0000000 0.000000000 0.00000000
## 3639 0.0000000 0.000000000 0.00000000
## 3640 0.0000000 0.000000000 0.00000000
## 3641 0.0000000 0.000000000 0.00000000
## 3642 0.0000000 0.000000000 0.00000000
## 3643 0.0000000 0.000000000 0.00000000
## 3644 0.0000000 0.000000000 0.00000000
## 3645 0.0000000 0.000000000 0.00000000
## 3646 0.0000000 0.000000000 0.00000000
## 3647 0.0000000 0.000000000 0.00000000
## 3648 0.0000000 0.000000000 0.00000000
## 3649 0.0000000 0.000000000 0.00000000
## 3650 0.0000000 0.000000000 0.00000000
## 3651 0.0000000 0.000000000 0.00000000
## 3652 0.0000000 0.000000000 0.00000000
## 3653 0.0000000 0.000000000 0.00000000
## 3654 0.0000000 0.000000000 0.00000000
## 3655 0.0000000 0.000000000 0.00000000
## 3656 0.0000000 0.000000000 0.00000000
## 3657 0.0000000 0.000000000 0.00000000
## 3658 0.0000000 0.000000000 0.00000000
## 3659 0.0000000 0.000000000 0.00000000
## 3660 0.0000000 0.000000000 0.00000000
## 3661 0.0000000 0.000000000 0.00000000
## 3662 0.0000000 0.000000000 0.00000000
## 3663 0.0000000 0.000000000 0.00000000
## 3664 0.0000000 0.000000000 0.00000000
## 3665 0.0000000 0.000000000 0.00000000
## 3666 0.0000000 0.000000000 0.00000000
## 3667 0.0000000 0.000000000 0.00000000
## 3668 0.0000000 0.000000000 0.00000000
## 3669 0.0000000 0.000000000 0.00000000
## 3670 0.0000000 0.000000000 0.00000000
## 3671 0.0000000 0.000000000 0.00000000
## 3672 0.0000000 0.000000000 0.00000000
## 3673 0.0000000 0.000000000 0.00000000
## 3674 0.0000000 0.000000000 0.00000000
## 3675 0.0000000 0.000000000 0.00000000
## 3676 0.0000000 0.000000000 0.00000000
## 3677 0.0000000 0.000000000 0.00000000
## 3678 0.0000000 0.000000000 0.00000000
## 3679 0.0000000 0.000000000 0.00000000
## 3680 0.0000000 0.000000000 0.00000000
## 3681 0.0000000 0.000000000 0.00000000
## 3682 0.0000000 0.000000000 0.00000000
## 3683 0.0000000 0.000000000 0.00000000
## 3684 0.0000000 0.000000000 0.00000000
## 3685 0.0000000 0.000000000 0.00000000
## 3686 0.0000000 0.000000000 0.00000000
## 3687 0.0000000 0.000000000 0.00000000
## 3688 0.0000000 0.000000000 0.00000000
## 3689 0.0000000 0.000000000 0.00000000
## 3690 0.0000000 0.000000000 0.00000000
## 3691 0.0000000 0.000000000 0.00000000
## 3692 0.0000000 0.000000000 0.00000000
## 3693 0.0000000 0.000000000 0.00000000
## 3694 0.0000000 0.000000000 0.00000000
## 3695 0.0000000 0.000000000 0.00000000
## 3696 0.0000000 0.000000000 0.00000000
## 3697 0.0000000 0.000000000 0.00000000
## 3698 0.0000000 0.000000000 0.00000000
## 3699 0.0000000 0.000000000 0.00000000
## 3700 0.0000000 0.000000000 0.00000000
## 3701 0.0000000 0.000000000 0.00000000
## 3702 0.0000000 0.000000000 0.00000000
## 3703 0.0000000 0.000000000 0.00000000
## 3704 0.0000000 0.000000000 0.00000000
## 3705 0.0000000 0.000000000 0.00000000
## 3706 0.0000000 0.000000000 0.00000000
## 3707 0.0000000 0.000000000 0.00000000
## 3708 0.0000000 0.000000000 0.00000000
## 3709 0.0000000 0.000000000 0.00000000
## 3710 0.0000000 0.000000000 0.00000000
## 3711 0.0000000 0.000000000 0.00000000
## 3712 0.0000000 0.000000000 0.00000000
## 3713 0.0000000 0.000000000 0.00000000
## 3714 0.0000000 0.000000000 0.00000000
## 3715 0.0000000 0.000000000 0.00000000
## 3716 0.0000000 0.000000000 0.00000000
## 3717 0.0000000 0.000000000 0.00000000
## 3718 0.0000000 0.000000000 0.00000000
## 3719 0.0000000 0.000000000 0.00000000
## 3720 0.0000000 0.000000000 0.00000000
## 3721 0.0000000 0.000000000 0.00000000
## 3722 0.0000000 0.000000000 0.00000000
## 3723 0.0000000 0.000000000 0.00000000
## 3724 0.0000000 0.000000000 0.00000000
## 3725 0.0000000 0.000000000 0.00000000
## 3726 0.0000000 0.000000000 0.00000000
## 3727 0.0000000 0.000000000 0.00000000
## 3728 0.0000000 0.000000000 0.00000000
## 3729 0.0000000 0.000000000 0.00000000
## 3730 0.0000000 0.000000000 0.00000000
## 3731 0.0000000 0.000000000 0.00000000
## 3732 0.0000000 0.000000000 0.00000000
## 3733 0.0000000 0.000000000 0.00000000
## 3734 0.0000000 0.000000000 0.00000000
## 3735 0.0000000 0.000000000 0.00000000
## 3736 0.0000000 0.000000000 0.00000000
## 3737 0.0000000 0.000000000 0.00000000
## 3738 0.0000000 0.000000000 0.00000000
## 3739 0.0000000 0.000000000 0.00000000
## 3740 0.0000000 0.000000000 0.00000000
## 3741 0.0000000 0.000000000 0.00000000
## 3742 0.0000000 0.000000000 0.00000000
## 3743 0.0000000 0.000000000 0.00000000
## 3744 0.0000000 0.000000000 0.00000000
## 3745 0.0000000 0.000000000 0.00000000
## 3746 0.0000000 0.000000000 0.00000000
## 3747 0.0000000 0.000000000 0.00000000
## 3748 0.0000000 0.000000000 0.00000000
## 3749 0.0000000 0.000000000 0.00000000
## 3750 0.0000000 0.000000000 0.00000000
## 3751 0.0000000 0.000000000 0.00000000
## 3752 0.0000000 0.000000000 0.00000000
## 3753 0.0000000 0.000000000 0.00000000
## 3754 0.0000000 0.000000000 0.00000000
## 3755 0.0000000 0.000000000 0.00000000
## 3756 0.0000000 0.000000000 0.00000000
## 3757 0.0000000 0.000000000 0.00000000
## 3758 0.0000000 0.000000000 0.00000000
## 3759 0.0000000 0.000000000 0.00000000
## 3760 0.0000000 0.000000000 0.00000000
## 3761 0.0000000 0.000000000 0.00000000
## 3762 0.0000000 0.000000000 0.00000000
## 3763 0.0000000 0.000000000 0.00000000
## 3764 0.0000000 0.000000000 0.00000000
## 3765 0.0000000 0.000000000 0.00000000
## 3766 0.0000000 0.000000000 0.00000000
## 3767 0.0000000 0.000000000 0.00000000
## 3768 0.0000000 0.000000000 0.00000000
## 3769 0.0000000 0.000000000 0.00000000
## 3770 0.0000000 0.000000000 0.00000000
## 3771 0.0000000 0.000000000 0.00000000
## 3772 0.0000000 0.000000000 0.00000000
## 3773 0.0000000 0.000000000 0.00000000
## 3774 0.0000000 0.000000000 0.00000000
## 3775 0.0000000 0.000000000 0.00000000
## 3776 0.0000000 0.000000000 0.00000000
## 3777 0.0000000 0.000000000 0.00000000
## 3778 0.0000000 0.000000000 0.00000000
## 3779 0.0000000 0.000000000 0.00000000
## 3780 0.0000000 0.000000000 0.00000000
## 3781 0.0000000 0.000000000 0.00000000
## 3782 0.0000000 0.000000000 0.00000000
## 3783 0.0000000 0.000000000 0.00000000
## 3784 0.0000000 0.000000000 0.00000000
## 3785 0.0000000 0.000000000 0.00000000
## 3786 0.0000000 0.000000000 0.00000000
## 3787 0.0000000 0.000000000 0.00000000
## 3788 0.0000000 0.000000000 0.00000000
## 3789 0.0000000 0.000000000 0.00000000
## 3790 0.0000000 0.000000000 0.00000000
## 3791 0.0000000 0.000000000 0.00000000
## 3792 0.0000000 0.000000000 0.00000000
## 3793 0.0000000 0.000000000 0.00000000
## 3794 0.0000000 0.000000000 0.00000000
## 3795 0.0000000 0.000000000 0.00000000
## 3796 0.0000000 0.000000000 0.00000000
## 3797 0.0000000 0.000000000 0.00000000
## 3798 0.0000000 0.000000000 0.00000000
## 3799 0.0000000 0.000000000 0.00000000
## 3800 0.0000000 0.000000000 0.00000000
## 3801 0.0000000 0.000000000 0.00000000
## 3802 0.0000000 0.000000000 0.00000000
## 3803 0.0000000 0.000000000 0.00000000
## 3804 0.0000000 0.000000000 0.00000000
## 3805 0.0000000 0.000000000 0.00000000
## 3806 0.0000000 0.000000000 0.00000000
## 3807 0.0000000 0.000000000 0.00000000
## 3808 0.0000000 0.000000000 0.00000000
## 3809 0.0000000 0.000000000 0.00000000
## 3810 0.0000000 0.000000000 0.00000000
## 3811 0.0000000 0.000000000 0.00000000
## 3812 0.0000000 0.000000000 0.00000000
## 3813 0.0000000 0.000000000 0.00000000
## 3814 0.0000000 0.000000000 0.00000000
## 3815 0.0000000 0.000000000 0.00000000
## 3816 0.0000000 0.000000000 0.00000000
## 3817 0.0000000 0.000000000 0.00000000
## 3818 0.0000000 0.000000000 0.00000000
## 3819 0.0000000 0.000000000 0.00000000
## 3820 0.0000000 0.000000000 0.00000000
## 3821 0.0000000 0.000000000 0.00000000
## 3822 0.0000000 0.000000000 0.00000000
## 3823 0.0000000 0.000000000 0.00000000
## 3824 0.0000000 0.000000000 0.00000000
## 3825 0.0000000 0.000000000 0.00000000
## 3826 0.0000000 0.000000000 0.00000000
## 3827 0.0000000 0.000000000 0.00000000
## 3828 0.0000000 0.000000000 0.00000000
## 3829 0.0000000 0.000000000 0.00000000
## 3830 0.0000000 0.000000000 0.00000000
## 3831 0.0000000 0.000000000 0.00000000
## 3832 0.0000000 0.000000000 0.00000000
## 3833 0.0000000 0.000000000 0.00000000
## 3834 0.0000000 0.000000000 0.00000000
## 3835 0.0000000 0.000000000 0.00000000
## 3836 0.0000000 0.000000000 0.00000000
## 3837 0.0000000 0.000000000 0.00000000
## 3838 0.0000000 0.000000000 0.00000000
## 3839 0.0000000 0.000000000 0.00000000
## 3840 0.0000000 0.000000000 0.00000000
## 3841 0.0000000 0.000000000 0.00000000
## 3842 0.0000000 0.000000000 0.00000000
## 3843 0.0000000 0.000000000 0.00000000
## 3844 0.0000000 0.000000000 0.00000000
## 3845 0.0000000 0.000000000 0.00000000
## 3846 0.0000000 0.000000000 0.00000000
## 3847 0.0000000 0.000000000 0.00000000
## 3848 0.0000000 0.000000000 0.00000000
## 3849 0.0000000 0.000000000 0.00000000
## 3850 0.0000000 0.000000000 0.00000000
## 3851 0.0000000 0.000000000 0.00000000
## 3852 0.0000000 0.000000000 0.00000000
## 3853 0.0000000 0.000000000 0.00000000
## 3854 0.0000000 0.000000000 0.00000000
## 3855 0.0000000 0.000000000 0.00000000
## 3856 0.0000000 0.000000000 0.00000000
## 3857 0.0000000 0.000000000 0.00000000
## 3858 0.0000000 0.000000000 0.00000000
## 3859 0.0000000 0.000000000 0.00000000
## 3860 0.0000000 0.000000000 0.00000000
## 3861 0.0000000 0.000000000 0.00000000
## 3862 0.0000000 0.000000000 0.00000000
## 3863 0.0000000 0.000000000 0.00000000
## 3864 0.0000000 0.000000000 0.00000000
## 3865 0.0000000 0.000000000 0.00000000
## 3866 0.0000000 0.000000000 0.00000000
## 3867 0.0000000 0.000000000 0.00000000
## 3868 0.0000000 0.000000000 0.00000000
## 3869 0.0000000 0.000000000 0.00000000
## 3870 0.0000000 0.000000000 0.00000000
## 3871 0.0000000 0.000000000 0.00000000
## 3872 0.0000000 0.000000000 0.00000000
## 3873 0.0000000 0.000000000 0.00000000
## 3874 0.0000000 0.000000000 0.00000000
## 3875 0.0000000 0.000000000 0.00000000
## 3876 0.0000000 0.000000000 0.00000000
## 3877 0.0000000 0.000000000 0.00000000
## 3878 0.0000000 0.000000000 0.00000000
## 3879 0.0000000 0.000000000 0.00000000
## 3880 0.0000000 0.000000000 0.00000000
## 3881 0.0000000 0.000000000 0.00000000
## 3882 0.0000000 0.000000000 0.00000000
## 3883 0.0000000 0.000000000 0.00000000
## 3884 0.0000000 0.000000000 0.00000000
## 3885 0.0000000 0.000000000 0.00000000
## 3886 0.0000000 0.000000000 0.00000000
## 3887 0.0000000 0.000000000 0.00000000
## 3888 0.0000000 0.000000000 0.00000000
## 3889 0.0000000 0.000000000 0.00000000
## 3890 0.0000000 0.000000000 0.00000000
## 3891 0.0000000 0.000000000 0.00000000
## 3892 0.0000000 0.000000000 0.00000000
## 3893 0.0000000 0.000000000 0.00000000
## 3894 0.0000000 0.000000000 0.00000000
## 3895 0.0000000 0.000000000 0.00000000
## 3896 0.0000000 0.000000000 0.00000000
## 3897 0.0000000 0.000000000 0.00000000
## 3898 0.0000000 0.000000000 0.00000000
## 3899 0.0000000 0.000000000 0.00000000
## 3900 0.0000000 0.000000000 0.00000000
## 3901 0.0000000 0.000000000 0.00000000
## 3902 0.0000000 0.000000000 0.00000000
## 3903 0.0000000 0.000000000 0.00000000
## 3904 0.0000000 0.000000000 0.00000000
## 3905 0.0000000 0.000000000 0.00000000
## 3906 0.0000000 0.000000000 0.00000000
## 3907 0.0000000 0.000000000 0.00000000
## 3908 0.0000000 0.000000000 0.00000000
## 3909 0.0000000 0.000000000 0.00000000
## 3910 0.0000000 0.000000000 0.00000000
## 3911 0.0000000 0.000000000 0.00000000
## 3912 0.0000000 0.000000000 0.00000000
## 3913 0.0000000 0.000000000 0.00000000
## 3914 0.0000000 0.000000000 0.00000000
## 3915 0.0000000 0.000000000 0.00000000
## 3916 0.0000000 0.000000000 0.00000000
## 3917 0.0000000 0.000000000 0.00000000
## 3918 0.0000000 0.000000000 0.00000000
## 3919 0.0000000 0.000000000 0.00000000
## 3920 0.0000000 0.000000000 0.00000000
## 3921 0.0000000 0.000000000 0.00000000
## 3922 0.0000000 0.000000000 0.00000000
## 3923 0.0000000 0.000000000 0.00000000
## 3924 0.0000000 0.000000000 0.00000000
## 3925 0.0000000 0.000000000 0.00000000
## 3926 0.0000000 0.000000000 0.00000000
## 3927 0.0000000 0.000000000 0.00000000
## 3928 0.0000000 0.000000000 0.00000000
## 3929 0.0000000 0.000000000 0.00000000
## 3930 0.0000000 0.000000000 0.00000000
## 3931 0.0000000 0.000000000 0.00000000
## 3932 0.0000000 0.000000000 0.00000000
## 3933 0.0000000 0.000000000 0.00000000
## 3934 0.0000000 0.000000000 0.00000000
## 3935 0.0000000 0.000000000 0.00000000
## 3936 0.0000000 0.000000000 0.00000000
## 3937 0.0000000 0.000000000 0.00000000
## 3938 0.0000000 0.000000000 0.00000000
## 3939 0.0000000 0.000000000 0.00000000
## 3940 0.0000000 0.000000000 0.00000000
## 3941 0.0000000 0.000000000 0.00000000
## 3942 0.0000000 0.000000000 0.00000000
## 3943 0.0000000 0.000000000 0.00000000
## 3944 0.0000000 0.000000000 0.00000000
## 3945 0.0000000 0.000000000 0.00000000
## 3946 0.0000000 0.000000000 0.00000000
## 3947 0.0000000 0.000000000 0.00000000
## 3948 0.0000000 0.000000000 0.00000000
## 3949 0.0000000 0.000000000 0.00000000
## 3950 0.0000000 0.000000000 0.00000000
## 3951 0.0000000 0.000000000 0.00000000
## 3952 0.0000000 0.000000000 0.00000000
## 3953 0.0000000 0.000000000 0.00000000
## 3954 0.0000000 0.000000000 0.00000000
## 3955 0.0000000 0.000000000 0.00000000
## 3956 0.0000000 0.000000000 0.00000000
## 3957 0.0000000 0.000000000 0.00000000
## 3958 0.0000000 0.000000000 0.00000000
## 3959 0.0000000 0.000000000 0.00000000
## 3960 0.0000000 0.000000000 0.00000000
## 3961 0.0000000 0.000000000 0.00000000
## 3962 0.0000000 0.000000000 0.00000000
## 3963 0.0000000 0.000000000 0.00000000
## 3964 0.0000000 0.000000000 0.00000000
## 3965 0.0000000 0.000000000 0.00000000
## 3966 0.0000000 0.000000000 0.00000000
## 3967 0.0000000 0.000000000 0.00000000
## 3968 0.0000000 0.000000000 0.00000000
## 3969 0.0000000 0.000000000 0.00000000
## 3970 0.0000000 0.000000000 0.00000000
## 3971 0.0000000 0.000000000 0.00000000
## 3972 0.0000000 0.000000000 0.00000000
## 3973 0.0000000 0.000000000 0.00000000
## 3974 0.0000000 0.000000000 0.00000000
## 3975 0.0000000 0.000000000 0.00000000
## 3976 0.0000000 0.000000000 0.00000000
## 3977 0.0000000 0.000000000 0.00000000
## 3978 0.0000000 0.000000000 0.00000000
## 3979 0.0000000 0.000000000 0.00000000
## 3980 0.0000000 0.000000000 0.00000000
## 3981 0.0000000 0.000000000 0.00000000
## 3982 0.0000000 0.000000000 0.00000000
## 3983 0.0000000 0.000000000 0.00000000
## 3984 0.0000000 0.000000000 0.00000000
## 3985 0.0000000 0.000000000 0.00000000
## 3986 0.0000000 0.000000000 0.00000000
## 3987 0.0000000 0.000000000 0.00000000
## 3988 0.0000000 0.000000000 0.00000000
## 3989 0.0000000 0.000000000 0.00000000
## 3990 0.0000000 0.000000000 0.00000000
## 3991 0.0000000 0.000000000 0.00000000
## 3992 0.0000000 0.000000000 0.00000000
## 3993 0.0000000 0.000000000 0.00000000
## 3994 0.0000000 0.000000000 0.00000000
## 3995 0.0000000 0.000000000 0.00000000
## 3996 0.0000000 0.000000000 0.00000000
## 3997 0.0000000 0.000000000 0.00000000
## 3998 0.0000000 0.000000000 0.00000000
## 3999 0.0000000 0.000000000 0.00000000
## 4000 0.0000000 0.000000000 0.00000000
## 4001 0.0000000 0.000000000 0.00000000
## 4002 0.0000000 0.000000000 0.00000000
## 4003 0.0000000 0.000000000 0.00000000
## 4004 0.0000000 0.000000000 0.00000000
## 4005 0.0000000 0.000000000 0.00000000
## 4006 0.0000000 0.000000000 0.00000000
## 4007 0.0000000 0.000000000 0.00000000
## 4008 0.0000000 0.000000000 0.00000000
## 4009 0.0000000 0.000000000 0.00000000
## 4010 0.0000000 0.000000000 0.00000000
## 4011 0.0000000 0.000000000 0.00000000
## 4012 0.0000000 0.000000000 0.00000000
## 4013 0.0000000 0.000000000 0.00000000
## 4014 0.0000000 0.000000000 0.00000000
## 4015 0.0000000 0.000000000 0.00000000
## 4016 0.0000000 0.000000000 0.00000000
## 4017 0.0000000 0.000000000 0.00000000
## 4018 0.0000000 0.000000000 0.00000000
## 4019 0.0000000 0.000000000 0.00000000
## 4020 0.0000000 0.000000000 0.00000000
## 4021 0.0000000 0.000000000 0.00000000
## 4022 0.0000000 0.000000000 0.00000000
## 4023 0.0000000 0.000000000 0.00000000
## 4024 0.0000000 0.000000000 0.00000000
## 4025 0.0000000 0.000000000 0.00000000
## 4026 0.0000000 0.000000000 0.00000000
## 4027 0.0000000 0.000000000 0.00000000
## 4028 0.0000000 0.000000000 0.00000000
## 4029 0.0000000 0.000000000 0.00000000
## 4030 0.0000000 0.000000000 0.00000000
## 4031 0.0000000 0.000000000 0.00000000
## 4032 0.0000000 0.000000000 0.00000000
## 4033 0.0000000 0.000000000 0.00000000
## 4034 0.0000000 0.000000000 0.00000000
## 4035 0.0000000 0.000000000 0.00000000
## 4036 0.0000000 0.000000000 0.00000000
## 4037 0.0000000 0.000000000 0.00000000
## 4038 0.0000000 0.000000000 0.00000000
## 4039 0.0000000 0.000000000 0.00000000
## 4040 0.0000000 0.000000000 0.00000000
## 4041 0.0000000 0.000000000 0.00000000
## 4042 0.0000000 0.000000000 0.00000000
## 4043 0.0000000 0.000000000 0.00000000
## 4044 0.0000000 0.000000000 0.00000000
## 4045 0.0000000 0.000000000 0.00000000
## 4046 0.0000000 0.000000000 0.00000000
## 4047 0.0000000 0.000000000 0.00000000
## 4048 0.0000000 0.000000000 0.00000000
## 4049 0.0000000 0.000000000 0.00000000
## 4050 0.0000000 0.000000000 0.00000000
## 4051 0.0000000 0.000000000 0.00000000
## 4052 0.0000000 0.000000000 0.00000000
## 4053 0.0000000 0.000000000 0.00000000
## 4054 0.0000000 0.000000000 0.00000000
## 4055 0.0000000 0.000000000 0.00000000
## 4056 0.0000000 0.000000000 0.00000000
## 4057 0.0000000 0.000000000 0.00000000
## 4058 0.0000000 0.000000000 0.00000000
## 4059 0.0000000 0.000000000 0.00000000
## 4060 0.0000000 0.000000000 0.00000000
## 4061 0.0000000 0.000000000 0.00000000
## 4062 0.0000000 0.000000000 0.00000000
## 4063 0.0000000 0.000000000 0.00000000
## 4064 0.0000000 0.000000000 0.00000000
## 4065 0.0000000 0.000000000 0.00000000
## 4066 0.0000000 0.000000000 0.00000000
## 4067 0.0000000 0.000000000 0.00000000
## 4068 0.0000000 0.000000000 0.00000000
## 4069 0.0000000 0.000000000 0.00000000
## 4070 0.0000000 0.000000000 0.00000000
## 4071 0.0000000 0.000000000 0.00000000
## 4072 0.0000000 0.000000000 0.00000000
## 4073 0.0000000 0.000000000 0.00000000
## 4074 0.0000000 0.000000000 0.00000000
## 4075 0.0000000 0.000000000 0.00000000
## 4076 0.0000000 0.000000000 0.00000000
## 4077 0.0000000 0.000000000 0.00000000
## 4078 0.0000000 0.000000000 0.00000000
## 4079 0.0000000 0.000000000 0.00000000
## 4080 0.0000000 0.000000000 0.00000000
## 4081 0.0000000 0.000000000 0.00000000
## 4082 0.0000000 0.000000000 0.00000000
## 4083 0.0000000 0.000000000 0.00000000
## 4084 0.0000000 0.000000000 0.00000000
## 4085 0.0000000 0.000000000 0.00000000
## 4086 0.0000000 0.000000000 0.00000000
## 4087 0.0000000 0.000000000 0.00000000
## 4088 0.0000000 0.000000000 0.00000000
## 4089 0.0000000 0.000000000 0.00000000
## 4090 0.0000000 0.000000000 0.00000000
## 4091 0.0000000 0.000000000 0.00000000
## 4092 0.0000000 0.000000000 0.00000000
## 4093 0.0000000 0.000000000 0.00000000
## 4094 0.0000000 0.000000000 0.00000000
## 4095 0.0000000 0.000000000 0.00000000
## 4096 0.0000000 0.000000000 0.00000000
## 4097 0.0000000 0.000000000 0.00000000
## 4098 0.0000000 0.000000000 0.00000000
## 4099 0.0000000 0.000000000 0.00000000
## 4100 0.0000000 0.000000000 0.00000000
## 4101 0.0000000 0.000000000 0.00000000
## 4102 0.0000000 0.000000000 0.00000000
## 4103 0.0000000 0.000000000 0.00000000
## 4104 0.0000000 0.000000000 0.00000000
## 4105 0.0000000 0.000000000 0.00000000
## 4106 0.0000000 0.000000000 0.00000000
## 4107 0.0000000 0.000000000 0.00000000
## 4108 0.0000000 0.000000000 0.00000000
## 4109 0.0000000 0.000000000 0.00000000
## 4110 0.0000000 0.000000000 0.00000000
## 4111 0.0000000 0.000000000 0.00000000
## 4112 0.0000000 0.000000000 0.00000000
## 4113 0.0000000 0.000000000 0.00000000
## 4114 0.0000000 0.000000000 0.00000000
## 4115 0.0000000 0.000000000 0.00000000
## 4116 0.0000000 0.000000000 0.00000000
## 4117 0.0000000 0.000000000 0.00000000
## 4118 0.0000000 0.000000000 0.00000000
## 4119 0.0000000 0.000000000 0.00000000
## 4120 0.0000000 0.000000000 0.00000000
## 4121 0.0000000 0.000000000 0.00000000
## 4122 0.0000000 0.000000000 0.00000000
## 4123 0.0000000 0.000000000 0.00000000
## 4124 0.0000000 0.000000000 0.00000000
## 4125 0.0000000 0.000000000 0.00000000
## 4126 0.0000000 0.000000000 0.00000000
## 4127 0.0000000 0.000000000 0.00000000
## 4128 0.0000000 0.000000000 0.00000000
## 4129 0.0000000 0.000000000 0.00000000
## 4130 0.0000000 0.000000000 0.00000000
## 4131 0.0000000 0.000000000 0.00000000
## 4132 0.0000000 0.000000000 0.00000000
## 4133 0.0000000 0.000000000 0.00000000
## 4134 0.0000000 0.000000000 0.00000000
## 4135 0.0000000 0.000000000 0.00000000
## 4136 0.0000000 0.000000000 0.00000000
## 4137 0.0000000 0.000000000 0.00000000
## 4138 0.0000000 0.000000000 0.00000000
## 4139 0.0000000 0.000000000 0.00000000
## 4140 0.0000000 0.000000000 0.00000000
## 4141 0.0000000 0.000000000 0.00000000
## 4142 0.0000000 0.000000000 0.00000000
## 4143 0.0000000 0.000000000 0.00000000
## 4144 0.0000000 0.000000000 0.00000000
## 4145 0.0000000 0.000000000 0.00000000
## 4146 0.0000000 0.000000000 0.00000000
## 4147 0.0000000 0.000000000 0.00000000
## 4148 0.0000000 0.000000000 0.00000000
## 4149 0.0000000 0.000000000 0.00000000
## 4150 0.0000000 0.000000000 0.00000000
## 4151 0.0000000 0.000000000 0.00000000
## 4152 0.0000000 0.000000000 0.00000000
## 4153 0.0000000 0.000000000 0.00000000
## 4154 0.0000000 0.000000000 0.00000000
## 4155 0.0000000 0.000000000 0.00000000
## 4156 0.0000000 0.000000000 0.00000000
## 4157 0.0000000 0.000000000 0.00000000
## 4158 0.0000000 0.000000000 0.00000000
## 4159 0.0000000 0.000000000 0.00000000
## 4160 0.0000000 0.000000000 0.00000000
## 4161 0.0000000 0.000000000 0.00000000
## 4162 0.0000000 0.000000000 0.00000000
## 4163 0.0000000 0.000000000 0.00000000
## 4164 0.0000000 0.000000000 0.00000000
## 4165 0.0000000 0.000000000 0.00000000
## 4166 0.0000000 0.000000000 0.00000000
## 4167 0.0000000 0.000000000 0.00000000
## 4168 0.0000000 0.000000000 0.00000000
## 4169 0.0000000 0.000000000 0.00000000
## 4170 0.0000000 0.000000000 0.00000000
## 4171 0.0000000 0.000000000 0.00000000
## 4172 0.0000000 0.000000000 0.00000000
## 4173 0.0000000 0.000000000 0.00000000
## 4174 0.0000000 0.000000000 0.00000000
## 4175 0.0000000 0.000000000 0.00000000
## 4176 0.0000000 0.000000000 0.00000000
## 4177 0.0000000 0.000000000 0.00000000
## 4178 0.0000000 0.000000000 0.00000000
## 4179 0.0000000 0.000000000 0.00000000
## 4180 0.0000000 0.000000000 0.00000000
## 4181 0.0000000 0.000000000 0.00000000
## 4182 0.0000000 0.000000000 0.00000000
## 4183 0.0000000 0.000000000 0.00000000
## 4184 0.0000000 0.000000000 0.00000000
## 4185 0.0000000 0.000000000 0.00000000
## 4186 0.0000000 0.000000000 0.00000000
## 4187 0.0000000 0.000000000 0.00000000
## 4188 0.0000000 0.000000000 0.00000000
## 4189 0.0000000 0.000000000 0.00000000
## 4190 0.0000000 0.000000000 0.00000000
## 4191 0.0000000 0.000000000 0.00000000
## 4192 0.0000000 0.000000000 0.00000000
## 4193 0.0000000 0.000000000 0.00000000
## 4194 0.0000000 0.000000000 0.00000000
## 4195 0.0000000 0.000000000 0.00000000
## 4196 0.0000000 0.000000000 0.00000000
## 4197 0.0000000 0.000000000 0.00000000
## 4198 0.0000000 0.000000000 0.00000000
## 4199 0.0000000 0.000000000 0.00000000
## 4200 0.0000000 0.000000000 0.00000000
## 4201 0.0000000 0.000000000 0.00000000
## 4202 0.0000000 0.000000000 0.00000000
## 4203 0.0000000 0.000000000 0.00000000
## 4204 0.0000000 0.000000000 0.00000000
## 4205 0.0000000 0.000000000 0.00000000
## 4206 0.0000000 0.000000000 0.00000000
## 4207 0.0000000 0.000000000 0.00000000
## 4208 0.0000000 0.000000000 0.00000000
## 4209 0.0000000 0.000000000 0.00000000
## 4210 0.0000000 0.000000000 0.00000000
## 4211 0.0000000 0.000000000 0.00000000
## 4212 0.0000000 0.000000000 0.00000000
## 4213 0.0000000 0.000000000 0.00000000
## 4214 0.0000000 0.000000000 0.00000000
## 4215 0.0000000 0.000000000 0.00000000
## 4216 0.0000000 0.000000000 0.00000000
## 4217 0.0000000 0.000000000 0.00000000
## 4218 0.0000000 0.000000000 0.00000000
## 4219 0.0000000 0.000000000 0.00000000
## 4220 0.0000000 0.000000000 0.00000000
## 4221 0.0000000 0.000000000 0.00000000
## 4222 0.0000000 0.000000000 0.00000000
## Hyper_Foreground_Gene_Hits Hyper_Background_Gene_Hits
## 1 7 12
## 2 7 12
## 3 3 3
## 4 1 1
## 5 9 17
## 6 5 11
## 7 5 11
## 8 7 8
## 9 5 7
## 10 68 152
## 11 1 1
## 12 1 1
## 13 1 1
## 14 1 1
## 15 1 1
## 16 1 1
## 17 1 1
## 18 4 5
## 19 2 3
## 20 4 8
## 21 5 9
## 22 3 3
## 23 2 4
## 24 3 3
## 25 1 1
## 26 1 1
## 27 2 2
## 28 3 5
## 29 3 4
## 30 3 5
## 31 5 9
## 32 3 7
## 33 1 1
## 34 2 3
## 35 1 1
## 36 1 1
## 37 1 1
## 38 2 3
## 39 1 1
## 40 1 1
## 41 8 17
## 42 2 2
## 43 2 3
## 44 2 3
## 45 3 4
## 46 1 1
## 47 1 1
## 48 1 1
## 49 1 1
## 50 1 1
## 51 1 1
## 52 1 1
## 53 1 1
## 54 1 1
## 55 1 1
## 56 1 1
## 57 1 1
## 58 1 1
## 59 1 1
## 60 1 1
## 61 1 1
## 62 1 1
## 63 1 1
## 64 1 1
## 65 1 1
## 66 1 1
## 67 1 1
## 68 1 1
## 69 1 1
## 70 1 1
## 71 1 1
## 72 6 8
## 73 132 328
## 74 4 8
## 75 4 6
## 76 2 2
## 77 10 24
## 78 1 2
## 79 2 2
## 80 2 2
## 81 1 1
## 82 1 1
## 83 1 1
## 84 1 1
## 85 1 1
## 86 1 1
## 87 1 1
## 88 1 1
## 89 1 1
## 90 1 1
## 91 1 1
## 92 3 3
## 93 2 3
## 94 2 7
## 95 4 8
## 96 6 14
## 97 6 20
## 98 5 7
## 99 1 3
## 100 1 2
## 101 3 5
## 102 2 4
## 103 8 15
## 104 2 2
## 105 1 2
## 106 1 1
## 107 1 1
## 108 2 2
## 109 1 1
## 110 1 2
## 111 1 3
## 112 1 3
## 113 1 1
## 114 1 1
## 115 1 1
## 116 1 2
## 117 1 1
## 118 1 1
## 119 1 1
## 120 2 2
## 121 1 1
## 122 1 1
## 123 1 1
## 124 1 1
## 125 1 1
## 126 1 1
## 127 1 1
## 128 1 1
## 129 1 1
## 130 1 1
## 131 1 1
## 132 1 1
## 133 1 1
## 134 1 1
## 135 1 1
## 136 1 1
## 137 1 1
## 138 1 2
## 139 1 1
## 140 1 2
## 141 1 1
## 142 1 1
## 143 1 1
## 144 1 1
## 145 1 1
## 146 1 1
## 147 1 1
## 148 1 1
## 149 16 33
## 150 16 33
## 151 4 7
## 152 5 13
## 153 4 10
## 154 4 7
## 155 4 6
## 156 4 4
## 157 5 7
## 158 2 2
## 159 3 4
## 160 3 4
## 161 2 3
## 162 21 37
## 163 3 8
## 164 3 6
## 165 185 465
## 166 43 103
## 167 20 36
## 168 3 8
## 169 1 1
## 170 3 5
## 171 2 4
## 172 1 3
## 173 2 2
## 174 4 9
## 175 4 9
## 176 186 470
## 177 5 11
## 178 14 42
## 179 2 5
## 180 2 2
## 181 1 2
## 182 2 3
## 183 2 2
## 184 1 1
## 185 1 2
## 186 1 2
## 187 1 1
## 188 1 1
## 189 1 1
## 190 1 1
## 191 2 3
## 192 1 1
## 193 1 1
## 194 1 1
## 195 2 2
## 196 1 1
## 197 1 2
## 198 2 3
## 199 1 1
## 200 1 1
## 201 1 2
## 202 1 1
## 203 1 2
## 204 2 2
## 205 1 1
## 206 1 2
## 207 34 72
## 208 1 3
## 209 4 10
## 210 4 9
## 211 5 12
## 212 1 1
## 213 1 1
## 214 1 1
## 215 1 1
## 216 1 1
## 217 1 1
## 218 1 1
## 219 1 1
## 220 1 1
## 221 1 1
## 222 1 1
## 223 1 1
## 224 1 1
## 225 1 1
## 226 1 1
## 227 1 1
## 228 1 1
## 229 1 1
## 230 1 1
## 231 1 1
## 232 1 1
## 233 1 1
## 234 1 1
## 235 1 1
## 236 1 1
## 237 1 1
## 238 1 1
## 239 1 1
## 240 1 1
## 241 1 1
## 242 1 1
## 243 1 1
## 244 1 1
## 245 1 1
## 246 1 1
## 247 1 1
## 248 1 1
## 249 1 1
## 250 1 1
## 251 1 1
## 252 1 1
## 253 1 1
## 254 1 1
## 255 1 1
## 256 1 1
## 257 1 1
## 258 1 1
## 259 1 1
## 260 1 1
## 261 1 1
## 262 1 1
## 263 1 1
## 264 1 1
## 265 1 1
## 266 1 1
## 267 8 17
## 268 1 2
## 269 1 2
## 270 3 5
## 271 2 3
## 272 1 2
## 273 1 4
## 274 12 26
## 275 5 13
## 276 2 4
## 277 2 4
## 278 4 8
## 279 4 7
## 280 3 7
## 281 7 17
## 282 26 52
## 283 6 13
## 284 4 10
## 285 2 3
## 286 1 3
## 287 1 2
## 288 1 2
## 289 2 3
## 290 1 1
## 291 1 2
## 292 1 2
## 293 1 2
## 294 2 3
## 295 1 1
## 296 1 1
## 297 1 2
## 298 2 3
## 299 1 1
## 300 2 3
## 301 1 2
## 302 2 7
## 303 1 4
## 304 1 4
## 305 1 4
## 306 2 5
## 307 1 4
## 308 3 5
## 309 2 3
## 310 2 3
## 311 1 2
## 312 12 24
## 313 9 20
## 314 5 10
## 315 23 48
## 316 32 74
## 317 31 66
## 318 3 10
## 319 1 4
## 320 1 5
## 321 2 3
## 322 3 5
## 323 3 3
## 324 1 4
## 325 2 3
## 326 2 3
## 327 2 3
## 328 2 5
## 329 2 3
## 330 2 3
## 331 3 6
## 332 2 3
## 333 19 40
## 334 3 8
## 335 6 12
## 336 2 4
## 337 1 2
## 338 2 2
## 339 1 1
## 340 1 1
## 341 2 4
## 342 2 4
## 343 1 1
## 344 1 2
## 345 1 1
## 346 1 5
## 347 2 2
## 348 1 1
## 349 1 1
## 350 1 2
## 351 1 2
## 352 1 1
## 353 1 1
## 354 1 1
## 355 1 1
## 356 1 1
## 357 1 1
## 358 1 2
## 359 1 1
## 360 1 2
## 361 1 2
## 362 1 2
## 363 1 2
## 364 1 1
## 365 1 2
## 366 1 1
## 367 1 1
## 368 1 2
## 369 1 1
## 370 1 1
## 371 1 1
## 372 1 1
## 373 1 1
## 374 1 1
## 375 1 1
## 376 1 1
## 377 1 2
## 378 1 1
## 379 1 1
## 380 1 1
## 381 1 1
## 382 1 2
## 383 1 2
## 384 1 1
## 385 1 1
## 386 2 6
## 387 4 7
## 388 8 18
## 389 7 14
## 390 67 154
## 391 6 13
## 392 16 39
## 393 2 5
## 394 4 7
## 395 12 33
## 396 12 27
## 397 2 3
## 398 16 34
## 399 16 34
## 400 16 34
## 401 8 20
## 402 5 7
## 403 3 6
## 404 5 12
## 405 13 22
## 406 21 52
## 407 17 48
## 408 10 22
## 409 5 10
## 410 10 26
## 411 1 1
## 412 2 5
## 413 2 3
## 414 1 4
## 415 1 5
## 416 1 5
## 417 1 2
## 418 1 1
## 419 1 2
## 420 2 3
## 421 30 65
## 422 3 6
## 423 2 3
## 424 2 3
## 425 81 203
## 426 8 18
## 427 4 11
## 428 3 6
## 429 2 6
## 430 2 3
## 431 1 1
## 432 3 7
## 433 3 3
## 434 1 1
## 435 1 2
## 436 1 1
## 437 1 1
## 438 1 2
## 439 1 2
## 440 1 1
## 441 1 1
## 442 1 2
## 443 1 1
## 444 1 2
## 445 1 1
## 446 1 1
## 447 1 2
## 448 1 1
## 449 1 1
## 450 1 1
## 451 1 1
## 452 1 1
## 453 1 2
## 454 1 2
## 455 1 1
## 456 1 2
## 457 1 1
## 458 1 1
## 459 1 1
## 460 1 1
## 461 1 1
## 462 1 1
## 463 1 1
## 464 1 3
## 465 1 1
## 466 1 2
## 467 1 1
## 468 1 1
## 469 1 1
## 470 1 1
## 471 1 1
## 472 1 1
## 473 1 1
## 474 1 1
## 475 1 3
## 476 1 3
## 477 1 1
## 478 1 1
## 479 1 1
## 480 1 3
## 481 3 5
## 482 3 7
## 483 3 8
## 484 2 5
## 485 1 4
## 486 1 4
## 487 1 2
## 488 2 5
## 489 1 4
## 490 2 4
## 491 2 4
## 492 1 2
## 493 6 14
## 494 3 11
## 495 8 21
## 496 1 1
## 497 2 4
## 498 1 2
## 499 1 1
## 500 1 1
## 501 1 1
## 502 3 6
## 503 1 1
## 504 2 4
## 505 4 11
## 506 4 8
## 507 4 8
## 508 8 24
## 509 6 16
## 510 2 5
## 511 2 4
## 512 2 6
## 513 4 8
## 514 2 6
## 515 3 11
## 516 16 43
## 517 3 9
## 518 3 5
## 519 5 9
## 520 400 1119
## 521 1 1
## 522 1 5
## 523 1 3
## 524 1 2
## 525 1 3
## 526 2 3
## 527 1 5
## 528 2 4
## 529 1 5
## 530 1 2
## 531 1 2
## 532 3 7
## 533 6 20
## 534 15 45
## 535 2 4
## 536 28 58
## 537 28 58
## 538 3 7
## 539 3 12
## 540 1 1
## 541 1 1
## 542 1 2
## 543 1 2
## 544 1 2
## 545 1 3
## 546 1 2
## 547 1 3
## 548 1 2
## 549 1 1
## 550 1 1
## 551 1 2
## 552 1 2
## 553 1 2
## 554 1 2
## 555 1 2
## 556 1 2
## 557 1 4
## 558 1 1
## 559 1 2
## 560 1 2
## 561 1 1
## 562 1 1
## 563 1 1
## 564 1 2
## 565 1 1
## 566 1 1
## 567 1 1
## 568 1 2
## 569 1 2
## 570 1 1
## 571 1 1
## 572 1 3
## 573 1 1
## 574 1 1
## 575 1 1
## 576 1 3
## 577 1 3
## 578 1 1
## 579 1 1
## 580 1 1
## 581 1 1
## 582 3 7
## 583 3 7
## 584 8 21
## 585 8 21
## 586 5 12
## 587 4 12
## 588 3 12
## 589 4 12
## 590 3 12
## 591 4 12
## 592 50 127
## 593 8 18
## 594 3 7
## 595 3 8
## 596 4 12
## 597 2 4
## 598 6 16
## 599 1 2
## 600 1 6
## 601 1 4
## 602 16 39
## 603 41 97
## 604 25 56
## 605 25 56
## 606 3 8
## 607 48 124
## 608 4 10
## 609 3 9
## 610 5 13
## 611 4 10
## 612 3 9
## 613 2 7
## 614 2 7
## 615 3 5
## 616 2 2
## 617 2 8
## 618 4 12
## 619 1 1
## 620 1 1
## 621 1 1
## 622 1 1
## 623 1 1
## 624 1 3
## 625 1 3
## 626 1 3
## 627 1 3
## 628 1 1
## 629 1 3
## 630 1 1
## 631 1 1
## 632 1 3
## 633 1 2
## 634 1 2
## 635 1 2
## 636 1 1
## 637 1 1
## 638 1 3
## 639 1 1
## 640 1 2
## 641 1 3
## 642 1 3
## 643 1 1
## 644 1 1
## 645 1 3
## 646 1 3
## 647 1 2
## 648 2 5
## 649 2 5
## 650 2 6
## 651 26 56
## 652 5 15
## 653 4 12
## 654 1 1
## 655 2 2
## 656 1 2
## 657 2 2
## 658 2 4
## 659 2 3
## 660 2 2
## 661 1 3
## 662 40 98
## 663 3 11
## 664 2 7
## 665 9 23
## 666 12 23
## 667 30 81
## 668 21 50
## 669 32 76
## 670 32 76
## 671 2 8
## 672 48 126
## 673 48 126
## 674 8 18
## 675 8 18
## 676 40 96
## 677 15 38
## 678 4 12
## 679 5 14
## 680 3 6
## 681 55 146
## 682 55 146
## 683 55 146
## 684 55 146
## 685 55 146
## 686 8 14
## 687 31 75
## 688 10 23
## 689 8 23
## 690 8 23
## 691 8 23
## 692 3 8
## 693 2 3
## 694 2 3
## 695 2 3
## 696 1 3
## 697 1 4
## 698 1 1
## 699 1 1
## 700 1 2
## 701 1 2
## 702 1 1
## 703 1 1
## 704 1 2
## 705 1 2
## 706 1 3
## 707 1 2
## 708 1 2
## 709 1 1
## 710 1 5
## 711 1 1
## 712 1 1
## 713 1 1
## 714 1 2
## 715 1 1
## 716 1 1
## 717 1 2
## 718 1 1
## 719 2 3
## 720 2 5
## 721 2 7
## 722 2 2
## 723 2 3
## 724 4 13
## 725 7 17
## 726 55 148
## 727 55 148
## 728 55 148
## 729 3 13
## 730 1 6
## 731 1 2
## 732 1 3
## 733 2 9
## 734 1 2
## 735 1 6
## 736 2 7
## 737 3 9
## 738 3 11
## 739 3 7
## 740 1 3
## 741 1 2
## 742 1 8
## 743 1 2
## 744 1 4
## 745 1 5
## 746 1 5
## 747 1 2
## 748 1 4
## 749 1 1
## 750 1 3
## 751 1 4
## 752 1 2
## 753 1 4
## 754 26 60
## 755 62 168
## 756 62 168
## 757 3 9
## 758 4 13
## 759 13 32
## 760 2 3
## 761 1 3
## 762 2 8
## 763 1 1
## 764 162 444
## 765 60 170
## 766 4 11
## 767 2 7
## 768 2 7
## 769 2 7
## 770 1 4
## 771 1 2
## 772 1 4
## 773 1 4
## 774 1 1
## 775 1 5
## 776 1 2
## 777 1 2
## 778 1 2
## 779 1 5
## 780 1 3
## 781 1 1
## 782 1 3
## 783 1 3
## 784 20 57
## 785 25 58
## 786 9 25
## 787 2 8
## 788 25 60
## 789 336 922
## 790 5 11
## 791 4 17
## 792 162 453
## 793 8 23
## 794 13 28
## 795 5 18
## 796 75 211
## 797 1 4
## 798 2 9
## 799 2 10
## 800 3 6
## 801 21 59
## 802 21 59
## 803 21 59
## 804 1 1
## 805 1 6
## 806 1 6
## 807 1 6
## 808 1 2
## 809 1 4
## 810 1 6
## 811 1 2
## 812 1 1
## 813 1 2
## 814 1 3
## 815 1 2
## 816 1 5
## 817 1 1
## 818 1 2
## 819 1 1
## 820 1 6
## 821 1 4
## 822 1 2
## 823 1 6
## 824 14 34
## 825 107 289
## 826 19 57
## 827 3 8
## 828 1 3
## 829 3 6
## 830 7 17
## 831 1 7
## 832 2 8
## 833 1 3
## 834 1 2
## 835 1 2
## 836 1 3
## 837 28 82
## 838 9 36
## 839 3 12
## 840 2 10
## 841 4 9
## 842 107 291
## 843 4 11
## 844 5 10
## 845 62 184
## 846 8 23
## 847 67 192
## 848 2 7
## 849 2 7
## 850 22 63
## 851 4 10
## 852 1 4
## 853 1 4
## 854 1 7
## 855 1 3
## 856 1 6
## 857 1 7
## 858 1 5
## 859 1 5
## 860 2 4
## 861 6 25
## 862 4 10
## 863 5 18
## 864 3 13
## 865 3 15
## 866 9 23
## 867 11 41
## 868 1 3
## 869 1 6
## 870 1 3
## 871 1 3
## 872 1 6
## 873 1 1
## 874 3 11
## 875 65 184
## 876 3 5
## 877 3 8
## 878 3 14
## 879 3 8
## 880 3 8
## 881 33 110
## 882 6 23
## 883 1 2
## 884 1 6
## 885 1 2
## 886 1 3
## 887 1 8
## 888 1 4
## 889 1 2
## 890 1 2
## 891 1 2
## 892 1 5
## 893 13 44
## 894 2 3
## 895 23 70
## 896 1 8
## 897 1 5
## 898 1 4
## 899 3 16
## 900 20 60
## 901 2 8
## 902 2 12
## 903 2 8
## 904 1 5
## 905 1 8
## 906 1 4
## 907 1 3
## 908 1 4
## 909 2 11
## 910 1 6
## 911 6 20
## 912 6 20
## 913 2 7
## 914 2 7
## 915 22 70
## 916 10 37
## 917 10 37
## 918 1 3
## 919 1 4
## 920 12 42
## 921 15 49
## 922 18 59
## 923 2 12
## 924 1 5
## 925 7 33
## 926 2 17
## 927 3 20
## 928 10 34
## 929 7 25
## 930 12 52
## 931 2 15
## 932 1 5
## 933 6 32
## 934 1 7
## 935 1 8
## 936 5 26
## 937 21 81
## 938 1 9
## 939 5 17
## 940 6 30
## 941 23 85
## 942 3 22
## 943 26 95
## 944 17 75
## 945 7 28
## 946 30 106
## 947 1 15
## 948 16 70
## 949 18 79
## 950 3 21
## 951 17 86
## 952 3 26
## 953 1 17
## 954 24 104
## 955 23 97
## 956 1 14
## 957 22 108
## 958 4 35
## 959 2 20
## 960 0 0
## 961 0 0
## 962 0 0
## 963 0 0
## 964 0 2
## 965 0 0
## 966 0 0
## 967 0 0
## 968 0 0
## 969 0 0
## 970 0 0
## 971 0 0
## 972 0 0
## 973 0 0
## 974 0 0
## 975 0 2
## 976 0 0
## 977 0 0
## 978 0 1
## 979 0 0
## 980 0 1
## 981 0 0
## 982 0 0
## 983 0 0
## 984 0 0
## 985 0 0
## 986 0 0
## 987 0 0
## 988 0 0
## 989 0 1
## 990 0 0
## 991 0 1
## 992 0 0
## 993 0 0
## 994 0 0
## 995 0 1
## 996 0 0
## 997 0 2
## 998 0 0
## 999 0 1
## 1000 0 0
## 1001 0 0
## 1002 0 0
## 1003 0 0
## 1004 0 0
## 1005 0 0
## 1006 0 0
## 1007 0 0
## 1008 0 0
## 1009 0 0
## 1010 0 0
## 1011 0 0
## 1012 0 1
## 1013 0 0
## 1014 0 0
## 1015 0 0
## 1016 0 0
## 1017 0 0
## 1018 0 0
## 1019 0 0
## 1020 0 0
## 1021 0 0
## 1022 0 0
## 1023 0 0
## 1024 0 0
## 1025 0 0
## 1026 0 0
## 1027 0 0
## 1028 0 0
## 1029 0 0
## 1030 0 0
## 1031 0 0
## 1032 0 1
## 1033 0 1
## 1034 0 0
## 1035 0 1
## 1036 0 1
## 1037 0 1
## 1038 0 0
## 1039 0 0
## 1040 0 0
## 1041 0 0
## 1042 0 1
## 1043 0 0
## 1044 0 0
## 1045 0 0
## 1046 0 0
## 1047 0 1
## 1048 0 0
## 1049 0 2
## 1050 0 5
## 1051 0 0
## 1052 0 0
## 1053 0 0
## 1054 0 0
## 1055 0 0
## 1056 0 0
## 1057 0 1
## 1058 0 1
## 1059 0 1
## 1060 0 0
## 1061 0 0
## 1062 0 0
## 1063 0 0
## 1064 0 0
## 1065 0 0
## 1066 0 1
## 1067 0 0
## 1068 0 0
## 1069 0 0
## 1070 0 0
## 1071 0 0
## 1072 0 0
## 1073 0 2
## 1074 0 0
## 1075 0 0
## 1076 0 0
## 1077 0 0
## 1078 0 1
## 1079 0 0
## 1080 0 0
## 1081 0 0
## 1082 0 0
## 1083 0 0
## 1084 0 0
## 1085 0 0
## 1086 0 0
## 1087 0 1
## 1088 0 1
## 1089 0 0
## 1090 0 0
## 1091 0 0
## 1092 0 0
## 1093 0 0
## 1094 0 0
## 1095 0 1
## 1096 0 0
## 1097 0 0
## 1098 0 18
## 1099 0 0
## 1100 0 0
## 1101 0 0
## 1102 0 1
## 1103 0 0
## 1104 0 0
## 1105 0 0
## 1106 0 0
## 1107 0 0
## 1108 0 0
## 1109 0 0
## 1110 0 3
## 1111 0 0
## 1112 0 1
## 1113 0 1
## 1114 0 1
## 1115 0 0
## 1116 0 0
## 1117 0 1
## 1118 0 1
## 1119 0 0
## 1120 0 1
## 1121 0 0
## 1122 0 1
## 1123 0 0
## 1124 0 2
## 1125 0 3
## 1126 0 0
## 1127 0 1
## 1128 0 0
## 1129 0 0
## 1130 0 0
## 1131 0 0
## 1132 0 0
## 1133 0 0
## 1134 0 0
## 1135 0 0
## 1136 0 0
## 1137 0 0
## 1138 0 0
## 1139 0 1
## 1140 0 0
## 1141 0 1
## 1142 0 0
## 1143 0 0
## 1144 0 0
## 1145 0 0
## 1146 0 1
## 1147 0 0
## 1148 0 1
## 1149 0 6
## 1150 0 1
## 1151 0 0
## 1152 0 0
## 1153 0 1
## 1154 0 0
## 1155 0 0
## 1156 0 1
## 1157 0 0
## 1158 0 0
## 1159 0 0
## 1160 0 0
## 1161 0 0
## 1162 0 0
## 1163 0 0
## 1164 0 2
## 1165 0 0
## 1166 0 0
## 1167 0 0
## 1168 0 0
## 1169 0 1
## 1170 0 0
## 1171 0 1
## 1172 0 0
## 1173 0 1
## 1174 0 0
## 1175 0 0
## 1176 0 0
## 1177 0 0
## 1178 0 0
## 1179 0 0
## 1180 0 0
## 1181 0 0
## 1182 0 0
## 1183 0 0
## 1184 0 0
## 1185 0 0
## 1186 0 0
## 1187 0 1
## 1188 0 0
## 1189 0 0
## 1190 0 0
## 1191 0 0
## 1192 0 0
## 1193 0 0
## 1194 0 0
## 1195 0 0
## 1196 0 0
## 1197 0 0
## 1198 0 0
## 1199 0 0
## 1200 0 1
## 1201 0 0
## 1202 0 0
## 1203 0 0
## 1204 0 1
## 1205 0 0
## 1206 0 0
## 1207 0 0
## 1208 0 0
## 1209 0 0
## 1210 0 0
## 1211 0 0
## 1212 0 0
## 1213 0 2
## 1214 0 0
## 1215 0 0
## 1216 0 0
## 1217 0 0
## 1218 0 0
## 1219 0 0
## 1220 0 0
## 1221 0 0
## 1222 0 0
## 1223 0 1
## 1224 0 0
## 1225 0 0
## 1226 0 1
## 1227 0 0
## 1228 0 0
## 1229 0 1
## 1230 0 0
## 1231 0 0
## 1232 0 0
## 1233 0 0
## 1234 0 0
## 1235 0 0
## 1236 0 0
## 1237 0 0
## 1238 0 0
## 1239 0 1
## 1240 0 0
## 1241 0 1
## 1242 0 0
## 1243 0 0
## 1244 0 0
## 1245 0 0
## 1246 0 1
## 1247 0 0
## 1248 0 0
## 1249 0 0
## 1250 0 0
## 1251 0 0
## 1252 0 0
## 1253 0 0
## 1254 0 0
## 1255 0 0
## 1256 0 0
## 1257 0 0
## 1258 0 1
## 1259 0 0
## 1260 0 0
## 1261 0 0
## 1262 0 0
## 1263 0 0
## 1264 0 0
## 1265 0 0
## 1266 0 0
## 1267 0 0
## 1268 0 0
## 1269 0 0
## 1270 0 0
## 1271 0 0
## 1272 0 0
## 1273 0 0
## 1274 0 0
## 1275 0 0
## 1276 0 0
## 1277 0 0
## 1278 0 0
## 1279 0 0
## 1280 0 0
## 1281 0 0
## 1282 0 0
## 1283 0 0
## 1284 0 0
## 1285 0 0
## 1286 0 0
## 1287 0 0
## 1288 0 0
## 1289 0 0
## 1290 0 0
## 1291 0 0
## 1292 0 0
## 1293 0 0
## 1294 0 0
## 1295 0 0
## 1296 0 0
## 1297 0 0
## 1298 0 0
## 1299 0 1
## 1300 0 0
## 1301 0 0
## 1302 0 1
## 1303 0 0
## 1304 0 0
## 1305 0 0
## 1306 0 0
## 1307 0 0
## 1308 0 0
## 1309 0 0
## 1310 0 0
## 1311 0 0
## 1312 0 1
## 1313 0 0
## 1314 0 1
## 1315 0 1
## 1316 0 0
## 1317 0 0
## 1318 0 0
## 1319 0 0
## 1320 0 0
## 1321 0 1
## 1322 0 0
## 1323 0 0
## 1324 0 0
## 1325 0 1
## 1326 0 1
## 1327 0 0
## 1328 0 0
## 1329 0 0
## 1330 0 0
## 1331 0 0
## 1332 0 0
## 1333 0 0
## 1334 0 0
## 1335 0 0
## 1336 0 0
## 1337 0 0
## 1338 0 0
## 1339 0 0
## 1340 0 0
## 1341 0 0
## 1342 0 0
## 1343 0 1
## 1344 0 0
## 1345 0 0
## 1346 0 0
## 1347 0 0
## 1348 0 0
## 1349 0 0
## 1350 0 0
## 1351 0 0
## 1352 0 1
## 1353 0 0
## 1354 0 0
## 1355 0 3
## 1356 0 0
## 1357 0 1
## 1358 0 0
## 1359 0 0
## 1360 0 0
## 1361 0 0
## 1362 0 0
## 1363 0 0
## 1364 0 1
## 1365 0 1
## 1366 0 0
## 1367 0 0
## 1368 0 0
## 1369 0 0
## 1370 0 0
## 1371 0 0
## 1372 0 0
## 1373 0 0
## 1374 0 0
## 1375 0 0
## 1376 0 0
## 1377 0 0
## 1378 0 0
## 1379 0 0
## 1380 0 0
## 1381 0 0
## 1382 0 0
## 1383 0 0
## 1384 0 0
## 1385 0 0
## 1386 0 0
## 1387 0 0
## 1388 0 1
## 1389 0 0
## 1390 0 0
## 1391 0 1
## 1392 0 0
## 1393 0 0
## 1394 0 0
## 1395 0 0
## 1396 0 1
## 1397 0 0
## 1398 0 0
## 1399 0 0
## 1400 0 0
## 1401 0 0
## 1402 0 4
## 1403 0 0
## 1404 0 0
## 1405 0 0
## 1406 0 0
## 1407 0 0
## 1408 0 0
## 1409 0 0
## 1410 0 0
## 1411 0 0
## 1412 0 1
## 1413 0 0
## 1414 0 0
## 1415 0 0
## 1416 0 0
## 1417 0 0
## 1418 0 0
## 1419 0 0
## 1420 0 2
## 1421 0 0
## 1422 0 1
## 1423 0 0
## 1424 0 0
## 1425 0 0
## 1426 0 5
## 1427 0 0
## 1428 0 0
## 1429 0 0
## 1430 0 0
## 1431 0 0
## 1432 0 1
## 1433 0 0
## 1434 0 1
## 1435 0 0
## 1436 0 0
## 1437 0 1
## 1438 0 1
## 1439 0 0
## 1440 0 0
## 1441 0 0
## 1442 0 0
## 1443 0 0
## 1444 0 0
## 1445 0 0
## 1446 0 0
## 1447 0 0
## 1448 0 0
## 1449 0 0
## 1450 0 0
## 1451 0 0
## 1452 0 1
## 1453 0 0
## 1454 0 0
## 1455 0 1
## 1456 0 0
## 1457 0 0
## 1458 0 1
## 1459 0 0
## 1460 0 0
## 1461 0 0
## 1462 0 0
## 1463 0 0
## 1464 0 0
## 1465 0 0
## 1466 0 0
## 1467 0 0
## 1468 0 0
## 1469 0 0
## 1470 0 0
## 1471 0 0
## 1472 0 0
## 1473 0 0
## 1474 0 0
## 1475 0 0
## 1476 0 0
## 1477 0 0
## 1478 0 0
## 1479 0 0
## 1480 0 0
## 1481 0 0
## 1482 0 5
## 1483 0 0
## 1484 0 1
## 1485 0 0
## 1486 0 1
## 1487 0 0
## 1488 0 0
## 1489 0 0
## 1490 0 0
## 1491 0 0
## 1492 0 0
## 1493 0 0
## 1494 0 0
## 1495 0 0
## 1496 0 0
## 1497 0 0
## 1498 0 0
## 1499 0 2
## 1500 0 0
## 1501 0 0
## 1502 0 0
## 1503 0 0
## 1504 0 0
## 1505 0 0
## 1506 0 0
## 1507 0 1
## 1508 0 0
## 1509 0 1
## 1510 0 0
## 1511 0 0
## 1512 0 0
## 1513 0 0
## 1514 0 0
## 1515 0 0
## 1516 0 0
## 1517 0 0
## 1518 0 0
## 1519 0 0
## 1520 0 0
## 1521 0 0
## 1522 0 0
## 1523 0 0
## 1524 0 0
## 1525 0 0
## 1526 0 1
## 1527 0 0
## 1528 0 1
## 1529 0 0
## 1530 0 1
## 1531 0 1
## 1532 0 1
## 1533 0 0
## 1534 0 0
## 1535 0 0
## 1536 0 0
## 1537 0 0
## 1538 0 0
## 1539 0 1
## 1540 0 0
## 1541 0 0
## 1542 0 0
## 1543 0 0
## 1544 0 0
## 1545 0 0
## 1546 0 0
## 1547 0 0
## 1548 0 0
## 1549 0 0
## 1550 0 0
## 1551 0 0
## 1552 0 0
## 1553 0 1
## 1554 0 0
## 1555 0 0
## 1556 0 1
## 1557 0 0
## 1558 0 0
## 1559 0 1
## 1560 0 0
## 1561 0 0
## 1562 0 0
## 1563 0 0
## 1564 0 0
## 1565 0 0
## 1566 0 0
## 1567 0 0
## 1568 0 0
## 1569 0 0
## 1570 0 0
## 1571 0 0
## 1572 0 1
## 1573 0 0
## 1574 0 0
## 1575 0 0
## 1576 0 0
## 1577 0 0
## 1578 0 0
## 1579 0 0
## 1580 0 0
## 1581 0 0
## 1582 0 0
## 1583 0 0
## 1584 0 1
## 1585 0 2
## 1586 0 0
## 1587 0 0
## 1588 0 1
## 1589 0 0
## 1590 0 0
## 1591 0 0
## 1592 0 1
## 1593 0 1
## 1594 0 0
## 1595 0 2
## 1596 0 0
## 1597 0 0
## 1598 0 0
## 1599 0 1
## 1600 0 0
## 1601 0 0
## 1602 0 0
## 1603 0 0
## 1604 0 0
## 1605 0 0
## 1606 0 1
## 1607 0 0
## 1608 0 4
## 1609 0 0
## 1610 0 0
## 1611 0 0
## 1612 0 0
## 1613 0 0
## 1614 0 0
## 1615 0 0
## 1616 0 0
## 1617 0 0
## 1618 0 2
## 1619 0 0
## 1620 0 0
## 1621 0 0
## 1622 0 0
## 1623 0 0
## 1624 0 0
## 1625 0 0
## 1626 0 0
## 1627 0 0
## 1628 0 0
## 1629 0 0
## 1630 0 0
## 1631 0 0
## 1632 0 0
## 1633 0 0
## 1634 0 0
## 1635 0 0
## 1636 0 1
## 1637 0 0
## 1638 0 0
## 1639 0 0
## 1640 0 0
## 1641 0 0
## 1642 0 0
## 1643 0 0
## 1644 0 0
## 1645 0 0
## 1646 0 0
## 1647 0 0
## 1648 0 0
## 1649 0 0
## 1650 0 0
## 1651 0 0
## 1652 0 0
## 1653 0 0
## 1654 0 0
## 1655 0 0
## 1656 0 0
## 1657 0 0
## 1658 0 0
## 1659 0 0
## 1660 0 0
## 1661 0 0
## 1662 0 0
## 1663 0 0
## 1664 0 0
## 1665 0 1
## 1666 0 0
## 1667 0 0
## 1668 0 0
## 1669 0 0
## 1670 0 0
## 1671 0 0
## 1672 0 0
## 1673 0 1
## 1674 0 0
## 1675 0 0
## 1676 0 0
## 1677 0 0
## 1678 0 1
## 1679 0 1
## 1680 0 0
## 1681 0 0
## 1682 0 0
## 1683 0 0
## 1684 0 0
## 1685 0 0
## 1686 0 0
## 1687 0 0
## 1688 0 1
## 1689 0 0
## 1690 0 0
## 1691 0 0
## 1692 0 2
## 1693 0 0
## 1694 0 1
## 1695 0 0
## 1696 0 0
## 1697 0 1
## 1698 0 1
## 1699 0 0
## 1700 0 1
## 1701 0 0
## 1702 0 3
## 1703 0 1
## 1704 0 1
## 1705 0 1
## 1706 0 0
## 1707 0 1
## 1708 0 0
## 1709 0 0
## 1710 0 0
## 1711 0 0
## 1712 0 0
## 1713 0 0
## 1714 0 0
## 1715 0 0
## 1716 0 0
## 1717 0 0
## 1718 0 0
## 1719 0 1
## 1720 0 0
## 1721 0 0
## 1722 0 0
## 1723 0 0
## 1724 0 0
## 1725 0 0
## 1726 0 0
## 1727 0 0
## 1728 0 0
## 1729 0 0
## 1730 0 0
## 1731 0 0
## 1732 0 0
## 1733 0 0
## 1734 0 0
## 1735 0 0
## 1736 0 1
## 1737 0 0
## 1738 0 0
## 1739 0 0
## 1740 0 1
## 1741 0 0
## 1742 0 0
## 1743 0 1
## 1744 0 2
## 1745 0 2
## 1746 0 2
## 1747 0 0
## 1748 0 1
## 1749 0 1
## 1750 0 0
## 1751 0 0
## 1752 0 0
## 1753 0 0
## 1754 0 0
## 1755 0 0
## 1756 0 0
## 1757 0 0
## 1758 0 1
## 1759 0 1
## 1760 0 0
## 1761 0 0
## 1762 0 0
## 1763 0 0
## 1764 0 0
## 1765 0 0
## 1766 0 0
## 1767 0 0
## 1768 0 0
## 1769 0 0
## 1770 0 0
## 1771 0 0
## 1772 0 1
## 1773 0 1
## 1774 0 0
## 1775 0 0
## 1776 0 0
## 1777 0 0
## 1778 0 0
## 1779 0 0
## 1780 0 1
## 1781 0 2
## 1782 0 1
## 1783 0 3
## 1784 0 0
## 1785 0 0
## 1786 0 0
## 1787 0 0
## 1788 0 0
## 1789 0 0
## 1790 0 0
## 1791 0 0
## 1792 0 0
## 1793 0 0
## 1794 0 0
## 1795 0 1
## 1796 0 0
## 1797 0 0
## 1798 0 1
## 1799 0 0
## 1800 0 1
## 1801 0 0
## 1802 0 2
## 1803 0 0
## 1804 0 0
## 1805 0 0
## 1806 0 0
## 1807 0 0
## 1808 0 0
## 1809 0 0
## 1810 0 1
## 1811 0 0
## 1812 0 0
## 1813 0 3
## 1814 0 0
## 1815 0 0
## 1816 0 1
## 1817 0 0
## 1818 0 0
## 1819 0 3
## 1820 0 0
## 1821 0 0
## 1822 0 0
## 1823 0 0
## 1824 0 2
## 1825 0 0
## 1826 0 1
## 1827 0 0
## 1828 0 0
## 1829 0 0
## 1830 0 0
## 1831 0 0
## 1832 0 1
## 1833 0 0
## 1834 0 0
## 1835 0 0
## 1836 0 0
## 1837 0 0
## 1838 0 0
## 1839 0 1
## 1840 0 0
## 1841 0 0
## 1842 0 1
## 1843 0 0
## 1844 0 1
## 1845 0 0
## 1846 0 0
## 1847 0 0
## 1848 0 0
## 1849 0 0
## 1850 0 0
## 1851 0 0
## 1852 0 1
## 1853 0 1
## 1854 0 5
## 1855 0 0
## 1856 0 0
## 1857 0 3
## 1858 0 0
## 1859 0 0
## 1860 0 0
## 1861 0 1
## 1862 0 0
## 1863 0 0
## 1864 0 0
## 1865 0 0
## 1866 0 0
## 1867 0 0
## 1868 0 2
## 1869 0 0
## 1870 0 0
## 1871 0 0
## 1872 0 0
## 1873 0 0
## 1874 0 1
## 1875 0 0
## 1876 0 0
## 1877 0 2
## 1878 0 1
## 1879 0 1
## 1880 0 1
## 1881 0 0
## 1882 0 1
## 1883 0 1
## 1884 0 3
## 1885 0 0
## 1886 0 0
## 1887 0 0
## 1888 0 0
## 1889 0 0
## 1890 0 0
## 1891 0 0
## 1892 0 0
## 1893 0 0
## 1894 0 0
## 1895 0 0
## 1896 0 0
## 1897 0 0
## 1898 0 0
## 1899 0 2
## 1900 0 1
## 1901 0 1
## 1902 0 0
## 1903 0 0
## 1904 0 0
## 1905 0 0
## 1906 0 0
## 1907 0 0
## 1908 0 0
## 1909 0 0
## 1910 0 0
## 1911 0 0
## 1912 0 1
## 1913 0 2
## 1914 0 0
## 1915 0 0
## 1916 0 1
## 1917 0 1
## 1918 0 0
## 1919 0 2
## 1920 0 1
## 1921 0 1
## 1922 0 0
## 1923 0 0
## 1924 0 0
## 1925 0 0
## 1926 0 0
## 1927 0 0
## 1928 0 1
## 1929 0 2
## 1930 0 0
## 1931 0 1
## 1932 0 0
## 1933 0 0
## 1934 0 0
## 1935 0 0
## 1936 0 0
## 1937 0 0
## 1938 0 0
## 1939 0 0
## 1940 0 1
## 1941 0 1
## 1942 0 0
## 1943 0 0
## 1944 0 0
## 1945 0 0
## 1946 0 0
## 1947 0 0
## 1948 0 0
## 1949 0 1
## 1950 0 0
## 1951 0 0
## 1952 0 0
## 1953 0 0
## 1954 0 2
## 1955 0 0
## 1956 0 0
## 1957 0 0
## 1958 0 0
## 1959 0 0
## 1960 0 3
## 1961 0 1
## 1962 0 1
## 1963 0 0
## 1964 0 1
## 1965 0 1
## 1966 0 1
## 1967 0 0
## 1968 0 1
## 1969 0 0
## 1970 0 1
## 1971 0 2
## 1972 0 0
## 1973 0 0
## 1974 0 0
## 1975 0 0
## 1976 0 0
## 1977 0 0
## 1978 0 0
## 1979 0 0
## 1980 0 0
## 1981 0 0
## 1982 0 0
## 1983 0 0
## 1984 0 0
## 1985 0 0
## 1986 0 0
## 1987 0 0
## 1988 0 2
## 1989 0 1
## 1990 0 0
## 1991 0 1
## 1992 0 0
## 1993 0 0
## 1994 0 0
## 1995 0 0
## 1996 0 1
## 1997 0 0
## 1998 0 0
## 1999 0 0
## 2000 0 0
## 2001 0 0
## 2002 0 0
## 2003 0 2
## 2004 0 0
## 2005 0 0
## 2006 0 1
## 2007 0 0
## 2008 0 0
## 2009 0 0
## 2010 0 0
## 2011 0 0
## 2012 0 0
## 2013 0 0
## 2014 0 0
## 2015 0 0
## 2016 0 0
## 2017 0 0
## 2018 0 1
## 2019 0 0
## 2020 0 1
## 2021 0 0
## 2022 0 0
## 2023 0 0
## 2024 0 0
## 2025 0 0
## 2026 0 0
## 2027 0 0
## 2028 0 0
## 2029 0 2
## 2030 0 3
## 2031 0 0
## 2032 0 1
## 2033 0 0
## 2034 0 0
## 2035 0 0
## 2036 0 0
## 2037 0 0
## 2038 0 0
## 2039 0 0
## 2040 0 0
## 2041 0 0
## 2042 0 2
## 2043 0 0
## 2044 0 0
## 2045 0 0
## 2046 0 0
## 2047 0 0
## 2048 0 0
## 2049 0 1
## 2050 0 1
## 2051 0 0
## 2052 0 0
## 2053 0 0
## 2054 0 0
## 2055 0 0
## 2056 0 0
## 2057 0 0
## 2058 0 0
## 2059 0 0
## 2060 0 1
## 2061 0 0
## 2062 0 0
## 2063 0 0
## 2064 0 0
## 2065 0 0
## 2066 0 0
## 2067 0 1
## 2068 0 0
## 2069 0 0
## 2070 0 0
## 2071 0 0
## 2072 0 0
## 2073 0 0
## 2074 0 0
## 2075 0 0
## 2076 0 0
## 2077 0 0
## 2078 0 0
## 2079 0 0
## 2080 0 0
## 2081 0 0
## 2082 0 0
## 2083 0 0
## 2084 0 0
## 2085 0 0
## 2086 0 1
## 2087 0 0
## 2088 0 3
## 2089 0 1
## 2090 0 0
## 2091 0 0
## 2092 0 1
## 2093 0 0
## 2094 0 0
## 2095 0 0
## 2096 0 1
## 2097 0 0
## 2098 0 0
## 2099 0 0
## 2100 0 0
## 2101 0 0
## 2102 0 0
## 2103 0 0
## 2104 0 0
## 2105 0 1
## 2106 0 0
## 2107 0 0
## 2108 0 0
## 2109 0 1
## 2110 0 0
## 2111 0 0
## 2112 0 0
## 2113 0 0
## 2114 0 0
## 2115 0 1
## 2116 0 0
## 2117 0 7
## 2118 0 0
## 2119 0 0
## 2120 0 0
## 2121 0 0
## 2122 0 0
## 2123 0 2
## 2124 0 0
## 2125 0 0
## 2126 0 0
## 2127 0 0
## 2128 0 1
## 2129 0 0
## 2130 0 0
## 2131 0 0
## 2132 0 0
## 2133 0 3
## 2134 0 0
## 2135 0 1
## 2136 0 0
## 2137 0 0
## 2138 0 0
## 2139 0 0
## 2140 0 0
## 2141 0 0
## 2142 0 0
## 2143 0 0
## 2144 0 0
## 2145 0 0
## 2146 0 0
## 2147 0 0
## 2148 0 0
## 2149 0 2
## 2150 0 0
## 2151 0 1
## 2152 0 0
## 2153 0 0
## 2154 0 0
## 2155 0 0
## 2156 0 0
## 2157 0 0
## 2158 0 1
## 2159 0 0
## 2160 0 1
## 2161 0 1
## 2162 0 0
## 2163 0 0
## 2164 0 0
## 2165 0 0
## 2166 0 0
## 2167 0 0
## 2168 0 0
## 2169 0 0
## 2170 0 0
## 2171 0 0
## 2172 0 0
## 2173 0 0
## 2174 0 0
## 2175 0 0
## 2176 0 0
## 2177 0 0
## 2178 0 0
## 2179 0 0
## 2180 0 0
## 2181 0 0
## 2182 0 0
## 2183 0 0
## 2184 0 0
## 2185 0 0
## 2186 0 1
## 2187 0 0
## 2188 0 0
## 2189 0 0
## 2190 0 0
## 2191 0 0
## 2192 0 0
## 2193 0 0
## 2194 0 0
## 2195 0 0
## 2196 0 0
## 2197 0 0
## 2198 0 1
## 2199 0 0
## 2200 0 0
## 2201 0 0
## 2202 0 0
## 2203 0 0
## 2204 0 0
## 2205 0 0
## 2206 0 0
## 2207 0 0
## 2208 0 0
## 2209 0 0
## 2210 0 0
## 2211 0 0
## 2212 0 0
## 2213 0 0
## 2214 0 1
## 2215 0 1
## 2216 0 0
## 2217 0 0
## 2218 0 1
## 2219 0 0
## 2220 0 0
## 2221 0 0
## 2222 0 1
## 2223 0 0
## 2224 0 0
## 2225 0 0
## 2226 0 0
## 2227 0 0
## 2228 0 0
## 2229 0 0
## 2230 0 1
## 2231 0 0
## 2232 0 0
## 2233 0 0
## 2234 0 0
## 2235 0 0
## 2236 0 2
## 2237 0 1
## 2238 0 0
## 2239 0 0
## 2240 0 0
## 2241 0 0
## 2242 0 0
## 2243 0 0
## 2244 0 0
## 2245 0 0
## 2246 0 0
## 2247 0 0
## 2248 0 0
## 2249 0 0
## 2250 0 0
## 2251 0 0
## 2252 0 1
## 2253 0 0
## 2254 0 2
## 2255 0 0
## 2256 0 1
## 2257 0 0
## 2258 0 0
## 2259 0 1
## 2260 0 1
## 2261 0 0
## 2262 0 0
## 2263 0 0
## 2264 0 0
## 2265 0 0
## 2266 0 0
## 2267 0 0
## 2268 0 0
## 2269 0 0
## 2270 0 0
## 2271 0 0
## 2272 0 2
## 2273 0 0
## 2274 0 0
## 2275 0 0
## 2276 0 0
## 2277 0 0
## 2278 0 0
## 2279 0 0
## 2280 0 0
## 2281 0 0
## 2282 0 0
## 2283 0 1
## 2284 0 0
## 2285 0 0
## 2286 0 1
## 2287 0 0
## 2288 0 0
## 2289 0 0
## 2290 0 1
## 2291 0 2
## 2292 0 1
## 2293 0 1
## 2294 0 1
## 2295 0 2
## 2296 0 0
## 2297 0 0
## 2298 0 0
## 2299 0 0
## 2300 0 0
## 2301 0 1
## 2302 0 1
## 2303 0 0
## 2304 0 1
## 2305 0 0
## 2306 0 0
## 2307 0 0
## 2308 0 2
## 2309 0 3
## 2310 0 1
## 2311 0 0
## 2312 0 1
## 2313 0 0
## 2314 0 0
## 2315 0 0
## 2316 0 0
## 2317 0 2
## 2318 0 1
## 2319 0 0
## 2320 0 0
## 2321 0 0
## 2322 0 0
## 2323 0 0
## 2324 0 0
## 2325 0 0
## 2326 0 0
## 2327 0 0
## 2328 0 0
## 2329 0 0
## 2330 0 0
## 2331 0 0
## 2332 0 0
## 2333 0 0
## 2334 0 0
## 2335 0 0
## 2336 0 0
## 2337 0 0
## 2338 0 0
## 2339 0 1
## 2340 0 0
## 2341 0 0
## 2342 0 0
## 2343 0 0
## 2344 0 0
## 2345 0 0
## 2346 0 0
## 2347 0 0
## 2348 0 1
## 2349 0 1
## 2350 0 2
## 2351 0 2
## 2352 0 0
## 2353 0 0
## 2354 0 0
## 2355 0 0
## 2356 0 1
## 2357 0 1
## 2358 0 0
## 2359 0 2
## 2360 0 0
## 2361 0 0
## 2362 0 0
## 2363 0 0
## 2364 0 1
## 2365 0 1
## 2366 0 0
## 2367 0 0
## 2368 0 0
## 2369 0 0
## 2370 0 1
## 2371 0 0
## 2372 0 4
## 2373 0 0
## 2374 0 1
## 2375 0 2
## 2376 0 0
## 2377 0 0
## 2378 0 0
## 2379 0 0
## 2380 0 0
## 2381 0 0
## 2382 0 0
## 2383 0 0
## 2384 0 0
## 2385 0 1
## 2386 0 0
## 2387 0 0
## 2388 0 0
## 2389 0 0
## 2390 0 1
## 2391 0 0
## 2392 0 2
## 2393 0 0
## 2394 0 0
## 2395 0 0
## 2396 0 0
## 2397 0 0
## 2398 0 0
## 2399 0 2
## 2400 0 0
## 2401 0 1
## 2402 0 1
## 2403 0 0
## 2404 0 0
## 2405 0 0
## 2406 0 0
## 2407 0 0
## 2408 0 0
## 2409 0 0
## 2410 0 0
## 2411 0 0
## 2412 0 0
## 2413 0 0
## 2414 0 0
## 2415 0 0
## 2416 0 0
## 2417 0 0
## 2418 0 1
## 2419 0 1
## 2420 0 3
## 2421 0 0
## 2422 0 1
## 2423 0 1
## 2424 0 1
## 2425 0 0
## 2426 0 0
## 2427 0 0
## 2428 0 0
## 2429 0 0
## 2430 0 0
## 2431 0 0
## 2432 0 0
## 2433 0 0
## 2434 0 0
## 2435 0 0
## 2436 0 0
## 2437 0 0
## 2438 0 0
## 2439 0 0
## 2440 0 0
## 2441 0 1
## 2442 0 0
## 2443 0 0
## 2444 0 0
## 2445 0 0
## 2446 0 0
## 2447 0 0
## 2448 0 0
## 2449 0 0
## 2450 0 0
## 2451 0 0
## 2452 0 0
## 2453 0 1
## 2454 0 1
## 2455 0 0
## 2456 0 0
## 2457 0 1
## 2458 0 0
## 2459 0 1
## 2460 0 0
## 2461 0 0
## 2462 0 1
## 2463 0 0
## 2464 0 0
## 2465 0 0
## 2466 0 0
## 2467 0 1
## 2468 0 0
## 2469 0 0
## 2470 0 0
## 2471 0 0
## 2472 0 0
## 2473 0 0
## 2474 0 3
## 2475 0 0
## 2476 0 2
## 2477 0 1
## 2478 0 0
## 2479 0 0
## 2480 0 0
## 2481 0 0
## 2482 0 0
## 2483 0 0
## 2484 0 0
## 2485 0 0
## 2486 0 0
## 2487 0 0
## 2488 0 1
## 2489 0 0
## 2490 0 2
## 2491 0 0
## 2492 0 0
## 2493 0 1
## 2494 0 0
## 2495 0 0
## 2496 0 0
## 2497 0 1
## 2498 0 0
## 2499 0 0
## 2500 0 0
## 2501 0 2
## 2502 0 0
## 2503 0 0
## 2504 0 0
## 2505 0 0
## 2506 0 0
## 2507 0 1
## 2508 0 1
## 2509 0 0
## 2510 0 0
## 2511 0 1
## 2512 0 0
## 2513 0 3
## 2514 0 0
## 2515 0 0
## 2516 0 0
## 2517 0 0
## 2518 0 1
## 2519 0 0
## 2520 0 1
## 2521 0 2
## 2522 0 0
## 2523 0 1
## 2524 0 0
## 2525 0 0
## 2526 0 0
## 2527 0 1
## 2528 0 0
## 2529 0 0
## 2530 0 0
## 2531 0 0
## 2532 0 0
## 2533 0 0
## 2534 0 0
## 2535 0 1
## 2536 0 0
## 2537 0 0
## 2538 0 0
## 2539 0 0
## 2540 0 0
## 2541 0 4
## 2542 0 0
## 2543 0 1
## 2544 0 0
## 2545 0 0
## 2546 0 0
## 2547 0 1
## 2548 0 0
## 2549 0 0
## 2550 0 1
## 2551 0 0
## 2552 0 0
## 2553 0 0
## 2554 0 0
## 2555 0 2
## 2556 0 0
## 2557 0 2
## 2558 0 0
## 2559 0 0
## 2560 0 0
## 2561 0 0
## 2562 0 1
## 2563 0 0
## 2564 0 0
## 2565 0 0
## 2566 0 0
## 2567 0 0
## 2568 0 0
## 2569 0 0
## 2570 0 0
## 2571 0 0
## 2572 0 0
## 2573 0 0
## 2574 0 1
## 2575 0 1
## 2576 0 1
## 2577 0 0
## 2578 0 1
## 2579 0 0
## 2580 0 0
## 2581 0 0
## 2582 0 1
## 2583 0 0
## 2584 0 0
## 2585 0 0
## 2586 0 0
## 2587 0 0
## 2588 0 1
## 2589 0 0
## 2590 0 0
## 2591 0 0
## 2592 0 0
## 2593 0 0
## 2594 0 0
## 2595 0 0
## 2596 0 0
## 2597 0 0
## 2598 0 0
## 2599 0 1
## 2600 0 0
## 2601 0 1
## 2602 0 0
## 2603 0 0
## 2604 0 0
## 2605 0 0
## 2606 0 0
## 2607 0 0
## 2608 0 0
## 2609 0 0
## 2610 0 0
## 2611 0 0
## 2612 0 0
## 2613 0 1
## 2614 0 0
## 2615 0 1
## 2616 0 5
## 2617 0 0
## 2618 0 1
## 2619 0 0
## 2620 0 1
## 2621 0 2
## 2622 0 0
## 2623 0 0
## 2624 0 0
## 2625 0 0
## 2626 0 0
## 2627 0 0
## 2628 0 0
## 2629 0 0
## 2630 0 0
## 2631 0 0
## 2632 0 1
## 2633 0 0
## 2634 0 0
## 2635 0 1
## 2636 0 0
## 2637 0 0
## 2638 0 0
## 2639 0 0
## 2640 0 0
## 2641 0 0
## 2642 0 2
## 2643 0 0
## 2644 0 0
## 2645 0 0
## 2646 0 1
## 2647 0 1
## 2648 0 0
## 2649 0 0
## 2650 0 0
## 2651 0 1
## 2652 0 1
## 2653 0 0
## 2654 0 0
## 2655 0 1
## 2656 0 1
## 2657 0 0
## 2658 0 0
## 2659 0 0
## 2660 0 0
## 2661 0 1
## 2662 0 0
## 2663 0 0
## 2664 0 0
## 2665 0 0
## 2666 0 1
## 2667 0 0
## 2668 0 0
## 2669 0 0
## 2670 0 1
## 2671 0 0
## 2672 0 0
## 2673 0 0
## 2674 0 0
## 2675 0 0
## 2676 0 1
## 2677 0 0
## 2678 0 1
## 2679 0 0
## 2680 0 0
## 2681 0 0
## 2682 0 0
## 2683 0 1
## 2684 0 0
## 2685 0 0
## 2686 0 0
## 2687 0 0
## 2688 0 0
## 2689 0 0
## 2690 0 1
## 2691 0 0
## 2692 0 1
## 2693 0 0
## 2694 0 0
## 2695 0 0
## 2696 0 0
## 2697 0 0
## 2698 0 0
## 2699 0 1
## 2700 0 1
## 2701 0 0
## 2702 0 1
## 2703 0 3
## 2704 0 0
## 2705 0 0
## 2706 0 0
## 2707 0 0
## 2708 0 0
## 2709 0 0
## 2710 0 0
## 2711 0 1
## 2712 0 5
## 2713 0 0
## 2714 0 0
## 2715 0 0
## 2716 0 0
## 2717 0 0
## 2718 0 0
## 2719 0 0
## 2720 0 0
## 2721 0 0
## 2722 0 0
## 2723 0 0
## 2724 0 0
## 2725 0 0
## 2726 0 0
## 2727 0 0
## 2728 0 1
## 2729 0 0
## 2730 0 0
## 2731 0 0
## 2732 0 0
## 2733 0 0
## 2734 0 0
## 2735 0 0
## 2736 0 0
## 2737 0 0
## 2738 0 0
## 2739 0 0
## 2740 0 1
## 2741 0 0
## 2742 0 0
## 2743 0 0
## 2744 0 0
## 2745 0 0
## 2746 0 0
## 2747 0 0
## 2748 0 0
## 2749 0 2
## 2750 0 1
## 2751 0 1
## 2752 0 0
## 2753 0 0
## 2754 0 0
## 2755 0 2
## 2756 0 2
## 2757 0 0
## 2758 0 0
## 2759 0 4
## 2760 0 1
## 2761 0 0
## 2762 0 0
## 2763 0 0
## 2764 0 0
## 2765 0 0
## 2766 0 0
## 2767 0 0
## 2768 0 0
## 2769 0 1
## 2770 0 0
## 2771 0 1
## 2772 0 0
## 2773 0 2
## 2774 0 0
## 2775 0 0
## 2776 0 0
## 2777 0 0
## 2778 0 0
## 2779 0 0
## 2780 0 0
## 2781 0 0
## 2782 0 1
## 2783 0 1
## 2784 0 1
## 2785 0 0
## 2786 0 0
## 2787 0 0
## 2788 0 0
## 2789 0 0
## 2790 0 0
## 2791 0 0
## 2792 0 0
## 2793 0 0
## 2794 0 0
## 2795 0 1
## 2796 0 1
## 2797 0 0
## 2798 0 0
## 2799 0 0
## 2800 0 0
## 2801 0 1
## 2802 0 0
## 2803 0 0
## 2804 0 2
## 2805 0 0
## 2806 0 1
## 2807 0 0
## 2808 0 0
## 2809 0 0
## 2810 0 0
## 2811 0 0
## 2812 0 0
## 2813 0 0
## 2814 0 0
## 2815 0 1
## 2816 0 0
## 2817 0 0
## 2818 0 0
## 2819 0 0
## 2820 0 1
## 2821 0 0
## 2822 0 0
## 2823 0 0
## 2824 0 0
## 2825 0 0
## 2826 0 0
## 2827 0 0
## 2828 0 0
## 2829 0 0
## 2830 0 0
## 2831 0 0
## 2832 0 0
## 2833 0 0
## 2834 0 1
## 2835 0 1
## 2836 0 0
## 2837 0 0
## 2838 0 1
## 2839 0 0
## 2840 0 1
## 2841 0 0
## 2842 0 0
## 2843 0 0
## 2844 0 0
## 2845 0 0
## 2846 0 0
## 2847 0 0
## 2848 0 0
## 2849 0 0
## 2850 0 0
## 2851 0 0
## 2852 0 2
## 2853 0 0
## 2854 0 0
## 2855 0 0
## 2856 0 0
## 2857 0 0
## 2858 0 0
## 2859 0 0
## 2860 0 0
## 2861 0 0
## 2862 0 0
## 2863 0 0
## 2864 0 0
## 2865 0 0
## 2866 0 0
## 2867 0 0
## 2868 0 0
## 2869 0 0
## 2870 0 0
## 2871 0 0
## 2872 0 0
## 2873 0 1
## 2874 0 0
## 2875 0 0
## 2876 0 0
## 2877 0 0
## 2878 0 0
## 2879 0 0
## 2880 0 0
## 2881 0 0
## 2882 0 1
## 2883 0 0
## 2884 0 0
## 2885 0 0
## 2886 0 0
## 2887 0 0
## 2888 0 0
## 2889 0 0
## 2890 0 0
## 2891 0 0
## 2892 0 0
## 2893 0 0
## 2894 0 0
## 2895 0 0
## 2896 0 0
## 2897 0 0
## 2898 0 0
## 2899 0 0
## 2900 0 0
## 2901 0 0
## 2902 0 0
## 2903 0 0
## 2904 0 0
## 2905 0 1
## 2906 0 0
## 2907 0 0
## 2908 0 0
## 2909 0 0
## 2910 0 2
## 2911 0 0
## 2912 0 0
## 2913 0 0
## 2914 0 0
## 2915 0 1
## 2916 0 0
## 2917 0 0
## 2918 0 0
## 2919 0 0
## 2920 0 0
## 2921 0 0
## 2922 0 0
## 2923 0 0
## 2924 0 0
## 2925 0 0
## 2926 0 0
## 2927 0 0
## 2928 0 0
## 2929 0 0
## 2930 0 0
## 2931 0 0
## 2932 0 0
## 2933 0 0
## 2934 0 0
## 2935 0 0
## 2936 0 0
## 2937 0 1
## 2938 0 0
## 2939 0 0
## 2940 0 0
## 2941 0 0
## 2942 0 0
## 2943 0 0
## 2944 0 0
## 2945 0 0
## 2946 0 0
## 2947 0 0
## 2948 0 2
## 2949 0 0
## 2950 0 1
## 2951 0 0
## 2952 0 0
## 2953 0 0
## 2954 0 0
## 2955 0 0
## 2956 0 0
## 2957 0 0
## 2958 0 0
## 2959 0 1
## 2960 0 0
## 2961 0 0
## 2962 0 4
## 2963 0 0
## 2964 0 2
## 2965 0 0
## 2966 0 0
## 2967 0 1
## 2968 0 1
## 2969 0 0
## 2970 0 0
## 2971 0 0
## 2972 0 0
## 2973 0 0
## 2974 0 0
## 2975 0 0
## 2976 0 5
## 2977 0 0
## 2978 0 0
## 2979 0 0
## 2980 0 0
## 2981 0 2
## 2982 0 0
## 2983 0 0
## 2984 0 1
## 2985 0 0
## 2986 0 0
## 2987 0 0
## 2988 0 0
## 2989 0 0
## 2990 0 0
## 2991 0 0
## 2992 0 0
## 2993 0 2
## 2994 0 0
## 2995 0 0
## 2996 0 0
## 2997 0 0
## 2998 0 0
## 2999 0 1
## 3000 0 0
## 3001 0 0
## 3002 0 0
## 3003 0 0
## 3004 0 0
## 3005 0 0
## 3006 0 0
## 3007 0 0
## 3008 0 0
## 3009 0 0
## 3010 0 0
## 3011 0 0
## 3012 0 0
## 3013 0 0
## 3014 0 0
## 3015 0 0
## 3016 0 0
## 3017 0 0
## 3018 0 1
## 3019 0 0
## 3020 0 0
## 3021 0 0
## 3022 0 0
## 3023 0 0
## 3024 0 0
## 3025 0 0
## 3026 0 0
## 3027 0 0
## 3028 0 0
## 3029 0 2
## 3030 0 0
## 3031 0 0
## 3032 0 1
## 3033 0 0
## 3034 0 1
## 3035 0 0
## 3036 0 0
## 3037 0 0
## 3038 0 0
## 3039 0 0
## 3040 0 0
## 3041 0 0
## 3042 0 1
## 3043 0 0
## 3044 0 0
## 3045 0 1
## 3046 0 0
## 3047 0 0
## 3048 0 0
## 3049 0 0
## 3050 0 0
## 3051 0 0
## 3052 0 0
## 3053 0 0
## 3054 0 0
## 3055 0 0
## 3056 0 0
## 3057 0 0
## 3058 0 1
## 3059 0 0
## 3060 0 0
## 3061 0 0
## 3062 0 0
## 3063 0 0
## 3064 0 1
## 3065 0 0
## 3066 0 1
## 3067 0 0
## 3068 0 0
## 3069 0 0
## 3070 0 1
## 3071 0 0
## 3072 0 1
## 3073 0 1
## 3074 0 1
## 3075 0 1
## 3076 0 0
## 3077 0 0
## 3078 0 0
## 3079 0 0
## 3080 0 1
## 3081 0 0
## 3082 0 1
## 3083 0 1
## 3084 0 0
## 3085 0 0
## 3086 0 0
## 3087 0 1
## 3088 0 1
## 3089 0 0
## 3090 0 0
## 3091 0 0
## 3092 0 0
## 3093 0 1
## 3094 0 0
## 3095 0 1
## 3096 0 1
## 3097 0 0
## 3098 0 0
## 3099 0 0
## 3100 0 0
## 3101 0 0
## 3102 0 0
## 3103 0 0
## 3104 0 0
## 3105 0 0
## 3106 0 0
## 3107 0 0
## 3108 0 0
## 3109 0 0
## 3110 0 0
## 3111 0 0
## 3112 0 0
## 3113 0 0
## 3114 0 0
## 3115 0 0
## 3116 0 2
## 3117 0 0
## 3118 0 0
## 3119 0 0
## 3120 0 0
## 3121 0 0
## 3122 0 1
## 3123 0 0
## 3124 0 1
## 3125 0 0
## 3126 0 0
## 3127 0 0
## 3128 0 0
## 3129 0 0
## 3130 0 1
## 3131 0 0
## 3132 0 0
## 3133 0 0
## 3134 0 0
## 3135 0 0
## 3136 0 0
## 3137 0 0
## 3138 0 0
## 3139 0 0
## 3140 0 0
## 3141 0 0
## 3142 0 0
## 3143 0 0
## 3144 0 0
## 3145 0 0
## 3146 0 1
## 3147 0 1
## 3148 0 0
## 3149 0 0
## 3150 0 2
## 3151 0 0
## 3152 0 0
## 3153 0 0
## 3154 0 0
## 3155 0 0
## 3156 0 0
## 3157 0 0
## 3158 0 0
## 3159 0 0
## 3160 0 0
## 3161 0 0
## 3162 0 0
## 3163 0 0
## 3164 0 0
## 3165 0 0
## 3166 0 0
## 3167 0 0
## 3168 0 0
## 3169 0 0
## 3170 0 0
## 3171 0 0
## 3172 0 0
## 3173 0 0
## 3174 0 0
## 3175 0 1
## 3176 0 0
## 3177 0 0
## 3178 0 0
## 3179 0 0
## 3180 0 0
## 3181 0 1
## 3182 0 3
## 3183 0 1
## 3184 0 1
## 3185 0 0
## 3186 0 0
## 3187 0 0
## 3188 0 0
## 3189 0 0
## 3190 0 0
## 3191 0 1
## 3192 0 1
## 3193 0 0
## 3194 0 0
## 3195 0 0
## 3196 0 0
## 3197 0 0
## 3198 0 0
## 3199 0 0
## 3200 0 1
## 3201 0 0
## 3202 0 0
## 3203 0 0
## 3204 0 0
## 3205 0 0
## 3206 0 0
## 3207 0 0
## 3208 0 0
## 3209 0 0
## 3210 0 0
## 3211 0 0
## 3212 0 0
## 3213 0 0
## 3214 0 1
## 3215 0 1
## 3216 0 1
## 3217 0 0
## 3218 0 0
## 3219 0 0
## 3220 0 1
## 3221 0 0
## 3222 0 0
## 3223 0 0
## 3224 0 0
## 3225 0 2
## 3226 0 1
## 3227 0 0
## 3228 0 0
## 3229 0 0
## 3230 0 0
## 3231 0 0
## 3232 0 0
## 3233 0 0
## 3234 0 0
## 3235 0 4
## 3236 0 1
## 3237 0 0
## 3238 0 2
## 3239 0 0
## 3240 0 0
## 3241 0 1
## 3242 0 1
## 3243 0 1
## 3244 0 0
## 3245 0 0
## 3246 0 0
## 3247 0 0
## 3248 0 0
## 3249 0 1
## 3250 0 0
## 3251 0 0
## 3252 0 0
## 3253 0 0
## 3254 0 0
## 3255 0 0
## 3256 0 0
## 3257 0 0
## 3258 0 1
## 3259 0 1
## 3260 0 2
## 3261 0 0
## 3262 0 2
## 3263 0 1
## 3264 0 2
## 3265 0 0
## 3266 0 0
## 3267 0 0
## 3268 0 0
## 3269 0 0
## 3270 0 0
## 3271 0 0
## 3272 0 5
## 3273 0 0
## 3274 0 0
## 3275 0 0
## 3276 0 0
## 3277 0 0
## 3278 0 0
## 3279 0 2
## 3280 0 0
## 3281 0 0
## 3282 0 0
## 3283 0 0
## 3284 0 1
## 3285 0 0
## 3286 0 2
## 3287 0 1
## 3288 0 0
## 3289 0 0
## 3290 0 1
## 3291 0 0
## 3292 0 0
## 3293 0 1
## 3294 0 1
## 3295 0 0
## 3296 0 0
## 3297 0 0
## 3298 0 0
## 3299 0 0
## 3300 0 1
## 3301 0 0
## 3302 0 0
## 3303 0 0
## 3304 0 0
## 3305 0 0
## 3306 0 0
## 3307 0 0
## 3308 0 0
## 3309 0 0
## 3310 0 0
## 3311 0 0
## 3312 0 0
## 3313 0 0
## 3314 0 0
## 3315 0 0
## 3316 0 0
## 3317 0 1
## 3318 0 0
## 3319 0 0
## 3320 0 0
## 3321 0 0
## 3322 0 0
## 3323 0 0
## 3324 0 0
## 3325 0 0
## 3326 0 0
## 3327 0 0
## 3328 0 0
## 3329 0 0
## 3330 0 0
## 3331 0 0
## 3332 0 0
## 3333 0 0
## 3334 0 0
## 3335 0 0
## 3336 0 0
## 3337 0 1
## 3338 0 0
## 3339 0 0
## 3340 0 0
## 3341 0 0
## 3342 0 1
## 3343 0 1
## 3344 0 0
## 3345 0 0
## 3346 0 0
## 3347 0 0
## 3348 0 0
## 3349 0 0
## 3350 0 0
## 3351 0 0
## 3352 0 0
## 3353 0 0
## 3354 0 1
## 3355 0 0
## 3356 0 0
## 3357 0 0
## 3358 0 0
## 3359 0 0
## 3360 0 0
## 3361 0 0
## 3362 0 4
## 3363 0 0
## 3364 0 0
## 3365 0 1
## 3366 0 1
## 3367 0 0
## 3368 0 0
## 3369 0 0
## 3370 0 0
## 3371 0 0
## 3372 0 0
## 3373 0 0
## 3374 0 0
## 3375 0 0
## 3376 0 0
## 3377 0 0
## 3378 0 0
## 3379 0 1
## 3380 0 0
## 3381 0 0
## 3382 0 0
## 3383 0 0
## 3384 0 0
## 3385 0 0
## 3386 0 0
## 3387 0 0
## 3388 0 0
## 3389 0 1
## 3390 0 0
## 3391 0 0
## 3392 0 0
## 3393 0 0
## 3394 0 0
## 3395 0 0
## 3396 0 0
## 3397 0 0
## 3398 0 0
## 3399 0 1
## 3400 0 0
## 3401 0 0
## 3402 0 0
## 3403 0 1
## 3404 0 1
## 3405 0 0
## 3406 0 1
## 3407 0 0
## 3408 0 0
## 3409 0 0
## 3410 0 0
## 3411 0 2
## 3412 0 0
## 3413 0 0
## 3414 0 0
## 3415 0 0
## 3416 0 0
## 3417 0 0
## 3418 0 0
## 3419 0 0
## 3420 0 0
## 3421 0 1
## 3422 0 0
## 3423 0 0
## 3424 0 0
## 3425 0 0
## 3426 0 0
## 3427 0 0
## 3428 0 0
## 3429 0 0
## 3430 0 0
## 3431 0 0
## 3432 0 0
## 3433 0 0
## 3434 0 0
## 3435 0 0
## 3436 0 0
## 3437 0 0
## 3438 0 0
## 3439 0 0
## 3440 0 0
## 3441 0 0
## 3442 0 0
## 3443 0 0
## 3444 0 0
## 3445 0 0
## 3446 0 0
## 3447 0 0
## 3448 0 0
## 3449 0 0
## 3450 0 0
## 3451 0 1
## 3452 0 0
## 3453 0 0
## 3454 0 0
## 3455 0 0
## 3456 0 0
## 3457 0 0
## 3458 0 0
## 3459 0 0
## 3460 0 0
## 3461 0 0
## 3462 0 0
## 3463 0 0
## 3464 0 0
## 3465 0 0
## 3466 0 0
## 3467 0 0
## 3468 0 0
## 3469 0 1
## 3470 0 0
## 3471 0 0
## 3472 0 0
## 3473 0 0
## 3474 0 0
## 3475 0 0
## 3476 0 0
## 3477 0 0
## 3478 0 0
## 3479 0 0
## 3480 0 0
## 3481 0 1
## 3482 0 0
## 3483 0 0
## 3484 0 0
## 3485 0 0
## 3486 0 0
## 3487 0 0
## 3488 0 0
## 3489 0 0
## 3490 0 0
## 3491 0 0
## 3492 0 0
## 3493 0 2
## 3494 0 0
## 3495 0 0
## 3496 0 0
## 3497 0 0
## 3498 0 0
## 3499 0 0
## 3500 0 0
## 3501 0 0
## 3502 0 0
## 3503 0 0
## 3504 0 0
## 3505 0 0
## 3506 0 0
## 3507 0 0
## 3508 0 0
## 3509 0 0
## 3510 0 0
## 3511 0 0
## 3512 0 0
## 3513 0 0
## 3514 0 0
## 3515 0 0
## 3516 0 0
## 3517 0 0
## 3518 0 0
## 3519 0 0
## 3520 0 0
## 3521 0 0
## 3522 0 0
## 3523 0 0
## 3524 0 0
## 3525 0 0
## 3526 0 0
## 3527 0 0
## 3528 0 0
## 3529 0 0
## 3530 0 1
## 3531 0 0
## 3532 0 0
## 3533 0 0
## 3534 0 0
## 3535 0 0
## 3536 0 0
## 3537 0 0
## 3538 0 0
## 3539 0 0
## 3540 0 0
## 3541 0 0
## 3542 0 0
## 3543 0 1
## 3544 0 1
## 3545 0 0
## 3546 0 0
## 3547 0 0
## 3548 0 0
## 3549 0 0
## 3550 0 0
## 3551 0 0
## 3552 0 0
## 3553 0 0
## 3554 0 1
## 3555 0 0
## 3556 0 3
## 3557 0 0
## 3558 0 2
## 3559 0 1
## 3560 0 0
## 3561 0 0
## 3562 0 0
## 3563 0 1
## 3564 0 0
## 3565 0 0
## 3566 0 0
## 3567 0 0
## 3568 0 0
## 3569 0 0
## 3570 0 0
## 3571 0 1
## 3572 0 0
## 3573 0 0
## 3574 0 0
## 3575 0 0
## 3576 0 0
## 3577 0 1
## 3578 0 0
## 3579 0 0
## 3580 0 0
## 3581 0 0
## 3582 0 0
## 3583 0 0
## 3584 0 0
## 3585 0 0
## 3586 0 0
## 3587 0 0
## 3588 0 0
## 3589 0 0
## 3590 0 0
## 3591 0 0
## 3592 0 0
## 3593 0 0
## 3594 0 1
## 3595 0 0
## 3596 0 0
## 3597 0 0
## 3598 0 0
## 3599 0 0
## 3600 0 0
## 3601 0 1
## 3602 0 0
## 3603 0 0
## 3604 0 1
## 3605 0 0
## 3606 0 0
## 3607 0 1
## 3608 0 0
## 3609 0 0
## 3610 0 0
## 3611 0 0
## 3612 0 0
## 3613 0 0
## 3614 0 0
## 3615 0 0
## 3616 0 0
## 3617 0 0
## 3618 0 0
## 3619 0 1
## 3620 0 0
## 3621 0 0
## 3622 0 0
## 3623 0 0
## 3624 0 0
## 3625 0 0
## 3626 0 0
## 3627 0 0
## 3628 0 1
## 3629 0 0
## 3630 0 0
## 3631 0 0
## 3632 0 0
## 3633 0 1
## 3634 0 1
## 3635 0 1
## 3636 0 0
## 3637 0 0
## 3638 0 0
## 3639 0 0
## 3640 0 0
## 3641 0 0
## 3642 0 1
## 3643 0 0
## 3644 0 0
## 3645 0 0
## 3646 0 0
## 3647 0 0
## 3648 0 0
## 3649 0 1
## 3650 0 0
## 3651 0 1
## 3652 0 1
## 3653 0 1
## 3654 0 0
## 3655 0 2
## 3656 0 0
## 3657 0 0
## 3658 0 0
## 3659 0 2
## 3660 0 0
## 3661 0 0
## 3662 0 0
## 3663 0 1
## 3664 0 0
## 3665 0 2
## 3666 0 1
## 3667 0 0
## 3668 0 0
## 3669 0 0
## 3670 0 2
## 3671 0 0
## 3672 0 0
## 3673 0 0
## 3674 0 0
## 3675 0 1
## 3676 0 0
## 3677 0 0
## 3678 0 0
## 3679 0 0
## 3680 0 0
## 3681 0 0
## 3682 0 1
## 3683 0 1
## 3684 0 0
## 3685 0 0
## 3686 0 0
## 3687 0 0
## 3688 0 0
## 3689 0 0
## 3690 0 1
## 3691 0 0
## 3692 0 0
## 3693 0 2
## 3694 0 1
## 3695 0 0
## 3696 0 0
## 3697 0 0
## 3698 0 0
## 3699 0 1
## 3700 0 0
## 3701 0 0
## 3702 0 0
## 3703 0 1
## 3704 0 0
## 3705 0 0
## 3706 0 0
## 3707 0 1
## 3708 0 1
## 3709 0 0
## 3710 0 1
## 3711 0 0
## 3712 0 0
## 3713 0 1
## 3714 0 0
## 3715 0 0
## 3716 0 0
## 3717 0 1
## 3718 0 1
## 3719 0 0
## 3720 0 0
## 3721 0 0
## 3722 0 0
## 3723 0 0
## 3724 0 0
## 3725 0 0
## 3726 0 0
## 3727 0 0
## 3728 0 0
## 3729 0 1
## 3730 0 0
## 3731 0 0
## 3732 0 0
## 3733 0 0
## 3734 0 0
## 3735 0 0
## 3736 0 0
## 3737 0 0
## 3738 0 0
## 3739 0 0
## 3740 0 0
## 3741 0 0
## 3742 0 0
## 3743 0 0
## 3744 0 0
## 3745 0 0
## 3746 0 0
## 3747 0 0
## 3748 0 0
## 3749 0 0
## 3750 0 0
## 3751 0 0
## 3752 0 0
## 3753 0 0
## 3754 0 0
## 3755 0 0
## 3756 0 0
## 3757 0 0
## 3758 0 0
## 3759 0 0
## 3760 0 0
## 3761 0 0
## 3762 0 0
## 3763 0 0
## 3764 0 0
## 3765 0 0
## 3766 0 0
## 3767 0 0
## 3768 0 0
## 3769 0 0
## 3770 0 0
## 3771 0 0
## 3772 0 0
## 3773 0 0
## 3774 0 0
## 3775 0 0
## 3776 0 0
## 3777 0 0
## 3778 0 0
## 3779 0 0
## 3780 0 0
## 3781 0 0
## 3782 0 0
## 3783 0 0
## 3784 0 0
## 3785 0 0
## 3786 0 0
## 3787 0 0
## 3788 0 0
## 3789 0 0
## 3790 0 0
## 3791 0 0
## 3792 0 0
## 3793 0 0
## 3794 0 0
## 3795 0 0
## 3796 0 0
## 3797 0 0
## 3798 0 0
## 3799 0 0
## 3800 0 0
## 3801 0 0
## 3802 0 0
## 3803 0 0
## 3804 0 1
## 3805 0 2
## 3806 0 0
## 3807 0 0
## 3808 0 0
## 3809 0 0
## 3810 0 0
## 3811 0 0
## 3812 0 0
## 3813 0 0
## 3814 0 0
## 3815 0 0
## 3816 0 0
## 3817 0 0
## 3818 0 0
## 3819 0 0
## 3820 0 0
## 3821 0 0
## 3822 0 0
## 3823 0 0
## 3824 0 0
## 3825 0 0
## 3826 0 1
## 3827 0 0
## 3828 0 0
## 3829 0 0
## 3830 0 0
## 3831 0 0
## 3832 0 0
## 3833 0 0
## 3834 0 0
## 3835 0 0
## 3836 0 0
## 3837 0 0
## 3838 0 0
## 3839 0 0
## 3840 0 1
## 3841 0 0
## 3842 0 0
## 3843 0 0
## 3844 0 2
## 3845 0 0
## 3846 0 0
## 3847 0 0
## 3848 0 0
## 3849 0 0
## 3850 0 0
## 3851 0 0
## 3852 0 0
## 3853 0 0
## 3854 0 0
## 3855 0 0
## 3856 0 1
## 3857 0 0
## 3858 0 0
## 3859 0 0
## 3860 0 0
## 3861 0 0
## 3862 0 0
## 3863 0 1
## 3864 0 0
## 3865 0 0
## 3866 0 0
## 3867 0 0
## 3868 0 1
## 3869 0 1
## 3870 0 0
## 3871 0 0
## 3872 0 0
## 3873 0 1
## 3874 0 0
## 3875 0 0
## 3876 0 0
## 3877 0 0
## 3878 0 0
## 3879 0 1
## 3880 0 0
## 3881 0 0
## 3882 0 0
## 3883 0 2
## 3884 0 0
## 3885 0 0
## 3886 0 1
## 3887 0 2
## 3888 0 0
## 3889 0 0
## 3890 0 0
## 3891 0 0
## 3892 0 0
## 3893 0 0
## 3894 0 0
## 3895 0 0
## 3896 0 0
## 3897 0 0
## 3898 0 0
## 3899 0 1
## 3900 0 0
## 3901 0 0
## 3902 0 1
## 3903 0 0
## 3904 0 1
## 3905 0 1
## 3906 0 1
## 3907 0 0
## 3908 0 0
## 3909 0 0
## 3910 0 0
## 3911 0 0
## 3912 0 3
## 3913 0 0
## 3914 0 0
## 3915 0 0
## 3916 0 0
## 3917 0 0
## 3918 0 0
## 3919 0 1
## 3920 0 1
## 3921 0 0
## 3922 0 0
## 3923 0 0
## 3924 0 0
## 3925 0 0
## 3926 0 0
## 3927 0 2
## 3928 0 0
## 3929 0 0
## 3930 0 0
## 3931 0 2
## 3932 0 1
## 3933 0 0
## 3934 0 1
## 3935 0 0
## 3936 0 1
## 3937 0 1
## 3938 0 0
## 3939 0 0
## 3940 0 0
## 3941 0 0
## 3942 0 1
## 3943 0 4
## 3944 0 1
## 3945 0 1
## 3946 0 0
## 3947 0 0
## 3948 0 2
## 3949 0 0
## 3950 0 0
## 3951 0 0
## 3952 0 0
## 3953 0 0
## 3954 0 0
## 3955 0 0
## 3956 0 0
## 3957 0 0
## 3958 0 0
## 3959 0 1
## 3960 0 0
## 3961 0 0
## 3962 0 0
## 3963 0 0
## 3964 0 0
## 3965 0 0
## 3966 0 1
## 3967 0 0
## 3968 0 0
## 3969 0 0
## 3970 0 1
## 3971 0 0
## 3972 0 1
## 3973 0 0
## 3974 0 0
## 3975 0 0
## 3976 0 2
## 3977 0 0
## 3978 0 3
## 3979 0 0
## 3980 0 0
## 3981 0 0
## 3982 0 0
## 3983 0 0
## 3984 0 0
## 3985 0 0
## 3986 0 0
## 3987 0 0
## 3988 0 0
## 3989 0 0
## 3990 0 0
## 3991 0 0
## 3992 0 0
## 3993 0 0
## 3994 0 0
## 3995 0 0
## 3996 0 0
## 3997 0 0
## 3998 0 0
## 3999 0 2
## 4000 0 0
## 4001 0 0
## 4002 0 0
## 4003 0 0
## 4004 0 0
## 4005 0 0
## 4006 0 0
## 4007 0 1
## 4008 0 0
## 4009 0 0
## 4010 0 0
## 4011 0 0
## 4012 0 0
## 4013 0 0
## 4014 0 0
## 4015 0 0
## 4016 0 0
## 4017 0 0
## 4018 0 0
## 4019 0 0
## 4020 0 0
## 4021 0 0
## 4022 0 0
## 4023 0 0
## 4024 0 0
## 4025 0 1
## 4026 0 0
## 4027 0 0
## 4028 0 0
## 4029 0 0
## 4030 0 0
## 4031 0 0
## 4032 0 0
## 4033 0 0
## 4034 0 0
## 4035 0 0
## 4036 0 1
## 4037 0 1
## 4038 0 0
## 4039 0 0
## 4040 0 0
## 4041 0 0
## 4042 0 1
## 4043 0 0
## 4044 0 0
## 4045 0 0
## 4046 0 0
## 4047 0 1
## 4048 0 0
## 4049 0 0
## 4050 0 1
## 4051 0 0
## 4052 0 0
## 4053 0 1
## 4054 0 0
## 4055 0 0
## 4056 0 0
## 4057 0 0
## 4058 0 0
## 4059 0 0
## 4060 0 0
## 4061 0 0
## 4062 0 0
## 4063 0 0
## 4064 0 0
## 4065 0 1
## 4066 0 0
## 4067 0 0
## 4068 0 2
## 4069 0 1
## 4070 0 0
## 4071 0 0
## 4072 0 0
## 4073 0 0
## 4074 0 0
## 4075 0 0
## 4076 0 0
## 4077 0 0
## 4078 0 0
## 4079 0 0
## 4080 0 0
## 4081 0 0
## 4082 0 1
## 4083 0 0
## 4084 0 0
## 4085 0 1
## 4086 0 0
## 4087 0 1
## 4088 0 0
## 4089 0 0
## 4090 0 0
## 4091 0 0
## 4092 0 0
## 4093 0 0
## 4094 0 0
## 4095 0 0
## 4096 0 0
## 4097 0 0
## 4098 0 0
## 4099 0 0
## 4100 0 0
## 4101 0 0
## 4102 0 1
## 4103 0 0
## 4104 0 0
## 4105 0 0
## 4106 0 1
## 4107 0 0
## 4108 0 0
## 4109 0 0
## 4110 0 0
## 4111 0 0
## 4112 0 0
## 4113 0 0
## 4114 0 0
## 4115 0 0
## 4116 0 0
## 4117 0 1
## 4118 0 1
## 4119 0 1
## 4120 0 0
## 4121 0 0
## 4122 0 0
## 4123 0 0
## 4124 0 0
## 4125 0 0
## 4126 0 0
## 4127 0 0
## 4128 0 0
## 4129 0 0
## 4130 0 0
## 4131 0 0
## 4132 0 0
## 4133 0 0
## 4134 0 0
## 4135 0 1
## 4136 0 0
## 4137 0 0
## 4138 0 0
## 4139 0 0
## 4140 0 2
## 4141 0 2
## 4142 0 0
## 4143 0 0
## 4144 0 0
## 4145 0 0
## 4146 0 0
## 4147 0 1
## 4148 0 0
## 4149 0 0
## 4150 0 0
## 4151 0 0
## 4152 0 0
## 4153 0 0
## 4154 0 0
## 4155 0 0
## 4156 0 0
## 4157 0 0
## 4158 0 0
## 4159 0 0
## 4160 0 0
## 4161 0 0
## 4162 0 0
## 4163 0 0
## 4164 0 0
## 4165 0 0
## 4166 0 0
## 4167 0 0
## 4168 0 0
## 4169 0 0
## 4170 0 0
## 4171 0 0
## 4172 0 0
## 4173 0 0
## 4174 0 0
## 4175 0 0
## 4176 0 0
## 4177 0 0
## 4178 0 0
## 4179 0 0
## 4180 0 0
## 4181 0 0
## 4182 0 0
## 4183 0 0
## 4184 0 0
## 4185 0 0
## 4186 0 0
## 4187 0 0
## 4188 0 0
## 4189 0 0
## 4190 0 0
## 4191 0 1
## 4192 0 0
## 4193 0 0
## 4194 0 0
## 4195 0 0
## 4196 0 1
## 4197 0 0
## 4198 0 0
## 4199 0 0
## 4200 0 0
## 4201 0 0
## 4202 0 0
## 4203 0 0
## 4204 0 0
## 4205 0 0
## 4206 0 0
## 4207 0 0
## 4208 0 0
## 4209 0 0
## 4210 0 0
## 4211 0 0
## 4212 0 0
## 4213 0 0
## 4214 0 0
## 4215 0 0
## 4216 0 0
## 4217 0 0
## 4218 0 0
## 4219 0 0
## 4220 0 0
## 4221 0 0
## 4222 0 0
## Total_Genes_Annotated Hyper_Raw_PValue Hyper_Adjp_BH
## 1 121 0.001892007 1
## 2 103 0.001892007 1
## 3 29 0.001914967 1
## 4 4 0.002345881 1
## 5 193 0.002669516 1
## 6 104 0.002722739 1
## 7 139 0.002722739 1
## 8 101 0.003074480 1
## 9 66 0.007046942 1
## 10 1638 0.008334794 1
## 11 4 0.010208560 1
## 12 5 0.010208560 1
## 13 7 0.010208560 1
## 14 10 0.010208560 1
## 15 9 0.010208560 1
## 16 1 0.010208560 1
## 17 2 0.010208560 1
## 18 38 0.011006740 1
## 19 21 0.011006740 1
## 20 45 0.014314410 1
## 21 66 0.017559660 1
## 22 15 0.017966480 1
## 23 24 0.017966480 1
## 24 22 0.017966480 1
## 25 11 0.022701700 1
## 26 8 0.022701700 1
## 27 17 0.027417390 1
## 28 23 0.027521080 1
## 29 24 0.027521080 1
## 30 38 0.027521080 1
## 31 81 0.029288990 1
## 32 46 0.029288990 1
## 33 1 0.034211740 1
## 34 43 0.034211740 1
## 35 1 0.034211740 1
## 36 6 0.034211740 1
## 37 7 0.034211740 1
## 38 45 0.034211740 1
## 39 12 0.034211740 1
## 40 3 0.034211740 1
## 41 150 0.036347740 1
## 42 4 0.040011860 1
## 43 35 0.043247360 1
## 44 36 0.043247360 1
## 45 82 0.043978010 1
## 46 3 0.045233650 1
## 47 2 0.045233650 1
## 48 2 0.047134020 1
## 49 6 0.047134020 1
## 50 4 0.047134020 1
## 51 11 0.047134020 1
## 52 31 0.047134020 1
## 53 12 0.047134020 1
## 54 7 0.047134020 1
## 55 6 0.047134020 1
## 56 1 0.047134020 1
## 57 21 0.047134020 1
## 58 18 0.047134020 1
## 59 3 0.047134020 1
## 60 18 0.047134020 1
## 61 74 0.047134020 1
## 62 1 0.047134020 1
## 63 30 0.047134020 1
## 64 3 0.047134020 1
## 65 1 0.047134020 1
## 66 1 0.047134020 1
## 67 4 0.047134020 1
## 68 4 0.047134020 1
## 69 15 0.047134020 1
## 70 10 0.047134020 1
## 71 23 0.047134020 1
## 72 91 0.049879730 1
## 73 4032 0.055377580 1
## 74 189 0.062208010 1
## 75 78 0.065286480 1
## 76 4 0.068512840 1
## 77 324 0.070952440 1
## 78 13 0.071832610 1
## 79 49 0.071832610 1
## 80 35 0.071832610 1
## 81 7 0.071832610 1
## 82 7 0.071832610 1
## 83 4 0.071832610 1
## 84 29 0.071832610 1
## 85 38 0.071832610 1
## 86 2 0.071832610 1
## 87 8 0.071832610 1
## 88 1 0.071832610 1
## 89 6 0.071832610 1
## 90 8 0.071832610 1
## 91 11 0.073162400 1
## 92 8 0.073162400 1
## 93 10 0.073162400 1
## 94 52 0.074682110 1
## 95 79 0.082760350 1
## 96 186 0.088646340 1
## 97 198 0.090526350 1
## 98 83 0.097024200 1
## 99 32 0.097188380 1
## 100 10 0.097188380 1
## 101 50 0.097188380 1
## 102 33 0.097188380 1
## 103 133 0.106240500 1
## 104 5 0.109758400 1
## 105 35 0.109758400 1
## 106 4 0.109758400 1
## 107 9 0.109758400 1
## 108 5 0.109758400 1
## 109 9 0.109758400 1
## 110 53 0.120963500 1
## 111 37 0.120963500 1
## 112 10 0.120963500 1
## 113 2 0.120984900 1
## 114 15 0.120984900 1
## 115 2 0.120984900 1
## 116 27 0.120984900 1
## 117 6 0.120984900 1
## 118 5 0.120984900 1
## 119 3 0.120984900 1
## 120 22 0.120984900 1
## 121 3 0.120984900 1
## 122 3 0.120984900 1
## 123 2 0.120984900 1
## 124 1 0.120984900 1
## 125 2 0.120984900 1
## 126 1 0.120984900 1
## 127 9 0.120984900 1
## 128 8 0.120984900 1
## 129 1 0.120984900 1
## 130 1 0.120984900 1
## 131 1 0.120984900 1
## 132 13 0.120984900 1
## 133 7 0.120984900 1
## 134 13 0.120984900 1
## 135 5 0.120984900 1
## 136 2 0.120984900 1
## 137 1 0.120984900 1
## 138 27 0.120984900 1
## 139 10 0.120984900 1
## 140 29 0.120984900 1
## 141 4 0.120984900 1
## 142 4 0.120984900 1
## 143 3 0.120984900 1
## 144 13 0.120984900 1
## 145 6 0.120984900 1
## 146 1 0.120984900 1
## 147 16 0.120984900 1
## 148 1 0.120984900 1
## 149 301 0.127171500 1
## 150 315 0.127171500 1
## 151 51 0.136746100 1
## 152 168 0.139396800 1
## 153 66 0.139396800 1
## 154 76 0.143528200 1
## 155 24 0.143528200 1
## 156 20 0.143528200 1
## 157 58 0.151294000 1
## 158 20 0.152774900 1
## 159 71 0.152774900 1
## 160 52 0.152774900 1
## 161 14 0.152774900 1
## 162 400 0.155843000 1
## 163 92 0.156044900 1
## 164 57 0.158812500 1
## 165 5925 0.167770500 1
## 166 1453 0.175486200 1
## 167 410 0.176935800 1
## 168 43 0.177951200 1
## 169 1 0.178702700 1
## 170 50 0.178702700 1
## 171 13 0.178702700 1
## 172 10 0.178702700 1
## 173 42 0.178702700 1
## 174 42 0.182753500 1
## 175 44 0.182753500 1
## 176 6009 0.183838700 1
## 177 176 0.185520700 1
## 178 503 0.187990100 1
## 179 51 0.200924700 1
## 180 21 0.200924700 1
## 181 25 0.200924700 1
## 182 30 0.207758100 1
## 183 4 0.207758100 1
## 184 12 0.207758100 1
## 185 33 0.207758100 1
## 186 16 0.207758100 1
## 187 12 0.207758100 1
## 188 3 0.207758100 1
## 189 26 0.207758100 1
## 190 18 0.207758100 1
## 191 50 0.207758100 1
## 192 8 0.207758100 1
## 193 55 0.207758100 1
## 194 2 0.207758100 1
## 195 7 0.207758100 1
## 196 7 0.207758100 1
## 197 15 0.207758100 1
## 198 32 0.207758100 1
## 199 3 0.207758100 1
## 200 4 0.207758100 1
## 201 13 0.207758100 1
## 202 7 0.207758100 1
## 203 56 0.207758100 1
## 204 9 0.207758100 1
## 205 1 0.207758100 1
## 206 3 0.207758100 1
## 207 809 0.210060400 1
## 208 36 0.210930600 1
## 209 130 0.214720100 1
## 210 150 0.215302200 1
## 211 134 0.216654500 1
## 212 30 0.217276300 1
## 213 2 0.217276300 1
## 214 3 0.217276300 1
## 215 7 0.217276300 1
## 216 6 0.217276300 1
## 217 21 0.217276300 1
## 218 2 0.217276300 1
## 219 1 0.217276300 1
## 220 13 0.217276300 1
## 221 1 0.217276300 1
## 222 2 0.217276300 1
## 223 3 0.217276300 1
## 224 2 0.217276300 1
## 225 5 0.217276300 1
## 226 3 0.217276300 1
## 227 13 0.217276300 1
## 228 3 0.217276300 1
## 229 3 0.217276300 1
## 230 56 0.217276300 1
## 231 8 0.217276300 1
## 232 5 0.217276300 1
## 233 2 0.217276300 1
## 234 13 0.217276300 1
## 235 9 0.217276300 1
## 236 6 0.217276300 1
## 237 4 0.217276300 1
## 238 12 0.217276300 1
## 239 4 0.217276300 1
## 240 3 0.217276300 1
## 241 11 0.217276300 1
## 242 3 0.217276300 1
## 243 37 0.217276300 1
## 244 9 0.217276300 1
## 245 15 0.217276300 1
## 246 8 0.217276300 1
## 247 26 0.217276300 1
## 248 2 0.217276300 1
## 249 1 0.217276300 1
## 250 40 0.217276300 1
## 251 1 0.217276300 1
## 252 14 0.217276300 1
## 253 6 0.217276300 1
## 254 13 0.217276300 1
## 255 1 0.217276300 1
## 256 12 0.217276300 1
## 257 5 0.217276300 1
## 258 6 0.217276300 1
## 259 13 0.217276300 1
## 260 8 0.217276300 1
## 261 2 0.217276300 1
## 262 3 0.217276300 1
## 263 10 0.217276300 1
## 264 14 0.217276300 1
## 265 2 0.217276300 1
## 266 1 0.217276300 1
## 267 180 0.231985900 1
## 268 14 0.242026800 1
## 269 19 0.242026800 1
## 270 81 0.242026800 1
## 271 88 0.242026800 1
## 272 6 0.242026800 1
## 273 22 0.242026800 1
## 274 402 0.247730000 1
## 275 115 0.249191400 1
## 276 20 0.252792800 1
## 277 17 0.252792800 1
## 278 45 0.252792800 1
## 279 60 0.252792800 1
## 280 71 0.252792800 1
## 281 250 0.258301900 1
## 282 531 0.270479500 1
## 283 176 0.293346800 1
## 284 212 0.296511800 1
## 285 55 0.298375200 1
## 286 30 0.298375200 1
## 287 25 0.298375200 1
## 288 19 0.298375200 1
## 289 83 0.298375200 1
## 290 12 0.298375200 1
## 291 13 0.298375200 1
## 292 81 0.298375200 1
## 293 33 0.298375200 1
## 294 65 0.298375200 1
## 295 19 0.298375200 1
## 296 3 0.298375200 1
## 297 17 0.298375200 1
## 298 27 0.298375200 1
## 299 2 0.298375200 1
## 300 57 0.298375200 1
## 301 2 0.298375200 1
## 302 36 0.302382100 1
## 303 21 0.306966700 1
## 304 24 0.306966700 1
## 305 22 0.306966700 1
## 306 48 0.306966700 1
## 307 56 0.308161000 1
## 308 16 0.308161000 1
## 309 56 0.308161000 1
## 310 37 0.308161000 1
## 311 20 0.308161000 1
## 312 393 0.320001400 1
## 313 226 0.329171300 1
## 314 116 0.333109100 1
## 315 649 0.342724600 1
## 316 1020 0.344764700 1
## 317 766 0.345040800 1
## 318 99 0.350240100 1
## 319 64 0.350240100 1
## 320 50 0.350240100 1
## 321 28 0.362127500 1
## 322 45 0.362127500 1
## 323 48 0.362127500 1
## 324 72 0.374755100 1
## 325 16 0.374755100 1
## 326 8 0.374755100 1
## 327 113 0.374755100 1
## 328 97 0.374755100 1
## 329 17 0.374755100 1
## 330 10 0.374755100 1
## 331 37 0.374755100 1
## 332 67 0.374755100 1
## 333 567 0.375560900 1
## 334 85 0.382412400 1
## 335 112 0.384253300 1
## 336 34 0.387081000 1
## 337 35 0.387081000 1
## 338 11 0.387081000 1
## 339 5 0.387081000 1
## 340 1 0.387081000 1
## 341 100 0.387081000 1
## 342 101 0.387081000 1
## 343 14 0.387081000 1
## 344 28 0.387081000 1
## 345 11 0.387081000 1
## 346 29 0.387081000 1
## 347 5 0.387081000 1
## 348 4 0.387418600 1
## 349 2 0.387418600 1
## 350 13 0.387418600 1
## 351 47 0.387418600 1
## 352 3 0.387418600 1
## 353 5 0.387418600 1
## 354 4 0.387418600 1
## 355 2 0.387418600 1
## 356 15 0.387418600 1
## 357 28 0.387418600 1
## 358 45 0.387418600 1
## 359 8 0.387418600 1
## 360 6 0.387418600 1
## 361 10 0.387418600 1
## 362 58 0.387418600 1
## 363 52 0.387418600 1
## 364 22 0.387418600 1
## 365 9 0.387418600 1
## 366 14 0.387418600 1
## 367 1 0.387418600 1
## 368 34 0.387418600 1
## 369 3 0.387418600 1
## 370 7 0.387418600 1
## 371 22 0.387418600 1
## 372 1 0.387418600 1
## 373 13 0.387418600 1
## 374 4 0.387418600 1
## 375 8 0.387418600 1
## 376 5 0.387418600 1
## 377 4 0.387418600 1
## 378 21 0.387418600 1
## 379 1 0.387418600 1
## 380 1 0.387418600 1
## 381 1 0.387418600 1
## 382 9 0.387418600 1
## 383 20 0.387418600 1
## 384 1 0.387418600 1
## 385 4 0.387418600 1
## 386 24 0.398432200 1
## 387 137 0.398432200 1
## 388 199 0.401222200 1
## 389 158 0.401222200 1
## 390 1895 0.402185400 1
## 391 123 0.403296700 1
## 392 512 0.405536000 1
## 393 47 0.417108300 1
## 394 60 0.417108300 1
## 395 415 0.417308500 1
## 396 330 0.429262000 1
## 397 15 0.439941500 1
## 398 361 0.444934600 1
## 399 376 0.444934600 1
## 400 379 0.444934600 1
## 401 277 0.445025200 1
## 402 105 0.446235900 1
## 403 55 0.447512000 1
## 404 79 0.447512000 1
## 405 274 0.451122900 1
## 406 727 0.453793600 1
## 407 646 0.456144200 1
## 408 265 0.460469100 1
## 409 161 0.465754700 1
## 410 434 0.469950300 1
## 411 20 0.470432300 1
## 412 23 0.470432300 1
## 413 42 0.470432300 1
## 414 54 0.470432300 1
## 415 45 0.470432300 1
## 416 56 0.470432300 1
## 417 40 0.470432300 1
## 418 2 0.470432300 1
## 419 43 0.470432300 1
## 420 6 0.470432300 1
## 421 731 0.470538300 1
## 422 17 0.470924200 1
## 423 16 0.470924200 1
## 424 34 0.470924200 1
## 425 2476 0.481349400 1
## 426 184 0.481464400 1
## 427 144 0.486569600 1
## 428 58 0.493024700 1
## 429 131 0.502324400 1
## 430 23 0.502324400 1
## 431 6 0.502324400 1
## 432 138 0.502324400 1
## 433 217 0.502324400 1
## 434 3 0.502324400 1
## 435 6 0.520635500 1
## 436 1 0.520635500 1
## 437 20 0.520635500 1
## 438 7 0.520635500 1
## 439 6 0.520635500 1
## 440 8 0.520635500 1
## 441 7 0.520635500 1
## 442 2 0.520635500 1
## 443 18 0.520635500 1
## 444 30 0.520635500 1
## 445 56 0.520635500 1
## 446 7 0.520635500 1
## 447 106 0.520635500 1
## 448 1 0.520635500 1
## 449 1 0.520635500 1
## 450 10 0.520635500 1
## 451 5 0.520635500 1
## 452 4 0.520635500 1
## 453 10 0.520635500 1
## 454 9 0.520635500 1
## 455 15 0.520635500 1
## 456 20 0.520635500 1
## 457 27 0.520635500 1
## 458 13 0.520635500 1
## 459 27 0.520635500 1
## 460 4 0.520635500 1
## 461 2 0.520635500 1
## 462 18 0.520635500 1
## 463 3 0.520635500 1
## 464 11 0.520635500 1
## 465 4 0.520635500 1
## 466 35 0.520635500 1
## 467 11 0.520635500 1
## 468 22 0.520635500 1
## 469 1 0.520635500 1
## 470 6 0.520635500 1
## 471 9 0.520635500 1
## 472 11 0.520635500 1
## 473 19 0.520635500 1
## 474 30 0.520635500 1
## 475 29 0.520635500 1
## 476 30 0.520635500 1
## 477 6 0.520635500 1
## 478 1 0.520635500 1
## 479 18 0.520635500 1
## 480 12 0.520635500 1
## 481 42 0.522783400 1
## 482 80 0.522783400 1
## 483 133 0.522783400 1
## 484 52 0.546567500 1
## 485 68 0.546567500 1
## 486 67 0.546567500 1
## 487 16 0.546567500 1
## 488 66 0.546567500 1
## 489 68 0.546567500 1
## 490 82 0.546567500 1
## 491 17 0.546567500 1
## 492 25 0.546567500 1
## 493 162 0.550983700 1
## 494 138 0.550983700 1
## 495 298 0.556477100 1
## 496 18 0.560931700 1
## 497 42 0.560931700 1
## 498 13 0.560931700 1
## 499 13 0.560931700 1
## 500 14 0.560931700 1
## 501 6 0.560931700 1
## 502 59 0.560931700 1
## 503 9 0.560931700 1
## 504 76 0.560931700 1
## 505 84 0.561899900 1
## 506 130 0.561899900 1
## 507 106 0.561899900 1
## 508 233 0.564862100 1
## 509 212 0.571558700 1
## 510 25 0.572081500 1
## 511 44 0.572081500 1
## 512 25 0.572081500 1
## 513 75 0.572081500 1
## 514 60 0.572081500 1
## 515 115 0.581571000 1
## 516 510 0.583647000 1
## 517 49 0.589992300 1
## 518 65 0.589992300 1
## 519 73 0.604713400 1
## 520 14398 0.609369600 1
## 521 2 0.614683600 1
## 522 95 0.614683600 1
## 523 8 0.614683600 1
## 524 40 0.614683600 1
## 525 48 0.614683600 1
## 526 25 0.614683600 1
## 527 99 0.614683600 1
## 528 89 0.614683600 1
## 529 46 0.614683600 1
## 530 17 0.615151000 1
## 531 40 0.615151000 1
## 532 137 0.615151000 1
## 533 281 0.617519200 1
## 534 624 0.617645100 1
## 535 28 0.618387900 1
## 536 608 0.618699800 1
## 537 600 0.618699800 1
## 538 70 0.622593800 1
## 539 187 0.622593800 1
## 540 4 0.624928000 1
## 541 3 0.624928000 1
## 542 2 0.624928000 1
## 543 2 0.624928000 1
## 544 5 0.624928000 1
## 545 122 0.624928000 1
## 546 14 0.624928000 1
## 547 65 0.624928000 1
## 548 28 0.624928000 1
## 549 11 0.624928000 1
## 550 15 0.624928000 1
## 551 6 0.624928000 1
## 552 34 0.624928000 1
## 553 20 0.624928000 1
## 554 13 0.624928000 1
## 555 11 0.624928000 1
## 556 30 0.624928000 1
## 557 109 0.624928000 1
## 558 2 0.624928000 1
## 559 16 0.624928000 1
## 560 37 0.624928000 1
## 561 6 0.624928000 1
## 562 23 0.624928000 1
## 563 16 0.624928000 1
## 564 34 0.624928000 1
## 565 2 0.624928000 1
## 566 4 0.624928000 1
## 567 2 0.624928000 1
## 568 25 0.624928000 1
## 569 12 0.624928000 1
## 570 10 0.624928000 1
## 571 6 0.624928000 1
## 572 65 0.624928000 1
## 573 2 0.624928000 1
## 574 4 0.624928000 1
## 575 3 0.624928000 1
## 576 56 0.624928000 1
## 577 41 0.624928000 1
## 578 6 0.624928000 1
## 579 2 0.624928000 1
## 580 2 0.624928000 1
## 581 1 0.624928000 1
## 582 28 0.627161000 1
## 583 35 0.627161000 1
## 584 210 0.629001000 1
## 585 221 0.629001000 1
## 586 105 0.631840800 1
## 587 134 0.631840800 1
## 588 167 0.631840800 1
## 589 125 0.631840800 1
## 590 168 0.631840800 1
## 591 126 0.631840800 1
## 592 1603 0.637136700 1
## 593 199 0.658727500 1
## 594 100 0.661425900 1
## 595 41 0.662308900 1
## 596 135 0.662308900 1
## 597 54 0.664661700 1
## 598 151 0.672679000 1
## 599 36 0.674665700 1
## 600 108 0.674665700 1
## 601 27 0.674665700 1
## 602 462 0.682292200 1
## 603 1245 0.682627200 1
## 604 611 0.688035400 1
## 605 613 0.688035400 1
## 606 50 0.695312400 1
## 607 1481 0.696331600 1
## 608 98 0.696821100 1
## 609 151 0.697011200 1
## 610 57 0.697011200 1
## 611 129 0.697011200 1
## 612 142 0.697011200 1
## 613 135 0.701049800 1
## 614 120 0.701049800 1
## 615 141 0.701049800 1
## 616 9 0.701049800 1
## 617 40 0.701049800 1
## 618 141 0.701049800 1
## 619 2 0.706566200 1
## 620 17 0.706566200 1
## 621 10 0.706566200 1
## 622 2 0.706566200 1
## 623 1 0.706566200 1
## 624 34 0.706566200 1
## 625 45 0.706566200 1
## 626 11 0.706566200 1
## 627 35 0.706566200 1
## 628 22 0.706566200 1
## 629 23 0.706566200 1
## 630 19 0.706566200 1
## 631 16 0.706566200 1
## 632 30 0.706566200 1
## 633 11 0.706566200 1
## 634 6 0.706566200 1
## 635 23 0.706566200 1
## 636 2 0.706566200 1
## 637 6 0.706566200 1
## 638 13 0.706566200 1
## 639 1 0.706566200 1
## 640 13 0.706566200 1
## 641 21 0.706566200 1
## 642 26 0.706566200 1
## 643 12 0.706566200 1
## 644 1 0.706566200 1
## 645 60 0.706566200 1
## 646 21 0.709370400 1
## 647 8 0.709370400 1
## 648 134 0.709370400 1
## 649 79 0.709370400 1
## 650 138 0.709370400 1
## 651 534 0.719806700 1
## 652 180 0.722898100 1
## 653 101 0.726099900 1
## 654 19 0.726826600 1
## 655 173 0.726826600 1
## 656 33 0.726826600 1
## 657 181 0.726826600 1
## 658 38 0.726826600 1
## 659 13 0.726826600 1
## 660 179 0.726826600 1
## 661 54 0.726826600 1
## 662 1261 0.727248800 1
## 663 117 0.730199300 1
## 664 54 0.730199300 1
## 665 272 0.731357300 1
## 666 304 0.731357300 1
## 667 1066 0.734496300 1
## 668 704 0.735030100 1
## 669 848 0.735949500 1
## 670 849 0.735949500 1
## 671 41 0.737221800 1
## 672 1526 0.737380400 1
## 673 1516 0.737380400 1
## 674 227 0.746762200 1
## 675 232 0.746762200 1
## 676 1045 0.752349400 1
## 677 439 0.752712900 1
## 678 93 0.754645000 1
## 679 219 0.754645000 1
## 680 58 0.760679100 1
## 681 1841 0.765259500 1
## 682 1834 0.765259500 1
## 683 1834 0.765259500 1
## 684 1831 0.765259500 1
## 685 1822 0.765259500 1
## 686 156 0.766301800 1
## 687 846 0.766895300 1
## 688 167 0.767542400 1
## 689 375 0.769504800 1
## 690 396 0.769504800 1
## 691 395 0.769504800 1
## 692 104 0.769990400 1
## 693 18 0.769990400 1
## 694 12 0.769990400 1
## 695 21 0.769990400 1
## 696 64 0.770463200 1
## 697 64 0.770463200 1
## 698 1 0.770463200 1
## 699 1 0.770463200 1
## 700 5 0.770463200 1
## 701 19 0.770463200 1
## 702 4 0.770463200 1
## 703 57 0.770463200 1
## 704 21 0.770463200 1
## 705 12 0.770463200 1
## 706 27 0.770463200 1
## 707 8 0.770463200 1
## 708 22 0.770463200 1
## 709 11 0.770463200 1
## 710 59 0.770463200 1
## 711 15 0.770463200 1
## 712 25 0.770463200 1
## 713 42 0.770463200 1
## 714 10 0.770463200 1
## 715 1 0.770463200 1
## 716 1 0.770463200 1
## 717 6 0.770463200 1
## 718 1 0.770463200 1
## 719 20 0.771727100 1
## 720 124 0.771727100 1
## 721 105 0.771727100 1
## 722 11 0.771727100 1
## 723 23 0.771727100 1
## 724 106 0.772030200 1
## 725 313 0.772030200 1
## 726 1878 0.799324100 1
## 727 1881 0.799324100 1
## 728 1866 0.799324100 1
## 729 108 0.799469700 1
## 730 35 0.810053500 1
## 731 21 0.810053500 1
## 732 8 0.810053500 1
## 733 150 0.810053500 1
## 734 21 0.810053500 1
## 735 44 0.810053500 1
## 736 70 0.810053500 1
## 737 72 0.813732700 1
## 738 200 0.813732700 1
## 739 110 0.816011400 1
## 740 23 0.820468300 1
## 741 24 0.820468300 1
## 742 357 0.820468300 1
## 743 15 0.820468300 1
## 744 61 0.820468300 1
## 745 102 0.820468300 1
## 746 10 0.820468300 1
## 747 53 0.820468300 1
## 748 58 0.820468300 1
## 749 8 0.820468300 1
## 750 46 0.820468300 1
## 751 64 0.820468300 1
## 752 25 0.820468300 1
## 753 37 0.820468300 1
## 754 692 0.822477300 1
## 755 2109 0.824733700 1
## 756 2110 0.824733700 1
## 757 77 0.825821900 1
## 758 238 0.827104300 1
## 759 463 0.842108800 1
## 760 39 0.842537200 1
## 761 30 0.842537200 1
## 762 136 0.842537200 1
## 763 3 0.843291200 1
## 764 6102 0.845372400 1
## 765 2191 0.847015000 1
## 766 96 0.847094000 1
## 767 61 0.849242100 1
## 768 60 0.849242100 1
## 769 47 0.849242100 1
## 770 98 0.859597000 1
## 771 12 0.859597000 1
## 772 27 0.859597000 1
## 773 18 0.859597000 1
## 774 1 0.859597000 1
## 775 129 0.859597000 1
## 776 7 0.859597000 1
## 777 8 0.859597000 1
## 778 4 0.859597000 1
## 779 30 0.859597000 1
## 780 28 0.859597000 1
## 781 18 0.859597000 1
## 782 38 0.859597000 1
## 783 31 0.859597000 1
## 784 815 0.861427800 1
## 785 693 0.865738600 1
## 786 366 0.867567000 1
## 787 59 0.869945100 1
## 788 778 0.871364800 1
## 789 11170 0.873103700 1
## 790 99 0.873351100 1
## 791 208 0.873351100 1
## 792 5832 0.873696400 1
## 793 220 0.873807700 1
## 794 301 0.878629400 1
## 795 219 0.881429700 1
## 796 2698 0.882944500 1
## 797 27 0.887489100 1
## 798 146 0.888156100 1
## 799 80 0.888156100 1
## 800 74 0.888156100 1
## 801 855 0.888346200 1
## 802 860 0.888346200 1
## 803 857 0.888346200 1
## 804 19 0.890211200 1
## 805 187 0.890211200 1
## 806 111 0.890211200 1
## 807 159 0.890211200 1
## 808 9 0.890211200 1
## 809 18 0.890211200 1
## 810 19 0.890211200 1
## 811 16 0.890211200 1
## 812 28 0.890211200 1
## 813 10 0.890211200 1
## 814 13 0.890211200 1
## 815 7 0.890211200 1
## 816 34 0.890211200 1
## 817 20 0.890211200 1
## 818 66 0.890211200 1
## 819 9 0.890211200 1
## 820 17 0.890211200 1
## 821 50 0.890211200 1
## 822 69 0.890211200 1
## 823 89 0.890211200 1
## 824 449 0.890590800 1
## 825 4096 0.894790700 1
## 826 748 0.895643300 1
## 827 133 0.904101900 1
## 828 45 0.905114000 1
## 829 66 0.905114000 1
## 830 269 0.911600300 1
## 831 92 0.911966900 1
## 832 78 0.911966900 1
## 833 108 0.914160700 1
## 834 26 0.914160700 1
## 835 14 0.914160700 1
## 836 28 0.914160700 1
## 837 1003 0.916151700 1
## 838 450 0.917972600 1
## 839 95 0.918004800 1
## 840 88 0.918004800 1
## 841 129 0.918004800 1
## 842 4186 0.918194500 1
## 843 157 0.918573200 1
## 844 123 0.923497800 1
## 845 2532 0.925242500 1
## 846 284 0.926795300 1
## 847 2404 0.927466200 1
## 848 81 0.927861800 1
## 849 93 0.927861800 1
## 850 807 0.930612200 1
## 851 111 0.930910400 1
## 852 51 0.932894100 1
## 853 86 0.932894100 1
## 854 214 0.932894100 1
## 855 46 0.932894100 1
## 856 35 0.932894100 1
## 857 219 0.932894100 1
## 858 10 0.932894100 1
## 859 22 0.932894100 1
## 860 42 0.933076500 1
## 861 371 0.935484500 1
## 862 97 0.941360400 1
## 863 216 0.941360400 1
## 864 217 0.944011500 1
## 865 148 0.944011500 1
## 866 367 0.944230300 1
## 867 555 0.946548900 1
## 868 130 0.947545700 1
## 869 19 0.947545700 1
## 870 45 0.947545700 1
## 871 129 0.947545700 1
## 872 87 0.947545700 1
## 873 6 0.947545700 1
## 874 92 0.948070000 1
## 875 2376 0.948214900 1
## 876 60 0.949533100 1
## 877 86 0.949533100 1
## 878 251 0.953269800 1
## 879 117 0.953269800 1
## 880 114 0.953269800 1
## 881 1380 0.957024900 1
## 882 314 0.957675800 1
## 883 10 0.959003400 1
## 884 41 0.959003400 1
## 885 11 0.959003400 1
## 886 43 0.959003400 1
## 887 34 0.959003400 1
## 888 51 0.959003400 1
## 889 15 0.959003400 1
## 890 13 0.959003400 1
## 891 20 0.959003400 1
## 892 115 0.959003400 1
## 893 683 0.960559800 1
## 894 19 0.960814400 1
## 895 849 0.964102300 1
## 896 63 0.967962300 1
## 897 35 0.967962300 1
## 898 51 0.967962300 1
## 899 180 0.969574300 1
## 900 780 0.971482400 1
## 901 79 0.974150000 1
## 902 179 0.974150000 1
## 903 136 0.974150000 1
## 904 49 0.974966500 1
## 905 90 0.974966500 1
## 906 74 0.974966500 1
## 907 29 0.974966500 1
## 908 50 0.974966500 1
## 909 161 0.979054000 1
## 910 83 0.980441900 1
## 911 281 0.981029700 1
## 912 248 0.981029700 1
## 913 66 0.983052100 1
## 914 78 0.983052100 1
## 915 860 0.983136000 1
## 916 467 0.983242300 1
## 917 468 0.983242300 1
## 918 36 0.984721600 1
## 919 89 0.984721600 1
## 920 660 0.985710400 1
## 921 648 0.987979000 1
## 922 783 0.988649500 1
## 923 82 0.988948300 1
## 924 92 0.990679900 1
## 925 436 0.990693500 1
## 926 137 0.991577000 1
## 927 304 0.992730600 1
## 928 348 0.992919900 1
## 929 282 0.993721400 1
## 930 653 0.993815000 1
## 931 120 0.994231300 1
## 932 38 0.995563700 1
## 933 425 0.995830900 1
## 934 55 0.996537000 1
## 935 156 0.996537000 1
## 936 294 0.996737900 1
## 937 951 0.996983700 1
## 938 162 0.997609200 1
## 939 192 0.997967400 1
## 940 376 0.998030400 1
## 941 1039 0.998052400 1
## 942 192 0.998077500 1
## 943 1157 0.998138400 1
## 944 1207 0.998340200 1
## 945 311 0.998601400 1
## 946 1341 0.998709800 1
## 947 96 0.998715900 1
## 948 887 0.998849700 1
## 949 1253 0.998891100 1
## 950 164 0.999618200 1
## 951 1317 0.999679200 1
## 952 332 0.999679200 1
## 953 131 0.999774800 1
## 954 1571 0.999901800 1
## 955 1481 0.999921100 1
## 956 220 0.999949600 1
## 957 1664 0.999956600 1
## 958 798 0.999958400 1
## 959 271 0.999988500 1
## 960 2 1.000000000 1
## 961 8 1.000000000 1
## 962 1 1.000000000 1
## 963 3 1.000000000 1
## 964 24 1.000000000 1
## 965 3 1.000000000 1
## 966 2 1.000000000 1
## 967 1 1.000000000 1
## 968 2 1.000000000 1
## 969 3 1.000000000 1
## 970 1 1.000000000 1
## 971 7 1.000000000 1
## 972 1 1.000000000 1
## 973 22 1.000000000 1
## 974 8 1.000000000 1
## 975 7 1.000000000 1
## 976 1 1.000000000 1
## 977 2 1.000000000 1
## 978 10 1.000000000 1
## 979 1 1.000000000 1
## 980 4 1.000000000 1
## 981 2 1.000000000 1
## 982 24 1.000000000 1
## 983 1 1.000000000 1
## 984 1 1.000000000 1
## 985 1 1.000000000 1
## 986 2 1.000000000 1
## 987 1 1.000000000 1
## 988 1 1.000000000 1
## 989 4 1.000000000 1
## 990 1 1.000000000 1
## 991 1 1.000000000 1
## 992 5 1.000000000 1
## 993 4 1.000000000 1
## 994 3 1.000000000 1
## 995 11 1.000000000 1
## 996 4 1.000000000 1
## 997 3 1.000000000 1
## 998 1 1.000000000 1
## 999 17 1.000000000 1
## 1000 8 1.000000000 1
## 1001 2 1.000000000 1
## 1002 4 1.000000000 1
## 1003 16 1.000000000 1
## 1004 6 1.000000000 1
## 1005 3 1.000000000 1
## 1006 7 1.000000000 1
## 1007 2 1.000000000 1
## 1008 3 1.000000000 1
## 1009 2 1.000000000 1
## 1010 1 1.000000000 1
## 1011 9 1.000000000 1
## 1012 3 1.000000000 1
## 1013 1 1.000000000 1
## 1014 1 1.000000000 1
## 1015 1 1.000000000 1
## 1016 5 1.000000000 1
## 1017 5 1.000000000 1
## 1018 1 1.000000000 1
## 1019 5 1.000000000 1
## 1020 14 1.000000000 1
## 1021 8 1.000000000 1
## 1022 2 1.000000000 1
## 1023 1 1.000000000 1
## 1024 4 1.000000000 1
## 1025 1 1.000000000 1
## 1026 2 1.000000000 1
## 1027 2 1.000000000 1
## 1028 1 1.000000000 1
## 1029 5 1.000000000 1
## 1030 3 1.000000000 1
## 1031 1 1.000000000 1
## 1032 7 1.000000000 1
## 1033 5 1.000000000 1
## 1034 2 1.000000000 1
## 1035 5 1.000000000 1
## 1036 5 1.000000000 1
## 1037 4 1.000000000 1
## 1038 2 1.000000000 1
## 1039 5 1.000000000 1
## 1040 12 1.000000000 1
## 1041 11 1.000000000 1
## 1042 16 1.000000000 1
## 1043 9 1.000000000 1
## 1044 5 1.000000000 1
## 1045 1 1.000000000 1
## 1046 3 1.000000000 1
## 1047 8 1.000000000 1
## 1048 1 1.000000000 1
## 1049 29 1.000000000 1
## 1050 27 1.000000000 1
## 1051 1 1.000000000 1
## 1052 4 1.000000000 1
## 1053 1 1.000000000 1
## 1054 14 1.000000000 1
## 1055 8 1.000000000 1
## 1056 2 1.000000000 1
## 1057 3 1.000000000 1
## 1058 11 1.000000000 1
## 1059 8 1.000000000 1
## 1060 8 1.000000000 1
## 1061 1 1.000000000 1
## 1062 1 1.000000000 1
## 1063 1 1.000000000 1
## 1064 1 1.000000000 1
## 1065 11 1.000000000 1
## 1066 11 1.000000000 1
## 1067 3 1.000000000 1
## 1068 2 1.000000000 1
## 1069 1 1.000000000 1
## 1070 1 1.000000000 1
## 1071 4 1.000000000 1
## 1072 7 1.000000000 1
## 1073 28 1.000000000 1
## 1074 1 1.000000000 1
## 1075 5 1.000000000 1
## 1076 2 1.000000000 1
## 1077 1 1.000000000 1
## 1078 4 1.000000000 1
## 1079 8 1.000000000 1
## 1080 6 1.000000000 1
## 1081 1 1.000000000 1
## 1082 3 1.000000000 1
## 1083 5 1.000000000 1
## 1084 1 1.000000000 1
## 1085 1 1.000000000 1
## 1086 2 1.000000000 1
## 1087 7 1.000000000 1
## 1088 22 1.000000000 1
## 1089 1 1.000000000 1
## 1090 1 1.000000000 1
## 1091 1 1.000000000 1
## 1092 1 1.000000000 1
## 1093 2 1.000000000 1
## 1094 2 1.000000000 1
## 1095 5 1.000000000 1
## 1096 2 1.000000000 1
## 1097 1 1.000000000 1
## 1098 258 1.000000000 1
## 1099 6 1.000000000 1
## 1100 1 1.000000000 1
## 1101 1 1.000000000 1
## 1102 5 1.000000000 1
## 1103 2 1.000000000 1
## 1104 3 1.000000000 1
## 1105 4 1.000000000 1
## 1106 2 1.000000000 1
## 1107 7 1.000000000 1
## 1108 1 1.000000000 1
## 1109 2 1.000000000 1
## 1110 39 1.000000000 1
## 1111 2 1.000000000 1
## 1112 1 1.000000000 1
## 1113 14 1.000000000 1
## 1114 4 1.000000000 1
## 1115 8 1.000000000 1
## 1116 1 1.000000000 1
## 1117 4 1.000000000 1
## 1118 2 1.000000000 1
## 1119 1 1.000000000 1
## 1120 1 1.000000000 1
## 1121 1 1.000000000 1
## 1122 5 1.000000000 1
## 1123 1 1.000000000 1
## 1124 46 1.000000000 1
## 1125 19 1.000000000 1
## 1126 27 1.000000000 1
## 1127 18 1.000000000 1
## 1128 3 1.000000000 1
## 1129 4 1.000000000 1
## 1130 1 1.000000000 1
## 1131 1 1.000000000 1
## 1132 1 1.000000000 1
## 1133 3 1.000000000 1
## 1134 1 1.000000000 1
## 1135 1 1.000000000 1
## 1136 2 1.000000000 1
## 1137 2 1.000000000 1
## 1138 1 1.000000000 1
## 1139 7 1.000000000 1
## 1140 1 1.000000000 1
## 1141 9 1.000000000 1
## 1142 2 1.000000000 1
## 1143 3 1.000000000 1
## 1144 9 1.000000000 1
## 1145 8 1.000000000 1
## 1146 9 1.000000000 1
## 1147 1 1.000000000 1
## 1148 7 1.000000000 1
## 1149 59 1.000000000 1
## 1150 7 1.000000000 1
## 1151 7 1.000000000 1
## 1152 1 1.000000000 1
## 1153 3 1.000000000 1
## 1154 16 1.000000000 1
## 1155 7 1.000000000 1
## 1156 28 1.000000000 1
## 1157 15 1.000000000 1
## 1158 9 1.000000000 1
## 1159 3 1.000000000 1
## 1160 1 1.000000000 1
## 1161 6 1.000000000 1
## 1162 3 1.000000000 1
## 1163 1 1.000000000 1
## 1164 8 1.000000000 1
## 1165 1 1.000000000 1
## 1166 2 1.000000000 1
## 1167 1 1.000000000 1
## 1168 5 1.000000000 1
## 1169 1 1.000000000 1
## 1170 1 1.000000000 1
## 1171 2 1.000000000 1
## 1172 6 1.000000000 1
## 1173 5 1.000000000 1
## 1174 6 1.000000000 1
## 1175 9 1.000000000 1
## 1176 2 1.000000000 1
## 1177 1 1.000000000 1
## 1178 3 1.000000000 1
## 1179 3 1.000000000 1
## 1180 1 1.000000000 1
## 1181 2 1.000000000 1
## 1182 3 1.000000000 1
## 1183 1 1.000000000 1
## 1184 2 1.000000000 1
## 1185 1 1.000000000 1
## 1186 1 1.000000000 1
## 1187 2 1.000000000 1
## 1188 1 1.000000000 1
## 1189 1 1.000000000 1
## 1190 2 1.000000000 1
## 1191 3 1.000000000 1
## 1192 28 1.000000000 1
## 1193 3 1.000000000 1
## 1194 13 1.000000000 1
## 1195 1 1.000000000 1
## 1196 1 1.000000000 1
## 1197 7 1.000000000 1
## 1198 4 1.000000000 1
## 1199 3 1.000000000 1
## 1200 1 1.000000000 1
## 1201 2 1.000000000 1
## 1202 1 1.000000000 1
## 1203 1 1.000000000 1
## 1204 5 1.000000000 1
## 1205 1 1.000000000 1
## 1206 1 1.000000000 1
## 1207 2 1.000000000 1
## 1208 1 1.000000000 1
## 1209 1 1.000000000 1
## 1210 3 1.000000000 1
## 1211 2 1.000000000 1
## 1212 1 1.000000000 1
## 1213 4 1.000000000 1
## 1214 1 1.000000000 1
## 1215 1 1.000000000 1
## 1216 1 1.000000000 1
## 1217 3 1.000000000 1
## 1218 2 1.000000000 1
## 1219 5 1.000000000 1
## 1220 1 1.000000000 1
## 1221 6 1.000000000 1
## 1222 4 1.000000000 1
## 1223 1 1.000000000 1
## 1224 2 1.000000000 1
## 1225 1 1.000000000 1
## 1226 1 1.000000000 1
## 1227 1 1.000000000 1
## 1228 3 1.000000000 1
## 1229 1 1.000000000 1
## 1230 1 1.000000000 1
## 1231 2 1.000000000 1
## 1232 1 1.000000000 1
## 1233 3 1.000000000 1
## 1234 4 1.000000000 1
## 1235 3 1.000000000 1
## 1236 6 1.000000000 1
## 1237 2 1.000000000 1
## 1238 2 1.000000000 1
## 1239 8 1.000000000 1
## 1240 2 1.000000000 1
## 1241 16 1.000000000 1
## 1242 8 1.000000000 1
## 1243 6 1.000000000 1
## 1244 2 1.000000000 1
## 1245 1 1.000000000 1
## 1246 11 1.000000000 1
## 1247 1 1.000000000 1
## 1248 2 1.000000000 1
## 1249 1 1.000000000 1
## 1250 1 1.000000000 1
## 1251 1 1.000000000 1
## 1252 2 1.000000000 1
## 1253 2 1.000000000 1
## 1254 9 1.000000000 1
## 1255 6 1.000000000 1
## 1256 2 1.000000000 1
## 1257 5 1.000000000 1
## 1258 16 1.000000000 1
## 1259 7 1.000000000 1
## 1260 2 1.000000000 1
## 1261 1 1.000000000 1
## 1262 1 1.000000000 1
## 1263 1 1.000000000 1
## 1264 1 1.000000000 1
## 1265 1 1.000000000 1
## 1266 5 1.000000000 1
## 1267 6 1.000000000 1
## 1268 3 1.000000000 1
## 1269 1 1.000000000 1
## 1270 3 1.000000000 1
## 1271 2 1.000000000 1
## 1272 1 1.000000000 1
## 1273 2 1.000000000 1
## 1274 1 1.000000000 1
## 1275 1 1.000000000 1
## 1276 3 1.000000000 1
## 1277 1 1.000000000 1
## 1278 12 1.000000000 1
## 1279 2 1.000000000 1
## 1280 6 1.000000000 1
## 1281 12 1.000000000 1
## 1282 2 1.000000000 1
## 1283 2 1.000000000 1
## 1284 1 1.000000000 1
## 1285 3 1.000000000 1
## 1286 1 1.000000000 1
## 1287 2 1.000000000 1
## 1288 5 1.000000000 1
## 1289 1 1.000000000 1
## 1290 1 1.000000000 1
## 1291 1 1.000000000 1
## 1292 1 1.000000000 1
## 1293 2 1.000000000 1
## 1294 4 1.000000000 1
## 1295 1 1.000000000 1
## 1296 1 1.000000000 1
## 1297 2 1.000000000 1
## 1298 2 1.000000000 1
## 1299 13 1.000000000 1
## 1300 4 1.000000000 1
## 1301 1 1.000000000 1
## 1302 4 1.000000000 1
## 1303 3 1.000000000 1
## 1304 1 1.000000000 1
## 1305 1 1.000000000 1
## 1306 2 1.000000000 1
## 1307 3 1.000000000 1
## 1308 2 1.000000000 1
## 1309 1 1.000000000 1
## 1310 2 1.000000000 1
## 1311 6 1.000000000 1
## 1312 26 1.000000000 1
## 1313 1 1.000000000 1
## 1314 25 1.000000000 1
## 1315 16 1.000000000 1
## 1316 3 1.000000000 1
## 1317 4 1.000000000 1
## 1318 2 1.000000000 1
## 1319 2 1.000000000 1
## 1320 8 1.000000000 1
## 1321 7 1.000000000 1
## 1322 29 1.000000000 1
## 1323 1 1.000000000 1
## 1324 1 1.000000000 1
## 1325 1 1.000000000 1
## 1326 1 1.000000000 1
## 1327 2 1.000000000 1
## 1328 1 1.000000000 1
## 1329 1 1.000000000 1
## 1330 2 1.000000000 1
## 1331 3 1.000000000 1
## 1332 11 1.000000000 1
## 1333 5 1.000000000 1
## 1334 3 1.000000000 1
## 1335 2 1.000000000 1
## 1336 1 1.000000000 1
## 1337 1 1.000000000 1
## 1338 1 1.000000000 1
## 1339 1 1.000000000 1
## 1340 1 1.000000000 1
## 1341 2 1.000000000 1
## 1342 1 1.000000000 1
## 1343 1 1.000000000 1
## 1344 3 1.000000000 1
## 1345 3 1.000000000 1
## 1346 1 1.000000000 1
## 1347 5 1.000000000 1
## 1348 1 1.000000000 1
## 1349 2 1.000000000 1
## 1350 4 1.000000000 1
## 1351 44 1.000000000 1
## 1352 41 1.000000000 1
## 1353 25 1.000000000 1
## 1354 10 1.000000000 1
## 1355 24 1.000000000 1
## 1356 8 1.000000000 1
## 1357 11 1.000000000 1
## 1358 2 1.000000000 1
## 1359 4 1.000000000 1
## 1360 1 1.000000000 1
## 1361 3 1.000000000 1
## 1362 6 1.000000000 1
## 1363 1 1.000000000 1
## 1364 4 1.000000000 1
## 1365 11 1.000000000 1
## 1366 1 1.000000000 1
## 1367 2 1.000000000 1
## 1368 2 1.000000000 1
## 1369 1 1.000000000 1
## 1370 1 1.000000000 1
## 1371 1 1.000000000 1
## 1372 2 1.000000000 1
## 1373 7 1.000000000 1
## 1374 6 1.000000000 1
## 1375 1 1.000000000 1
## 1376 1 1.000000000 1
## 1377 1 1.000000000 1
## 1378 2 1.000000000 1
## 1379 3 1.000000000 1
## 1380 1 1.000000000 1
## 1381 2 1.000000000 1
## 1382 1 1.000000000 1
## 1383 2 1.000000000 1
## 1384 5 1.000000000 1
## 1385 1 1.000000000 1
## 1386 2 1.000000000 1
## 1387 1 1.000000000 1
## 1388 2 1.000000000 1
## 1389 3 1.000000000 1
## 1390 2 1.000000000 1
## 1391 3 1.000000000 1
## 1392 1 1.000000000 1
## 1393 1 1.000000000 1
## 1394 2 1.000000000 1
## 1395 2 1.000000000 1
## 1396 2 1.000000000 1
## 1397 3 1.000000000 1
## 1398 2 1.000000000 1
## 1399 1 1.000000000 1
## 1400 1 1.000000000 1
## 1401 1 1.000000000 1
## 1402 26 1.000000000 1
## 1403 2 1.000000000 1
## 1404 4 1.000000000 1
## 1405 2 1.000000000 1
## 1406 2 1.000000000 1
## 1407 4 1.000000000 1
## 1408 1 1.000000000 1
## 1409 2 1.000000000 1
## 1410 2 1.000000000 1
## 1411 1 1.000000000 1
## 1412 4 1.000000000 1
## 1413 1 1.000000000 1
## 1414 1 1.000000000 1
## 1415 2 1.000000000 1
## 1416 1 1.000000000 1
## 1417 1 1.000000000 1
## 1418 2 1.000000000 1
## 1419 17 1.000000000 1
## 1420 13 1.000000000 1
## 1421 2 1.000000000 1
## 1422 1 1.000000000 1
## 1423 1 1.000000000 1
## 1424 1 1.000000000 1
## 1425 1 1.000000000 1
## 1426 44 1.000000000 1
## 1427 1 1.000000000 1
## 1428 1 1.000000000 1
## 1429 8 1.000000000 1
## 1430 2 1.000000000 1
## 1431 1 1.000000000 1
## 1432 2 1.000000000 1
## 1433 1 1.000000000 1
## 1434 2 1.000000000 1
## 1435 1 1.000000000 1
## 1436 1 1.000000000 1
## 1437 4 1.000000000 1
## 1438 5 1.000000000 1
## 1439 27 1.000000000 1
## 1440 15 1.000000000 1
## 1441 1 1.000000000 1
## 1442 5 1.000000000 1
## 1443 2 1.000000000 1
## 1444 5 1.000000000 1
## 1445 3 1.000000000 1
## 1446 2 1.000000000 1
## 1447 2 1.000000000 1
## 1448 1 1.000000000 1
## 1449 7 1.000000000 1
## 1450 2 1.000000000 1
## 1451 5 1.000000000 1
## 1452 3 1.000000000 1
## 1453 1 1.000000000 1
## 1454 1 1.000000000 1
## 1455 3 1.000000000 1
## 1456 8 1.000000000 1
## 1457 5 1.000000000 1
## 1458 13 1.000000000 1
## 1459 5 1.000000000 1
## 1460 4 1.000000000 1
## 1461 3 1.000000000 1
## 1462 3 1.000000000 1
## 1463 1 1.000000000 1
## 1464 1 1.000000000 1
## 1465 1 1.000000000 1
## 1466 4 1.000000000 1
## 1467 2 1.000000000 1
## 1468 1 1.000000000 1
## 1469 2 1.000000000 1
## 1470 2 1.000000000 1
## 1471 1 1.000000000 1
## 1472 2 1.000000000 1
## 1473 1 1.000000000 1
## 1474 3 1.000000000 1
## 1475 4 1.000000000 1
## 1476 1 1.000000000 1
## 1477 1 1.000000000 1
## 1478 1 1.000000000 1
## 1479 1 1.000000000 1
## 1480 1 1.000000000 1
## 1481 1 1.000000000 1
## 1482 92 1.000000000 1
## 1483 1 1.000000000 1
## 1484 5 1.000000000 1
## 1485 2 1.000000000 1
## 1486 1 1.000000000 1
## 1487 1 1.000000000 1
## 1488 1 1.000000000 1
## 1489 3 1.000000000 1
## 1490 1 1.000000000 1
## 1491 2 1.000000000 1
## 1492 1 1.000000000 1
## 1493 1 1.000000000 1
## 1494 2 1.000000000 1
## 1495 1 1.000000000 1
## 1496 1 1.000000000 1
## 1497 1 1.000000000 1
## 1498 4 1.000000000 1
## 1499 4 1.000000000 1
## 1500 1 1.000000000 1
## 1501 3 1.000000000 1
## 1502 4 1.000000000 1
## 1503 4 1.000000000 1
## 1504 11 1.000000000 1
## 1505 5 1.000000000 1
## 1506 2 1.000000000 1
## 1507 2 1.000000000 1
## 1508 3 1.000000000 1
## 1509 16 1.000000000 1
## 1510 14 1.000000000 1
## 1511 1 1.000000000 1
## 1512 5 1.000000000 1
## 1513 2 1.000000000 1
## 1514 4 1.000000000 1
## 1515 2 1.000000000 1
## 1516 1 1.000000000 1
## 1517 5 1.000000000 1
## 1518 6 1.000000000 1
## 1519 3 1.000000000 1
## 1520 1 1.000000000 1
## 1521 1 1.000000000 1
## 1522 2 1.000000000 1
## 1523 1 1.000000000 1
## 1524 2 1.000000000 1
## 1525 1 1.000000000 1
## 1526 10 1.000000000 1
## 1527 1 1.000000000 1
## 1528 9 1.000000000 1
## 1529 1 1.000000000 1
## 1530 3 1.000000000 1
## 1531 4 1.000000000 1
## 1532 1 1.000000000 1
## 1533 1 1.000000000 1
## 1534 1 1.000000000 1
## 1535 1 1.000000000 1
## 1536 1 1.000000000 1
## 1537 1 1.000000000 1
## 1538 3 1.000000000 1
## 1539 4 1.000000000 1
## 1540 1 1.000000000 1
## 1541 11 1.000000000 1
## 1542 1 1.000000000 1
## 1543 1 1.000000000 1
## 1544 1 1.000000000 1
## 1545 3 1.000000000 1
## 1546 1 1.000000000 1
## 1547 1 1.000000000 1
## 1548 2 1.000000000 1
## 1549 1 1.000000000 1
## 1550 2 1.000000000 1
## 1551 4 1.000000000 1
## 1552 2 1.000000000 1
## 1553 1 1.000000000 1
## 1554 2 1.000000000 1
## 1555 1 1.000000000 1
## 1556 21 1.000000000 1
## 1557 30 1.000000000 1
## 1558 6 1.000000000 1
## 1559 1 1.000000000 1
## 1560 1 1.000000000 1
## 1561 1 1.000000000 1
## 1562 1 1.000000000 1
## 1563 1 1.000000000 1
## 1564 1 1.000000000 1
## 1565 1 1.000000000 1
## 1566 1 1.000000000 1
## 1567 1 1.000000000 1
## 1568 1 1.000000000 1
## 1569 7 1.000000000 1
## 1570 3 1.000000000 1
## 1571 1 1.000000000 1
## 1572 2 1.000000000 1
## 1573 2 1.000000000 1
## 1574 8 1.000000000 1
## 1575 1 1.000000000 1
## 1576 1 1.000000000 1
## 1577 4 1.000000000 1
## 1578 2 1.000000000 1
## 1579 2 1.000000000 1
## 1580 3 1.000000000 1
## 1581 2 1.000000000 1
## 1582 2 1.000000000 1
## 1583 2 1.000000000 1
## 1584 1 1.000000000 1
## 1585 8 1.000000000 1
## 1586 1 1.000000000 1
## 1587 4 1.000000000 1
## 1588 28 1.000000000 1
## 1589 1 1.000000000 1
## 1590 4 1.000000000 1
## 1591 5 1.000000000 1
## 1592 9 1.000000000 1
## 1593 7 1.000000000 1
## 1594 2 1.000000000 1
## 1595 30 1.000000000 1
## 1596 4 1.000000000 1
## 1597 4 1.000000000 1
## 1598 3 1.000000000 1
## 1599 70 1.000000000 1
## 1600 7 1.000000000 1
## 1601 6 1.000000000 1
## 1602 3 1.000000000 1
## 1603 4 1.000000000 1
## 1604 14 1.000000000 1
## 1605 15 1.000000000 1
## 1606 26 1.000000000 1
## 1607 3 1.000000000 1
## 1608 51 1.000000000 1
## 1609 9 1.000000000 1
## 1610 3 1.000000000 1
## 1611 3 1.000000000 1
## 1612 6 1.000000000 1
## 1613 8 1.000000000 1
## 1614 1 1.000000000 1
## 1615 1 1.000000000 1
## 1616 3 1.000000000 1
## 1617 1 1.000000000 1
## 1618 4 1.000000000 1
## 1619 1 1.000000000 1
## 1620 6 1.000000000 1
## 1621 3 1.000000000 1
## 1622 4 1.000000000 1
## 1623 3 1.000000000 1
## 1624 1 1.000000000 1
## 1625 2 1.000000000 1
## 1626 1 1.000000000 1
## 1627 1 1.000000000 1
## 1628 3 1.000000000 1
## 1629 5 1.000000000 1
## 1630 2 1.000000000 1
## 1631 1 1.000000000 1
## 1632 2 1.000000000 1
## 1633 1 1.000000000 1
## 1634 5 1.000000000 1
## 1635 1 1.000000000 1
## 1636 1 1.000000000 1
## 1637 6 1.000000000 1
## 1638 3 1.000000000 1
## 1639 3 1.000000000 1
## 1640 5 1.000000000 1
## 1641 1 1.000000000 1
## 1642 3 1.000000000 1
## 1643 2 1.000000000 1
## 1644 2 1.000000000 1
## 1645 1 1.000000000 1
## 1646 1 1.000000000 1
## 1647 2 1.000000000 1
## 1648 2 1.000000000 1
## 1649 4 1.000000000 1
## 1650 1 1.000000000 1
## 1651 1 1.000000000 1
## 1652 11 1.000000000 1
## 1653 3 1.000000000 1
## 1654 2 1.000000000 1
## 1655 1 1.000000000 1
## 1656 2 1.000000000 1
## 1657 2 1.000000000 1
## 1658 1 1.000000000 1
## 1659 3 1.000000000 1
## 1660 1 1.000000000 1
## 1661 3 1.000000000 1
## 1662 3 1.000000000 1
## 1663 21 1.000000000 1
## 1664 1 1.000000000 1
## 1665 3 1.000000000 1
## 1666 4 1.000000000 1
## 1667 4 1.000000000 1
## 1668 2 1.000000000 1
## 1669 2 1.000000000 1
## 1670 2 1.000000000 1
## 1671 2 1.000000000 1
## 1672 2 1.000000000 1
## 1673 2 1.000000000 1
## 1674 2 1.000000000 1
## 1675 1 1.000000000 1
## 1676 2 1.000000000 1
## 1677 4 1.000000000 1
## 1678 3 1.000000000 1
## 1679 2 1.000000000 1
## 1680 3 1.000000000 1
## 1681 3 1.000000000 1
## 1682 1 1.000000000 1
## 1683 1 1.000000000 1
## 1684 5 1.000000000 1
## 1685 5 1.000000000 1
## 1686 2 1.000000000 1
## 1687 1 1.000000000 1
## 1688 1 1.000000000 1
## 1689 1 1.000000000 1
## 1690 1 1.000000000 1
## 1691 1 1.000000000 1
## 1692 11 1.000000000 1
## 1693 9 1.000000000 1
## 1694 8 1.000000000 1
## 1695 95 1.000000000 1
## 1696 2 1.000000000 1
## 1697 3 1.000000000 1
## 1698 10 1.000000000 1
## 1699 1 1.000000000 1
## 1700 1 1.000000000 1
## 1701 2 1.000000000 1
## 1702 49 1.000000000 1
## 1703 3 1.000000000 1
## 1704 3 1.000000000 1
## 1705 7 1.000000000 1
## 1706 19 1.000000000 1
## 1707 4 1.000000000 1
## 1708 1 1.000000000 1
## 1709 5 1.000000000 1
## 1710 2 1.000000000 1
## 1711 2 1.000000000 1
## 1712 7 1.000000000 1
## 1713 2 1.000000000 1
## 1714 2 1.000000000 1
## 1715 3 1.000000000 1
## 1716 2 1.000000000 1
## 1717 2 1.000000000 1
## 1718 2 1.000000000 1
## 1719 2 1.000000000 1
## 1720 2 1.000000000 1
## 1721 2 1.000000000 1
## 1722 1 1.000000000 1
## 1723 6 1.000000000 1
## 1724 1 1.000000000 1
## 1725 2 1.000000000 1
## 1726 3 1.000000000 1
## 1727 1 1.000000000 1
## 1728 7 1.000000000 1
## 1729 10 1.000000000 1
## 1730 6 1.000000000 1
## 1731 3 1.000000000 1
## 1732 3 1.000000000 1
## 1733 3 1.000000000 1
## 1734 1 1.000000000 1
## 1735 1 1.000000000 1
## 1736 4 1.000000000 1
## 1737 2 1.000000000 1
## 1738 2 1.000000000 1
## 1739 3 1.000000000 1
## 1740 3 1.000000000 1
## 1741 26 1.000000000 1
## 1742 2 1.000000000 1
## 1743 12 1.000000000 1
## 1744 15 1.000000000 1
## 1745 11 1.000000000 1
## 1746 10 1.000000000 1
## 1747 2 1.000000000 1
## 1748 6 1.000000000 1
## 1749 2 1.000000000 1
## 1750 1 1.000000000 1
## 1751 2 1.000000000 1
## 1752 2 1.000000000 1
## 1753 2 1.000000000 1
## 1754 3 1.000000000 1
## 1755 7 1.000000000 1
## 1756 3 1.000000000 1
## 1757 2 1.000000000 1
## 1758 6 1.000000000 1
## 1759 19 1.000000000 1
## 1760 4 1.000000000 1
## 1761 7 1.000000000 1
## 1762 4 1.000000000 1
## 1763 6 1.000000000 1
## 1764 1 1.000000000 1
## 1765 1 1.000000000 1
## 1766 3 1.000000000 1
## 1767 4 1.000000000 1
## 1768 9 1.000000000 1
## 1769 8 1.000000000 1
## 1770 1 1.000000000 1
## 1771 2 1.000000000 1
## 1772 3 1.000000000 1
## 1773 22 1.000000000 1
## 1774 5 1.000000000 1
## 1775 3 1.000000000 1
## 1776 2 1.000000000 1
## 1777 1 1.000000000 1
## 1778 2 1.000000000 1
## 1779 3 1.000000000 1
## 1780 7 1.000000000 1
## 1781 15 1.000000000 1
## 1782 7 1.000000000 1
## 1783 8 1.000000000 1
## 1784 2 1.000000000 1
## 1785 5 1.000000000 1
## 1786 1 1.000000000 1
## 1787 1 1.000000000 1
## 1788 3 1.000000000 1
## 1789 2 1.000000000 1
## 1790 3 1.000000000 1
## 1791 1 1.000000000 1
## 1792 2 1.000000000 1
## 1793 1 1.000000000 1
## 1794 7 1.000000000 1
## 1795 9 1.000000000 1
## 1796 4 1.000000000 1
## 1797 2 1.000000000 1
## 1798 4 1.000000000 1
## 1799 1 1.000000000 1
## 1800 14 1.000000000 1
## 1801 2 1.000000000 1
## 1802 50 1.000000000 1
## 1803 2 1.000000000 1
## 1804 8 1.000000000 1
## 1805 2 1.000000000 1
## 1806 1 1.000000000 1
## 1807 2 1.000000000 1
## 1808 10 1.000000000 1
## 1809 7 1.000000000 1
## 1810 47 1.000000000 1
## 1811 21 1.000000000 1
## 1812 1 1.000000000 1
## 1813 14 1.000000000 1
## 1814 2 1.000000000 1
## 1815 3 1.000000000 1
## 1816 14 1.000000000 1
## 1817 26 1.000000000 1
## 1818 4 1.000000000 1
## 1819 36 1.000000000 1
## 1820 2 1.000000000 1
## 1821 3 1.000000000 1
## 1822 21 1.000000000 1
## 1823 8 1.000000000 1
## 1824 7 1.000000000 1
## 1825 1 1.000000000 1
## 1826 17 1.000000000 1
## 1827 3 1.000000000 1
## 1828 5 1.000000000 1
## 1829 2 1.000000000 1
## 1830 1 1.000000000 1
## 1831 1 1.000000000 1
## 1832 5 1.000000000 1
## 1833 17 1.000000000 1
## 1834 1 1.000000000 1
## 1835 5 1.000000000 1
## 1836 2 1.000000000 1
## 1837 3 1.000000000 1
## 1838 2 1.000000000 1
## 1839 7 1.000000000 1
## 1840 1 1.000000000 1
## 1841 1 1.000000000 1
## 1842 1 1.000000000 1
## 1843 1 1.000000000 1
## 1844 5 1.000000000 1
## 1845 1 1.000000000 1
## 1846 2 1.000000000 1
## 1847 1 1.000000000 1
## 1848 2 1.000000000 1
## 1849 2 1.000000000 1
## 1850 2 1.000000000 1
## 1851 3 1.000000000 1
## 1852 2 1.000000000 1
## 1853 3 1.000000000 1
## 1854 49 1.000000000 1
## 1855 15 1.000000000 1
## 1856 2 1.000000000 1
## 1857 32 1.000000000 1
## 1858 3 1.000000000 1
## 1859 2 1.000000000 1
## 1860 1 1.000000000 1
## 1861 2 1.000000000 1
## 1862 11 1.000000000 1
## 1863 3 1.000000000 1
## 1864 2 1.000000000 1
## 1865 1 1.000000000 1
## 1866 4 1.000000000 1
## 1867 1 1.000000000 1
## 1868 28 1.000000000 1
## 1869 2 1.000000000 1
## 1870 1 1.000000000 1
## 1871 20 1.000000000 1
## 1872 4 1.000000000 1
## 1873 3 1.000000000 1
## 1874 9 1.000000000 1
## 1875 4 1.000000000 1
## 1876 4 1.000000000 1
## 1877 16 1.000000000 1
## 1878 75 1.000000000 1
## 1879 48 1.000000000 1
## 1880 19 1.000000000 1
## 1881 6 1.000000000 1
## 1882 23 1.000000000 1
## 1883 4 1.000000000 1
## 1884 20 1.000000000 1
## 1885 1 1.000000000 1
## 1886 1 1.000000000 1
## 1887 3 1.000000000 1
## 1888 1 1.000000000 1
## 1889 3 1.000000000 1
## 1890 6 1.000000000 1
## 1891 2 1.000000000 1
## 1892 2 1.000000000 1
## 1893 2 1.000000000 1
## 1894 2 1.000000000 1
## 1895 1 1.000000000 1
## 1896 1 1.000000000 1
## 1897 2 1.000000000 1
## 1898 1 1.000000000 1
## 1899 33 1.000000000 1
## 1900 14 1.000000000 1
## 1901 7 1.000000000 1
## 1902 4 1.000000000 1
## 1903 1 1.000000000 1
## 1904 5 1.000000000 1
## 1905 1 1.000000000 1
## 1906 5 1.000000000 1
## 1907 2 1.000000000 1
## 1908 4 1.000000000 1
## 1909 3 1.000000000 1
## 1910 1 1.000000000 1
## 1911 1 1.000000000 1
## 1912 18 1.000000000 1
## 1913 10 1.000000000 1
## 1914 14 1.000000000 1
## 1915 6 1.000000000 1
## 1916 11 1.000000000 1
## 1917 9 1.000000000 1
## 1918 3 1.000000000 1
## 1919 15 1.000000000 1
## 1920 1 1.000000000 1
## 1921 2 1.000000000 1
## 1922 2 1.000000000 1
## 1923 1 1.000000000 1
## 1924 1 1.000000000 1
## 1925 1 1.000000000 1
## 1926 6 1.000000000 1
## 1927 9 1.000000000 1
## 1928 4 1.000000000 1
## 1929 14 1.000000000 1
## 1930 1 1.000000000 1
## 1931 6 1.000000000 1
## 1932 3 1.000000000 1
## 1933 2 1.000000000 1
## 1934 6 1.000000000 1
## 1935 10 1.000000000 1
## 1936 23 1.000000000 1
## 1937 1 1.000000000 1
## 1938 2 1.000000000 1
## 1939 2 1.000000000 1
## 1940 1 1.000000000 1
## 1941 2 1.000000000 1
## 1942 1 1.000000000 1
## 1943 3 1.000000000 1
## 1944 1 1.000000000 1
## 1945 1 1.000000000 1
## 1946 3 1.000000000 1
## 1947 4 1.000000000 1
## 1948 6 1.000000000 1
## 1949 32 1.000000000 1
## 1950 4 1.000000000 1
## 1951 2 1.000000000 1
## 1952 1 1.000000000 1
## 1953 10 1.000000000 1
## 1954 14 1.000000000 1
## 1955 16 1.000000000 1
## 1956 5 1.000000000 1
## 1957 11 1.000000000 1
## 1958 17 1.000000000 1
## 1959 11 1.000000000 1
## 1960 46 1.000000000 1
## 1961 37 1.000000000 1
## 1962 77 1.000000000 1
## 1963 1 1.000000000 1
## 1964 48 1.000000000 1
## 1965 9 1.000000000 1
## 1966 7 1.000000000 1
## 1967 5 1.000000000 1
## 1968 27 1.000000000 1
## 1969 1 1.000000000 1
## 1970 4 1.000000000 1
## 1971 91 1.000000000 1
## 1972 11 1.000000000 1
## 1973 2 1.000000000 1
## 1974 2 1.000000000 1
## 1975 3 1.000000000 1
## 1976 1 1.000000000 1
## 1977 1 1.000000000 1
## 1978 2 1.000000000 1
## 1979 1 1.000000000 1
## 1980 1 1.000000000 1
## 1981 1 1.000000000 1
## 1982 1 1.000000000 1
## 1983 1 1.000000000 1
## 1984 1 1.000000000 1
## 1985 2 1.000000000 1
## 1986 1 1.000000000 1
## 1987 6 1.000000000 1
## 1988 27 1.000000000 1
## 1989 8 1.000000000 1
## 1990 5 1.000000000 1
## 1991 53 1.000000000 1
## 1992 2 1.000000000 1
## 1993 2 1.000000000 1
## 1994 7 1.000000000 1
## 1995 2 1.000000000 1
## 1996 5 1.000000000 1
## 1997 3 1.000000000 1
## 1998 46 1.000000000 1
## 1999 10 1.000000000 1
## 2000 15 1.000000000 1
## 2001 3 1.000000000 1
## 2002 2 1.000000000 1
## 2003 13 1.000000000 1
## 2004 22 1.000000000 1
## 2005 9 1.000000000 1
## 2006 48 1.000000000 1
## 2007 11 1.000000000 1
## 2008 3 1.000000000 1
## 2009 3 1.000000000 1
## 2010 13 1.000000000 1
## 2011 2 1.000000000 1
## 2012 16 1.000000000 1
## 2013 14 1.000000000 1
## 2014 1 1.000000000 1
## 2015 2 1.000000000 1
## 2016 2 1.000000000 1
## 2017 1 1.000000000 1
## 2018 1 1.000000000 1
## 2019 2 1.000000000 1
## 2020 13 1.000000000 1
## 2021 5 1.000000000 1
## 2022 2 1.000000000 1
## 2023 2 1.000000000 1
## 2024 10 1.000000000 1
## 2025 19 1.000000000 1
## 2026 5 1.000000000 1
## 2027 2 1.000000000 1
## 2028 3 1.000000000 1
## 2029 21 1.000000000 1
## 2030 17 1.000000000 1
## 2031 3 1.000000000 1
## 2032 12 1.000000000 1
## 2033 3 1.000000000 1
## 2034 1 1.000000000 1
## 2035 11 1.000000000 1
## 2036 16 1.000000000 1
## 2037 9 1.000000000 1
## 2038 3 1.000000000 1
## 2039 1 1.000000000 1
## 2040 1 1.000000000 1
## 2041 2 1.000000000 1
## 2042 17 1.000000000 1
## 2043 34 1.000000000 1
## 2044 2 1.000000000 1
## 2045 1 1.000000000 1
## 2046 1 1.000000000 1
## 2047 4 1.000000000 1
## 2048 1 1.000000000 1
## 2049 1 1.000000000 1
## 2050 1 1.000000000 1
## 2051 4 1.000000000 1
## 2052 2 1.000000000 1
## 2053 13 1.000000000 1
## 2054 1 1.000000000 1
## 2055 1 1.000000000 1
## 2056 5 1.000000000 1
## 2057 1 1.000000000 1
## 2058 1 1.000000000 1
## 2059 3 1.000000000 1
## 2060 3 1.000000000 1
## 2061 3 1.000000000 1
## 2062 9 1.000000000 1
## 2063 7 1.000000000 1
## 2064 3 1.000000000 1
## 2065 1 1.000000000 1
## 2066 1 1.000000000 1
## 2067 8 1.000000000 1
## 2068 2 1.000000000 1
## 2069 1 1.000000000 1
## 2070 1 1.000000000 1
## 2071 1 1.000000000 1
## 2072 1 1.000000000 1
## 2073 2 1.000000000 1
## 2074 3 1.000000000 1
## 2075 4 1.000000000 1
## 2076 3 1.000000000 1
## 2077 1 1.000000000 1
## 2078 1 1.000000000 1
## 2079 1 1.000000000 1
## 2080 1 1.000000000 1
## 2081 2 1.000000000 1
## 2082 1 1.000000000 1
## 2083 1 1.000000000 1
## 2084 2 1.000000000 1
## 2085 7 1.000000000 1
## 2086 8 1.000000000 1
## 2087 1 1.000000000 1
## 2088 10 1.000000000 1
## 2089 3 1.000000000 1
## 2090 2 1.000000000 1
## 2091 1 1.000000000 1
## 2092 7 1.000000000 1
## 2093 1 1.000000000 1
## 2094 2 1.000000000 1
## 2095 1 1.000000000 1
## 2096 22 1.000000000 1
## 2097 18 1.000000000 1
## 2098 4 1.000000000 1
## 2099 1 1.000000000 1
## 2100 1 1.000000000 1
## 2101 1 1.000000000 1
## 2102 10 1.000000000 1
## 2103 1 1.000000000 1
## 2104 1 1.000000000 1
## 2105 14 1.000000000 1
## 2106 4 1.000000000 1
## 2107 6 1.000000000 1
## 2108 9 1.000000000 1
## 2109 3 1.000000000 1
## 2110 1 1.000000000 1
## 2111 6 1.000000000 1
## 2112 9 1.000000000 1
## 2113 2 1.000000000 1
## 2114 3 1.000000000 1
## 2115 6 1.000000000 1
## 2116 1 1.000000000 1
## 2117 28 1.000000000 1
## 2118 2 1.000000000 1
## 2119 1 1.000000000 1
## 2120 2 1.000000000 1
## 2121 8 1.000000000 1
## 2122 8 1.000000000 1
## 2123 26 1.000000000 1
## 2124 1 1.000000000 1
## 2125 5 1.000000000 1
## 2126 2 1.000000000 1
## 2127 1 1.000000000 1
## 2128 8 1.000000000 1
## 2129 1 1.000000000 1
## 2130 1 1.000000000 1
## 2131 7 1.000000000 1
## 2132 5 1.000000000 1
## 2133 27 1.000000000 1
## 2134 1 1.000000000 1
## 2135 3 1.000000000 1
## 2136 7 1.000000000 1
## 2137 4 1.000000000 1
## 2138 1 1.000000000 1
## 2139 10 1.000000000 1
## 2140 2 1.000000000 1
## 2141 16 1.000000000 1
## 2142 2 1.000000000 1
## 2143 1 1.000000000 1
## 2144 1 1.000000000 1
## 2145 1 1.000000000 1
## 2146 1 1.000000000 1
## 2147 1 1.000000000 1
## 2148 2 1.000000000 1
## 2149 4 1.000000000 1
## 2150 2 1.000000000 1
## 2151 1 1.000000000 1
## 2152 1 1.000000000 1
## 2153 1 1.000000000 1
## 2154 1 1.000000000 1
## 2155 1 1.000000000 1
## 2156 1 1.000000000 1
## 2157 2 1.000000000 1
## 2158 1 1.000000000 1
## 2159 1 1.000000000 1
## 2160 1 1.000000000 1
## 2161 1 1.000000000 1
## 2162 2 1.000000000 1
## 2163 1 1.000000000 1
## 2164 1 1.000000000 1
## 2165 1 1.000000000 1
## 2166 1 1.000000000 1
## 2167 1 1.000000000 1
## 2168 1 1.000000000 1
## 2169 9 1.000000000 1
## 2170 3 1.000000000 1
## 2171 1 1.000000000 1
## 2172 1 1.000000000 1
## 2173 1 1.000000000 1
## 2174 4 1.000000000 1
## 2175 1 1.000000000 1
## 2176 4 1.000000000 1
## 2177 1 1.000000000 1
## 2178 6 1.000000000 1
## 2179 1 1.000000000 1
## 2180 1 1.000000000 1
## 2181 1 1.000000000 1
## 2182 1 1.000000000 1
## 2183 1 1.000000000 1
## 2184 1 1.000000000 1
## 2185 3 1.000000000 1
## 2186 1 1.000000000 1
## 2187 4 1.000000000 1
## 2188 3 1.000000000 1
## 2189 2 1.000000000 1
## 2190 4 1.000000000 1
## 2191 1 1.000000000 1
## 2192 1 1.000000000 1
## 2193 1 1.000000000 1
## 2194 2 1.000000000 1
## 2195 10 1.000000000 1
## 2196 1 1.000000000 1
## 2197 2 1.000000000 1
## 2198 1 1.000000000 1
## 2199 1 1.000000000 1
## 2200 1 1.000000000 1
## 2201 5 1.000000000 1
## 2202 1 1.000000000 1
## 2203 4 1.000000000 1
## 2204 1 1.000000000 1
## 2205 1 1.000000000 1
## 2206 5 1.000000000 1
## 2207 5 1.000000000 1
## 2208 1 1.000000000 1
## 2209 1 1.000000000 1
## 2210 1 1.000000000 1
## 2211 2 1.000000000 1
## 2212 1 1.000000000 1
## 2213 1 1.000000000 1
## 2214 7 1.000000000 1
## 2215 11 1.000000000 1
## 2216 14 1.000000000 1
## 2217 1 1.000000000 1
## 2218 12 1.000000000 1
## 2219 1 1.000000000 1
## 2220 5 1.000000000 1
## 2221 1 1.000000000 1
## 2222 2 1.000000000 1
## 2223 4 1.000000000 1
## 2224 17 1.000000000 1
## 2225 3 1.000000000 1
## 2226 2 1.000000000 1
## 2227 2 1.000000000 1
## 2228 9 1.000000000 1
## 2229 1 1.000000000 1
## 2230 4 1.000000000 1
## 2231 1 1.000000000 1
## 2232 4 1.000000000 1
## 2233 3 1.000000000 1
## 2234 1 1.000000000 1
## 2235 35 1.000000000 1
## 2236 13 1.000000000 1
## 2237 5 1.000000000 1
## 2238 1 1.000000000 1
## 2239 1 1.000000000 1
## 2240 1 1.000000000 1
## 2241 1 1.000000000 1
## 2242 2 1.000000000 1
## 2243 5 1.000000000 1
## 2244 3 1.000000000 1
## 2245 1 1.000000000 1
## 2246 1 1.000000000 1
## 2247 1 1.000000000 1
## 2248 1 1.000000000 1
## 2249 2 1.000000000 1
## 2250 3 1.000000000 1
## 2251 1 1.000000000 1
## 2252 17 1.000000000 1
## 2253 1 1.000000000 1
## 2254 15 1.000000000 1
## 2255 1 1.000000000 1
## 2256 23 1.000000000 1
## 2257 3 1.000000000 1
## 2258 1 1.000000000 1
## 2259 16 1.000000000 1
## 2260 15 1.000000000 1
## 2261 2 1.000000000 1
## 2262 18 1.000000000 1
## 2263 1 1.000000000 1
## 2264 1 1.000000000 1
## 2265 2 1.000000000 1
## 2266 1 1.000000000 1
## 2267 4 1.000000000 1
## 2268 1 1.000000000 1
## 2269 3 1.000000000 1
## 2270 4 1.000000000 1
## 2271 9 1.000000000 1
## 2272 8 1.000000000 1
## 2273 3 1.000000000 1
## 2274 7 1.000000000 1
## 2275 2 1.000000000 1
## 2276 4 1.000000000 1
## 2277 4 1.000000000 1
## 2278 5 1.000000000 1
## 2279 4 1.000000000 1
## 2280 1 1.000000000 1
## 2281 1 1.000000000 1
## 2282 7 1.000000000 1
## 2283 10 1.000000000 1
## 2284 1 1.000000000 1
## 2285 1 1.000000000 1
## 2286 10 1.000000000 1
## 2287 5 1.000000000 1
## 2288 8 1.000000000 1
## 2289 3 1.000000000 1
## 2290 13 1.000000000 1
## 2291 16 1.000000000 1
## 2292 12 1.000000000 1
## 2293 9 1.000000000 1
## 2294 2 1.000000000 1
## 2295 6 1.000000000 1
## 2296 3 1.000000000 1
## 2297 4 1.000000000 1
## 2298 2 1.000000000 1
## 2299 2 1.000000000 1
## 2300 2 1.000000000 1
## 2301 8 1.000000000 1
## 2302 4 1.000000000 1
## 2303 3 1.000000000 1
## 2304 20 1.000000000 1
## 2305 13 1.000000000 1
## 2306 5 1.000000000 1
## 2307 5 1.000000000 1
## 2308 19 1.000000000 1
## 2309 12 1.000000000 1
## 2310 5 1.000000000 1
## 2311 3 1.000000000 1
## 2312 5 1.000000000 1
## 2313 10 1.000000000 1
## 2314 9 1.000000000 1
## 2315 6 1.000000000 1
## 2316 1 1.000000000 1
## 2317 28 1.000000000 1
## 2318 30 1.000000000 1
## 2319 3 1.000000000 1
## 2320 3 1.000000000 1
## 2321 1 1.000000000 1
## 2322 7 1.000000000 1
## 2323 1 1.000000000 1
## 2324 4 1.000000000 1
## 2325 25 1.000000000 1
## 2326 5 1.000000000 1
## 2327 2 1.000000000 1
## 2328 1 1.000000000 1
## 2329 1 1.000000000 1
## 2330 1 1.000000000 1
## 2331 12 1.000000000 1
## 2332 1 1.000000000 1
## 2333 9 1.000000000 1
## 2334 1 1.000000000 1
## 2335 6 1.000000000 1
## 2336 2 1.000000000 1
## 2337 2 1.000000000 1
## 2338 1 1.000000000 1
## 2339 3 1.000000000 1
## 2340 1 1.000000000 1
## 2341 1 1.000000000 1
## 2342 1 1.000000000 1
## 2343 1 1.000000000 1
## 2344 2 1.000000000 1
## 2345 2 1.000000000 1
## 2346 1 1.000000000 1
## 2347 5 1.000000000 1
## 2348 22 1.000000000 1
## 2349 10 1.000000000 1
## 2350 43 1.000000000 1
## 2351 2 1.000000000 1
## 2352 1 1.000000000 1
## 2353 3 1.000000000 1
## 2354 1 1.000000000 1
## 2355 9 1.000000000 1
## 2356 5 1.000000000 1
## 2357 4 1.000000000 1
## 2358 1 1.000000000 1
## 2359 18 1.000000000 1
## 2360 3 1.000000000 1
## 2361 1 1.000000000 1
## 2362 1 1.000000000 1
## 2363 1 1.000000000 1
## 2364 10 1.000000000 1
## 2365 21 1.000000000 1
## 2366 8 1.000000000 1
## 2367 1 1.000000000 1
## 2368 1 1.000000000 1
## 2369 8 1.000000000 1
## 2370 14 1.000000000 1
## 2371 15 1.000000000 1
## 2372 36 1.000000000 1
## 2373 2 1.000000000 1
## 2374 7 1.000000000 1
## 2375 5 1.000000000 1
## 2376 1 1.000000000 1
## 2377 2 1.000000000 1
## 2378 2 1.000000000 1
## 2379 1 1.000000000 1
## 2380 1 1.000000000 1
## 2381 2 1.000000000 1
## 2382 6 1.000000000 1
## 2383 2 1.000000000 1
## 2384 3 1.000000000 1
## 2385 6 1.000000000 1
## 2386 9 1.000000000 1
## 2387 8 1.000000000 1
## 2388 2 1.000000000 1
## 2389 11 1.000000000 1
## 2390 4 1.000000000 1
## 2391 1 1.000000000 1
## 2392 29 1.000000000 1
## 2393 2 1.000000000 1
## 2394 1 1.000000000 1
## 2395 1 1.000000000 1
## 2396 1 1.000000000 1
## 2397 3 1.000000000 1
## 2398 2 1.000000000 1
## 2399 12 1.000000000 1
## 2400 1 1.000000000 1
## 2401 4 1.000000000 1
## 2402 1 1.000000000 1
## 2403 2 1.000000000 1
## 2404 2 1.000000000 1
## 2405 4 1.000000000 1
## 2406 7 1.000000000 1
## 2407 3 1.000000000 1
## 2408 4 1.000000000 1
## 2409 3 1.000000000 1
## 2410 2 1.000000000 1
## 2411 4 1.000000000 1
## 2412 2 1.000000000 1
## 2413 2 1.000000000 1
## 2414 3 1.000000000 1
## 2415 2 1.000000000 1
## 2416 2 1.000000000 1
## 2417 14 1.000000000 1
## 2418 6 1.000000000 1
## 2419 20 1.000000000 1
## 2420 38 1.000000000 1
## 2421 1 1.000000000 1
## 2422 8 1.000000000 1
## 2423 5 1.000000000 1
## 2424 30 1.000000000 1
## 2425 2 1.000000000 1
## 2426 6 1.000000000 1
## 2427 3 1.000000000 1
## 2428 4 1.000000000 1
## 2429 7 1.000000000 1
## 2430 4 1.000000000 1
## 2431 3 1.000000000 1
## 2432 1 1.000000000 1
## 2433 4 1.000000000 1
## 2434 2 1.000000000 1
## 2435 12 1.000000000 1
## 2436 8 1.000000000 1
## 2437 1 1.000000000 1
## 2438 1 1.000000000 1
## 2439 1 1.000000000 1
## 2440 2 1.000000000 1
## 2441 12 1.000000000 1
## 2442 1 1.000000000 1
## 2443 3 1.000000000 1
## 2444 19 1.000000000 1
## 2445 3 1.000000000 1
## 2446 3 1.000000000 1
## 2447 1 1.000000000 1
## 2448 1 1.000000000 1
## 2449 4 1.000000000 1
## 2450 1 1.000000000 1
## 2451 2 1.000000000 1
## 2452 2 1.000000000 1
## 2453 15 1.000000000 1
## 2454 1 1.000000000 1
## 2455 2 1.000000000 1
## 2456 2 1.000000000 1
## 2457 8 1.000000000 1
## 2458 3 1.000000000 1
## 2459 35 1.000000000 1
## 2460 3 1.000000000 1
## 2461 9 1.000000000 1
## 2462 6 1.000000000 1
## 2463 21 1.000000000 1
## 2464 3 1.000000000 1
## 2465 16 1.000000000 1
## 2466 3 1.000000000 1
## 2467 12 1.000000000 1
## 2468 5 1.000000000 1
## 2469 16 1.000000000 1
## 2470 3 1.000000000 1
## 2471 30 1.000000000 1
## 2472 26 1.000000000 1
## 2473 25 1.000000000 1
## 2474 33 1.000000000 1
## 2475 1 1.000000000 1
## 2476 26 1.000000000 1
## 2477 7 1.000000000 1
## 2478 7 1.000000000 1
## 2479 4 1.000000000 1
## 2480 5 1.000000000 1
## 2481 9 1.000000000 1
## 2482 8 1.000000000 1
## 2483 2 1.000000000 1
## 2484 4 1.000000000 1
## 2485 3 1.000000000 1
## 2486 19 1.000000000 1
## 2487 1 1.000000000 1
## 2488 24 1.000000000 1
## 2489 3 1.000000000 1
## 2490 14 1.000000000 1
## 2491 6 1.000000000 1
## 2492 19 1.000000000 1
## 2493 72 1.000000000 1
## 2494 12 1.000000000 1
## 2495 1 1.000000000 1
## 2496 15 1.000000000 1
## 2497 3 1.000000000 1
## 2498 6 1.000000000 1
## 2499 3 1.000000000 1
## 2500 9 1.000000000 1
## 2501 4 1.000000000 1
## 2502 2 1.000000000 1
## 2503 10 1.000000000 1
## 2504 5 1.000000000 1
## 2505 4 1.000000000 1
## 2506 1 1.000000000 1
## 2507 10 1.000000000 1
## 2508 9 1.000000000 1
## 2509 12 1.000000000 1
## 2510 10 1.000000000 1
## 2511 40 1.000000000 1
## 2512 26 1.000000000 1
## 2513 23 1.000000000 1
## 2514 3 1.000000000 1
## 2515 10 1.000000000 1
## 2516 8 1.000000000 1
## 2517 12 1.000000000 1
## 2518 12 1.000000000 1
## 2519 2 1.000000000 1
## 2520 11 1.000000000 1
## 2521 23 1.000000000 1
## 2522 3 1.000000000 1
## 2523 46 1.000000000 1
## 2524 5 1.000000000 1
## 2525 1 1.000000000 1
## 2526 22 1.000000000 1
## 2527 14 1.000000000 1
## 2528 1 1.000000000 1
## 2529 5 1.000000000 1
## 2530 5 1.000000000 1
## 2531 4 1.000000000 1
## 2532 3 1.000000000 1
## 2533 1 1.000000000 1
## 2534 2 1.000000000 1
## 2535 1 1.000000000 1
## 2536 1 1.000000000 1
## 2537 7 1.000000000 1
## 2538 1 1.000000000 1
## 2539 4 1.000000000 1
## 2540 1 1.000000000 1
## 2541 59 1.000000000 1
## 2542 1 1.000000000 1
## 2543 5 1.000000000 1
## 2544 5 1.000000000 1
## 2545 2 1.000000000 1
## 2546 1 1.000000000 1
## 2547 34 1.000000000 1
## 2548 16 1.000000000 1
## 2549 2 1.000000000 1
## 2550 2 1.000000000 1
## 2551 3 1.000000000 1
## 2552 2 1.000000000 1
## 2553 1 1.000000000 1
## 2554 11 1.000000000 1
## 2555 19 1.000000000 1
## 2556 3 1.000000000 1
## 2557 34 1.000000000 1
## 2558 16 1.000000000 1
## 2559 1 1.000000000 1
## 2560 1 1.000000000 1
## 2561 2 1.000000000 1
## 2562 25 1.000000000 1
## 2563 3 1.000000000 1
## 2564 1 1.000000000 1
## 2565 2 1.000000000 1
## 2566 2 1.000000000 1
## 2567 6 1.000000000 1
## 2568 14 1.000000000 1
## 2569 1 1.000000000 1
## 2570 1 1.000000000 1
## 2571 19 1.000000000 1
## 2572 10 1.000000000 1
## 2573 2 1.000000000 1
## 2574 23 1.000000000 1
## 2575 16 1.000000000 1
## 2576 31 1.000000000 1
## 2577 5 1.000000000 1
## 2578 8 1.000000000 1
## 2579 3 1.000000000 1
## 2580 3 1.000000000 1
## 2581 2 1.000000000 1
## 2582 9 1.000000000 1
## 2583 10 1.000000000 1
## 2584 1 1.000000000 1
## 2585 8 1.000000000 1
## 2586 1 1.000000000 1
## 2587 1 1.000000000 1
## 2588 6 1.000000000 1
## 2589 1 1.000000000 1
## 2590 1 1.000000000 1
## 2591 1 1.000000000 1
## 2592 1 1.000000000 1
## 2593 1 1.000000000 1
## 2594 1 1.000000000 1
## 2595 1 1.000000000 1
## 2596 1 1.000000000 1
## 2597 1 1.000000000 1
## 2598 2 1.000000000 1
## 2599 1 1.000000000 1
## 2600 3 1.000000000 1
## 2601 4 1.000000000 1
## 2602 1 1.000000000 1
## 2603 1 1.000000000 1
## 2604 1 1.000000000 1
## 2605 5 1.000000000 1
## 2606 2 1.000000000 1
## 2607 5 1.000000000 1
## 2608 1 1.000000000 1
## 2609 1 1.000000000 1
## 2610 4 1.000000000 1
## 2611 2 1.000000000 1
## 2612 1 1.000000000 1
## 2613 1 1.000000000 1
## 2614 4 1.000000000 1
## 2615 3 1.000000000 1
## 2616 58 1.000000000 1
## 2617 6 1.000000000 1
## 2618 11 1.000000000 1
## 2619 5 1.000000000 1
## 2620 26 1.000000000 1
## 2621 6 1.000000000 1
## 2622 2 1.000000000 1
## 2623 2 1.000000000 1
## 2624 1 1.000000000 1
## 2625 3 1.000000000 1
## 2626 2 1.000000000 1
## 2627 1 1.000000000 1
## 2628 1 1.000000000 1
## 2629 1 1.000000000 1
## 2630 2 1.000000000 1
## 2631 1 1.000000000 1
## 2632 7 1.000000000 1
## 2633 2 1.000000000 1
## 2634 6 1.000000000 1
## 2635 19 1.000000000 1
## 2636 1 1.000000000 1
## 2637 1 1.000000000 1
## 2638 4 1.000000000 1
## 2639 2 1.000000000 1
## 2640 1 1.000000000 1
## 2641 1 1.000000000 1
## 2642 46 1.000000000 1
## 2643 3 1.000000000 1
## 2644 4 1.000000000 1
## 2645 4 1.000000000 1
## 2646 34 1.000000000 1
## 2647 14 1.000000000 1
## 2648 3 1.000000000 1
## 2649 5 1.000000000 1
## 2650 9 1.000000000 1
## 2651 5 1.000000000 1
## 2652 10 1.000000000 1
## 2653 2 1.000000000 1
## 2654 2 1.000000000 1
## 2655 24 1.000000000 1
## 2656 9 1.000000000 1
## 2657 6 1.000000000 1
## 2658 3 1.000000000 1
## 2659 5 1.000000000 1
## 2660 1 1.000000000 1
## 2661 9 1.000000000 1
## 2662 1 1.000000000 1
## 2663 1 1.000000000 1
## 2664 2 1.000000000 1
## 2665 3 1.000000000 1
## 2666 2 1.000000000 1
## 2667 1 1.000000000 1
## 2668 12 1.000000000 1
## 2669 6 1.000000000 1
## 2670 50 1.000000000 1
## 2671 16 1.000000000 1
## 2672 5 1.000000000 1
## 2673 7 1.000000000 1
## 2674 5 1.000000000 1
## 2675 2 1.000000000 1
## 2676 20 1.000000000 1
## 2677 3 1.000000000 1
## 2678 16 1.000000000 1
## 2679 5 1.000000000 1
## 2680 2 1.000000000 1
## 2681 6 1.000000000 1
## 2682 5 1.000000000 1
## 2683 4 1.000000000 1
## 2684 1 1.000000000 1
## 2685 1 1.000000000 1
## 2686 3 1.000000000 1
## 2687 4 1.000000000 1
## 2688 2 1.000000000 1
## 2689 3 1.000000000 1
## 2690 23 1.000000000 1
## 2691 3 1.000000000 1
## 2692 14 1.000000000 1
## 2693 2 1.000000000 1
## 2694 3 1.000000000 1
## 2695 1 1.000000000 1
## 2696 4 1.000000000 1
## 2697 10 1.000000000 1
## 2698 3 1.000000000 1
## 2699 17 1.000000000 1
## 2700 4 1.000000000 1
## 2701 1 1.000000000 1
## 2702 6 1.000000000 1
## 2703 20 1.000000000 1
## 2704 8 1.000000000 1
## 2705 7 1.000000000 1
## 2706 1 1.000000000 1
## 2707 3 1.000000000 1
## 2708 2 1.000000000 1
## 2709 1 1.000000000 1
## 2710 7 1.000000000 1
## 2711 17 1.000000000 1
## 2712 61 1.000000000 1
## 2713 14 1.000000000 1
## 2714 2 1.000000000 1
## 2715 5 1.000000000 1
## 2716 1 1.000000000 1
## 2717 4 1.000000000 1
## 2718 1 1.000000000 1
## 2719 19 1.000000000 1
## 2720 7 1.000000000 1
## 2721 3 1.000000000 1
## 2722 2 1.000000000 1
## 2723 8 1.000000000 1
## 2724 31 1.000000000 1
## 2725 2 1.000000000 1
## 2726 1 1.000000000 1
## 2727 2 1.000000000 1
## 2728 6 1.000000000 1
## 2729 3 1.000000000 1
## 2730 2 1.000000000 1
## 2731 1 1.000000000 1
## 2732 1 1.000000000 1
## 2733 2 1.000000000 1
## 2734 8 1.000000000 1
## 2735 3 1.000000000 1
## 2736 25 1.000000000 1
## 2737 4 1.000000000 1
## 2738 1 1.000000000 1
## 2739 1 1.000000000 1
## 2740 1 1.000000000 1
## 2741 1 1.000000000 1
## 2742 1 1.000000000 1
## 2743 3 1.000000000 1
## 2744 1 1.000000000 1
## 2745 1 1.000000000 1
## 2746 1 1.000000000 1
## 2747 5 1.000000000 1
## 2748 1 1.000000000 1
## 2749 67 1.000000000 1
## 2750 43 1.000000000 1
## 2751 18 1.000000000 1
## 2752 11 1.000000000 1
## 2753 2 1.000000000 1
## 2754 3 1.000000000 1
## 2755 38 1.000000000 1
## 2756 23 1.000000000 1
## 2757 15 1.000000000 1
## 2758 1 1.000000000 1
## 2759 96 1.000000000 1
## 2760 3 1.000000000 1
## 2761 1 1.000000000 1
## 2762 2 1.000000000 1
## 2763 5 1.000000000 1
## 2764 7 1.000000000 1
## 2765 6 1.000000000 1
## 2766 3 1.000000000 1
## 2767 1 1.000000000 1
## 2768 1 1.000000000 1
## 2769 2 1.000000000 1
## 2770 2 1.000000000 1
## 2771 8 1.000000000 1
## 2772 1 1.000000000 1
## 2773 15 1.000000000 1
## 2774 1 1.000000000 1
## 2775 1 1.000000000 1
## 2776 1 1.000000000 1
## 2777 1 1.000000000 1
## 2778 1 1.000000000 1
## 2779 1 1.000000000 1
## 2780 1 1.000000000 1
## 2781 1 1.000000000 1
## 2782 7 1.000000000 1
## 2783 5 1.000000000 1
## 2784 5 1.000000000 1
## 2785 12 1.000000000 1
## 2786 1 1.000000000 1
## 2787 8 1.000000000 1
## 2788 3 1.000000000 1
## 2789 10 1.000000000 1
## 2790 1 1.000000000 1
## 2791 5 1.000000000 1
## 2792 1 1.000000000 1
## 2793 12 1.000000000 1
## 2794 2 1.000000000 1
## 2795 13 1.000000000 1
## 2796 5 1.000000000 1
## 2797 4 1.000000000 1
## 2798 2 1.000000000 1
## 2799 1 1.000000000 1
## 2800 2 1.000000000 1
## 2801 2 1.000000000 1
## 2802 22 1.000000000 1
## 2803 1 1.000000000 1
## 2804 31 1.000000000 1
## 2805 1 1.000000000 1
## 2806 7 1.000000000 1
## 2807 2 1.000000000 1
## 2808 9 1.000000000 1
## 2809 7 1.000000000 1
## 2810 14 1.000000000 1
## 2811 17 1.000000000 1
## 2812 3 1.000000000 1
## 2813 3 1.000000000 1
## 2814 9 1.000000000 1
## 2815 34 1.000000000 1
## 2816 1 1.000000000 1
## 2817 9 1.000000000 1
## 2818 9 1.000000000 1
## 2819 1 1.000000000 1
## 2820 20 1.000000000 1
## 2821 4 1.000000000 1
## 2822 1 1.000000000 1
## 2823 1 1.000000000 1
## 2824 18 1.000000000 1
## 2825 2 1.000000000 1
## 2826 3 1.000000000 1
## 2827 5 1.000000000 1
## 2828 1 1.000000000 1
## 2829 2 1.000000000 1
## 2830 3 1.000000000 1
## 2831 4 1.000000000 1
## 2832 2 1.000000000 1
## 2833 1 1.000000000 1
## 2834 11 1.000000000 1
## 2835 10 1.000000000 1
## 2836 1 1.000000000 1
## 2837 2 1.000000000 1
## 2838 4 1.000000000 1
## 2839 1 1.000000000 1
## 2840 3 1.000000000 1
## 2841 1 1.000000000 1
## 2842 2 1.000000000 1
## 2843 1 1.000000000 1
## 2844 2 1.000000000 1
## 2845 3 1.000000000 1
## 2846 1 1.000000000 1
## 2847 1 1.000000000 1
## 2848 5 1.000000000 1
## 2849 5 1.000000000 1
## 2850 4 1.000000000 1
## 2851 2 1.000000000 1
## 2852 6 1.000000000 1
## 2853 4 1.000000000 1
## 2854 2 1.000000000 1
## 2855 3 1.000000000 1
## 2856 1 1.000000000 1
## 2857 1 1.000000000 1
## 2858 8 1.000000000 1
## 2859 3 1.000000000 1
## 2860 2 1.000000000 1
## 2861 1 1.000000000 1
## 2862 3 1.000000000 1
## 2863 2 1.000000000 1
## 2864 2 1.000000000 1
## 2865 1 1.000000000 1
## 2866 1 1.000000000 1
## 2867 1 1.000000000 1
## 2868 1 1.000000000 1
## 2869 1 1.000000000 1
## 2870 1 1.000000000 1
## 2871 1 1.000000000 1
## 2872 1 1.000000000 1
## 2873 1 1.000000000 1
## 2874 1 1.000000000 1
## 2875 2 1.000000000 1
## 2876 4 1.000000000 1
## 2877 4 1.000000000 1
## 2878 2 1.000000000 1
## 2879 1 1.000000000 1
## 2880 5 1.000000000 1
## 2881 1 1.000000000 1
## 2882 7 1.000000000 1
## 2883 3 1.000000000 1
## 2884 2 1.000000000 1
## 2885 1 1.000000000 1
## 2886 6 1.000000000 1
## 2887 1 1.000000000 1
## 2888 4 1.000000000 1
## 2889 1 1.000000000 1
## 2890 1 1.000000000 1
## 2891 1 1.000000000 1
## 2892 1 1.000000000 1
## 2893 1 1.000000000 1
## 2894 1 1.000000000 1
## 2895 2 1.000000000 1
## 2896 1 1.000000000 1
## 2897 1 1.000000000 1
## 2898 3 1.000000000 1
## 2899 1 1.000000000 1
## 2900 1 1.000000000 1
## 2901 3 1.000000000 1
## 2902 2 1.000000000 1
## 2903 1 1.000000000 1
## 2904 1 1.000000000 1
## 2905 10 1.000000000 1
## 2906 1 1.000000000 1
## 2907 12 1.000000000 1
## 2908 8 1.000000000 1
## 2909 1 1.000000000 1
## 2910 6 1.000000000 1
## 2911 1 1.000000000 1
## 2912 1 1.000000000 1
## 2913 11 1.000000000 1
## 2914 2 1.000000000 1
## 2915 11 1.000000000 1
## 2916 7 1.000000000 1
## 2917 7 1.000000000 1
## 2918 9 1.000000000 1
## 2919 2 1.000000000 1
## 2920 2 1.000000000 1
## 2921 1 1.000000000 1
## 2922 6 1.000000000 1
## 2923 3 1.000000000 1
## 2924 4 1.000000000 1
## 2925 3 1.000000000 1
## 2926 3 1.000000000 1
## 2927 2 1.000000000 1
## 2928 1 1.000000000 1
## 2929 2 1.000000000 1
## 2930 14 1.000000000 1
## 2931 5 1.000000000 1
## 2932 5 1.000000000 1
## 2933 3 1.000000000 1
## 2934 9 1.000000000 1
## 2935 8 1.000000000 1
## 2936 1 1.000000000 1
## 2937 6 1.000000000 1
## 2938 1 1.000000000 1
## 2939 8 1.000000000 1
## 2940 2 1.000000000 1
## 2941 3 1.000000000 1
## 2942 5 1.000000000 1
## 2943 2 1.000000000 1
## 2944 1 1.000000000 1
## 2945 1 1.000000000 1
## 2946 1 1.000000000 1
## 2947 3 1.000000000 1
## 2948 13 1.000000000 1
## 2949 1 1.000000000 1
## 2950 2 1.000000000 1
## 2951 5 1.000000000 1
## 2952 4 1.000000000 1
## 2953 1 1.000000000 1
## 2954 3 1.000000000 1
## 2955 3 1.000000000 1
## 2956 1 1.000000000 1
## 2957 1 1.000000000 1
## 2958 3 1.000000000 1
## 2959 14 1.000000000 1
## 2960 4 1.000000000 1
## 2961 2 1.000000000 1
## 2962 47 1.000000000 1
## 2963 1 1.000000000 1
## 2964 48 1.000000000 1
## 2965 20 1.000000000 1
## 2966 2 1.000000000 1
## 2967 2 1.000000000 1
## 2968 11 1.000000000 1
## 2969 2 1.000000000 1
## 2970 2 1.000000000 1
## 2971 3 1.000000000 1
## 2972 4 1.000000000 1
## 2973 1 1.000000000 1
## 2974 1 1.000000000 1
## 2975 4 1.000000000 1
## 2976 45 1.000000000 1
## 2977 1 1.000000000 1
## 2978 1 1.000000000 1
## 2979 5 1.000000000 1
## 2980 1 1.000000000 1
## 2981 15 1.000000000 1
## 2982 1 1.000000000 1
## 2983 1 1.000000000 1
## 2984 9 1.000000000 1
## 2985 1 1.000000000 1
## 2986 1 1.000000000 1
## 2987 1 1.000000000 1
## 2988 4 1.000000000 1
## 2989 3 1.000000000 1
## 2990 1 1.000000000 1
## 2991 1 1.000000000 1
## 2992 2 1.000000000 1
## 2993 27 1.000000000 1
## 2994 1 1.000000000 1
## 2995 1 1.000000000 1
## 2996 1 1.000000000 1
## 2997 1 1.000000000 1
## 2998 1 1.000000000 1
## 2999 1 1.000000000 1
## 3000 1 1.000000000 1
## 3001 1 1.000000000 1
## 3002 3 1.000000000 1
## 3003 2 1.000000000 1
## 3004 2 1.000000000 1
## 3005 1 1.000000000 1
## 3006 1 1.000000000 1
## 3007 1 1.000000000 1
## 3008 1 1.000000000 1
## 3009 2 1.000000000 1
## 3010 1 1.000000000 1
## 3011 1 1.000000000 1
## 3012 2 1.000000000 1
## 3013 1 1.000000000 1
## 3014 2 1.000000000 1
## 3015 2 1.000000000 1
## 3016 1 1.000000000 1
## 3017 1 1.000000000 1
## 3018 1 1.000000000 1
## 3019 1 1.000000000 1
## 3020 1 1.000000000 1
## 3021 1 1.000000000 1
## 3022 1 1.000000000 1
## 3023 1 1.000000000 1
## 3024 3 1.000000000 1
## 3025 2 1.000000000 1
## 3026 4 1.000000000 1
## 3027 2 1.000000000 1
## 3028 35 1.000000000 1
## 3029 16 1.000000000 1
## 3030 4 1.000000000 1
## 3031 2 1.000000000 1
## 3032 2 1.000000000 1
## 3033 1 1.000000000 1
## 3034 7 1.000000000 1
## 3035 1 1.000000000 1
## 3036 1 1.000000000 1
## 3037 2 1.000000000 1
## 3038 1 1.000000000 1
## 3039 4 1.000000000 1
## 3040 4 1.000000000 1
## 3041 2 1.000000000 1
## 3042 13 1.000000000 1
## 3043 11 1.000000000 1
## 3044 6 1.000000000 1
## 3045 15 1.000000000 1
## 3046 4 1.000000000 1
## 3047 1 1.000000000 1
## 3048 5 1.000000000 1
## 3049 1 1.000000000 1
## 3050 4 1.000000000 1
## 3051 1 1.000000000 1
## 3052 6 1.000000000 1
## 3053 10 1.000000000 1
## 3054 4 1.000000000 1
## 3055 1 1.000000000 1
## 3056 5 1.000000000 1
## 3057 4 1.000000000 1
## 3058 7 1.000000000 1
## 3059 2 1.000000000 1
## 3060 1 1.000000000 1
## 3061 1 1.000000000 1
## 3062 5 1.000000000 1
## 3063 9 1.000000000 1
## 3064 3 1.000000000 1
## 3065 1 1.000000000 1
## 3066 2 1.000000000 1
## 3067 2 1.000000000 1
## 3068 4 1.000000000 1
## 3069 1 1.000000000 1
## 3070 17 1.000000000 1
## 3071 1 1.000000000 1
## 3072 9 1.000000000 1
## 3073 2 1.000000000 1
## 3074 10 1.000000000 1
## 3075 2 1.000000000 1
## 3076 17 1.000000000 1
## 3077 6 1.000000000 1
## 3078 1 1.000000000 1
## 3079 7 1.000000000 1
## 3080 1 1.000000000 1
## 3081 13 1.000000000 1
## 3082 3 1.000000000 1
## 3083 7 1.000000000 1
## 3084 4 1.000000000 1
## 3085 9 1.000000000 1
## 3086 8 1.000000000 1
## 3087 38 1.000000000 1
## 3088 24 1.000000000 1
## 3089 8 1.000000000 1
## 3090 13 1.000000000 1
## 3091 3 1.000000000 1
## 3092 1 1.000000000 1
## 3093 10 1.000000000 1
## 3094 4 1.000000000 1
## 3095 3 1.000000000 1
## 3096 7 1.000000000 1
## 3097 1 1.000000000 1
## 3098 3 1.000000000 1
## 3099 1 1.000000000 1
## 3100 2 1.000000000 1
## 3101 2 1.000000000 1
## 3102 1 1.000000000 1
## 3103 1 1.000000000 1
## 3104 1 1.000000000 1
## 3105 6 1.000000000 1
## 3106 1 1.000000000 1
## 3107 2 1.000000000 1
## 3108 1 1.000000000 1
## 3109 2 1.000000000 1
## 3110 4 1.000000000 1
## 3111 1 1.000000000 1
## 3112 5 1.000000000 1
## 3113 1 1.000000000 1
## 3114 2 1.000000000 1
## 3115 2 1.000000000 1
## 3116 26 1.000000000 1
## 3117 4 1.000000000 1
## 3118 2 1.000000000 1
## 3119 1 1.000000000 1
## 3120 1 1.000000000 1
## 3121 1 1.000000000 1
## 3122 8 1.000000000 1
## 3123 3 1.000000000 1
## 3124 11 1.000000000 1
## 3125 3 1.000000000 1
## 3126 1 1.000000000 1
## 3127 1 1.000000000 1
## 3128 4 1.000000000 1
## 3129 3 1.000000000 1
## 3130 3 1.000000000 1
## 3131 3 1.000000000 1
## 3132 5 1.000000000 1
## 3133 4 1.000000000 1
## 3134 1 1.000000000 1
## 3135 2 1.000000000 1
## 3136 5 1.000000000 1
## 3137 1 1.000000000 1
## 3138 1 1.000000000 1
## 3139 1 1.000000000 1
## 3140 1 1.000000000 1
## 3141 1 1.000000000 1
## 3142 2 1.000000000 1
## 3143 1 1.000000000 1
## 3144 2 1.000000000 1
## 3145 4 1.000000000 1
## 3146 12 1.000000000 1
## 3147 3 1.000000000 1
## 3148 1 1.000000000 1
## 3149 4 1.000000000 1
## 3150 11 1.000000000 1
## 3151 1 1.000000000 1
## 3152 1 1.000000000 1
## 3153 1 1.000000000 1
## 3154 1 1.000000000 1
## 3155 1 1.000000000 1
## 3156 3 1.000000000 1
## 3157 1 1.000000000 1
## 3158 1 1.000000000 1
## 3159 1 1.000000000 1
## 3160 1 1.000000000 1
## 3161 1 1.000000000 1
## 3162 1 1.000000000 1
## 3163 1 1.000000000 1
## 3164 10 1.000000000 1
## 3165 2 1.000000000 1
## 3166 1 1.000000000 1
## 3167 1 1.000000000 1
## 3168 1 1.000000000 1
## 3169 1 1.000000000 1
## 3170 1 1.000000000 1
## 3171 7 1.000000000 1
## 3172 1 1.000000000 1
## 3173 6 1.000000000 1
## 3174 1 1.000000000 1
## 3175 6 1.000000000 1
## 3176 1 1.000000000 1
## 3177 1 1.000000000 1
## 3178 2 1.000000000 1
## 3179 1 1.000000000 1
## 3180 1 1.000000000 1
## 3181 1 1.000000000 1
## 3182 68 1.000000000 1
## 3183 2 1.000000000 1
## 3184 8 1.000000000 1
## 3185 1 1.000000000 1
## 3186 1 1.000000000 1
## 3187 1 1.000000000 1
## 3188 2 1.000000000 1
## 3189 1 1.000000000 1
## 3190 2 1.000000000 1
## 3191 2 1.000000000 1
## 3192 4 1.000000000 1
## 3193 4 1.000000000 1
## 3194 2 1.000000000 1
## 3195 1 1.000000000 1
## 3196 1 1.000000000 1
## 3197 1 1.000000000 1
## 3198 1 1.000000000 1
## 3199 5 1.000000000 1
## 3200 1 1.000000000 1
## 3201 3 1.000000000 1
## 3202 1 1.000000000 1
## 3203 1 1.000000000 1
## 3204 12 1.000000000 1
## 3205 1 1.000000000 1
## 3206 10 1.000000000 1
## 3207 1 1.000000000 1
## 3208 1 1.000000000 1
## 3209 1 1.000000000 1
## 3210 1 1.000000000 1
## 3211 3 1.000000000 1
## 3212 1 1.000000000 1
## 3213 1 1.000000000 1
## 3214 2 1.000000000 1
## 3215 2 1.000000000 1
## 3216 12 1.000000000 1
## 3217 31 1.000000000 1
## 3218 1 1.000000000 1
## 3219 2 1.000000000 1
## 3220 3 1.000000000 1
## 3221 1 1.000000000 1
## 3222 1 1.000000000 1
## 3223 22 1.000000000 1
## 3224 17 1.000000000 1
## 3225 31 1.000000000 1
## 3226 2 1.000000000 1
## 3227 1 1.000000000 1
## 3228 28 1.000000000 1
## 3229 16 1.000000000 1
## 3230 6 1.000000000 1
## 3231 1 1.000000000 1
## 3232 4 1.000000000 1
## 3233 4 1.000000000 1
## 3234 1 1.000000000 1
## 3235 61 1.000000000 1
## 3236 5 1.000000000 1
## 3237 1 1.000000000 1
## 3238 11 1.000000000 1
## 3239 1 1.000000000 1
## 3240 1 1.000000000 1
## 3241 6 1.000000000 1
## 3242 7 1.000000000 1
## 3243 2 1.000000000 1
## 3244 1 1.000000000 1
## 3245 1 1.000000000 1
## 3246 4 1.000000000 1
## 3247 3 1.000000000 1
## 3248 5 1.000000000 1
## 3249 41 1.000000000 1
## 3250 4 1.000000000 1
## 3251 21 1.000000000 1
## 3252 2 1.000000000 1
## 3253 2 1.000000000 1
## 3254 1 1.000000000 1
## 3255 21 1.000000000 1
## 3256 1 1.000000000 1
## 3257 1 1.000000000 1
## 3258 10 1.000000000 1
## 3259 3 1.000000000 1
## 3260 7 1.000000000 1
## 3261 8 1.000000000 1
## 3262 28 1.000000000 1
## 3263 26 1.000000000 1
## 3264 55 1.000000000 1
## 3265 14 1.000000000 1
## 3266 1 1.000000000 1
## 3267 3 1.000000000 1
## 3268 4 1.000000000 1
## 3269 1 1.000000000 1
## 3270 8 1.000000000 1
## 3271 5 1.000000000 1
## 3272 75 1.000000000 1
## 3273 2 1.000000000 1
## 3274 7 1.000000000 1
## 3275 2 1.000000000 1
## 3276 8 1.000000000 1
## 3277 1 1.000000000 1
## 3278 13 1.000000000 1
## 3279 29 1.000000000 1
## 3280 6 1.000000000 1
## 3281 1 1.000000000 1
## 3282 3 1.000000000 1
## 3283 1 1.000000000 1
## 3284 24 1.000000000 1
## 3285 1 1.000000000 1
## 3286 38 1.000000000 1
## 3287 20 1.000000000 1
## 3288 3 1.000000000 1
## 3289 1 1.000000000 1
## 3290 5 1.000000000 1
## 3291 12 1.000000000 1
## 3292 5 1.000000000 1
## 3293 11 1.000000000 1
## 3294 5 1.000000000 1
## 3295 1 1.000000000 1
## 3296 6 1.000000000 1
## 3297 5 1.000000000 1
## 3298 4 1.000000000 1
## 3299 1 1.000000000 1
## 3300 1 1.000000000 1
## 3301 1 1.000000000 1
## 3302 1 1.000000000 1
## 3303 3 1.000000000 1
## 3304 5 1.000000000 1
## 3305 1 1.000000000 1
## 3306 1 1.000000000 1
## 3307 1 1.000000000 1
## 3308 1 1.000000000 1
## 3309 1 1.000000000 1
## 3310 1 1.000000000 1
## 3311 1 1.000000000 1
## 3312 1 1.000000000 1
## 3313 9 1.000000000 1
## 3314 9 1.000000000 1
## 3315 1 1.000000000 1
## 3316 1 1.000000000 1
## 3317 4 1.000000000 1
## 3318 4 1.000000000 1
## 3319 1 1.000000000 1
## 3320 2 1.000000000 1
## 3321 1 1.000000000 1
## 3322 5 1.000000000 1
## 3323 1 1.000000000 1
## 3324 1 1.000000000 1
## 3325 1 1.000000000 1
## 3326 1 1.000000000 1
## 3327 1 1.000000000 1
## 3328 1 1.000000000 1
## 3329 1 1.000000000 1
## 3330 2 1.000000000 1
## 3331 1 1.000000000 1
## 3332 1 1.000000000 1
## 3333 3 1.000000000 1
## 3334 1 1.000000000 1
## 3335 4 1.000000000 1
## 3336 1 1.000000000 1
## 3337 15 1.000000000 1
## 3338 2 1.000000000 1
## 3339 1 1.000000000 1
## 3340 2 1.000000000 1
## 3341 1 1.000000000 1
## 3342 7 1.000000000 1
## 3343 15 1.000000000 1
## 3344 1 1.000000000 1
## 3345 1 1.000000000 1
## 3346 1 1.000000000 1
## 3347 4 1.000000000 1
## 3348 1 1.000000000 1
## 3349 2 1.000000000 1
## 3350 6 1.000000000 1
## 3351 2 1.000000000 1
## 3352 43 1.000000000 1
## 3353 1 1.000000000 1
## 3354 16 1.000000000 1
## 3355 10 1.000000000 1
## 3356 10 1.000000000 1
## 3357 3 1.000000000 1
## 3358 1 1.000000000 1
## 3359 1 1.000000000 1
## 3360 1 1.000000000 1
## 3361 9 1.000000000 1
## 3362 14 1.000000000 1
## 3363 2 1.000000000 1
## 3364 1 1.000000000 1
## 3365 1 1.000000000 1
## 3366 2 1.000000000 1
## 3367 2 1.000000000 1
## 3368 2 1.000000000 1
## 3369 6 1.000000000 1
## 3370 2 1.000000000 1
## 3371 4 1.000000000 1
## 3372 1 1.000000000 1
## 3373 1 1.000000000 1
## 3374 1 1.000000000 1
## 3375 3 1.000000000 1
## 3376 1 1.000000000 1
## 3377 1 1.000000000 1
## 3378 1 1.000000000 1
## 3379 16 1.000000000 1
## 3380 4 1.000000000 1
## 3381 1 1.000000000 1
## 3382 1 1.000000000 1
## 3383 2 1.000000000 1
## 3384 1 1.000000000 1
## 3385 1 1.000000000 1
## 3386 2 1.000000000 1
## 3387 2 1.000000000 1
## 3388 7 1.000000000 1
## 3389 17 1.000000000 1
## 3390 7 1.000000000 1
## 3391 1 1.000000000 1
## 3392 1 1.000000000 1
## 3393 8 1.000000000 1
## 3394 1 1.000000000 1
## 3395 4 1.000000000 1
## 3396 6 1.000000000 1
## 3397 1 1.000000000 1
## 3398 1 1.000000000 1
## 3399 5 1.000000000 1
## 3400 8 1.000000000 1
## 3401 2 1.000000000 1
## 3402 5 1.000000000 1
## 3403 18 1.000000000 1
## 3404 7 1.000000000 1
## 3405 2 1.000000000 1
## 3406 16 1.000000000 1
## 3407 2 1.000000000 1
## 3408 1 1.000000000 1
## 3409 9 1.000000000 1
## 3410 5 1.000000000 1
## 3411 6 1.000000000 1
## 3412 5 1.000000000 1
## 3413 4 1.000000000 1
## 3414 3 1.000000000 1
## 3415 1 1.000000000 1
## 3416 2 1.000000000 1
## 3417 2 1.000000000 1
## 3418 1 1.000000000 1
## 3419 1 1.000000000 1
## 3420 1 1.000000000 1
## 3421 2 1.000000000 1
## 3422 1 1.000000000 1
## 3423 1 1.000000000 1
## 3424 3 1.000000000 1
## 3425 2 1.000000000 1
## 3426 6 1.000000000 1
## 3427 1 1.000000000 1
## 3428 3 1.000000000 1
## 3429 3 1.000000000 1
## 3430 1 1.000000000 1
## 3431 1 1.000000000 1
## 3432 3 1.000000000 1
## 3433 1 1.000000000 1
## 3434 4 1.000000000 1
## 3435 1 1.000000000 1
## 3436 1 1.000000000 1
## 3437 1 1.000000000 1
## 3438 1 1.000000000 1
## 3439 7 1.000000000 1
## 3440 1 1.000000000 1
## 3441 1 1.000000000 1
## 3442 1 1.000000000 1
## 3443 1 1.000000000 1
## 3444 2 1.000000000 1
## 3445 5 1.000000000 1
## 3446 1 1.000000000 1
## 3447 1 1.000000000 1
## 3448 3 1.000000000 1
## 3449 2 1.000000000 1
## 3450 1 1.000000000 1
## 3451 1 1.000000000 1
## 3452 3 1.000000000 1
## 3453 1 1.000000000 1
## 3454 1 1.000000000 1
## 3455 5 1.000000000 1
## 3456 1 1.000000000 1
## 3457 1 1.000000000 1
## 3458 1 1.000000000 1
## 3459 2 1.000000000 1
## 3460 1 1.000000000 1
## 3461 1 1.000000000 1
## 3462 3 1.000000000 1
## 3463 1 1.000000000 1
## 3464 1 1.000000000 1
## 3465 1 1.000000000 1
## 3466 1 1.000000000 1
## 3467 1 1.000000000 1
## 3468 1 1.000000000 1
## 3469 1 1.000000000 1
## 3470 1 1.000000000 1
## 3471 2 1.000000000 1
## 3472 1 1.000000000 1
## 3473 1 1.000000000 1
## 3474 1 1.000000000 1
## 3475 1 1.000000000 1
## 3476 1 1.000000000 1
## 3477 1 1.000000000 1
## 3478 3 1.000000000 1
## 3479 2 1.000000000 1
## 3480 1 1.000000000 1
## 3481 3 1.000000000 1
## 3482 1 1.000000000 1
## 3483 1 1.000000000 1
## 3484 1 1.000000000 1
## 3485 1 1.000000000 1
## 3486 1 1.000000000 1
## 3487 1 1.000000000 1
## 3488 1 1.000000000 1
## 3489 1 1.000000000 1
## 3490 1 1.000000000 1
## 3491 1 1.000000000 1
## 3492 3 1.000000000 1
## 3493 9 1.000000000 1
## 3494 3 1.000000000 1
## 3495 1 1.000000000 1
## 3496 1 1.000000000 1
## 3497 1 1.000000000 1
## 3498 15 1.000000000 1
## 3499 1 1.000000000 1
## 3500 1 1.000000000 1
## 3501 1 1.000000000 1
## 3502 1 1.000000000 1
## 3503 1 1.000000000 1
## 3504 1 1.000000000 1
## 3505 3 1.000000000 1
## 3506 1 1.000000000 1
## 3507 1 1.000000000 1
## 3508 1 1.000000000 1
## 3509 1 1.000000000 1
## 3510 1 1.000000000 1
## 3511 4 1.000000000 1
## 3512 1 1.000000000 1
## 3513 2 1.000000000 1
## 3514 2 1.000000000 1
## 3515 3 1.000000000 1
## 3516 1 1.000000000 1
## 3517 1 1.000000000 1
## 3518 1 1.000000000 1
## 3519 1 1.000000000 1
## 3520 1 1.000000000 1
## 3521 2 1.000000000 1
## 3522 3 1.000000000 1
## 3523 4 1.000000000 1
## 3524 2 1.000000000 1
## 3525 8 1.000000000 1
## 3526 2 1.000000000 1
## 3527 2 1.000000000 1
## 3528 1 1.000000000 1
## 3529 1 1.000000000 1
## 3530 2 1.000000000 1
## 3531 1 1.000000000 1
## 3532 1 1.000000000 1
## 3533 1 1.000000000 1
## 3534 3 1.000000000 1
## 3535 1 1.000000000 1
## 3536 1 1.000000000 1
## 3537 1 1.000000000 1
## 3538 1 1.000000000 1
## 3539 1 1.000000000 1
## 3540 3 1.000000000 1
## 3541 1 1.000000000 1
## 3542 1 1.000000000 1
## 3543 1 1.000000000 1
## 3544 1 1.000000000 1
## 3545 1 1.000000000 1
## 3546 1 1.000000000 1
## 3547 5 1.000000000 1
## 3548 1 1.000000000 1
## 3549 1 1.000000000 1
## 3550 1 1.000000000 1
## 3551 2 1.000000000 1
## 3552 1 1.000000000 1
## 3553 1 1.000000000 1
## 3554 29 1.000000000 1
## 3555 13 1.000000000 1
## 3556 40 1.000000000 1
## 3557 4 1.000000000 1
## 3558 17 1.000000000 1
## 3559 7 1.000000000 1
## 3560 1 1.000000000 1
## 3561 2 1.000000000 1
## 3562 10 1.000000000 1
## 3563 12 1.000000000 1
## 3564 1 1.000000000 1
## 3565 5 1.000000000 1
## 3566 2 1.000000000 1
## 3567 1 1.000000000 1
## 3568 3 1.000000000 1
## 3569 11 1.000000000 1
## 3570 5 1.000000000 1
## 3571 16 1.000000000 1
## 3572 4 1.000000000 1
## 3573 1 1.000000000 1
## 3574 1 1.000000000 1
## 3575 1 1.000000000 1
## 3576 1 1.000000000 1
## 3577 4 1.000000000 1
## 3578 7 1.000000000 1
## 3579 2 1.000000000 1
## 3580 1 1.000000000 1
## 3581 1 1.000000000 1
## 3582 1 1.000000000 1
## 3583 2 1.000000000 1
## 3584 1 1.000000000 1
## 3585 1 1.000000000 1
## 3586 1 1.000000000 1
## 3587 2 1.000000000 1
## 3588 1 1.000000000 1
## 3589 1 1.000000000 1
## 3590 1 1.000000000 1
## 3591 2 1.000000000 1
## 3592 1 1.000000000 1
## 3593 1 1.000000000 1
## 3594 3 1.000000000 1
## 3595 3 1.000000000 1
## 3596 1 1.000000000 1
## 3597 3 1.000000000 1
## 3598 2 1.000000000 1
## 3599 3 1.000000000 1
## 3600 2 1.000000000 1
## 3601 4 1.000000000 1
## 3602 1 1.000000000 1
## 3603 1 1.000000000 1
## 3604 7 1.000000000 1
## 3605 4 1.000000000 1
## 3606 1 1.000000000 1
## 3607 12 1.000000000 1
## 3608 1 1.000000000 1
## 3609 1 1.000000000 1
## 3610 1 1.000000000 1
## 3611 2 1.000000000 1
## 3612 1 1.000000000 1
## 3613 1 1.000000000 1
## 3614 1 1.000000000 1
## 3615 1 1.000000000 1
## 3616 2 1.000000000 1
## 3617 1 1.000000000 1
## 3618 1 1.000000000 1
## 3619 19 1.000000000 1
## 3620 2 1.000000000 1
## 3621 1 1.000000000 1
## 3622 1 1.000000000 1
## 3623 1 1.000000000 1
## 3624 3 1.000000000 1
## 3625 1 1.000000000 1
## 3626 1 1.000000000 1
## 3627 4 1.000000000 1
## 3628 3 1.000000000 1
## 3629 2 1.000000000 1
## 3630 4 1.000000000 1
## 3631 1 1.000000000 1
## 3632 1 1.000000000 1
## 3633 6 1.000000000 1
## 3634 6 1.000000000 1
## 3635 5 1.000000000 1
## 3636 1 1.000000000 1
## 3637 3 1.000000000 1
## 3638 1 1.000000000 1
## 3639 1 1.000000000 1
## 3640 1 1.000000000 1
## 3641 2 1.000000000 1
## 3642 1 1.000000000 1
## 3643 1 1.000000000 1
## 3644 1 1.000000000 1
## 3645 1 1.000000000 1
## 3646 1 1.000000000 1
## 3647 6 1.000000000 1
## 3648 2 1.000000000 1
## 3649 14 1.000000000 1
## 3650 3 1.000000000 1
## 3651 1 1.000000000 1
## 3652 3 1.000000000 1
## 3653 6 1.000000000 1
## 3654 2 1.000000000 1
## 3655 31 1.000000000 1
## 3656 14 1.000000000 1
## 3657 14 1.000000000 1
## 3658 1 1.000000000 1
## 3659 11 1.000000000 1
## 3660 14 1.000000000 1
## 3661 6 1.000000000 1
## 3662 3 1.000000000 1
## 3663 5 1.000000000 1
## 3664 1 1.000000000 1
## 3665 13 1.000000000 1
## 3666 10 1.000000000 1
## 3667 3 1.000000000 1
## 3668 3 1.000000000 1
## 3669 2 1.000000000 1
## 3670 19 1.000000000 1
## 3671 4 1.000000000 1
## 3672 1 1.000000000 1
## 3673 1 1.000000000 1
## 3674 1 1.000000000 1
## 3675 18 1.000000000 1
## 3676 5 1.000000000 1
## 3677 3 1.000000000 1
## 3678 11 1.000000000 1
## 3679 7 1.000000000 1
## 3680 4 1.000000000 1
## 3681 1 1.000000000 1
## 3682 33 1.000000000 1
## 3683 12 1.000000000 1
## 3684 1 1.000000000 1
## 3685 4 1.000000000 1
## 3686 6 1.000000000 1
## 3687 4 1.000000000 1
## 3688 4 1.000000000 1
## 3689 1 1.000000000 1
## 3690 5 1.000000000 1
## 3691 3 1.000000000 1
## 3692 5 1.000000000 1
## 3693 22 1.000000000 1
## 3694 3 1.000000000 1
## 3695 5 1.000000000 1
## 3696 2 1.000000000 1
## 3697 1 1.000000000 1
## 3698 1 1.000000000 1
## 3699 4 1.000000000 1
## 3700 1 1.000000000 1
## 3701 1 1.000000000 1
## 3702 2 1.000000000 1
## 3703 9 1.000000000 1
## 3704 1 1.000000000 1
## 3705 12 1.000000000 1
## 3706 2 1.000000000 1
## 3707 19 1.000000000 1
## 3708 10 1.000000000 1
## 3709 3 1.000000000 1
## 3710 32 1.000000000 1
## 3711 7 1.000000000 1
## 3712 1 1.000000000 1
## 3713 1 1.000000000 1
## 3714 1 1.000000000 1
## 3715 2 1.000000000 1
## 3716 1 1.000000000 1
## 3717 6 1.000000000 1
## 3718 1 1.000000000 1
## 3719 1 1.000000000 1
## 3720 2 1.000000000 1
## 3721 2 1.000000000 1
## 3722 2 1.000000000 1
## 3723 2 1.000000000 1
## 3724 1 1.000000000 1
## 3725 1 1.000000000 1
## 3726 1 1.000000000 1
## 3727 1 1.000000000 1
## 3728 12 1.000000000 1
## 3729 2 1.000000000 1
## 3730 2 1.000000000 1
## 3731 2 1.000000000 1
## 3732 2 1.000000000 1
## 3733 1 1.000000000 1
## 3734 1 1.000000000 1
## 3735 1 1.000000000 1
## 3736 1 1.000000000 1
## 3737 5 1.000000000 1
## 3738 5 1.000000000 1
## 3739 1 1.000000000 1
## 3740 1 1.000000000 1
## 3741 1 1.000000000 1
## 3742 1 1.000000000 1
## 3743 3 1.000000000 1
## 3744 2 1.000000000 1
## 3745 4 1.000000000 1
## 3746 4 1.000000000 1
## 3747 4 1.000000000 1
## 3748 1 1.000000000 1
## 3749 2 1.000000000 1
## 3750 5 1.000000000 1
## 3751 3 1.000000000 1
## 3752 2 1.000000000 1
## 3753 1 1.000000000 1
## 3754 1 1.000000000 1
## 3755 1 1.000000000 1
## 3756 1 1.000000000 1
## 3757 1 1.000000000 1
## 3758 2 1.000000000 1
## 3759 2 1.000000000 1
## 3760 1 1.000000000 1
## 3761 1 1.000000000 1
## 3762 1 1.000000000 1
## 3763 4 1.000000000 1
## 3764 4 1.000000000 1
## 3765 1 1.000000000 1
## 3766 3 1.000000000 1
## 3767 3 1.000000000 1
## 3768 4 1.000000000 1
## 3769 4 1.000000000 1
## 3770 4 1.000000000 1
## 3771 4 1.000000000 1
## 3772 4 1.000000000 1
## 3773 4 1.000000000 1
## 3774 4 1.000000000 1
## 3775 3 1.000000000 1
## 3776 2 1.000000000 1
## 3777 2 1.000000000 1
## 3778 2 1.000000000 1
## 3779 1 1.000000000 1
## 3780 1 1.000000000 1
## 3781 1 1.000000000 1
## 3782 2 1.000000000 1
## 3783 1 1.000000000 1
## 3784 1 1.000000000 1
## 3785 1 1.000000000 1
## 3786 1 1.000000000 1
## 3787 1 1.000000000 1
## 3788 1 1.000000000 1
## 3789 2 1.000000000 1
## 3790 1 1.000000000 1
## 3791 1 1.000000000 1
## 3792 1 1.000000000 1
## 3793 1 1.000000000 1
## 3794 1 1.000000000 1
## 3795 1 1.000000000 1
## 3796 1 1.000000000 1
## 3797 1 1.000000000 1
## 3798 1 1.000000000 1
## 3799 1 1.000000000 1
## 3800 1 1.000000000 1
## 3801 1 1.000000000 1
## 3802 1 1.000000000 1
## 3803 4 1.000000000 1
## 3804 3 1.000000000 1
## 3805 16 1.000000000 1
## 3806 1 1.000000000 1
## 3807 1 1.000000000 1
## 3808 3 1.000000000 1
## 3809 2 1.000000000 1
## 3810 1 1.000000000 1
## 3811 6 1.000000000 1
## 3812 3 1.000000000 1
## 3813 1 1.000000000 1
## 3814 2 1.000000000 1
## 3815 6 1.000000000 1
## 3816 1 1.000000000 1
## 3817 1 1.000000000 1
## 3818 2 1.000000000 1
## 3819 2 1.000000000 1
## 3820 1 1.000000000 1
## 3821 1 1.000000000 1
## 3822 1 1.000000000 1
## 3823 1 1.000000000 1
## 3824 1 1.000000000 1
## 3825 1 1.000000000 1
## 3826 3 1.000000000 1
## 3827 2 1.000000000 1
## 3828 3 1.000000000 1
## 3829 1 1.000000000 1
## 3830 1 1.000000000 1
## 3831 5 1.000000000 1
## 3832 1 1.000000000 1
## 3833 1 1.000000000 1
## 3834 1 1.000000000 1
## 3835 2 1.000000000 1
## 3836 1 1.000000000 1
## 3837 2 1.000000000 1
## 3838 2 1.000000000 1
## 3839 1 1.000000000 1
## 3840 2 1.000000000 1
## 3841 1 1.000000000 1
## 3842 2 1.000000000 1
## 3843 1 1.000000000 1
## 3844 19 1.000000000 1
## 3845 1 1.000000000 1
## 3846 1 1.000000000 1
## 3847 2 1.000000000 1
## 3848 1 1.000000000 1
## 3849 1 1.000000000 1
## 3850 4 1.000000000 1
## 3851 1 1.000000000 1
## 3852 19 1.000000000 1
## 3853 14 1.000000000 1
## 3854 1 1.000000000 1
## 3855 1 1.000000000 1
## 3856 10 1.000000000 1
## 3857 1 1.000000000 1
## 3858 2 1.000000000 1
## 3859 1 1.000000000 1
## 3860 3 1.000000000 1
## 3861 3 1.000000000 1
## 3862 4 1.000000000 1
## 3863 5 1.000000000 1
## 3864 18 1.000000000 1
## 3865 2 1.000000000 1
## 3866 3 1.000000000 1
## 3867 6 1.000000000 1
## 3868 1 1.000000000 1
## 3869 1 1.000000000 1
## 3870 3 1.000000000 1
## 3871 1 1.000000000 1
## 3872 1 1.000000000 1
## 3873 16 1.000000000 1
## 3874 1 1.000000000 1
## 3875 1 1.000000000 1
## 3876 1 1.000000000 1
## 3877 2 1.000000000 1
## 3878 1 1.000000000 1
## 3879 21 1.000000000 1
## 3880 1 1.000000000 1
## 3881 1 1.000000000 1
## 3882 5 1.000000000 1
## 3883 18 1.000000000 1
## 3884 1 1.000000000 1
## 3885 7 1.000000000 1
## 3886 4 1.000000000 1
## 3887 23 1.000000000 1
## 3888 1 1.000000000 1
## 3889 2 1.000000000 1
## 3890 1 1.000000000 1
## 3891 1 1.000000000 1
## 3892 1 1.000000000 1
## 3893 1 1.000000000 1
## 3894 2 1.000000000 1
## 3895 13 1.000000000 1
## 3896 14 1.000000000 1
## 3897 3 1.000000000 1
## 3898 71 1.000000000 1
## 3899 12 1.000000000 1
## 3900 11 1.000000000 1
## 3901 1 1.000000000 1
## 3902 12 1.000000000 1
## 3903 2 1.000000000 1
## 3904 10 1.000000000 1
## 3905 1 1.000000000 1
## 3906 2 1.000000000 1
## 3907 1 1.000000000 1
## 3908 4 1.000000000 1
## 3909 3 1.000000000 1
## 3910 1 1.000000000 1
## 3911 1 1.000000000 1
## 3912 24 1.000000000 1
## 3913 9 1.000000000 1
## 3914 5 1.000000000 1
## 3915 3 1.000000000 1
## 3916 3 1.000000000 1
## 3917 19 1.000000000 1
## 3918 4 1.000000000 1
## 3919 1 1.000000000 1
## 3920 1 1.000000000 1
## 3921 1 1.000000000 1
## 3922 1 1.000000000 1
## 3923 3 1.000000000 1
## 3924 3 1.000000000 1
## 3925 10 1.000000000 1
## 3926 1 1.000000000 1
## 3927 13 1.000000000 1
## 3928 4 1.000000000 1
## 3929 2 1.000000000 1
## 3930 2 1.000000000 1
## 3931 9 1.000000000 1
## 3932 6 1.000000000 1
## 3933 1 1.000000000 1
## 3934 4 1.000000000 1
## 3935 2 1.000000000 1
## 3936 9 1.000000000 1
## 3937 8 1.000000000 1
## 3938 15 1.000000000 1
## 3939 1 1.000000000 1
## 3940 1 1.000000000 1
## 3941 2 1.000000000 1
## 3942 4 1.000000000 1
## 3943 24 1.000000000 1
## 3944 2 1.000000000 1
## 3945 1 1.000000000 1
## 3946 8 1.000000000 1
## 3947 5 1.000000000 1
## 3948 37 1.000000000 1
## 3949 2 1.000000000 1
## 3950 4 1.000000000 1
## 3951 1 1.000000000 1
## 3952 3 1.000000000 1
## 3953 5 1.000000000 1
## 3954 1 1.000000000 1
## 3955 1 1.000000000 1
## 3956 1 1.000000000 1
## 3957 1 1.000000000 1
## 3958 7 1.000000000 1
## 3959 3 1.000000000 1
## 3960 3 1.000000000 1
## 3961 2 1.000000000 1
## 3962 1 1.000000000 1
## 3963 2 1.000000000 1
## 3964 1 1.000000000 1
## 3965 5 1.000000000 1
## 3966 4 1.000000000 1
## 3967 5 1.000000000 1
## 3968 1 1.000000000 1
## 3969 2 1.000000000 1
## 3970 1 1.000000000 1
## 3971 2 1.000000000 1
## 3972 10 1.000000000 1
## 3973 2 1.000000000 1
## 3974 1 1.000000000 1
## 3975 2 1.000000000 1
## 3976 24 1.000000000 1
## 3977 1 1.000000000 1
## 3978 29 1.000000000 1
## 3979 2 1.000000000 1
## 3980 2 1.000000000 1
## 3981 8 1.000000000 1
## 3982 8 1.000000000 1
## 3983 4 1.000000000 1
## 3984 2 1.000000000 1
## 3985 18 1.000000000 1
## 3986 2 1.000000000 1
## 3987 1 1.000000000 1
## 3988 1 1.000000000 1
## 3989 2 1.000000000 1
## 3990 1 1.000000000 1
## 3991 1 1.000000000 1
## 3992 1 1.000000000 1
## 3993 1 1.000000000 1
## 3994 1 1.000000000 1
## 3995 2 1.000000000 1
## 3996 1 1.000000000 1
## 3997 2 1.000000000 1
## 3998 2 1.000000000 1
## 3999 25 1.000000000 1
## 4000 1 1.000000000 1
## 4001 1 1.000000000 1
## 4002 2 1.000000000 1
## 4003 3 1.000000000 1
## 4004 1 1.000000000 1
## 4005 5 1.000000000 1
## 4006 5 1.000000000 1
## 4007 12 1.000000000 1
## 4008 2 1.000000000 1
## 4009 1 1.000000000 1
## 4010 1 1.000000000 1
## 4011 1 1.000000000 1
## 4012 1 1.000000000 1
## 4013 3 1.000000000 1
## 4014 1 1.000000000 1
## 4015 2 1.000000000 1
## 4016 1 1.000000000 1
## 4017 1 1.000000000 1
## 4018 2 1.000000000 1
## 4019 1 1.000000000 1
## 4020 3 1.000000000 1
## 4021 1 1.000000000 1
## 4022 2 1.000000000 1
## 4023 1 1.000000000 1
## 4024 1 1.000000000 1
## 4025 11 1.000000000 1
## 4026 1 1.000000000 1
## 4027 6 1.000000000 1
## 4028 1 1.000000000 1
## 4029 4 1.000000000 1
## 4030 1 1.000000000 1
## 4031 11 1.000000000 1
## 4032 24 1.000000000 1
## 4033 1 1.000000000 1
## 4034 1 1.000000000 1
## 4035 2 1.000000000 1
## 4036 8 1.000000000 1
## 4037 24 1.000000000 1
## 4038 2 1.000000000 1
## 4039 4 1.000000000 1
## 4040 2 1.000000000 1
## 4041 2 1.000000000 1
## 4042 6 1.000000000 1
## 4043 1 1.000000000 1
## 4044 2 1.000000000 1
## 4045 4 1.000000000 1
## 4046 10 1.000000000 1
## 4047 2 1.000000000 1
## 4048 4 1.000000000 1
## 4049 2 1.000000000 1
## 4050 8 1.000000000 1
## 4051 5 1.000000000 1
## 4052 5 1.000000000 1
## 4053 8 1.000000000 1
## 4054 1 1.000000000 1
## 4055 1 1.000000000 1
## 4056 1 1.000000000 1
## 4057 1 1.000000000 1
## 4058 3 1.000000000 1
## 4059 2 1.000000000 1
## 4060 2 1.000000000 1
## 4061 2 1.000000000 1
## 4062 1 1.000000000 1
## 4063 7 1.000000000 1
## 4064 2 1.000000000 1
## 4065 6 1.000000000 1
## 4066 1 1.000000000 1
## 4067 1 1.000000000 1
## 4068 31 1.000000000 1
## 4069 17 1.000000000 1
## 4070 1 1.000000000 1
## 4071 18 1.000000000 1
## 4072 3 1.000000000 1
## 4073 2 1.000000000 1
## 4074 1 1.000000000 1
## 4075 1 1.000000000 1
## 4076 1 1.000000000 1
## 4077 6 1.000000000 1
## 4078 4 1.000000000 1
## 4079 1 1.000000000 1
## 4080 7 1.000000000 1
## 4081 1 1.000000000 1
## 4082 31 1.000000000 1
## 4083 1 1.000000000 1
## 4084 3 1.000000000 1
## 4085 5 1.000000000 1
## 4086 1 1.000000000 1
## 4087 1 1.000000000 1
## 4088 1 1.000000000 1
## 4089 1 1.000000000 1
## 4090 1 1.000000000 1
## 4091 1 1.000000000 1
## 4092 7 1.000000000 1
## 4093 5 1.000000000 1
## 4094 2 1.000000000 1
## 4095 2 1.000000000 1
## 4096 1 1.000000000 1
## 4097 2 1.000000000 1
## 4098 21 1.000000000 1
## 4099 1 1.000000000 1
## 4100 1 1.000000000 1
## 4101 11 1.000000000 1
## 4102 4 1.000000000 1
## 4103 1 1.000000000 1
## 4104 2 1.000000000 1
## 4105 3 1.000000000 1
## 4106 29 1.000000000 1
## 4107 2 1.000000000 1
## 4108 3 1.000000000 1
## 4109 6 1.000000000 1
## 4110 1 1.000000000 1
## 4111 3 1.000000000 1
## 4112 1 1.000000000 1
## 4113 1 1.000000000 1
## 4114 1 1.000000000 1
## 4115 1 1.000000000 1
## 4116 1 1.000000000 1
## 4117 7 1.000000000 1
## 4118 7 1.000000000 1
## 4119 7 1.000000000 1
## 4120 1 1.000000000 1
## 4121 1 1.000000000 1
## 4122 1 1.000000000 1
## 4123 1 1.000000000 1
## 4124 4 1.000000000 1
## 4125 4 1.000000000 1
## 4126 1 1.000000000 1
## 4127 8 1.000000000 1
## 4128 1 1.000000000 1
## 4129 3 1.000000000 1
## 4130 1 1.000000000 1
## 4131 1 1.000000000 1
## 4132 2 1.000000000 1
## 4133 2 1.000000000 1
## 4134 20 1.000000000 1
## 4135 6 1.000000000 1
## 4136 11 1.000000000 1
## 4137 8 1.000000000 1
## 4138 1 1.000000000 1
## 4139 1 1.000000000 1
## 4140 24 1.000000000 1
## 4141 31 1.000000000 1
## 4142 1 1.000000000 1
## 4143 1 1.000000000 1
## 4144 1 1.000000000 1
## 4145 1 1.000000000 1
## 4146 2 1.000000000 1
## 4147 8 1.000000000 1
## 4148 1 1.000000000 1
## 4149 1 1.000000000 1
## 4150 1 1.000000000 1
## 4151 1 1.000000000 1
## 4152 1 1.000000000 1
## 4153 1 1.000000000 1
## 4154 1 1.000000000 1
## 4155 3 1.000000000 1
## 4156 3 1.000000000 1
## 4157 13 1.000000000 1
## 4158 4 1.000000000 1
## 4159 19 1.000000000 1
## 4160 1 1.000000000 1
## 4161 1 1.000000000 1
## 4162 1 1.000000000 1
## 4163 1 1.000000000 1
## 4164 1 1.000000000 1
## 4165 1 1.000000000 1
## 4166 7 1.000000000 1
## 4167 2 1.000000000 1
## 4168 2 1.000000000 1
## 4169 2 1.000000000 1
## 4170 2 1.000000000 1
## 4171 6 1.000000000 1
## 4172 4 1.000000000 1
## 4173 2 1.000000000 1
## 4174 1 1.000000000 1
## 4175 1 1.000000000 1
## 4176 3 1.000000000 1
## 4177 1 1.000000000 1
## 4178 1 1.000000000 1
## 4179 3 1.000000000 1
## 4180 1 1.000000000 1
## 4181 6 1.000000000 1
## 4182 1 1.000000000 1
## 4183 1 1.000000000 1
## 4184 1 1.000000000 1
## 4185 1 1.000000000 1
## 4186 2 1.000000000 1
## 4187 3 1.000000000 1
## 4188 2 1.000000000 1
## 4189 6 1.000000000 1
## 4190 1 1.000000000 1
## 4191 7 1.000000000 1
## 4192 5 1.000000000 1
## 4193 2 1.000000000 1
## 4194 2 1.000000000 1
## 4195 1 1.000000000 1
## 4196 1 1.000000000 1
## 4197 6 1.000000000 1
## 4198 4 1.000000000 1
## 4199 1 1.000000000 1
## 4200 1 1.000000000 1
## 4201 5 1.000000000 1
## 4202 1 1.000000000 1
## 4203 3 1.000000000 1
## 4204 1 1.000000000 1
## 4205 3 1.000000000 1
## 4206 2 1.000000000 1
## 4207 1 1.000000000 1
## 4208 1 1.000000000 1
## 4209 1 1.000000000 1
## 4210 3 1.000000000 1
## 4211 6 1.000000000 1
## 4212 1 1.000000000 1
## 4213 1 1.000000000 1
## 4214 1 1.000000000 1
## 4215 1 1.000000000 1
## 4216 1 1.000000000 1
## 4217 2 1.000000000 1
## 4218 1 1.000000000 1
## 4219 1 1.000000000 1
## 4220 2 1.000000000 1
## 4221 2 1.000000000 1
## 4222 2 1.000000000 1
ggplot(head(bp,15), aes(Hyper_Fold_Enrichment, reorder(name, Hyper_Adjp_BH), size=Hyper_Foreground_Region_Hits, color=-log10(Hyper_Adjp_BH))) + geom_point() + scale_color_viridis_c()
The clustering analysis identified four distinct clusters with enrichment patterns. Cluster 3, in particular, showed strong peaks for Creb1, Creb3, and Creb3L1, indicating a significant biological role. The enrichment analysis for Cluster 3 revealed several molecular functions related to protein binding and DNA interaction, suggesting these regions may play crucial roles in protein signaling and genomic stability. The results provide insights into the molecular activities associated with specific clusters, particularly highlighting the importance of protein binding and signaling functions in Cluster 3.